]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mgl/settings.h
compilation warning (and possible bug) fix
[wxWidgets.git] / include / wx / mgl / settings.h
index 78204b3f0730b1217af033112ab48258383ed007..49ca2427b15e63a23cd53f7ec55b8458d4de7321 100644 (file)
@@ -1,9 +1,8 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        settings.h
-// Purpose:
-// Author:      Robert Roebling
+// Author:      Vaclav Slavik
 // Id:          $Id$
-// Copyright:   (c) 1998 Robert Roebling
+// Copyright:   (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 class wxSystemSettings: public wxObject
 {
 public:
-    inline wxSystemSettings() {}
+    wxSystemSettings() {}
 
-    inline static void Init() {}
+    static void Init() {}
     static void Done() {}
 
     // Get a system colour
-    static wxColour    GetSystemColour(int index) {}
+    static wxColour GetSystemColour(int index);
 
     // Get a system font
-    static wxFont      GetSystemFont(int index) {}
+    static wxFont GetSystemFont(int index);
 
     // Get a system metric, e.g. scrollbar size
-    static int         GetSystemMetric(int index) {}
+    static int GetSystemMetric(int index);
+    
+    // Return true if the port has certain feature
+    static bool GetCapability(int index);
 };
 
 #endif