]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: settings.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Created: 01/02/97 | |
6 | // Id: | |
7 | // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | ||
12 | #ifndef __GTKSETTINGSH__ | |
13 | #define __GTKSETTINGSH__ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface | |
17 | #endif | |
18 | ||
19 | #include "wx/defs.h" | |
20 | #include "wx/gdicmn.h" | |
21 | #include "wx/pen.h" | |
22 | #include "wx/font.h" | |
23 | ||
24 | class WXDLLEXPORT wxSystemSettings: public wxObject | |
25 | { | |
26 | public: | |
27 | inline wxSystemSettings(void) {} | |
28 | ||
a3622daa VZ |
29 | inline static void Init() {} |
30 | static void Done(); | |
31 | ||
c801d85f KB |
32 | // Get a system colour |
33 | static wxColour GetSystemColour(int index); | |
34 | ||
35 | // Get a system font | |
36 | static wxFont GetSystemFont(int index); | |
37 | ||
38 | // Get a system metric, e.g. scrollbar size | |
39 | static int GetSystemMetric(int index); | |
40 | }; | |
41 | ||
42 | #endif | |
43 | // __GTKSETTINGSH__ |