git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11388 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
35 lines
810 B
C++
35 lines
810 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: settings.h
|
|
// Author: Vaclav Slavik
|
|
// Id: $Id$
|
|
// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation "settings.h"
|
|
#endif
|
|
|
|
#include "wx/settings.h"
|
|
#include "wx/colour.h"
|
|
#include "wx/font.h"
|
|
|
|
wxColour wxSystemSettings::GetSystemColour(int WXUNUSED(index))
|
|
{
|
|
// FIXME_MGL
|
|
return wxColour(0,0,0);
|
|
}
|
|
|
|
wxFont wxSystemSettings::GetSystemFont(int WXUNUSED(index))
|
|
{
|
|
// FIXME_MGL
|
|
return wxFont(9, wxSWISS, wxNORMAL, wxNORMAL);
|
|
}
|
|
|
|
int wxSystemSettings::GetSystemMetric(int WXUNUSED(index))
|
|
{
|
|
// FIXME_MGL
|
|
return 1;
|
|
}
|