1 /////////////////////////////////////////////////////////////////////////////
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
20 #include "wx/gdicmn.h"
21 #include "wx/module.h"
24 #include "wx/settings.h"
25 #include "wx/window.h"
26 #include "wx/os2/private.h"
28 // the module which is used to clean up wxSystemSettings data (this is a
29 // singleton class so it can't be done in the dtor)
30 class wxSystemSettingsModule
: public wxModule
32 friend class wxSystemSettings
;
34 virtual bool OnInit();
35 virtual void OnExit();
38 DECLARE_DYNAMIC_CLASS(wxSystemSettingsModule
)
40 static wxArrayString sm_optionNames
;
41 static wxArrayString sm_optionValues
;
44 // ----------------------------------------------------------------------------
46 // ----------------------------------------------------------------------------
48 static wxFont
*gs_fontDefault
= NULL
;
50 // ============================================================================
52 // ============================================================================
54 // ----------------------------------------------------------------------------
55 // wxSystemSettingsModule
56 // ----------------------------------------------------------------------------
58 IMPLEMENT_DYNAMIC_CLASS(wxSystemSettingsModule
, wxModule
)
60 wxArrayString
wxSystemSettingsModule::sm_optionNames
;
61 wxArrayString
wxSystemSettingsModule::sm_optionValues
;
63 bool wxSystemSettingsModule::OnInit()
68 void wxSystemSettingsModule::OnExit()
70 sm_optionNames
.Clear();
71 sm_optionValues
.Clear();
72 delete gs_fontDefault
;
75 wxColour
wxSystemSettingsNative::GetColour(
84 // PM actually has values for these
86 case wxSYS_COLOUR_WINDOW
:
87 vRef
= (ULONG
)::WinQuerySysColor( HWND_DESKTOP
91 vCol
.Set( GetRValue(vRef
)
97 case wxSYS_COLOUR_WINDOWFRAME
:
98 vRef
= (ULONG
)::WinQuerySysColor( HWND_DESKTOP
102 vCol
.Set( GetRValue(vRef
)
108 case wxSYS_COLOUR_MENUTEXT
:
109 vRef
= (ULONG
)::WinQuerySysColor( HWND_DESKTOP
113 vCol
.Set( GetRValue(vRef
)
119 case wxSYS_COLOUR_BTNFACE
:
120 vRef
= (ULONG
)::WinQuerySysColor( HWND_DESKTOP
121 ,SYSCLR_BUTTONDEFAULT
124 vCol
.Set( GetRValue(vRef
)
130 case wxSYS_COLOUR_BTNSHADOW
:
131 vRef
= (ULONG
)::WinQuerySysColor( HWND_DESKTOP
135 vCol
.Set( GetRValue(vRef
)
141 case wxSYS_COLOUR_BTNHIGHLIGHT
:
142 vRef
= (ULONG
)::WinQuerySysColor( HWND_DESKTOP
146 vCol
.Set( GetRValue(vRef
)
152 case wxSYS_COLOUR_BTNDARKSHADOW
:
153 vRef
= (ULONG
)::WinQuerySysColor( HWND_DESKTOP
157 vCol
.Set( GetRValue(vRef
)
163 case wxSYS_COLOUR_MENUBAR
:
164 vRef
= (ULONG
)::WinQuerySysColor( HWND_DESKTOP
168 vCol
.Set( GetRValue(vRef
)
175 // We'll have to just give values to these
177 case wxSYS_COLOUR_LISTBOX
:
178 case wxSYS_COLOUR_CAPTIONTEXT
:
182 case wxSYS_COLOUR_WINDOWTEXT
:
183 case wxSYS_COLOUR_INACTIVECAPTIONTEXT
:
184 case wxSYS_COLOUR_BTNTEXT
:
185 case wxSYS_COLOUR_INFOTEXT
:
190 // We should customize these to look like other ports
193 case wxSYS_COLOUR_ACTIVECAPTION
:
194 case wxSYS_COLOUR_ACTIVEBORDER
:
195 case wxSYS_COLOUR_HIGHLIGHT
:
199 case wxSYS_COLOUR_SCROLLBAR
:
200 case wxSYS_COLOUR_BACKGROUND
:
201 case wxSYS_COLOUR_INACTIVECAPTION
:
202 case wxSYS_COLOUR_MENU
:
203 case wxSYS_COLOUR_INACTIVEBORDER
:
204 case wxSYS_COLOUR_APPWORKSPACE
:
205 case wxSYS_COLOUR_HIGHLIGHTTEXT
:
206 case wxSYS_COLOUR_GRAYTEXT
:
207 case wxSYS_COLOUR_3DDKSHADOW
:
208 case wxSYS_COLOUR_3DLIGHT
:
209 case wxSYS_COLOUR_INFOBK
:
210 vCol
= (*wxLIGHT_GREY
);
214 vRef
= (ULONG
)::WinQuerySysColor( HWND_DESKTOP
218 vCol
.Set( GetRValue(vRef
)
225 } // end of wxSystemSettingsNative::GetColour
227 wxFont
wxSystemSettingsNative::GetFont(
234 case wxSYS_DEVICE_DEFAULT_FONT
:
238 case wxSYS_DEFAULT_PALETTE
:
242 case wxSYS_SYSTEM_FIXED_FONT
:
246 case wxSYS_SYSTEM_FONT
:
251 case wxSYS_DEFAULT_GUI_FONT
:
257 return *wxSWISS_FONT
;
262 // Get a system metric, e.g. scrollbar size
263 int wxSystemSettingsNative::GetMetric(
269 case wxSYS_MOUSE_BUTTONS
:
302 case wxSYS_HSCROLL_ARROW_X
:
305 case wxSYS_HSCROLL_ARROW_Y
:
317 case wxSYS_ICONSPACING_X
:
320 case wxSYS_ICONSPACING_Y
:
323 case wxSYS_WINDOWMIN_X
:
326 case wxSYS_WINDOWMIN_Y
:
335 case wxSYS_FRAMESIZE_X
:
338 case wxSYS_FRAMESIZE_Y
:
341 case wxSYS_SMALLICON_X
:
344 case wxSYS_SMALLICON_Y
:
347 case wxSYS_HSCROLL_Y
:
350 case wxSYS_VSCROLL_X
:
353 case wxSYS_VSCROLL_ARROW_X
:
356 case wxSYS_VSCROLL_ARROW_Y
:
362 case wxSYS_CAPTION_Y
:
368 case wxSYS_NETWORK_PRESENT
:
371 case wxSYS_PENWINDOWS_PRESENT
:
374 case wxSYS_SHOW_SOUNDS
:
377 case wxSYS_SWAP_BUTTONS
:
386 bool wxSystemSettingsNative::HasFeature(
387 wxSystemFeature index
392 case wxSYS_CAN_ICONIZE_FRAME
:
395 case wxSYS_CAN_DRAW_FRAME_DECORATIONS
: