1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxApp class
4 // Author: David Elliott
8 // Copyright: (c) 2002 David Elliott
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_COCOA_APP_H_
13 #define _WX_COCOA_APP_H_
16 int WXDLLEXPORT
wxEntry( int argc
, char *argv
[] );
18 // Represents the application. Derive OnInit and declare
19 // a new App object to start application
20 class WXDLLEXPORT wxApp
: public wxAppBase
22 DECLARE_DYNAMIC_CLASS(wxApp
)
24 // ------------------------------------------------------------------------
26 // ------------------------------------------------------------------------
31 // ------------------------------------------------------------------------
33 // ------------------------------------------------------------------------
35 inline WX_NSApplication
GetNSApplication() { return m_cocoaApp
; }
36 void CocoaInstallRequestedIdleHandler() { if(m_isIdle
) CocoaInstallIdleHandler(); }
37 inline void CocoaRequestIdle() { m_isIdle
= true; }
39 WX_NSApplication m_cocoaApp
;
40 void CocoaInstallIdleHandler();
43 // ------------------------------------------------------------------------
45 // ------------------------------------------------------------------------
47 // Implement wxAppBase pure virtuals
48 virtual int MainLoop();
49 virtual void ExitMainLoop();
50 virtual bool Initialized();
51 virtual bool Pending();
52 virtual void Dispatch();
56 virtual bool Yield(bool onlyIfNeeded
= FALSE
);
57 virtual bool ProcessIdle();
58 virtual void WakeUpIdle() { CocoaRequestIdle(); }
61 void OnIdle(wxIdleEvent
& event
);
62 // Send idle event to all top-level windows.
63 // Returns TRUE if more idle time is requested.
64 bool SendIdleEvents();
65 // Send idle event to window and all subwindows
66 // Returns TRUE if more idle time is requested.
67 bool SendIdleEvents(wxWindowCocoa
* win
);
69 virtual bool Initialize(int& argc
, wxChar
**argv
);
70 virtual void CleanUp();
72 virtual bool OnInit();
73 virtual bool OnInitGui();
76 #endif // _WX_COCOA_APP_H_