+ // TODO: case wxSYS_CAPTION_Y:
+ // TODO: case wxSYS_MENU_Y:
+ // TODO: case wxSYS_NETWORK_PRESENT:
+ // TODO: case wxSYS_SHOW_SOUNDS:
+
+ case wxSYS_DCLICK_MSEC:
+#ifdef __LP64__
+ // default on mac is 30 ticks, we shouldn't really use wxSYS_DCLICK_MSEC anyway
+ // but rather rely on the 'click-count' by the system delivered in a mouse event
+ return 500;
+#else
+ return (int)(GetDblTime() * 1000. / 60.);
+#endif