enum wxSystemFeature
{
wxSYS_CAN_DRAW_FRAME_DECORATIONS = 1,
- wxSYS_CAN_ICONIZE_FRAME
+ wxSYS_CAN_ICONIZE_FRAME,
+ wxSYS_TABLET_PRESENT
};
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)
+}
+
+
//---------------------------------------------------------------------------