// return true if the port has certain feature
static bool HasFeature(wxSystemFeature index);
-
-
- // the backwards compatible versions, don't use these methods in the new
- // code!
- static wxColour GetSystemColour(int index)
- { return GetColour((wxSystemColour)index); }
- static wxFont GetSystemFont(int index)
- { return GetFont((wxSystemFont)index); }
- static int GetSystemMetric(int index)
- { return GetMetric((wxSystemMetric)index); }
};
// ----------------------------------------------------------------------------
// wxSystemSettingsNative
static wxColour GetColour(wxSystemColour index);
#endif // __WXUNIVERSAL__
+
+
+ // the backwards compatible versions of wxSystemSettingsNative functions,
+ // don't use these methods in the new code!
+ static wxColour GetSystemColour(int index)
+ { return GetColour((wxSystemColour)index); }
+ static wxFont GetSystemFont(int index)
+ { return GetFont((wxSystemFont)index); }
+ static int GetSystemMetric(int index)
+ { return GetMetric((wxSystemMetric)index); }
};
#endif