]>
Commit | Line | Data |
---|---|---|
fb896a32 DE |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: cocoa/app.h | |
3 | // Purpose: wxApp class | |
4 | // Author: David Elliott | |
5 | // Modified by: | |
6 | // Created: 2002/11/27 | |
7 | // RCS-ID: $Id: | |
8 | // Copyright: (c) 2002 David Elliott | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_COCOA_APP_H_ | |
13 | #define _WX_COCOA_APP_H_ | |
14 | ||
fb896a32 DE |
15 | // Represents the application. Derive OnInit and declare |
16 | // a new App object to start application | |
17 | class WXDLLEXPORT wxApp: public wxAppBase | |
18 | { | |
19 | DECLARE_DYNAMIC_CLASS(wxApp) | |
20 | DECLARE_EVENT_TABLE() | |
21 | // ------------------------------------------------------------------------ | |
22 | // initialization | |
23 | // ------------------------------------------------------------------------ | |
24 | public: | |
25 | wxApp(); | |
26 | virtual ~wxApp() {} | |
27 | ||
28 | // ------------------------------------------------------------------------ | |
29 | // Cocoa specifics | |
30 | // ------------------------------------------------------------------------ | |
31 | public: | |
32 | inline WX_NSApplication GetNSApplication() { return m_cocoaApp; } | |
33 | void CocoaInstallRequestedIdleHandler() { if(m_isIdle) CocoaInstallIdleHandler(); } | |
34 | inline void CocoaRequestIdle() { m_isIdle = true; } | |
35 | protected: | |
36 | WX_NSApplication m_cocoaApp; | |
37 | void CocoaInstallIdleHandler(); | |
38 | bool m_isIdle; | |
39 | ||
40 | // ------------------------------------------------------------------------ | |
41 | // Implementation | |
42 | // ------------------------------------------------------------------------ | |
43 | public: | |
44 | // Implement wxAppBase pure virtuals | |
45 | virtual int MainLoop(); | |
46 | virtual void ExitMainLoop(); | |
47 | virtual bool Initialized(); | |
48 | virtual bool Pending(); | |
49 | virtual void Dispatch(); | |
e2478fde VZ |
50 | |
51 | virtual void Exit(); | |
52 | ||
fb896a32 | 53 | virtual bool Yield(bool onlyIfNeeded = FALSE); |
bf252640 | 54 | virtual void WakeUpIdle() { CocoaRequestIdle(); } |
fb896a32 | 55 | |
05e2b077 | 56 | virtual bool Initialize(int& argc, wxChar **argv); |
94826170 | 57 | virtual void CleanUp(); |
47f1ad6a DE |
58 | virtual bool CallOnInit(); |
59 | ||
fb896a32 DE |
60 | |
61 | virtual bool OnInit(); | |
62 | virtual bool OnInitGui(); | |
fb896a32 DE |
63 | }; |
64 | ||
65 | #endif // _WX_COCOA_APP_H_ |