]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mgl/app.h
Applied wxImage -> wxCursor patch, tool window event table fix
[wxWidgets.git] / include / wx / mgl / app.h
index 526328c674388b2f03a0ac6ed0b9849bd82a6ca5..529e61da5ba8d5fb4bf378880dd0436d14366d4b 100644 (file)
@@ -24,7 +24,6 @@
 class WXDLLEXPORT wxApp;
 class WXDLLEXPORT wxLog;
 class WXDLLEXPORT wxEventLoop;
-class WXDLLEXPORT wxDesktopWindow;
 
 //-----------------------------------------------------------------------------
 // wxApp
@@ -64,11 +63,15 @@ public:
 
     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[]);