1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mgl/settings.cpp
3 // Author: Vaclav Slavik, Robert Roebling
5 // Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
9 // For compilers that support precompilation, includes "wx.h".
10 #include "wx/wxprec.h"
16 #include "wx/settings.h"
19 #include "wx/colour.h"
21 #include "wx/gdicmn.h"
24 #include "wx/module.h"
26 // ----------------------------------------------------------------------------
28 // ----------------------------------------------------------------------------
30 static wxFont
*gs_fontDefault
= NULL
;
32 class wxSystemSettingsModule
: public wxModule
35 virtual bool OnInit() { return true; }
38 delete gs_fontDefault
;
39 gs_fontDefault
= NULL
;
43 DECLARE_DYNAMIC_CLASS(wxSystemSettingsModule
)
46 IMPLEMENT_DYNAMIC_CLASS(wxSystemSettingsModule
, wxModule
)
50 wxColour
wxSystemSettingsNative::GetColour(wxSystemColour
WXUNUSED(index
))
52 // not implemented, the mean is in wxUniversal
53 return wxColour(0,0,0);
56 wxFont
wxSystemSettingsNative::GetFont(wxSystemFont index
)
60 case wxSYS_OEM_FIXED_FONT
:
61 case wxSYS_ANSI_FIXED_FONT
:
62 case wxSYS_SYSTEM_FIXED_FONT
:
64 return *wxNORMAL_FONT
;
66 case wxSYS_ANSI_VAR_FONT
:
67 case wxSYS_SYSTEM_FONT
:
68 case wxSYS_DEVICE_DEFAULT_FONT
:
69 case wxSYS_DEFAULT_GUI_FONT
:
71 if ( !gs_fontDefault
)
72 gs_fontDefault
= new wxFont(10, wxSWISS
, wxNORMAL
, wxNORMAL
, false, "Arial");
73 return *gs_fontDefault
;
83 int wxSystemSettingsNative::GetMetric(wxSystemMetric index
, wxWindow
* WXUNUSED(win
))
90 wxDisplaySize(&val
, NULL
);
93 wxDisplaySize(NULL
, &val
);
103 return -1; // unsupported metric
106 bool wxSystemSettingsNative::HasFeature(wxSystemFeature index
)
110 case wxSYS_CAN_ICONIZE_FRAME
:
111 case wxSYS_CAN_DRAW_FRAME_DECORATIONS
:
112 case wxSYS_TABLET_PRESENT
:
116 wxFAIL_MSG( _T("unknown feature") );