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