]>
Commit | Line | Data |
---|---|---|
32b8ec41 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: settings.h | |
7bdc1879 | 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 | #ifndef __GTKSETTINGSH__ | |
10 | #define __GTKSETTINGSH__ | |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma interface "settings.h" | |
14 | #endif | |
15 | ||
16 | #include "wx/defs.h" | |
17 | #include "wx/gdicmn.h" | |
18 | #include "wx/pen.h" | |
19 | #include "wx/font.h" | |
20 | ||
21 | // FIXME_MGL - probably belongs to wxUniversal | |
22 | ||
23 | class wxSystemSettings: public wxObject | |
24 | { | |
25 | public: | |
7bdc1879 | 26 | wxSystemSettings() {} |
32b8ec41 | 27 | |
7bdc1879 | 28 | static void Init() {} |
32b8ec41 VZ |
29 | static void Done() {} |
30 | ||
31 | // Get a system colour | |
7bdc1879 | 32 | static wxColour GetSystemColour(int index); |
32b8ec41 VZ |
33 | |
34 | // Get a system font | |
7bdc1879 | 35 | static wxFont GetSystemFont(int index); |
32b8ec41 VZ |
36 | |
37 | // Get a system metric, e.g. scrollbar size | |
7bdc1879 | 38 | static int GetSystemMetric(int index); |
32b8ec41 VZ |
39 | }; |
40 | ||
41 | #endif | |
42 | // __GTKSETTINGSH__ |