1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/settings.h"
13 #include "wx/gdicmn.h"
16 #include "wx/mac/uma.h"
18 // ----------------------------------------------------------------------------
19 // wxSystemSettingsNative
20 // ----------------------------------------------------------------------------
22 // ----------------------------------------------------------------------------
24 // ----------------------------------------------------------------------------
26 wxColour
wxSystemSettingsNative::GetColour(wxSystemColour index
)
29 wxGetOsVersion( &major
, &minor
);
33 case wxSYS_COLOUR_SCROLLBAR
:
34 case wxSYS_COLOUR_BACKGROUND
:
35 case wxSYS_COLOUR_ACTIVECAPTION
:
36 case wxSYS_COLOUR_INACTIVECAPTION
:
37 case wxSYS_COLOUR_MENU
:
38 case wxSYS_COLOUR_WINDOW
:
39 case wxSYS_COLOUR_WINDOWFRAME
:
40 case wxSYS_COLOUR_ACTIVEBORDER
:
41 case wxSYS_COLOUR_INACTIVEBORDER
:
42 case wxSYS_COLOUR_BTNFACE
:
43 case wxSYS_COLOUR_MENUBAR
:
44 return wxColor( 0xDD , 0xDD , 0xDD ) ;
47 case wxSYS_COLOUR_LISTBOX
:
52 return wxColor( 0xEE , 0xEE , 0xEE ) ;
55 case wxSYS_COLOUR_BTNSHADOW
:
57 return wxColor( 0xBE , 0xBE , 0xBE ) ;
59 return wxColor( 0x44 , 0x44 , 0x44 ) ;
62 case wxSYS_COLOUR_BTNTEXT
:
63 case wxSYS_COLOUR_MENUTEXT
:
64 case wxSYS_COLOUR_WINDOWTEXT
:
65 case wxSYS_COLOUR_CAPTIONTEXT
:
66 case wxSYS_COLOUR_INFOTEXT
:
67 case wxSYS_COLOUR_INACTIVECAPTIONTEXT
:
70 case wxSYS_COLOUR_HIGHLIGHT
:
73 LMGetHiliteRGB(&hilite
) ;
74 return wxColor( hilite
.red
>> 8 , hilite
.green
>> 8 , hilite
.blue
>> 8 ) ;
77 case wxSYS_COLOUR_BTNHIGHLIGHT
:
78 case wxSYS_COLOUR_GRAYTEXT
:
79 return wxColor( 0xCC , 0xCC , 0xCC ) ;
82 case wxSYS_COLOUR_3DDKSHADOW
:
83 return wxColor( 0x44 , 0x44 , 0x44 ) ;
85 case wxSYS_COLOUR_3DLIGHT
:
86 return wxColor( 0xCC , 0xCC , 0xCC ) ;
88 case wxSYS_COLOUR_HIGHLIGHTTEXT
:
91 LMGetHiliteRGB(&hilite
) ;
92 if ( ( hilite
.red
+ hilite
.green
+ hilite
.blue
) == 0 )
98 case wxSYS_COLOUR_INFOBK
:
99 case wxSYS_COLOUR_APPWORKSPACE
:
103 case wxSYS_COLOUR_HOTLIGHT
:
104 case wxSYS_COLOUR_GRADIENTACTIVECAPTION
:
105 case wxSYS_COLOUR_GRADIENTINACTIVECAPTION
:
106 case wxSYS_COLOUR_MENUHILIGHT
:
110 case wxSYS_COLOUR_MAX
:
111 wxFAIL_MSG( _T("unknown system colour index") );
117 // ----------------------------------------------------------------------------
119 // ----------------------------------------------------------------------------
121 wxFont
wxSystemSettingsNative::GetFont(wxSystemFont index
)
125 case wxSYS_ANSI_VAR_FONT
:
126 case wxSYS_SYSTEM_FONT
:
127 case wxSYS_DEVICE_DEFAULT_FONT
:
128 case wxSYS_DEFAULT_GUI_FONT
:
130 return *wxSMALL_FONT
;
133 case wxSYS_OEM_FIXED_FONT
:
134 case wxSYS_ANSI_FIXED_FONT
:
135 case wxSYS_SYSTEM_FIXED_FONT
:
138 return *wxNORMAL_FONT
;
143 return *wxNORMAL_FONT
;
146 // ----------------------------------------------------------------------------
147 // system metrics/features
148 // ----------------------------------------------------------------------------
150 // Get a system metric, e.g. scrollbar size
151 int wxSystemSettingsNative::GetMetric(wxSystemMetric index
, wxWindow
* WXUNUSED(win
))
157 case wxSYS_MOUSE_BUTTONS
:
158 // we emulate a two button mouse (ctrl + click = right button )
161 // TODO case wxSYS_BORDER_X:
162 // TODO case wxSYS_BORDER_Y:
163 // TODO case wxSYS_CURSOR_X:
164 // TODO case wxSYS_CURSOR_Y:
165 // TODO case wxSYS_DCLICK_X:
166 // TODO case wxSYS_DCLICK_Y:
167 // TODO case wxSYS_DRAG_X:
168 // TODO case wxSYS_DRAG_Y:
169 // TODO case wxSYS_EDGE_X:
170 // TODO case wxSYS_EDGE_Y:
172 case wxSYS_HSCROLL_ARROW_X
:
174 case wxSYS_HSCROLL_ARROW_Y
:
179 // TODO case wxSYS_ICON_X:
180 // TODO case wxSYS_ICON_Y:
181 // TODO case wxSYS_ICONSPACING_X:
182 // TODO case wxSYS_ICONSPACING_Y:
183 // TODO case wxSYS_WINDOWMIN_X:
184 // TODO case wxSYS_WINDOWMIN_Y:
187 wxDisplaySize(&value
, NULL
);
190 wxDisplaySize(NULL
, &value
);
193 // TODO case wxSYS_FRAMESIZE_X:
194 // TODO case wxSYS_FRAMESIZE_Y:
195 // TODO case wxSYS_SMALLICON_X:
196 // TODO case wxSYS_SMALLICON_Y:
198 case wxSYS_HSCROLL_Y
:
200 case wxSYS_VSCROLL_X
:
202 case wxSYS_VSCROLL_ARROW_X
:
204 case wxSYS_VSCROLL_ARROW_Y
:
209 // TODO case wxSYS_CAPTION_Y:
210 // TODO case wxSYS_MENU_Y:
211 // TODO case wxSYS_NETWORK_PRESENT:
213 case wxSYS_PENWINDOWS_PRESENT
:
216 // TODO case wxSYS_SHOW_SOUNDS:
218 case wxSYS_SWAP_BUTTONS
:
222 return -1; // unsupported metric
227 bool wxSystemSettingsNative::HasFeature(wxSystemFeature index
)
231 case wxSYS_CAN_ICONIZE_FRAME
:
232 case wxSYS_CAN_DRAW_FRAME_DECORATIONS
: