]> git.saurik.com Git - wxWidgets.git/blame - src/motif/settings.cpp
wxGTK1 : wx/private/eventloopsourcesmanager.h was missing in evtloop.cpp
[wxWidgets.git] / src / motif / settings.cpp
CommitLineData
4bb6408c 1/////////////////////////////////////////////////////////////////////////////
355b4d3d 2// Name: src/motif/settings.cpp
4bb6408c
JS
3// Purpose: wxSettings
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
4bb6408c 7// Copyright: (c) Julian Smart
65571936 8// Licence: wxWindows licence
4bb6408c
JS
9/////////////////////////////////////////////////////////////////////////////
10
16c1f7f3
JS
11// TODO: these settings should probably be configurable from some central or
12// per-user file, which can be edited using a Windows-control-panel clone.
13// Also they should be documented better. Some are very MS Windows-ish.
14
1248b41f
MB
15// For compilers that support precompilation, includes "wx.h".
16#include "wx/wxprec.h"
17
4bb6408c 18#include "wx/settings.h"
670f9935
WS
19
20#ifndef WX_PRECOMP
21 #include "wx/app.h"
dd05139a 22 #include "wx/gdicmn.h"
670f9935
WS
23#endif
24
edc1cd8b
JS
25#ifdef __VMS__
26#pragma message disable nosimpint
27#endif
28#include <Xm/Xm.h>
29#include <Xm/PushB.h>
30#ifdef __VMS__
31#pragma message enable nosimpint
32#endif
33
4b7f540b
MB
34#include "wx/x11/privx.h"
35
edc1cd8b
JS
36// To correctly read the resources from the database, we create a
37// sample widget. This has the application shell as the parent and
38// so will be destroyed when the applicaion is closed.
39static Widget but_setting_wid = NULL;
4bb6408c 40
a103111b 41wxColour wxSystemSettingsNative::GetColour(wxSystemColour index)
4bb6408c 42{
edc1cd8b
JS
43 if (NULL == but_setting_wid && wxTheApp && wxTheApp->GetTopLevelWidget())
44 {
45 but_setting_wid = XtVaCreateWidget("settings_button", xmPushButtonWidgetClass,
355b4d3d 46 (Widget)wxTheApp->GetTopLevelWidget(), NULL);
edc1cd8b
JS
47 }
48
e97f20a0
JS
49 switch (index)
50 {
3d1b4196
MB
51 case wxSYS_COLOUR_WINDOW:
52 {
53 return *wxWHITE;
54 }
e97f20a0
JS
55 case wxSYS_COLOUR_SCROLLBAR:
56 // case wxSYS_COLOUR_DESKTOP: // Same as wxSYS_COLOUR_BACKGROUND
57 case wxSYS_COLOUR_BACKGROUND:
58 case wxSYS_COLOUR_ACTIVECAPTION:
59 case wxSYS_COLOUR_INACTIVECAPTION:
60 case wxSYS_COLOUR_MENU:
edc1cd8b 61 case wxSYS_COLOUR_MENUBAR:
e97f20a0
JS
62 case wxSYS_COLOUR_WINDOWFRAME:
63 case wxSYS_COLOUR_ACTIVEBORDER:
64 case wxSYS_COLOUR_INACTIVEBORDER:
65 case wxSYS_COLOUR_BTNFACE:
66 // case wxSYS_COLOUR_3DFACE: // Same as wxSYS_COLOUR_BTNFACE
67 case wxSYS_COLOUR_GRAYTEXT:
68 {
edc1cd8b
JS
69 if (but_setting_wid)
70 {
71 XColor bg;
72 XtVaGetValues(but_setting_wid,
73 XtVaTypedArg, XmNbackground, XtRColor, &bg, sizeof(bg),
74 NULL);
355b4d3d
WS
75 return wxColor((unsigned char)(bg.red >> 8),
76 (unsigned char)(bg.green >> 8),
77 (unsigned char)(bg.blue >> 8));
edc1cd8b
JS
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);
355b4d3d
WS
120 return wxColor((unsigned char)(fg.red >> 8),
121 (unsigned char)(fg.green >> 8),
122 (unsigned char)(fg.blue >> 8));
edc1cd8b
JS
123 }
124 else
125 {
126 return *wxBLACK;
127 }
e97f20a0
JS
128 }
129 case wxSYS_COLOUR_HIGHLIGHTTEXT:
887b919b 130 case wxSYS_COLOUR_LISTBOXHIGHLIGHTTEXT:
e97f20a0 131 {
3d1b4196 132 return *wxWHITE;
e97f20a0
JS
133 }
134 case wxSYS_COLOUR_INFOBK:
135 case wxSYS_COLOUR_APPWORKSPACE:
136 {
edc1cd8b
JS
137 if (but_setting_wid)
138 {
139 XColor bg;
140 XtVaGetValues(but_setting_wid,
141 XtVaTypedArg, XmNbackground, XtRColor, &bg, sizeof(bg),
142 NULL);
355b4d3d
WS
143 return wxColor((unsigned char)(bg.red >> 8),
144 (unsigned char)(bg.green >> 8),
145 (unsigned char)(bg.blue >> 8));
edc1cd8b
JS
146 }
147 else
148 {
149 return wxColour("LIGHT GREY");
150 }
e97f20a0 151 }
1abfd7f3
VZ
152
153 case wxSYS_COLOUR_HOTLIGHT:
154 case wxSYS_COLOUR_GRADIENTACTIVECAPTION:
155 case wxSYS_COLOUR_GRADIENTINACTIVECAPTION:
156 case wxSYS_COLOUR_MENUHILIGHT:
1abfd7f3
VZ
157 // TODO
158 return wxColour("LIGHT GREY");
159
160 default:
161 case wxSYS_COLOUR_MAX:
9a83f860 162 wxFAIL_MSG( wxT("unknown colour") );
e97f20a0
JS
163 }
164 return *wxWHITE;
4bb6408c
JS
165}
166
a103111b 167wxFont wxSystemSettingsNative::GetFont(wxSystemFont index)
4bb6408c 168{
996994c7
MB
169 int pointSize = 12;
170
171 if ( wxFont::GetDefaultEncoding() == wxFONTENCODING_SHIFT_JIS
172 || wxFont::GetDefaultEncoding() == wxFONTENCODING_EUC_JP)
173 pointSize = 15;
174
355b4d3d
WS
175 wxFont font;
176
16c1f7f3
JS
177 switch (index)
178 {
16c1f7f3
JS
179 case wxSYS_SYSTEM_FIXED_FONT:
180 {
355b4d3d 181 font = wxFont(pointSize, wxMODERN, wxNORMAL, wxNORMAL, false);
16c1f7f3
JS
182 break;
183 }
e97f20a0 184 case wxSYS_DEVICE_DEFAULT_FONT:
16c1f7f3 185 case wxSYS_SYSTEM_FONT:
16c1f7f3 186 case wxSYS_DEFAULT_GUI_FONT:
e97f20a0 187 default:
16c1f7f3 188 {
355b4d3d 189 font = wxFont(pointSize, wxSWISS, wxNORMAL, wxNORMAL, false);
16c1f7f3
JS
190 break;
191 }
192 }
193
355b4d3d 194 return font;
4bb6408c
JS
195}
196
197// Get a system metric, e.g. scrollbar size
9b0b5ba7 198int wxSystemSettingsNative::GetMetric(wxSystemMetric index, wxWindow* WXUNUSED(win))
4bb6408c 199{
178edd2a
MB
200 int return_value = 0;
201
0af4b6e4
VZ
202 switch ( index)
203 {
e1aae528
MB
204 case wxSYS_HSCROLL_Y:
205 case wxSYS_VSCROLL_X:
206 return 15;
355b4d3d 207
4bb6408c 208 case wxSYS_SCREEN_X:
178edd2a
MB
209 return_value = DisplayWidth( wxGlobalDisplay(), 0 );
210 break;
4bb6408c 211 case wxSYS_SCREEN_Y:
178edd2a
MB
212 return_value = DisplayHeight( wxGlobalDisplay(), 0 );
213 break;
1d451c5b
RD
214
215 // TODO case wxSYS_MOUSE_BUTTONS:
216 // TODO case wxSYS_BORDER_X:
217 // TODO case wxSYS_BORDER_Y:
218 // TODO case wxSYS_CURSOR_X:
219 // TODO case wxSYS_CURSOR_Y:
220 // TODO case wxSYS_DCLICK_X:
221 // TODO case wxSYS_DCLICK_Y:
222 // TODO case wxSYS_DRAG_X:
223 // TODO case wxSYS_DRAG_Y:
224 // TODO case wxSYS_EDGE_X:
225 // TODO case wxSYS_EDGE_Y:
226 // TODO case wxSYS_HSCROLL_ARROW_X:
227 // TODO case wxSYS_HSCROLL_ARROW_Y:
228 // TODO case wxSYS_HTHUMB_X:
229 // TODO case wxSYS_ICON_X:
230 // TODO case wxSYS_ICON_Y:
231 // TODO case wxSYS_ICONSPACING_X:
232 // TODO case wxSYS_ICONSPACING_Y:
233 // TODO case wxSYS_WINDOWMIN_X:
234 // TODO case wxSYS_WINDOWMIN_Y:
235 // TODO case wxSYS_FRAMESIZE_X:
236 // TODO case wxSYS_FRAMESIZE_Y:
237 // TODO case wxSYS_SMALLICON_X:
238 // TODO case wxSYS_SMALLICON_Y:
239 // TODO case wxSYS_VSCROLL_ARROW_X:
240 // TODO case wxSYS_VSCROLL_ARROW_Y:
241 // TODO case wxSYS_VTHUMB_Y:
242 // TODO case wxSYS_CAPTION_Y:
243 // TODO case wxSYS_MENU_Y:
244 // TODO case wxSYS_NETWORK_PRESENT:
245 // TODO case wxSYS_PENWINDOWS_PRESENT:
246 // TODO case wxSYS_SHOW_SOUNDS:
247 // TODO case wxSYS_SWAP_BUTTONS:
248
a103111b 249 default:
1d451c5b 250 return_value = -1; // unsuported metric
a103111b 251 }
0af4b6e4 252
178edd2a 253 return return_value;
4bb6408c
JS
254}
255
a103111b 256bool wxSystemSettingsNative::HasFeature(wxSystemFeature index)
253293c1
VS
257{
258 switch (index)
259 {
0af4b6e4 260 case wxSYS_CAN_ICONIZE_FRAME:
253293c1 261 case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
96be256b 262 return true;
0af4b6e4 263
253293c1 264 default:
96be256b 265 return false;
253293c1
VS
266 }
267}