| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: settings.h |
| 3 | // Purpose: |
| 4 | // Author: Robert Roebling |
| 5 | // Id: $Id$ |
| 6 | // Copyright: (c) 1998 Robert Roebling |
| 7 | // Licence: wxWindows licence |
| 8 | ///////////////////////////////////////////////////////////////////////////// |
| 9 | |
| 10 | #ifndef __GTKSETTINGSH__ |
| 11 | #define __GTKSETTINGSH__ |
| 12 | |
| 13 | #ifdef __GNUG__ |
| 14 | #pragma interface "settings.h" |
| 15 | #endif |
| 16 | |
| 17 | #include "wx/defs.h" |
| 18 | #include "wx/gdicmn.h" |
| 19 | #include "wx/pen.h" |
| 20 | #include "wx/font.h" |
| 21 | |
| 22 | // FIXME_MGL - probably belongs to wxUniversal |
| 23 | |
| 24 | class wxSystemSettings: public wxObject |
| 25 | { |
| 26 | public: |
| 27 | inline wxSystemSettings() {} |
| 28 | |
| 29 | inline static void Init() {} |
| 30 | static void Done() {} |
| 31 | |
| 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__ |