mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
47 lines
No EOL
1,012 B
C++
47 lines
No EOL
1,012 B
C++
class TopFrameDraw : public SystemDraw {
|
|
public:
|
|
TopFrameDraw(Ctrl *ctrl, const Rect& r);
|
|
~TopFrameDraw();
|
|
};
|
|
|
|
Vector<WString>& coreCmdLine__();
|
|
Vector<WString> SplitCmdLine__(const char *cmd);
|
|
|
|
void CocoInit(int argc, const char **argv, const char **envptr);
|
|
void CocoExit();
|
|
|
|
#ifdef PLATFORM_POSIX
|
|
#define GUI_APP_MAIN \
|
|
void GuiMainFn_(); \
|
|
\
|
|
int main(int argc, const char **argv, const char **envptr) { \
|
|
UPP::AppInit__(argc, (const char **)argv, envptr); \
|
|
GUI_APP_MAIN_HOOK \
|
|
UPP::CocoInit(argc, argv, envptr); \
|
|
GuiMainFn_(); \
|
|
UPP::Ctrl::CloseTopCtrls(); \
|
|
UPP::CocoExit(); \
|
|
UPP::Ctrl::ShutdownThreads(); \
|
|
UPP::AppExit__(); \
|
|
return UPP::GetExitCode(); \
|
|
} \
|
|
\
|
|
void GuiMainFn_()
|
|
|
|
#endif
|
|
|
|
class DHCtrl : Ctrl {};
|
|
|
|
enum {
|
|
SF_NSDocumentDirectory,
|
|
SF_NSUserDirectory,
|
|
SF_NSDesktopDirectory,
|
|
SF_NSDownloadsDirectory,
|
|
SF_NSMoviesDirectory,
|
|
SF_NSMusicDirectory,
|
|
SF_NSPicturesDirectory,
|
|
};
|
|
|
|
String GetSpecialDirectory(int i);
|
|
|
|
void CocoBeep(); |