]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/stubs/app.h
1. wxMSW seems to work (please test and send your bug reports!)
[wxWidgets.git] / include / wx / stubs / app.h
index cb50ba9c9e5318745cbcf0a72ff4df8bcf259ea4..67bceb9169bb7746f38ec307e6958b4da034597d 100644 (file)
@@ -18,6 +18,8 @@
 
 #include "wx/defs.h"
 #include "wx/object.h"
+#include "wx/gdicmn.h"
+#include "wx/event.h"
 
 class WXDLLEXPORT wxFrame;
 class WXDLLEXPORT wxWindow;
@@ -30,10 +32,6 @@ class WXDLLEXPORT wxLog;
 
 WXDLLEXPORT_DATA(extern wxApp*) wxTheApp;
 
-void WXDLLEXPORT wxCleanUp();
-void WXDLLEXPORT wxCommonCleanUp(); // Call this from the platform's wxCleanUp()
-void WXDLLEXPORT wxCommonInit();    // Call this from the platform's initialization
-
 // Force an exit from main loop
 void WXDLLEXPORT wxExit();
 
@@ -57,7 +55,7 @@ class WXDLLEXPORT wxApp: public wxEvtHandler
   virtual bool Pending() ;
   virtual void Dispatch() ;
 
-  virtual void OnIdle(wxIdleEvent& event);
+  void OnIdle(wxIdleEvent& event);
 
 // Generic
   virtual bool OnInit() { return FALSE; };
@@ -130,8 +128,9 @@ protected:
 public:
 
   // Implementation
-  static void CommonInit();
-  static void CommonCleanUp();
+  static bool Initialize();
+  static void CleanUp();
+
   void DeletePendingObjects();
   bool ProcessIdle();