]> git.saurik.com Git - wxWidgets.git/blob - include/wx/os2/settings.h
added HTML printing
[wxWidgets.git] / include / wx / os2 / settings.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: settings.h
3 // Purpose: wxSystemSettings class
4 // Author: David Webster
5 // Modified by:
6 // Created: 10/15/98
7 // RCS-ID: $Id$
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_SETTINGS_H_
13 #define _WX_SETTINGS_H_
14
15 #include "wx/setup.h"
16 #include "wx/colour.h"
17 #include "wx/font.h"
18
19 #define wxSYS_WHITE_BRUSH 0
20 #define wxSYS_LTGRAY_BRUSH 1
21 #define wxSYS_GRAY_BRUSH 2
22 #define wxSYS_DKGRAY_BRUSH 3
23 #define wxSYS_BLACK_BRUSH 4
24 #define wxSYS_NULL_BRUSH 5
25 #define wxSYS_HOLLOW_BRUSH wxSYS_NULL_BRUSH
26 #define wxSYS_WHITE_PEN 6
27 #define wxSYS_BLACK_PEN 7
28 #define wxSYS_NULL_PEN 8
29 #define wxSYS_OEM_FIXED_FONT 10
30 #define wxSYS_ANSI_FIXED_FONT 11
31 #define wxSYS_ANSI_VAR_FONT 12
32 #define wxSYS_SYSTEM_FONT 13
33 #define wxSYS_DEVICE_DEFAULT_FONT 14
34 #define wxSYS_DEFAULT_PALETTE 15
35 #define wxSYS_SYSTEM_FIXED_FONT 16 // Obsolete
36 #define wxSYS_DEFAULT_GUI_FONT 17
37
38 #define wxSYS_COLOUR_SCROLLBAR 0
39 #define wxSYS_COLOUR_BACKGROUND 1
40 #define wxSYS_COLOUR_ACTIVECAPTION 2
41 #define wxSYS_COLOUR_INACTIVECAPTION 3
42 #define wxSYS_COLOUR_MENU 4
43 #define wxSYS_COLOUR_WINDOW 5
44 #define wxSYS_COLOUR_WINDOWFRAME 6
45 #define wxSYS_COLOUR_MENUTEXT 7
46 #define wxSYS_COLOUR_WINDOWTEXT 8
47 #define wxSYS_COLOUR_CAPTIONTEXT 9
48 #define wxSYS_COLOUR_ACTIVEBORDER 10
49 #define wxSYS_COLOUR_INACTIVEBORDER 11
50 #define wxSYS_COLOUR_APPWORKSPACE 12
51 #define wxSYS_COLOUR_HIGHLIGHT 13
52 #define wxSYS_COLOUR_HIGHLIGHTTEXT 14
53 #define wxSYS_COLOUR_BTNFACE 15
54 #define wxSYS_COLOUR_BTNSHADOW 16
55 #define wxSYS_COLOUR_GRAYTEXT 17
56 #define wxSYS_COLOUR_BTNTEXT 18
57 #define wxSYS_COLOUR_INACTIVECAPTIONTEXT 19
58 #define wxSYS_COLOUR_BTNHIGHLIGHT 20
59
60 #define wxSYS_COLOUR_3DDKSHADOW 21
61 #define wxSYS_COLOUR_3DLIGHT 22
62 #define wxSYS_COLOUR_INFOTEXT 23
63 #define wxSYS_COLOUR_INFOBK 24
64
65 #define wxSYS_COLOUR_DESKTOP wxSYS_COLOUR_BACKGROUND
66 #define wxSYS_COLOUR_3DFACE wxSYS_COLOUR_BTNFACE
67 #define wxSYS_COLOUR_3DSHADOW wxSYS_COLOUR_BTNSHADOW
68 #define wxSYS_COLOUR_3DHIGHLIGHT wxSYS_COLOUR_BTNHIGHLIGHT
69 #define wxSYS_COLOUR_3DHILIGHT wxSYS_COLOUR_BTNHIGHLIGHT
70 #define wxSYS_COLOUR_BTNHILIGHT wxSYS_COLOUR_BTNHIGHLIGHT
71
72 // Metrics
73 #define wxSYS_MOUSE_BUTTONS 1
74 #define wxSYS_BORDER_X 2
75 #define wxSYS_BORDER_Y 3
76 #define wxSYS_CURSOR_X 4
77 #define wxSYS_CURSOR_Y 5
78 #define wxSYS_DCLICK_X 6
79 #define wxSYS_DCLICK_Y 7
80 #define wxSYS_DRAG_X 8
81 #define wxSYS_DRAG_Y 9
82 #define wxSYS_EDGE_X 10
83 #define wxSYS_EDGE_Y 11
84 #define wxSYS_HSCROLL_ARROW_X 12
85 #define wxSYS_HSCROLL_ARROW_Y 13
86 #define wxSYS_HTHUMB_X 14
87 #define wxSYS_ICON_X 15
88 #define wxSYS_ICON_Y 16
89 #define wxSYS_ICONSPACING_X 17
90 #define wxSYS_ICONSPACING_Y 18
91 #define wxSYS_WINDOWMIN_X 19
92 #define wxSYS_WINDOWMIN_Y 20
93 #define wxSYS_SCREEN_X 21
94 #define wxSYS_SCREEN_Y 22
95 #define wxSYS_FRAMESIZE_X 23
96 #define wxSYS_FRAMESIZE_Y 24
97 #define wxSYS_SMALLICON_X 25
98 #define wxSYS_SMALLICON_Y 26
99 #define wxSYS_HSCROLL_Y 27
100 #define wxSYS_VSCROLL_X 28
101 #define wxSYS_VSCROLL_ARROW_X 29
102 #define wxSYS_VSCROLL_ARROW_Y 30
103 #define wxSYS_VTHUMB_Y 31
104 #define wxSYS_CAPTION_Y 32
105 #define wxSYS_MENU_Y 33
106 #define wxSYS_NETWORK_PRESENT 34
107 #define wxSYS_PENWINDOWS_PRESENT 35
108 #define wxSYS_SHOW_SOUNDS 36
109 #define wxSYS_SWAP_BUTTONS 37
110
111 class WXDLLEXPORT wxSystemSettings: public wxObject
112 {
113 public:
114 inline wxSystemSettings() {}
115
116 // Get a system colour
117 static wxColour GetSystemColour(int index);
118
119 // Get a system font
120 static wxFont GetSystemFont(int index);
121
122 // Get a system metric, e.g. scrollbar size
123 static int GetSystemMetric(int index);
124 };
125
126 #endif
127 // _WX_SETTINGS_H_