X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/05e2b077c6187ff4d894e4af58ccd99536c9c584..75799719334c85392638ce5c7d0e90a8b74b7e5a:/include/wx/cocoa/app.h?ds=inline diff --git a/include/wx/cocoa/app.h b/include/wx/cocoa/app.h index cb9c7d933e..02bf4fa5b0 100644 --- a/include/wx/cocoa/app.h +++ b/include/wx/cocoa/app.h @@ -12,9 +12,6 @@ #ifndef _WX_COCOA_APP_H_ #define _WX_COCOA_APP_H_ -// entrypoint -int WXDLLEXPORT wxEntry( int argc, char *argv[] ); - // Represents the application. Derive OnInit and declare // a new App object to start application class WXDLLEXPORT wxApp: public wxAppBase @@ -54,20 +51,15 @@ public: virtual void Exit(); virtual bool Yield(bool onlyIfNeeded = FALSE); - virtual bool ProcessIdle(); virtual void WakeUpIdle() { CocoaRequestIdle(); } /* Idle Processing */ void OnIdle(wxIdleEvent& event); - // Send idle event to all top-level windows. - // Returns TRUE if more idle time is requested. - bool SendIdleEvents(); - // Send idle event to window and all subwindows - // Returns TRUE if more idle time is requested. - bool SendIdleEvents(wxWindowCocoa* win); - + virtual bool Initialize(int& argc, wxChar **argv); virtual void CleanUp(); + virtual bool CallOnInit(); + virtual bool OnInit(); virtual bool OnInitGui();