]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/app.h
wxGLCanvas works again
[wxWidgets.git] / include / wx / gtk1 / app.h
index 365c08f90a29394176c0e1ab06acecded9fd3d87..38f8a5a5d7fc15a779233b4d17260e35a4c3cbe9 100644 (file)
@@ -115,8 +115,15 @@ class wxApp: public wxEvtHandler
     static void CleanUp();
 
     bool ProcessIdle();
+#if wxUSE_THREADS
+    void ProcessPendingEvents();
+#endif
     void DeletePendingObjects();
 
+    /// This can be used to suppress the generation of Idle events.
+    inline void SuppressIdleEvents(bool arg = TRUE) { m_suppressIdleEvents = arg; }
+    inline bool GetSuppressIdleEvents() const { return m_suppressIdleEvents; }
+    
     bool            m_initialized;
     bool            m_exitOnFrameDelete;
     bool            m_wantDebugOutput;
@@ -133,7 +140,9 @@ class wxApp: public wxEvtHandler
     wxString        m_className;
 
     static wxAppInitializerFunction m_appInitFn;
-    
+ private:
+    /// Set to TRUE while we are in wxYield().
+    bool m_suppressIdleEvents;
   DECLARE_EVENT_TABLE()
 };