case wxSYS_COLOUR_HIGHLIGHT:
-#if 0 && (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3)
+#if 0
// NB: enable this case as desired
colorBrushID = kThemeBrushAlternatePrimaryHighlightColor;
#else
#endif
GetThemeBrushAsColor( colorBrushID, 32, true, &macRGB );
- resultColor = wxColor( macRGB.red >> 8, macRGB.green >> 8, macRGB.blue >> 8 );
+ resultColor = wxColor( macRGB );
break ;
case wxSYS_COLOUR_BTNHIGHLIGHT:
break ;
case wxSYS_COLOUR_HIGHLIGHTTEXT :
-#if 0 && (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3)
+#if 0
// NB: enable this case as desired
resultColor = *wxWHITE ;
#else
// TODO: case wxSYS_NETWORK_PRESENT:
// TODO: case wxSYS_SHOW_SOUNDS:
+ case wxSYS_DCLICK_MSEC:
+ return (int)(GetDblTime() * 1000. / 60.);
+
default:
// unsupported metric
break;