Standardize on using a single macro across all wxWidgets sources and solve the name clash with Sun CC standard headers (see #10660). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61508 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
117 lines
2.7 KiB
C++
117 lines
2.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/mgl/settings.cpp
|
|
// Author: Vaclav Slavik, Robert Roebling
|
|
// Id: $Id$
|
|
// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#include "wx/settings.h"
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/colour.h"
|
|
#include "wx/font.h"
|
|
#include "wx/gdicmn.h"
|
|
#include "wx/module.h"
|
|
#endif
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// global data
|
|
// ----------------------------------------------------------------------------
|
|
|
|
static wxFont *gs_fontDefault = NULL;
|
|
|
|
class wxSystemSettingsModule : public wxModule
|
|
{
|
|
public:
|
|
virtual bool OnInit() { return true; }
|
|
virtual void OnExit()
|
|
{
|
|
delete gs_fontDefault;
|
|
gs_fontDefault = NULL;
|
|
}
|
|
|
|
private:
|
|
DECLARE_DYNAMIC_CLASS(wxSystemSettingsModule)
|
|
};
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxSystemSettingsModule, wxModule)
|
|
|
|
|
|
|
|
wxColour wxSystemSettingsNative::GetColour(wxSystemColour WXUNUSED(index))
|
|
{
|
|
// overridden by wxSystemSettings::GetColour in wxUniversal
|
|
return wxColour(0,0,0);
|
|
}
|
|
|
|
wxFont wxSystemSettingsNative::GetFont(wxSystemFont index)
|
|
{
|
|
switch (index)
|
|
{
|
|
case wxSYS_OEM_FIXED_FONT:
|
|
case wxSYS_ANSI_FIXED_FONT:
|
|
case wxSYS_SYSTEM_FIXED_FONT:
|
|
{
|
|
return *wxNORMAL_FONT;
|
|
}
|
|
case wxSYS_ANSI_VAR_FONT:
|
|
case wxSYS_SYSTEM_FONT:
|
|
case wxSYS_DEVICE_DEFAULT_FONT:
|
|
case wxSYS_DEFAULT_GUI_FONT:
|
|
{
|
|
if ( !gs_fontDefault )
|
|
gs_fontDefault = new wxFont(10, wxSWISS, wxNORMAL, wxNORMAL, false, "Arial");
|
|
return *gs_fontDefault;
|
|
}
|
|
default:
|
|
{
|
|
}
|
|
}
|
|
|
|
return wxNullFont;
|
|
}
|
|
|
|
int wxSystemSettingsNative::GetMetric(wxSystemMetric index, wxWindow* WXUNUSED(win))
|
|
{
|
|
int val;
|
|
|
|
switch (index)
|
|
{
|
|
case wxSYS_SCREEN_X:
|
|
wxDisplaySize(&val, NULL);
|
|
return val;
|
|
case wxSYS_SCREEN_Y:
|
|
wxDisplaySize(NULL, &val);
|
|
return val;
|
|
default:
|
|
{
|
|
}
|
|
}
|
|
|
|
return -1; // unsupported metric
|
|
}
|
|
|
|
bool wxSystemSettingsNative::HasFeature(wxSystemFeature index)
|
|
{
|
|
switch (index)
|
|
{
|
|
case wxSYS_CAN_ICONIZE_FRAME:
|
|
case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
|
|
case wxSYS_TABLET_PRESENT:
|
|
return false;
|
|
|
|
default:
|
|
wxFAIL_MSG( wxT("unknown feature") );
|
|
}
|
|
|
|
return false;
|
|
}
|