]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: settings.h | |
3 | // Author: Vaclav Slavik | |
4 | // Id: $Id$ | |
5 | // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) | |
6 | // Licence: wxWindows licence | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | ||
10 | #ifdef __GNUG__ | |
11 | #pragma implementation "settings.h" | |
12 | #endif | |
13 | ||
14 | #include "wx/settings.h" | |
15 | #include "wx/colour.h" | |
16 | #include "wx/font.h" | |
17 | ||
18 | wxColour wxSystemSettings::GetSystemColour(int WXUNUSED(index)) | |
19 | { | |
20 | // FIXME_MGL | |
21 | return wxColour(255,255,0); | |
22 | } | |
23 | ||
24 | wxFont wxSystemSettings::GetSystemFont(int WXUNUSED(index)) | |
25 | { | |
26 | // FIXME_MGL | |
27 | return wxFont(12, wxSWISS, wxNORMAL, wxNORMAL); | |
28 | } | |
29 | ||
30 | int wxSystemSettings::GetSystemMetric(int WXUNUSED(index)) | |
31 | { | |
32 | // FIXME_MGL | |
33 | return 1; | |
34 | } |