]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_settings.i
Warning fixes after char->wxChar in wxVariant.
[wxWidgets.git] / wxPython / src / _settings.i
index 952189fb328345d51d432be7e2c76f4c938055ff..f45d1fe3b9b0babdc9ceb76d3778dd250debe81b 100644 (file)
@@ -129,7 +129,8 @@ enum wxSystemMetric
 enum wxSystemFeature
 {
     wxSYS_CAN_DRAW_FRAME_DECORATIONS = 1,
-    wxSYS_CAN_ICONIZE_FRAME
+    wxSYS_CAN_ICONIZE_FRAME,
+    wxSYS_TABLET_PRESENT 
 };
 
 
@@ -199,8 +200,15 @@ public:
     static wxString GetOption(const wxString& name) ;
     static int GetOptionInt(const wxString& name) ;
     static bool HasOption(const wxString& name) ;
+    static bool IsFalse(const wxString& name);
 };
 
 
 
+%pythoncode {
+    %# Until the new native control for wxMac is up to par, still use the generic one.
+    SystemOptions.SetOptionInt("mac.listctrl.always_use_generic", 1)
+}
+
+
 //---------------------------------------------------------------------------