X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7bdc18790e34d17edfc02f3e25edcb3425b38a8a..763141418818d2fe0dbdc8ce6d9f654700f1fe33:/include/wx/mgl/app.h diff --git a/include/wx/mgl/app.h b/include/wx/mgl/app.h index 8cb604c6a1..529e61da5b 100644 --- a/include/wx/mgl/app.h +++ b/include/wx/mgl/app.h @@ -23,6 +23,7 @@ class WXDLLEXPORT wxApp; class WXDLLEXPORT wxLog; +class WXDLLEXPORT wxEventLoop; //----------------------------------------------------------------------------- // wxApp @@ -60,9 +61,17 @@ public: bool ProcessIdle(); void DeletePendingObjects(); + virtual bool Yield(bool onlyIfNeeded = FALSE); + + virtual wxDisplayModeInfo GetDisplayMode() const { return m_displayMode; } + virtual bool SetDisplayMode(const wxDisplayModeInfo& mode); + private: DECLARE_DYNAMIC_CLASS(wxApp) DECLARE_EVENT_TABLE() + + wxEventLoop *m_mainLoop; + wxDisplayModeInfo m_displayMode; }; int WXDLLEXPORT wxEntry(int argc, char *argv[]);