- static void SetInitializerFunction(wxAppInitializerFunction fn) { m_appInitFn = fn; }
- static wxAppInitializerFunction GetInitializerFunction(void) { return m_appInitFn; }
-
- virtual int MainLoop(void);
- void ExitMainLoop(void);
- bool Initialized(void);
- virtual bool Pending(void) ;
- virtual void Dispatch(void) ;
-
- virtual void OnIdle(wxIdleEvent& event);
-
- // Windows specific. Intercept keyboard input.
-#if WXWIN_COMPATIBILITY == 2
- virtual bool OldOnCharHook(wxKeyEvent& event);
-#endif
-
-// Generic
- virtual bool OnInit(void) { return FALSE; };
-
- // No specific tasks to do here.
- virtual bool OnInitGui(void) { return TRUE; }
-
- // override this function to create a global wxConfig object of different
- // than default type (right now the default implementation returns NULL)
- virtual wxConfig *CreateConfig(void) { return NULL; }