]> git.saurik.com Git - wxWidgets.git/blame - src/motif/settings.cpp
Checkbox needs an extra pixel in height on WinCE
[wxWidgets.git] / src / motif / settings.cpp
CommitLineData
4bb6408c 1/////////////////////////////////////////////////////////////////////////////
0af4b6e4 2// Name: motif/settings.cpp
4bb6408c
JS
3// Purpose: wxSettings
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
4bb6408c
JS
10/////////////////////////////////////////////////////////////////////////////
11
16c1f7f3
JS
12// TODO: these settings should probably be configurable from some central or
13// per-user file, which can be edited using a Windows-control-panel clone.
14// Also they should be documented better. Some are very MS Windows-ish.
15
14f355c2 16#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
4bb6408c
JS
17#pragma implementation "settings.h"
18#endif
19
1248b41f
MB
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
4bb6408c 23#include "wx/settings.h"
e97f20a0 24#include "wx/gdicmn.h"
edc1cd8b
JS
25#include "wx/app.h"
26
27#ifdef __VMS__
28#pragma message disable nosimpint
29#endif
30#include <Xm/Xm.h>
31#include <Xm/PushB.h>
32#ifdef __VMS__
33#pragma message enable nosimpint
34#endif
35
4b7f540b
MB
36#include "wx/x11/privx.h"
37
edc1cd8b
JS
38// To correctly read the resources from the database, we create a
39// sample widget. This has the application shell as the parent and
40// so will be destroyed when the applicaion is closed.
41static Widget but_setting_wid = NULL;
4bb6408c 42
a103111b 43wxColour wxSystemSettingsNative::GetColour(wxSystemColour index)
4bb6408c 44{
edc1cd8b
JS
45 if (NULL == but_setting_wid && wxTheApp && wxTheApp->GetTopLevelWidget())
46 {
47 but_setting_wid = XtVaCreateWidget("settings_button", xmPushButtonWidgetClass,
48 (Widget)wxTheApp->GetTopLevelWidget(), NULL);
49 }
50
e97f20a0
JS
51 switch (index)
52 {
3d1b4196
MB
53 case wxSYS_COLOUR_WINDOW:
54 {
55 return *wxWHITE;
56 }
e97f20a0
JS
57 case wxSYS_COLOUR_SCROLLBAR:
58 // case wxSYS_COLOUR_DESKTOP: // Same as wxSYS_COLOUR_BACKGROUND
59 case wxSYS_COLOUR_BACKGROUND:
60 case wxSYS_COLOUR_ACTIVECAPTION:
61 case wxSYS_COLOUR_INACTIVECAPTION:
62 case wxSYS_COLOUR_MENU:
edc1cd8b 63 case wxSYS_COLOUR_MENUBAR:
e97f20a0
JS
64 case wxSYS_COLOUR_WINDOWFRAME:
65 case wxSYS_COLOUR_ACTIVEBORDER:
66 case wxSYS_COLOUR_INACTIVEBORDER:
67 case wxSYS_COLOUR_BTNFACE:
68 // case wxSYS_COLOUR_3DFACE: // Same as wxSYS_COLOUR_BTNFACE
69 case wxSYS_COLOUR_GRAYTEXT:
70 {
edc1cd8b
JS
71 if (but_setting_wid)
72 {
73 XColor bg;
74 XtVaGetValues(but_setting_wid,
75 XtVaTypedArg, XmNbackground, XtRColor, &bg, sizeof(bg),
76 NULL);
77 return wxColor(bg.red >> 8, bg.green >> 8, bg.blue >> 8);
78 }
79 else
80 {
81 return wxColour("LIGHT GREY");
82 }
e97f20a0
JS
83 }
84 case wxSYS_COLOUR_BTNSHADOW:
85 // case wxSYS_COLOUR_3DSHADOW: // Same as wxSYS_COLOUR_BTNSHADOW
86 {
87 return wxColour("GREY");
88 }
89 case wxSYS_COLOUR_3DDKSHADOW:
90 {
91 return *wxBLACK;
92 }
93 case wxSYS_COLOUR_HIGHLIGHT:
3d1b4196
MB
94 {
95 return *wxBLUE;
96 }
e97f20a0 97 case wxSYS_COLOUR_BTNHIGHLIGHT:
a103111b
GD
98 case wxSYS_COLOUR_LISTBOX:
99 // case wxSYS_COLOUR_3DHIGHLIGHT: // Same as wxSYS_COLOUR_BTNHIGHLIGHT
e97f20a0
JS
100 {
101 return *wxWHITE;
102 }
103 case wxSYS_COLOUR_3DLIGHT:
104 {
105 return wxColour("LIGHT GREY");
106 }
107 case wxSYS_COLOUR_MENUTEXT:
108 case wxSYS_COLOUR_WINDOWTEXT:
109 case wxSYS_COLOUR_CAPTIONTEXT:
110 case wxSYS_COLOUR_INACTIVECAPTIONTEXT:
a103111b 111 case wxSYS_COLOUR_BTNTEXT:
e97f20a0
JS
112 case wxSYS_COLOUR_INFOTEXT:
113 {
edc1cd8b
JS
114 if (but_setting_wid)
115 {
116 XColor fg;
117 XtVaGetValues(but_setting_wid,
118 XtVaTypedArg, XmNforeground, XtRColor, &fg, sizeof(fg),
119 NULL);
120 return wxColor(fg.red >> 8, fg.green >> 8, fg.blue >> 8);
121 }
122 else
123 {
124 return *wxBLACK;
125 }
e97f20a0
JS
126 }
127 case wxSYS_COLOUR_HIGHLIGHTTEXT:
128 {
3d1b4196 129 return *wxWHITE;
e97f20a0
JS
130 }
131 case wxSYS_COLOUR_INFOBK:
132 case wxSYS_COLOUR_APPWORKSPACE:
133 {
edc1cd8b
JS
134 if (but_setting_wid)
135 {
136 XColor bg;
137 XtVaGetValues(but_setting_wid,
138 XtVaTypedArg, XmNbackground, XtRColor, &bg, sizeof(bg),
139 NULL);
140 return wxColor(bg.red >> 8, bg.green >> 8, bg.blue >> 8);
141 }
142 else
143 {
144 return wxColour("LIGHT GREY");
145 }
e97f20a0 146 }
1abfd7f3
VZ
147
148 case wxSYS_COLOUR_HOTLIGHT:
149 case wxSYS_COLOUR_GRADIENTACTIVECAPTION:
150 case wxSYS_COLOUR_GRADIENTINACTIVECAPTION:
151 case wxSYS_COLOUR_MENUHILIGHT:
1abfd7f3
VZ
152 // TODO
153 return wxColour("LIGHT GREY");
154
155 default:
156 case wxSYS_COLOUR_MAX:
157 wxFAIL_MSG( _T("unknown colour") );
e97f20a0
JS
158 }
159 return *wxWHITE;
4bb6408c
JS
160}
161
a103111b 162wxFont wxSystemSettingsNative::GetFont(wxSystemFont index)
4bb6408c 163{
16c1f7f3
JS
164 switch (index)
165 {
16c1f7f3
JS
166 case wxSYS_SYSTEM_FIXED_FONT:
167 {
e97f20a0 168 return wxFont(12, wxMODERN, wxNORMAL, wxNORMAL, FALSE);
16c1f7f3
JS
169 break;
170 }
e97f20a0 171 case wxSYS_DEVICE_DEFAULT_FONT:
16c1f7f3 172 case wxSYS_SYSTEM_FONT:
16c1f7f3 173 case wxSYS_DEFAULT_GUI_FONT:
e97f20a0 174 default:
16c1f7f3 175 {
e97f20a0 176 return wxFont(12, wxSWISS, wxNORMAL, wxNORMAL, FALSE);
16c1f7f3
JS
177 break;
178 }
179 }
180
4bb6408c
JS
181 return wxFont();
182}
183
184// Get a system metric, e.g. scrollbar size
a103111b 185int wxSystemSettingsNative::GetMetric(wxSystemMetric index)
4bb6408c 186{
178edd2a
MB
187 int return_value = 0;
188
0af4b6e4
VZ
189 switch ( index)
190 {
e1aae528
MB
191 case wxSYS_HSCROLL_Y:
192 case wxSYS_VSCROLL_X:
193 return 15;
4bb6408c
JS
194 case wxSYS_MOUSE_BUTTONS:
195 // TODO
4bb6408c
JS
196 case wxSYS_BORDER_X:
197 // TODO
4bb6408c
JS
198 case wxSYS_BORDER_Y:
199 // TODO
4bb6408c
JS
200 case wxSYS_CURSOR_X:
201 // TODO
4bb6408c
JS
202 case wxSYS_CURSOR_Y:
203 // TODO
4bb6408c
JS
204 case wxSYS_DCLICK_X:
205 // TODO
4bb6408c
JS
206 case wxSYS_DCLICK_Y:
207 // TODO
4bb6408c
JS
208 case wxSYS_DRAG_X:
209 // TODO
4bb6408c
JS
210 case wxSYS_DRAG_Y:
211 // TODO
4bb6408c
JS
212 case wxSYS_EDGE_X:
213 // TODO
4bb6408c
JS
214 case wxSYS_EDGE_Y:
215 // TODO
4bb6408c
JS
216 case wxSYS_HSCROLL_ARROW_X:
217 // TODO
4bb6408c
JS
218 case wxSYS_HSCROLL_ARROW_Y:
219 // TODO
4bb6408c
JS
220 case wxSYS_HTHUMB_X:
221 // TODO
4bb6408c
JS
222 case wxSYS_ICON_X:
223 // TODO
4bb6408c
JS
224 case wxSYS_ICON_Y:
225 // TODO
4bb6408c
JS
226 case wxSYS_ICONSPACING_X:
227 // TODO
4bb6408c
JS
228 case wxSYS_ICONSPACING_Y:
229 // TODO
4bb6408c
JS
230 case wxSYS_WINDOWMIN_X:
231 // TODO
4bb6408c 232 case wxSYS_WINDOWMIN_Y:
178edd2a 233 break;
4bb6408c 234 case wxSYS_SCREEN_X:
178edd2a
MB
235 return_value = DisplayWidth( wxGlobalDisplay(), 0 );
236 break;
4bb6408c 237 case wxSYS_SCREEN_Y:
178edd2a
MB
238 return_value = DisplayHeight( wxGlobalDisplay(), 0 );
239 break;
4bb6408c
JS
240 case wxSYS_FRAMESIZE_X:
241 // TODO
4bb6408c
JS
242 case wxSYS_FRAMESIZE_Y:
243 // TODO
4bb6408c
JS
244 case wxSYS_SMALLICON_X:
245 // TODO
4bb6408c
JS
246 case wxSYS_SMALLICON_Y:
247 // TODO
4bb6408c
JS
248 case wxSYS_VSCROLL_ARROW_X:
249 // TODO
4bb6408c
JS
250 case wxSYS_VSCROLL_ARROW_Y:
251 // TODO
4bb6408c
JS
252 case wxSYS_VTHUMB_Y:
253 // TODO
4bb6408c
JS
254 case wxSYS_CAPTION_Y:
255 // TODO
4bb6408c
JS
256 case wxSYS_MENU_Y:
257 // TODO
4bb6408c
JS
258 case wxSYS_NETWORK_PRESENT:
259 // TODO
4bb6408c
JS
260 case wxSYS_PENWINDOWS_PRESENT:
261 // TODO
4bb6408c
JS
262 case wxSYS_SHOW_SOUNDS:
263 // TODO
4bb6408c
JS
264 case wxSYS_SWAP_BUTTONS:
265 // TODO
a103111b 266 default:
0af4b6e4 267 ;
a103111b 268 }
0af4b6e4 269
178edd2a 270 return return_value;
4bb6408c
JS
271}
272
a103111b 273bool wxSystemSettingsNative::HasFeature(wxSystemFeature index)
253293c1
VS
274{
275 switch (index)
276 {
0af4b6e4 277 case wxSYS_CAN_ICONIZE_FRAME:
253293c1 278 case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
a103111b 279 return TRUE;
0af4b6e4 280
253293c1
VS
281 default:
282 return FALSE;
283 }
284}