X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7214297d16aed4c160c1cbef6b19f153ca065ab7..6db90681cf0b58209a061561f5d3624f6eda8024:/include/wx/gtk/app.h diff --git a/include/wx/gtk/app.h b/include/wx/gtk/app.h index ac36884cfe..03b53e2440 100644 --- a/include/wx/gtk/app.h +++ b/include/wx/gtk/app.h @@ -120,12 +120,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 +143,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() };