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"
22 #include "wx/module.h"
25 // ----------------------------------------------------------------------------
27 // ----------------------------------------------------------------------------
29 static wxFont
*gs_fontDefault
= NULL
;
31 class wxSystemSettingsModule
: public wxModule
34 virtual bool OnInit() { return true; }
37 wxDELETE(gs_fontDefault
);
41 DECLARE_DYNAMIC_CLASS(wxSystemSettingsModule
)
44 IMPLEMENT_DYNAMIC_CLASS(wxSystemSettingsModule
, wxModule
)
48 wxColour
wxSystemSettingsNative::GetColour(wxSystemColour
WXUNUSED(index
))
50 // overridden by wxSystemSettings::GetColour in wxUniversal
51 return wxColour(0,0,0);
54 wxFont
wxSystemSettingsNative::GetFont(wxSystemFont index
)
58 case wxSYS_OEM_FIXED_FONT
:
59 case wxSYS_ANSI_FIXED_FONT
:
60 case wxSYS_SYSTEM_FIXED_FONT
:
62 return *wxNORMAL_FONT
;
64 case wxSYS_ANSI_VAR_FONT
:
65 case wxSYS_SYSTEM_FONT
:
66 case wxSYS_DEVICE_DEFAULT_FONT
:
67 case wxSYS_DEFAULT_GUI_FONT
:
69 if ( !gs_fontDefault
)
70 gs_fontDefault
= new wxFont(10, wxSWISS
, wxNORMAL
, wxNORMAL
, false, "Arial");
71 return *gs_fontDefault
;
81 int wxSystemSettingsNative::GetMetric(wxSystemMetric index
, wxWindow
* WXUNUSED(win
))
88 wxDisplaySize(&val
, NULL
);
91 wxDisplaySize(NULL
, &val
);
98 return -1; // unsupported metric
101 bool wxSystemSettingsNative::HasFeature(wxSystemFeature index
)
105 case wxSYS_CAN_ICONIZE_FRAME
:
106 case wxSYS_CAN_DRAW_FRAME_DECORATIONS
:
107 case wxSYS_TABLET_PRESENT
:
111 wxFAIL_MSG( wxT("unknown feature") );