implemented display mode setting

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12299 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-11-04 00:00:36 +00:00
parent c358c6601f
commit 634f6a1f0a
3 changed files with 31 additions and 8 deletions

View 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[]);