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