]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/settings.cpp
show the standard wxWin fonts (modified patch 530698)
[wxWidgets.git] / src / os2 / settings.cpp
index 7983add4ee62cb342a436146a14a53d7a9bbfca9..1dc15fcfac546e0ce737d7610d8dd54c6ea079e5 100644 (file)
@@ -18,6 +18,7 @@
 #include "wx/pen.h"
 #include "wx/brush.h"
 #include "wx/gdicmn.h"
+#include "wx/module.h"
 #endif
 
 #include "wx/settings.h"
@@ -71,8 +72,8 @@ void wxSystemSettingsModule::OnExit()
     delete gs_fontDefault;
 }
 
-wxColour wxSystemSettings::GetSystemColour(
-  int                               nIndex
+wxColour wxSystemSettingsNative::GetColour(
+  wxSystemColour                    nIndex
 )
 {
     COLORREF                        vRef;
@@ -199,9 +200,11 @@ wxColour wxSystemSettings::GetSystemColour(
             break;
     }
     return(vCol);
-} // end of wxSystemSettings::GetSystemColour
+} // end of wxSystemSettingsNative::GetColour
 
-wxFont wxSystemSettings::GetSystemFont(int index)
+wxFont wxSystemSettingsNative::GetFont(
+  wxSystemFont                      index
+)
 {
     // TODO
     switch (index)
@@ -235,7 +238,9 @@ wxFont wxSystemSettings::GetSystemFont(int index)
 }
 
 // Get a system metric, e.g. scrollbar size
-int wxSystemSettings::GetSystemMetric(int index)
+int wxSystemSettingsNative::GetMetric(
+  wxSystemMetric                    index
+)
 {
     switch ( index)
     {
@@ -356,3 +361,20 @@ int wxSystemSettings::GetSystemMetric(int index)
     return 0;
 }
 
+bool wxSystemSettingsNative::HasFeature(
+  wxSystemFeature                   index
+)
+{
+    switch (index)
+    {
+        case wxSYS_CAN_ICONIZE_FRAME:
+            return TRUE;
+
+        case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
+            return FALSE;
+
+        default:
+            return FALSE;
+    }
+    return FALSE;
+}