]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/app.h
reorganized/improved fixed size int types definitions; in particular use __int64...
[wxWidgets.git] / include / wx / gtk / app.h
index 1cda1b39eaab122ea7b3fdee7378a2d4ac2b327d..ad1496c96770b1d3bc1e7282f4a5c219c52f66bc 100644 (file)
@@ -10,7 +10,7 @@
 #ifndef __GTKAPPH__
 #define __GTKAPPH__
 
-#if defined(__GNUG__) && !defined(__APPLE__)
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma interface
 #endif
 
@@ -45,19 +45,13 @@ public:
     virtual void ExitMainLoop();
     virtual bool Initialized();
     virtual bool Pending();
-    virtual void Dispatch();
+    virtual bool Dispatch();
 
     virtual void Exit();
 
     virtual bool Yield(bool onlyIfNeeded = FALSE);
-    virtual bool ProcessIdle();
     virtual void WakeUpIdle();
 
-    // implementation only from now on
-    void OnIdle( wxIdleEvent &event );
-    bool SendIdleEvents();
-    bool SendIdleEvents( wxWindow* win );
-
     virtual bool Initialize(int& argc, wxChar **argv);
     virtual void CleanUp();
 
@@ -90,12 +84,8 @@ private:
     bool m_isInAssert;
 #endif // __WXDEBUG__
 
-    bool CallInternalIdle( wxWindow* win );
-
     DECLARE_DYNAMIC_CLASS(wxApp)
     DECLARE_EVENT_TABLE()
 };
 
-int WXDLLEXPORT wxEntry( int argc, char *argv[] );
-
 #endif // __GTKAPPH__