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"
22 #include "wx/fontenum.h"
24 // ----------------------------------------------------------------------------
25 // wxSystemSettingsNative
26 // ----------------------------------------------------------------------------
28 // ----------------------------------------------------------------------------
30 // ----------------------------------------------------------------------------
32 wxColour
wxSystemSettingsNative::GetColour(wxSystemColour index
)
35 #if wxOSX_USE_COCOA_OR_CARBON
36 ThemeBrush colorBrushID
;
41 case wxSYS_COLOUR_WINDOW
:
42 #if wxOSX_USE_COCOA_OR_CARBON
43 resultColor
= wxColour(wxMacCreateCGColorFromHITheme( 15 /* kThemeBrushDocumentWindowBackground */ )) ;
45 resultColor
= *wxWHITE
;
48 case wxSYS_COLOUR_SCROLLBAR
:
49 case wxSYS_COLOUR_BACKGROUND
:
50 case wxSYS_COLOUR_ACTIVECAPTION
:
51 case wxSYS_COLOUR_INACTIVECAPTION
:
52 case wxSYS_COLOUR_MENU
:
53 case wxSYS_COLOUR_WINDOWFRAME
:
54 case wxSYS_COLOUR_ACTIVEBORDER
:
55 case wxSYS_COLOUR_INACTIVEBORDER
:
56 case wxSYS_COLOUR_BTNFACE
:
57 case wxSYS_COLOUR_MENUBAR
:
58 #if wxOSX_USE_COCOA_OR_CARBON
59 resultColor
= wxColour(wxMacCreateCGColorFromHITheme( 3 /* kThemeBrushDialogBackgroundActive */));
61 resultColor
= wxColour( 0xBE, 0xBE, 0xBE ) ;
65 case wxSYS_COLOUR_LISTBOX
:
66 resultColor
= *wxWHITE
;
69 case wxSYS_COLOUR_BTNSHADOW
:
70 resultColor
= wxColour( 0xBE, 0xBE, 0xBE );
73 case wxSYS_COLOUR_BTNTEXT
:
74 case wxSYS_COLOUR_MENUTEXT
:
75 case wxSYS_COLOUR_WINDOWTEXT
:
76 case wxSYS_COLOUR_CAPTIONTEXT
:
77 case wxSYS_COLOUR_INFOTEXT
:
78 case wxSYS_COLOUR_INACTIVECAPTIONTEXT
:
79 case wxSYS_COLOUR_LISTBOXTEXT
:
80 resultColor
= *wxBLACK
;
83 case wxSYS_COLOUR_HIGHLIGHT
:
85 #if wxOSX_USE_COCOA_OR_CARBON
87 // NB: enable this case as desired
88 colorBrushID
= kThemeBrushAlternatePrimaryHighlightColor
;
90 colorBrushID
= -3 /* kThemeBrushPrimaryHighlightColor */;
92 resultColor
= wxColour( wxMacCreateCGColorFromHITheme(colorBrushID
) );
94 resultColor
= wxColor( 0xCC, 0xCC, 0xFF );
99 case wxSYS_COLOUR_BTNHIGHLIGHT
:
100 case wxSYS_COLOUR_GRAYTEXT
:
101 resultColor
= wxColor( 0xCC, 0xCC, 0xCC );
104 case wxSYS_COLOUR_3DDKSHADOW
:
105 resultColor
= wxColor( 0x44, 0x44, 0x44 );
108 case wxSYS_COLOUR_3DLIGHT
:
109 resultColor
= wxColor( 0xCC, 0xCC, 0xCC );
112 case wxSYS_COLOUR_HIGHLIGHTTEXT
:
113 #if wxOSX_USE_COCOA_OR_CARBON
115 wxColour
highlightcolor( wxMacCreateCGColorFromHITheme(-3 /* kThemeBrushPrimaryHighlightColor */) );
116 if ((highlightcolor
.Red() + highlightcolor
.Green() + highlightcolor
.Blue() ) == 0)
117 resultColor
= *wxWHITE
;
119 resultColor
= *wxBLACK
;
122 resultColor
= *wxWHITE
;
126 case wxSYS_COLOUR_INFOBK
:
127 // we don't have a way to detect tooltip color, so use the
128 // standard value used at least on 10.4:
129 resultColor
= wxColour( 0xFF, 0xFF, 0xD3 ) ;
131 case wxSYS_COLOUR_APPWORKSPACE
:
132 resultColor
= wxColor( 0x80, 0x80, 0x80 ); ;
135 case wxSYS_COLOUR_HOTLIGHT
:
136 case wxSYS_COLOUR_GRADIENTACTIVECAPTION
:
137 case wxSYS_COLOUR_GRADIENTINACTIVECAPTION
:
138 case wxSYS_COLOUR_MENUHILIGHT
:
140 resultColor
= *wxBLACK
;
143 // case wxSYS_COLOUR_MAX:
145 resultColor
= *wxWHITE
;
146 // wxCHECK_MSG( index >= wxSYS_COLOUR_MAX, false, _T("unknown system colour index") );
150 //wxASSERT(resultColor.IsOk());
155 // ----------------------------------------------------------------------------
157 // ----------------------------------------------------------------------------
159 wxFont
wxSystemSettingsNative::GetFont(wxSystemFont index
)
165 case wxSYS_ANSI_VAR_FONT
:
166 case wxSYS_SYSTEM_FONT
:
167 case wxSYS_DEVICE_DEFAULT_FONT
:
168 case wxSYS_DEFAULT_GUI_FONT
:
169 font
= *wxSMALL_FONT
;
173 font
= *wxNORMAL_FONT
;
177 //wxASSERT(font.IsOk() && wxFontEnumerator::IsValidFacename(font.GetFaceName()));
182 // ----------------------------------------------------------------------------
183 // system metrics/features
184 // ----------------------------------------------------------------------------
186 // Get a system metric, e.g. scrollbar size
187 int wxSystemSettingsNative::GetMetric(wxSystemMetric index
, wxWindow
* WXUNUSED(win
))
193 case wxSYS_MOUSE_BUTTONS
:
194 // we emulate a two button mouse (ctrl + click = right button)
197 // TODO case wxSYS_BORDER_X:
198 // TODO case wxSYS_BORDER_Y:
199 // TODO case wxSYS_CURSOR_X:
200 // TODO case wxSYS_CURSOR_Y:
201 // TODO case wxSYS_DCLICK_X:
202 // TODO case wxSYS_DCLICK_Y:
203 // TODO case wxSYS_DRAG_X:
204 // TODO case wxSYS_DRAG_Y:
205 // TODO case wxSYS_EDGE_X:
206 // TODO case wxSYS_EDGE_Y:
208 case wxSYS_HSCROLL_ARROW_X
:
209 case wxSYS_HSCROLL_ARROW_Y
:
213 // TODO case wxSYS_ICON_X:
214 // TODO case wxSYS_ICON_Y:
215 // TODO case wxSYS_ICONSPACING_X:
216 // TODO case wxSYS_ICONSPACING_Y:
217 // TODO case wxSYS_WINDOWMIN_X:
218 // TODO case wxSYS_WINDOWMIN_Y:
221 wxDisplaySize( &value
, NULL
);
225 wxDisplaySize( NULL
, &value
);
228 // TODO case wxSYS_FRAMESIZE_X:
229 // TODO case wxSYS_FRAMESIZE_Y:
230 // TODO case wxSYS_SMALLICON_X:
231 // TODO case wxSYS_SMALLICON_Y:
233 case wxSYS_HSCROLL_Y
:
234 case wxSYS_VSCROLL_X
:
235 case wxSYS_VSCROLL_ARROW_X
:
236 case wxSYS_VSCROLL_ARROW_Y
:
240 case wxSYS_PENWINDOWS_PRESENT
:
243 case wxSYS_SWAP_BUTTONS
:
246 // TODO: case wxSYS_CAPTION_Y:
247 // TODO: case wxSYS_MENU_Y:
248 // TODO: case wxSYS_NETWORK_PRESENT:
249 // TODO: case wxSYS_SHOW_SOUNDS:
251 case wxSYS_DCLICK_MSEC
:
253 return (int)(GetDblTime() * 1000. / 60.);
255 // default on mac is 30 ticks, we shouldn't really use wxSYS_DCLICK_MSEC anyway
256 // but rather rely on the 'click-count' by the system delivered in a mouse event
260 // unsupported metric
267 bool wxSystemSettingsNative::HasFeature(wxSystemFeature index
)
271 case wxSYS_CAN_ICONIZE_FRAME
:
272 case wxSYS_CAN_DRAW_FRAME_DECORATIONS
: