- static wxAppInitializerFunction GetInitializerFunction(void) { return m_appInitFn; }
-
- virtual bool OnInit(void);
- virtual bool OnInitGui(void);
- virtual int OnRun(void);
- virtual int OnExit(void);
-
- wxWindow *GetTopWindow(void);
+ static wxAppInitializerFunction GetInitializerFunction() { return m_appInitFn; }
+
+ /* this may have to be overwritten when special, non-default visuals have
+ to be set. it is also platform dependent as only X knows about displays
+ and visuals. */
+ virtual bool InitVisual();
+
+ virtual bool OnInit();
+ virtual bool OnInitGui();
+ virtual int OnRun();
+ virtual int OnExit();
+
+ wxWindow *GetTopWindow();