1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/carbon/settings.cpp
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
14 #include "wx/settings.h"
18 #include "wx/gdicmn.h"
21 #include "wx/osx/private.h"
23 // ----------------------------------------------------------------------------
24 // wxSystemSettingsNative
25 // ----------------------------------------------------------------------------
27 // ----------------------------------------------------------------------------
29 // ----------------------------------------------------------------------------
31 wxColour
wxSystemSettingsNative::GetColour(wxSystemColour index
)
34 #if wxOSX_USE_COCOA_OR_CARBON
35 ThemeBrush colorBrushID
;
40 case wxSYS_COLOUR_WINDOW
:
41 #if wxOSX_USE_COCOA_OR_CARBON
42 resultColor
= wxColour(wxMacCreateCGColorFromHITheme( 15 /* kThemeBrushDocumentWindowBackground */ )) ;
44 resultColor
= *wxWHITE
;
47 case wxSYS_COLOUR_SCROLLBAR
:
48 case wxSYS_COLOUR_BACKGROUND
:
49 case wxSYS_COLOUR_ACTIVECAPTION
:
50 case wxSYS_COLOUR_INACTIVECAPTION
:
51 case wxSYS_COLOUR_MENU
:
52 case wxSYS_COLOUR_WINDOWFRAME
:
53 case wxSYS_COLOUR_ACTIVEBORDER
:
54 case wxSYS_COLOUR_INACTIVEBORDER
:
55 case wxSYS_COLOUR_BTNFACE
:
56 case wxSYS_COLOUR_MENUBAR
:
57 #if wxOSX_USE_COCOA_OR_CARBON
58 resultColor
= wxColour(wxMacCreateCGColorFromHITheme( 3 /* kThemeBrushDialogBackgroundActive */));
60 resultColor
= wxColour( 0xBE, 0xBE, 0xBE ) ;
64 case wxSYS_COLOUR_LISTBOX
:
65 resultColor
= *wxWHITE
;
68 case wxSYS_COLOUR_BTNSHADOW
:
69 resultColor
= wxColour( 0xBE, 0xBE, 0xBE );
72 case wxSYS_COLOUR_BTNTEXT
:
73 case wxSYS_COLOUR_MENUTEXT
:
74 case wxSYS_COLOUR_WINDOWTEXT
:
75 case wxSYS_COLOUR_CAPTIONTEXT
:
76 case wxSYS_COLOUR_INFOTEXT
:
77 case wxSYS_COLOUR_INACTIVECAPTIONTEXT
:
78 resultColor
= *wxBLACK
;
81 case wxSYS_COLOUR_HIGHLIGHT
:
83 #if wxOSX_USE_COCOA_OR_CARBON
85 // NB: enable this case as desired
86 colorBrushID
= kThemeBrushAlternatePrimaryHighlightColor
;
88 colorBrushID
= -3 /* kThemeBrushPrimaryHighlightColor */;
90 resultColor
= wxColour( wxMacCreateCGColorFromHITheme(colorBrushID
) );
92 resultColor
= wxColor( 0xCC, 0xCC, 0xFF );
97 case wxSYS_COLOUR_BTNHIGHLIGHT
:
98 case wxSYS_COLOUR_GRAYTEXT
:
99 resultColor
= wxColor( 0xCC, 0xCC, 0xCC );
102 case wxSYS_COLOUR_3DDKSHADOW
:
103 resultColor
= wxColor( 0x44, 0x44, 0x44 );
106 case wxSYS_COLOUR_3DLIGHT
:
107 resultColor
= wxColor( 0xCC, 0xCC, 0xCC );
110 case wxSYS_COLOUR_HIGHLIGHTTEXT
:
111 #if wxOSX_USE_COCOA_OR_CARBON
113 wxColour
highlightcolor( wxMacCreateCGColorFromHITheme(-3 /* kThemeBrushPrimaryHighlightColor */) );
114 if ((highlightcolor
.Red() + highlightcolor
.Green() + highlightcolor
.Blue() ) == 0)
115 resultColor
= *wxWHITE
;
117 resultColor
= *wxBLACK
;
120 resultColor
= *wxWHITE
;
124 case wxSYS_COLOUR_INFOBK
:
125 // we don't have a way to detect tooltip color, so use the
126 // standard value used at least on 10.4:
127 resultColor
= wxColour( 0xFF, 0xFF, 0xD3 ) ;
129 case wxSYS_COLOUR_APPWORKSPACE
:
130 resultColor
= wxColor( 0x80, 0x80, 0x80 ); ;
133 case wxSYS_COLOUR_HOTLIGHT
:
134 case wxSYS_COLOUR_GRADIENTACTIVECAPTION
:
135 case wxSYS_COLOUR_GRADIENTINACTIVECAPTION
:
136 case wxSYS_COLOUR_MENUHILIGHT
:
138 resultColor
= *wxBLACK
;
141 // case wxSYS_COLOUR_MAX:
143 resultColor
= *wxWHITE
;
144 // wxCHECK_MSG( index >= wxSYS_COLOUR_MAX, false, _T("unknown system colour index") );
151 // ----------------------------------------------------------------------------
153 // ----------------------------------------------------------------------------
155 wxFont
wxSystemSettingsNative::GetFont(wxSystemFont index
)
159 case wxSYS_ANSI_VAR_FONT
:
160 case wxSYS_SYSTEM_FONT
:
161 case wxSYS_DEVICE_DEFAULT_FONT
:
162 case wxSYS_DEFAULT_GUI_FONT
:
163 return *wxSMALL_FONT
;
170 return *wxNORMAL_FONT
;
173 // ----------------------------------------------------------------------------
174 // system metrics/features
175 // ----------------------------------------------------------------------------
177 // Get a system metric, e.g. scrollbar size
178 int wxSystemSettingsNative::GetMetric(wxSystemMetric index
, wxWindow
* WXUNUSED(win
))
184 case wxSYS_MOUSE_BUTTONS
:
185 // we emulate a two button mouse (ctrl + click = right button)
188 // TODO case wxSYS_BORDER_X:
189 // TODO case wxSYS_BORDER_Y:
190 // TODO case wxSYS_CURSOR_X:
191 // TODO case wxSYS_CURSOR_Y:
192 // TODO case wxSYS_DCLICK_X:
193 // TODO case wxSYS_DCLICK_Y:
194 // TODO case wxSYS_DRAG_X:
195 // TODO case wxSYS_DRAG_Y:
196 // TODO case wxSYS_EDGE_X:
197 // TODO case wxSYS_EDGE_Y:
199 case wxSYS_HSCROLL_ARROW_X
:
200 case wxSYS_HSCROLL_ARROW_Y
:
204 // TODO case wxSYS_ICON_X:
205 // TODO case wxSYS_ICON_Y:
206 // TODO case wxSYS_ICONSPACING_X:
207 // TODO case wxSYS_ICONSPACING_Y:
208 // TODO case wxSYS_WINDOWMIN_X:
209 // TODO case wxSYS_WINDOWMIN_Y:
212 wxDisplaySize( &value
, NULL
);
216 wxDisplaySize( NULL
, &value
);
219 // TODO case wxSYS_FRAMESIZE_X:
220 // TODO case wxSYS_FRAMESIZE_Y:
221 // TODO case wxSYS_SMALLICON_X:
222 // TODO case wxSYS_SMALLICON_Y:
224 case wxSYS_HSCROLL_Y
:
225 case wxSYS_VSCROLL_X
:
226 case wxSYS_VSCROLL_ARROW_X
:
227 case wxSYS_VSCROLL_ARROW_Y
:
231 case wxSYS_PENWINDOWS_PRESENT
:
234 case wxSYS_SWAP_BUTTONS
:
237 // TODO: case wxSYS_CAPTION_Y:
238 // TODO: case wxSYS_MENU_Y:
239 // TODO: case wxSYS_NETWORK_PRESENT:
240 // TODO: case wxSYS_SHOW_SOUNDS:
242 case wxSYS_DCLICK_MSEC
:
244 return (int)(GetDblTime() * 1000. / 60.);
246 // default on mac is 30 ticks, we shouldn't really use wxSYS_DCLICK_MSEC anyway
247 // but rather rely on the 'click-count' by the system delivered in a mouse event
251 // unsupported metric
258 bool wxSystemSettingsNative::HasFeature(wxSystemFeature index
)
262 case wxSYS_CAN_ICONIZE_FRAME
:
263 case wxSYS_CAN_DRAW_FRAME_DECORATIONS
: