]> git.saurik.com Git - wxWidgets.git/blame - src/msw/settings.cpp
reSWIGged
[wxWidgets.git] / src / msw / settings.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
8bf30fe9 2// Name: msw/settings.cpp
7516ed26 3// Purpose: wxSystemSettingsNative implementation for MSW
2bda0e17
KB
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
6c9a19aa 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
8bf30fe9
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
2bda0e17
KB
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
7516ed26 24 #pragma hdrstop
2bda0e17
KB
25#endif
26
27#ifndef WX_PRECOMP
e02e8816 28 #include "wx/utils.h"
8bf30fe9 29 #include "wx/gdicmn.h"
2bda0e17
KB
30#endif
31
32#include "wx/settings.h"
7516ed26 33
2bda0e17 34#include "wx/msw/private.h"
7516ed26 35
d1eebf40
SC
36#ifndef SPI_GETFLATMENU
37#define SPI_GETFLATMENU 0x1022
38#endif
39
2e6d38ad 40#include "wx/module.h"
04ef50df 41#include "wx/fontutil.h"
2bda0e17 42
eae4425d
JS
43#ifdef __WXWINCE__ // for SM_CXCURSOR and SM_CYCURSOR
44#include "wx/msw/wince/missing.h"
45#endif // __WXWINCE__
46
8bf30fe9
VZ
47// ----------------------------------------------------------------------------
48// private classes
49// ----------------------------------------------------------------------------
50
7516ed26 51// the module which is used to clean up wxSystemSettingsNative data (this is a
8bf30fe9
VZ
52// singleton class so it can't be done in the dtor)
53class wxSystemSettingsModule : public wxModule
54{
55public:
56 virtual bool OnInit();
57 virtual void OnExit();
58
59private:
60 DECLARE_DYNAMIC_CLASS(wxSystemSettingsModule)
61};
62
63// ----------------------------------------------------------------------------
64// global data
65// ----------------------------------------------------------------------------
66
7516ed26
VZ
67// the font returned by GetFont(wxSYS_DEFAULT_GUI_FONT): it is created when
68// GetFont() is called for the first time and deleted by wxSystemSettingsModule
8bf30fe9
VZ
69static wxFont *gs_fontDefault = NULL;
70
71// ============================================================================
72// implementation
73// ============================================================================
74
7516ed26
VZ
75// TODO: see ::SystemParametersInfo for all sorts of Windows settings.
76// Different args are required depending on the id. How does this differ
77// from GetSystemMetric, and should it? Perhaps call it GetSystemParameter
78// and pass an optional void* arg to get further info.
79// Should also have SetSystemParameter.
80// Also implement WM_WININICHANGE (NT) / WM_SETTINGCHANGE (Win95)
81
8bf30fe9
VZ
82// ----------------------------------------------------------------------------
83// wxSystemSettingsModule
84// ----------------------------------------------------------------------------
85
86IMPLEMENT_DYNAMIC_CLASS(wxSystemSettingsModule, wxModule)
87
88bool wxSystemSettingsModule::OnInit()
89{
57f4f925 90 return true;
8bf30fe9
VZ
91}
92
93void wxSystemSettingsModule::OnExit()
94{
95 delete gs_fontDefault;
0cbff120 96 gs_fontDefault = NULL;
8bf30fe9
VZ
97}
98
99// ----------------------------------------------------------------------------
7516ed26 100// wxSystemSettingsNative
8bf30fe9
VZ
101// ----------------------------------------------------------------------------
102
7516ed26
VZ
103// ----------------------------------------------------------------------------
104// colours
105// ----------------------------------------------------------------------------
2bda0e17 106
7516ed26 107wxColour wxSystemSettingsNative::GetColour(wxSystemColour index)
2bda0e17 108{
7d6d3bf3
VZ
109 // we use 0 as the default value just to avoid compiler warnings, as there
110 // is no invalid colour value we use hasCol as the real indicator of
111 // whether colSys was initialized or not
112 COLORREF colSys = 0;
57f4f925 113 bool hasCol = false;
7d6d3bf3
VZ
114
115 // the default colours for the entries after BTNHIGHLIGHT
116 static const COLORREF s_defaultSysColors[] =
117 {
118 0x000000, // 3DDKSHADOW
119 0xdfdfdf, // 3DLIGHT
120 0x000000, // INFOTEXT
121 0xe1ffff, // INFOBK
122
123 0, // filler - no std colour with this index
124
125 // TODO: please fill in the standard values of those, I don't have them
126 0, // HOTLIGHT
127 0, // GRADIENTACTIVECAPTION
128 0, // GRADIENTINACTIVECAPTION
129 0, // MENU
130 0, // MENUBAR (unused)
131 };
132
133 if ( index == wxSYS_COLOUR_LISTBOX )
134 {
135 // there is no standard colour with this index, map to another one
136 index = wxSYS_COLOUR_WINDOW;
137 }
138 else if ( index > wxSYS_COLOUR_BTNHIGHLIGHT )
139 {
140 // the indices before BTNHIGHLIGHT are understood by GetSysColor() in
141 // all Windows version, for the other ones we have to check
142 bool useDefault;
143
7d6d3bf3
VZ
144 int verMaj, verMin;
145 wxGetOsVersion(&verMaj, &verMin);
146 if ( verMaj < 4 )
147 {
148 // NT 3.5
57f4f925 149 useDefault = true;
7d6d3bf3
VZ
150 }
151 else if ( verMaj == 4 )
152 {
153 // Win95/NT 4.0
154 useDefault = index > wxSYS_COLOUR_INFOBK;
155 }
156 else if ( verMaj == 5 && verMin == 0 )
157 {
158 // Win98/Win2K
159 useDefault = index > wxSYS_COLOUR_GRADIENTINACTIVECAPTION;
160 }
161 else // >= 5.1
162 {
163 // 5.1 is Windows XP
57f4f925
WS
164 useDefault = false;
165 // Determine if we are using flat menus, only then allow wxSYS_COLOUR_MENUBAR
166 if ( index == wxSYS_COLOUR_MENUBAR )
167 {
168 BOOL isFlat ;
169 if ( SystemParametersInfo( SPI_GETFLATMENU , 0 ,&isFlat, 0 ) )
170 {
171 if ( !isFlat )
172 index = wxSYS_COLOUR_MENU ;
173 }
174 }
d1eebf40 175 }
7d6d3bf3
VZ
176
177 if ( useDefault )
178 {
179 // special handling for MENUBAR colour: we use this in wxToolBar
180 // and wxStatusBar to have correct bg colour under Windows XP
181 // (which uses COLOR_MENUBAR for them) but they should still look
182 // correctly under previous Windows versions as well
183 if ( index == wxSYS_COLOUR_MENUBAR )
184 {
185 index = wxSYS_COLOUR_3DFACE;
186 }
187 else // replace with default colour
188 {
d285d708 189 unsigned int n = index - wxSYS_COLOUR_BTNHIGHLIGHT;
7d6d3bf3
VZ
190
191 wxASSERT_MSG( n < WXSIZEOF(s_defaultSysColors),
192 _T("forgot tp update the default colours array") );
193
194 colSys = s_defaultSysColors[n];
57f4f925 195 hasCol = true;
7d6d3bf3
VZ
196 }
197 }
198 }
199
200 if ( !hasCol )
201 {
39d2f9a7
JS
202#ifdef __WXWINCE__
203 colSys = ::GetSysColor(index|SYS_COLOR_INDEX_FLAG);
204#else
7d6d3bf3 205 colSys = ::GetSysColor(index);
39d2f9a7 206#endif
7d6d3bf3
VZ
207 }
208
209 return wxRGBToColour(colSys);
2bda0e17
KB
210}
211
7516ed26
VZ
212// ----------------------------------------------------------------------------
213// fonts
214// ----------------------------------------------------------------------------
215
04ef50df 216wxFont wxCreateFontFromStockObject(int index)
2bda0e17 217{
8bf30fe9
VZ
218 wxFont font;
219
019a60d6 220 HFONT hFont = (HFONT) ::GetStockObject(index);
8bf30fe9 221 if ( hFont )
019a60d6
VS
222 {
223 LOGFONT lf;
224 if ( ::GetObject(hFont, sizeof(LOGFONT), &lf) != 0 )
225 {
04ef50df
JS
226 wxNativeFontInfo info;
227 info.lf = lf;
f8c10795 228#ifndef __WXWINCE__
b4772c24
JS
229 // We want Windows 2000 or later to have new fonts even MS Shell Dlg
230 // is returned as default GUI font for compatibility
231 int verMaj;
232 if(index == DEFAULT_GUI_FONT && wxGetOsVersion(&verMaj) == wxWINDOWS_NT && verMaj >= 5)
233 wxStrcpy(info.lf.lfFaceName, wxT("MS Shell Dlg 2"));
f8c10795 234#endif
04ef50df
JS
235 // Under MicroWindows we pass the HFONT as well
236 // because it's hard to convert HFONT -> LOGFONT -> HFONT
237 // It's OK to delete stock objects, the delete will be ignored.
238#ifdef __WXMICROWIN__
239 font.Create(info, (WXHFONT) hFont);
240#else
241 font.Create(info);
242#endif
019a60d6
VS
243 }
244 else
245 {
8bf30fe9 246 wxFAIL_MSG( _T("failed to get LOGFONT") );
019a60d6
VS
247 }
248 }
8bf30fe9
VZ
249 else // GetStockObject() failed
250 {
251 wxFAIL_MSG( _T("stock font not found") );
252 }
7516ed26 253
04ef50df
JS
254 return font;
255}
256
7516ed26 257wxFont wxSystemSettingsNative::GetFont(wxSystemFont index)
04ef50df 258{
27adb8ba
VZ
259#ifdef __WXWINCE__
260 // under CE only a single SYSTEM_FONT exists
261 index;
262
263 if ( !gs_fontDefault )
264 {
265 gs_fontDefault = new wxFont(wxCreateFontFromStockObject(SYSTEM_FONT));
266 }
267
268 return *gs_fontDefault;
269#else // !__WXWINCE__
46697f31 270 // wxWindow ctor calls GetFont(wxSYS_DEFAULT_GUI_FONT) so we're
553c5bcc
VZ
271 // called fairly often -- this is why we cache this particular font
272 const bool isDefaultRequested = index == wxSYS_DEFAULT_GUI_FONT;
273 if ( isDefaultRequested )
04ef50df 274 {
553c5bcc
VZ
275 if ( gs_fontDefault )
276 return *gs_fontDefault;
04ef50df
JS
277 }
278
279 wxFont font = wxCreateFontFromStockObject(index);
8bf30fe9
VZ
280
281 if ( isDefaultRequested )
019a60d6 282 {
8bf30fe9
VZ
283 // if we got here it means we hadn't cached it yet - do now
284 gs_fontDefault = new wxFont(font);
019a60d6 285 }
8bf30fe9
VZ
286
287 return font;
27adb8ba 288#endif // __WXWINCE__/!__WXWINCE__
2bda0e17
KB
289}
290
7516ed26
VZ
291// ----------------------------------------------------------------------------
292// system metrics/features
293// ----------------------------------------------------------------------------
294
295// TODO: some of the "metrics" clearly should be features now that we have
296// HasFeature()!
297
298// the conversion table from wxSystemMetric enum to GetSystemMetrics() param
299//
300// if the constant is not defined, put -1 in the table to indicate that it is
301// unknown
302static const int gs_metricsMap[] =
2bda0e17 303{
fc29e86e 304 -1, // wxSystemMetric enums start at 1, so give a dummy value for pos 0.
4676948b 305#if defined(__WIN32__) && !defined(__WXWINCE__)
7516ed26
VZ
306 SM_CMOUSEBUTTONS,
307#else
308 -1,
2bda0e17
KB
309#endif
310
7516ed26
VZ
311 SM_CXBORDER,
312 SM_CYBORDER,
313 SM_CXCURSOR,
314 SM_CYCURSOR,
315 SM_CXDOUBLECLK,
316 SM_CYDOUBLECLK,
2432b92d 317#if defined(__WIN32__) && defined(SM_CXDRAG)
7516ed26
VZ
318 SM_CXDRAG,
319 SM_CYDRAG,
320 SM_CXEDGE,
321 SM_CYEDGE,
322#else
4676948b 323 -1, -1, -1, -1,
2bda0e17 324#endif
7516ed26
VZ
325 SM_CXHSCROLL,
326 SM_CYHSCROLL,
4676948b 327#ifdef SM_CXHTHUMB
7516ed26 328 SM_CXHTHUMB,
4676948b
JS
329#else
330 -1,
331#endif
7516ed26
VZ
332 SM_CXICON,
333 SM_CYICON,
334 SM_CXICONSPACING,
335 SM_CYICONSPACING,
4676948b 336#ifdef SM_CXHTHUMB
7516ed26
VZ
337 SM_CXMIN,
338 SM_CYMIN,
4676948b
JS
339#else
340 -1, -1,
341#endif
7516ed26
VZ
342 SM_CXSCREEN,
343 SM_CYSCREEN,
2432b92d
JS
344
345#if defined(__WIN32__) && defined(SM_CXSIZEFRAME)
7516ed26
VZ
346 SM_CXSIZEFRAME,
347 SM_CYSIZEFRAME,
348 SM_CXSMICON,
349 SM_CYSMICON,
350#else
4676948b 351 -1, -1, -1, -1,
2bda0e17 352#endif
7516ed26
VZ
353 SM_CYHSCROLL,
354 SM_CXVSCROLL,
355 SM_CXVSCROLL,
356 SM_CYVSCROLL,
4676948b 357#ifdef SM_CYVTHUMB
7516ed26 358 SM_CYVTHUMB,
4676948b
JS
359#else
360 -1,
361#endif
7516ed26
VZ
362 SM_CYCAPTION,
363 SM_CYMENU,
2432b92d 364#if defined(__WIN32__) && defined(SM_NETWORK)
7516ed26
VZ
365 SM_NETWORK,
366#else
367 -1,
2bda0e17 368#endif
4676948b 369#ifdef SM_PENWINDOWS
7516ed26 370 SM_PENWINDOWS,
4676948b
JS
371#else
372 -1,
373#endif
2432b92d 374#if defined(__WIN32__) && defined(SM_SHOWSOUNDS)
7516ed26
VZ
375 SM_SHOWSOUNDS,
376#else
377 -1,
2bda0e17 378#endif
4676948b 379#ifdef SM_SWAPBUTTON
7516ed26 380 SM_SWAPBUTTON,
4676948b
JS
381#else
382 -1
383#endif
7516ed26
VZ
384};
385
386// Get a system metric, e.g. scrollbar size
9b0b5ba7 387int wxSystemSettingsNative::GetMetric(wxSystemMetric index, wxWindow* WXUNUSED(win))
7516ed26
VZ
388{
389#ifdef __WXMICROWIN__
390 // TODO: probably use wxUniv themes functionality
391 return 0;
392#else // !__WXMICROWIN__
68d95db4
VZ
393 wxCHECK_MSG( index > 0 && (size_t)index < WXSIZEOF(gs_metricsMap), 0,
394 _T("invalid metric") );
7516ed26
VZ
395
396 int indexMSW = gs_metricsMap[index];
397 if ( indexMSW == -1 )
398 {
399 // not supported under current system
1d451c5b 400 return -1;
019a60d6 401 }
7516ed26
VZ
402
403 int rc = ::GetSystemMetrics(indexMSW);
404 if ( index == wxSYS_NETWORK_PRESENT )
405 {
406 // only the last bit is significant according to the MSDN
407 rc &= 1;
408 }
409
410 return rc;
411#endif // __WXMICROWIN__/!__WXMICROWIN__
2bda0e17
KB
412}
413
7516ed26 414bool wxSystemSettingsNative::HasFeature(wxSystemFeature index)
253293c1 415{
7516ed26 416 switch ( index )
253293c1 417 {
7516ed26 418 case wxSYS_CAN_ICONIZE_FRAME:
253293c1 419 case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
57f4f925 420 return true;
7516ed26 421
253293c1 422 default:
7516ed26
VZ
423 wxFAIL_MSG( _T("unknown system feature") );
424
57f4f925 425 return false;
253293c1
VS
426 }
427}
553c5bcc
VZ
428
429// ----------------------------------------------------------------------------
430// function from wx/msw/wrapcctl.h: there is really no other place for it...
431// ----------------------------------------------------------------------------
432
433#if wxUSE_LISTCTRL || wxUSE_TREECTRL
434
435extern wxFont wxGetCCDefaultFont()
436{
437#ifndef __WXWINCE__
438 // under the systems enumerated below (anything released after Win98), the
439 // default font used for the common controls seems to be the desktop font
440 // which is also used for the icon titles and not the stock default GUI
441 // font
442 bool useIconFont;
443 int verMaj, verMin;
444 switch ( wxGetOsVersion(&verMaj, &verMin) )
445 {
446 case wxWIN95:
447 // 4.10 is Win98
b594d7f7 448 useIconFont = verMaj == 4 && verMin >= 10;
553c5bcc
VZ
449 break;
450
451 case wxWINDOWS_NT:
452 // 5.0 is Win2k
453 useIconFont = verMaj >= 5;
454 break;
455
456 default:
457 useIconFont = false;
458 }
459
460 if ( useIconFont )
461 {
462 LOGFONT lf;
463 if ( ::SystemParametersInfo
464 (
465 SPI_GETICONTITLELOGFONT,
466 sizeof(lf),
467 &lf,
468 0
469 ) )
470 {
471 return wxFont(wxCreateFontFromLogFont(&lf));
472 }
473 else
474 {
475 wxLogLastError(_T("SystemParametersInfo(SPI_GETICONTITLELOGFONT"));
476 }
477 }
478#endif // __WXWINCE__
479
480 // fall back to the default font for the normal controls
481 return wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
482}
483
484#endif // wxUSE_LISTCTRL || wxUSE_TREECTRL