]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/app.h
Added code to look up main program symbols - unix only. PLEASE FIX FOR MSW.
[wxWidgets.git] / include / wx / gtk / app.h
index ac36884cfe6c8302d6bbc9c4072b011d8fe7d5e3..dbf52b110cb1344660f553d7ab83000bdfa59e32 100644 (file)
@@ -104,9 +104,11 @@ class wxApp: public wxEvtHandler
     void SetPrintMode( int WXUNUSED(mode) ) {}
     int GetPrintMode() const { return wxPRINT_POSTSCRIPT; }
 
+#if wxUSE_LOG
     /* override this function to create default log target of arbitrary
      * user-defined classv (default implementation creates a wxLogGui object) */
     virtual wxLog *CreateLogTarget();
+#endif // wxUSE_LOG
 
   // implementation 
 
@@ -120,12 +122,19 @@ class wxApp: public wxEvtHandler
 #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;
     wxWindow       *m_topWindow;
     
     gint            m_idleTag;
+#if wxUSE_THREADS
+    gint            m_wakeUpTimerTag;
+#endif
     unsigned char  *m_colorCube;
 
     int             argc;
@@ -136,7 +145,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()
 };