]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mgl/app.h
Fix so the Host: header in wxHTTP really works. With virtual hosts it
[wxWidgets.git] / include / wx / mgl / app.h
index 8cb604c6a13879d74274d1141083ed41e8e45e24..0afeceeb9761e92d2624f64eefcbdb1d075729ae 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:
 // Author:      Vaclav Slavik
 // Id:          $Id$
-// Copyright:   (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
+// Copyright:   (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -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[]);