]> git.saurik.com Git - wxWidgets.git/commitdiff
Added some placeholders...
authorRyan Norton <wxprojects@comcast.net>
Sat, 13 Dec 2003 03:53:08 +0000 (03:53 +0000)
committerRyan Norton <wxprojects@comcast.net>
Sat, 13 Dec 2003 03:53:08 +0000 (03:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24800 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/unix/displayx11.h
src/unix/displayx11.cpp

index 969049129f545326f6b9bb6987690c6fb3994d12..4bb0cdc8f49f80c2cb16cd90a50cde513bac2ee7 100644 (file)
@@ -31,6 +31,12 @@ class WXDLLEXPORT wxDisplay : public wxDisplayBase
     virtual wxRect GetGeometry() const;
     virtual int GetDepth() const;
     virtual wxString GetName() const;
+    virtual wxArrayVideoModes
+        GetModes(const wxVideoMode& mode = wxDefaultVideoMode) const;
+
+    virtual wxVideoMode GetCurrentMode() const;
+
+    virtual bool ChangeMode(const wxVideoMode& mode = wxDefaultVideoMode);
 
     ~wxDisplay();
 
index 20cd747e13dc594a037b395968f3970a05733e08..ae0a57d1399b662b2fa6cb30ab8bc661caaa43ec 100644 (file)
@@ -101,7 +101,7 @@ int wxDisplayBase::GetFromPoint(const wxPoint &p)
         return 0;
     }
 
-    return -1
+    return -1;
   }
 }
 
@@ -147,5 +147,23 @@ wxString wxDisplay::GetName() const
   return wxEmptyString;
 }
 
+ wxArrayVideoModes
+    wxDisplay::GetModes(const wxVideoMode& mode) const
+{
+    // Not implemented
+    return wxArrayVideoModes();
+}
+
+wxVideoMode wxDisplay::GetCurrentMode() const
+{
+    // Not implemented
+    return wxVideoMode();
+}
+
+bool wxDisplay::ChangeMode(const wxVideoMode& mode)
+{
+    // Not implemented
+    return false;
+}
 #endif /* wxUSE_DISPLAY */