+ // Get system screen design (desktop, pda, ..) used for
+ // laying out various dialogs.
+ static wxSystemScreenType GetScreenType();
+
+ // Override default.
+ static void SetScreenType( wxSystemScreenType screen );
+
+ // Value
+ static wxSystemScreenType ms_screen;
+
+
+ // 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); }
+};