]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
3523b9cf | 2 | // Name: gtk/settings.cpp |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
9b0b5ba7 | 5 | // Modified by: Mart Raudsepp (GetMetric) |
f96aa4d9 RR |
6 | // Id: $Id$ |
7 | // Copyright: (c) 1998 Robert Roebling | |
65571936 | 8 | // Licence: wxWindows licence |
c801d85f KB |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
14f355c2 VS |
11 | // For compilers that support precompilation, includes "wx.h". |
12 | #include "wx/wxprec.h" | |
13 | ||
c801d85f | 14 | #include "wx/settings.h" |
1ecc4d80 | 15 | #include "wx/debug.h" |
d06b34a7 | 16 | #include "wx/cmndata.h" |
2b5f62a0 | 17 | #include "wx/fontutil.h" |
9b0b5ba7 | 18 | #include "wx/toplevel.h" |
d06b34a7 | 19 | |
aed8ac3f | 20 | #include <gdk/gdk.h> |
9b0b5ba7 | 21 | #include <gdk/gdkx.h> |
d06b34a7 | 22 | #include <gdk/gdkprivate.h> |
aed8ac3f | 23 | #include <gtk/gtk.h> |
83624f79 | 24 | |
9b0b5ba7 RR |
25 | #include <X11/Xatom.h> |
26 | ||
c801d85f KB |
27 | #define SHIFT (8*(sizeof(short int)-sizeof(char))) |
28 | ||
0ab5e0e8 | 29 | // ---------------------------------------------------------------------------- |
94a09ea5 | 30 | // wxSystemObjects |
0ab5e0e8 VS |
31 | // ---------------------------------------------------------------------------- |
32 | ||
94a09ea5 | 33 | struct wxSystemObjects |
1ecc4d80 | 34 | { |
c1ef87c3 VZ |
35 | wxColour m_colBtnFace, |
36 | m_colBtnShadow, | |
37 | m_colBtnHighlight, | |
38 | m_colHighlight, | |
39 | m_colHighlightText, | |
40 | m_colListBox, | |
9d6a9fdd | 41 | m_colBtnText, |
c05cc2c7 RR |
42 | m_colMenuItemHighlight, |
43 | m_colTooltip, | |
44 | m_colTooltipText; | |
c1ef87c3 VZ |
45 | |
46 | wxFont m_fontSystem; | |
0ab5e0e8 VS |
47 | }; |
48 | ||
94a09ea5 | 49 | static wxSystemObjects gs_objects; |
c1ef87c3 | 50 | |
0ab5e0e8 VS |
51 | // ---------------------------------------------------------------------------- |
52 | // wxSystemSettings implementation | |
53 | // ---------------------------------------------------------------------------- | |
a3622daa | 54 | |
643ccf62 | 55 | // kind of widget to use in GetColourFromGTKWidget |
dbcbe229 | 56 | enum wxGtkWidgetType |
643ccf62 | 57 | { |
dbcbe229 | 58 | wxGTK_BUTTON, |
9d6a9fdd RR |
59 | wxGTK_LIST, |
60 | wxGTK_MENUITEM | |
dbcbe229 VZ |
61 | }; |
62 | ||
63 | // the colour we need | |
64 | enum wxGtkColourType | |
65 | { | |
66 | wxGTK_FG, | |
67 | wxGTK_BG, | |
68 | wxGTK_BASE | |
643ccf62 VZ |
69 | }; |
70 | ||
984152a6 | 71 | // wxSystemSettings::GetColour() helper: get the colours from a GTK+ |
643ccf62 | 72 | // widget style, return true if we did get them, false to use defaults |
dbcbe229 VZ |
73 | static bool GetColourFromGTKWidget(int& red, int& green, int& blue, |
74 | wxGtkWidgetType type = wxGTK_BUTTON, | |
75 | GtkStateType state = GTK_STATE_NORMAL, | |
76 | wxGtkColourType colour = wxGTK_BG) | |
643ccf62 | 77 | { |
dbcbe229 VZ |
78 | GtkWidget *widget; |
79 | switch ( type ) | |
80 | { | |
81 | default: | |
82 | wxFAIL_MSG( _T("unexpected GTK widget type") ); | |
83 | // fall through | |
84 | ||
85 | case wxGTK_BUTTON: | |
86 | widget = gtk_button_new(); | |
87 | break; | |
88 | ||
89 | case wxGTK_LIST: | |
90 | widget = gtk_list_new(); | |
e24b680c VZ |
91 | break; |
92 | ||
9d6a9fdd RR |
93 | case wxGTK_MENUITEM: |
94 | widget = gtk_menu_item_new(); | |
dbcbe229 VZ |
95 | } |
96 | ||
643ccf62 VZ |
97 | GtkStyle *def = gtk_rc_get_style( widget ); |
98 | if ( !def ) | |
99 | def = gtk_widget_get_default_style(); | |
100 | ||
101 | bool ok; | |
102 | if ( def ) | |
103 | { | |
dbcbe229 VZ |
104 | GdkColor *col; |
105 | switch ( colour ) | |
106 | { | |
107 | default: | |
108 | wxFAIL_MSG( _T("unexpected GTK colour type") ); | |
109 | // fall through | |
110 | ||
111 | case wxGTK_FG: | |
112 | col = def->fg; | |
113 | break; | |
114 | ||
115 | case wxGTK_BG: | |
116 | col = def->bg; | |
117 | break; | |
118 | ||
119 | case wxGTK_BASE: | |
120 | col = def->base; | |
121 | break; | |
122 | } | |
123 | ||
3523b9cf VZ |
124 | red = col[state].red; |
125 | green = col[state].green; | |
126 | blue = col[state].blue; | |
643ccf62 VZ |
127 | |
128 | ok = TRUE; | |
129 | } | |
130 | else | |
131 | { | |
132 | ok = FALSE; | |
133 | } | |
134 | ||
135 | gtk_widget_destroy( widget ); | |
136 | ||
137 | return ok; | |
138 | } | |
139 | ||
c05cc2c7 RR |
140 | static void GetTooltipColors() |
141 | { | |
142 | GtkTooltips* tooltips = gtk_tooltips_new(); | |
143 | gtk_tooltips_force_window(tooltips); | |
144 | gtk_widget_ensure_style(tooltips->tip_window); | |
145 | GdkColor c = tooltips->tip_window->style->bg[GTK_STATE_NORMAL]; | |
146 | gs_objects.m_colTooltip = wxColor(c.red >> SHIFT, c.green >> SHIFT, c.blue >> SHIFT); | |
147 | c = tooltips->tip_window->style->fg[GTK_STATE_NORMAL]; | |
148 | gs_objects.m_colTooltipText = wxColor(c.red >> SHIFT, c.green >> SHIFT, c.blue >> SHIFT); | |
149 | gtk_object_sink(wx_reinterpret_cast(GtkObject*, tooltips)); | |
150 | } | |
151 | ||
0ab5e0e8 | 152 | wxColour wxSystemSettingsNative::GetColour( wxSystemColour index ) |
c801d85f | 153 | { |
db434467 | 154 | switch (index) |
c801d85f | 155 | { |
db434467 RR |
156 | case wxSYS_COLOUR_SCROLLBAR: |
157 | case wxSYS_COLOUR_BACKGROUND: | |
db434467 RR |
158 | case wxSYS_COLOUR_INACTIVECAPTION: |
159 | case wxSYS_COLOUR_MENU: | |
160 | case wxSYS_COLOUR_WINDOWFRAME: | |
161 | case wxSYS_COLOUR_ACTIVEBORDER: | |
162 | case wxSYS_COLOUR_INACTIVEBORDER: | |
163 | case wxSYS_COLOUR_BTNFACE: | |
221ed576 | 164 | case wxSYS_COLOUR_MENUBAR: |
5b211fbf | 165 | case wxSYS_COLOUR_3DLIGHT: |
94a09ea5 | 166 | if (!gs_objects.m_colBtnFace.Ok()) |
37d403aa | 167 | { |
643ccf62 | 168 | int red, green, blue; |
dbcbe229 | 169 | if ( !GetColourFromGTKWidget(red, green, blue) ) |
37d403aa | 170 | { |
643ccf62 VZ |
171 | red = |
172 | green = 0; | |
173 | blue = 0x9c40; | |
37d403aa | 174 | } |
37d403aa | 175 | |
94a09ea5 | 176 | gs_objects.m_colBtnFace = wxColour( red >> SHIFT, |
c1ef87c3 VZ |
177 | green >> SHIFT, |
178 | blue >> SHIFT ); | |
37d403aa | 179 | } |
94a09ea5 | 180 | return gs_objects.m_colBtnFace; |
643ccf62 | 181 | |
db434467 | 182 | case wxSYS_COLOUR_WINDOW: |
db434467 | 183 | return *wxWHITE; |
643ccf62 | 184 | |
37d403aa | 185 | case wxSYS_COLOUR_3DDKSHADOW: |
37d403aa | 186 | return *wxBLACK; |
643ccf62 | 187 | |
db434467 RR |
188 | case wxSYS_COLOUR_GRAYTEXT: |
189 | case wxSYS_COLOUR_BTNSHADOW: | |
37d403aa | 190 | //case wxSYS_COLOUR_3DSHADOW: |
94a09ea5 | 191 | if (!gs_objects.m_colBtnShadow.Ok()) |
37d403aa | 192 | { |
984152a6 | 193 | wxColour faceColour(GetColour(wxSYS_COLOUR_3DFACE)); |
94a09ea5 | 194 | gs_objects.m_colBtnShadow = |
c1ef87c3 VZ |
195 | wxColour((unsigned char) (faceColour.Red() * 0.666), |
196 | (unsigned char) (faceColour.Green() * 0.666), | |
197 | (unsigned char) (faceColour.Blue() * 0.666)); | |
db434467 | 198 | } |
643ccf62 | 199 | |
94a09ea5 | 200 | return gs_objects.m_colBtnShadow; |
643ccf62 | 201 | |
37d403aa JS |
202 | case wxSYS_COLOUR_3DHIGHLIGHT: |
203 | //case wxSYS_COLOUR_BTNHIGHLIGHT: | |
37d403aa | 204 | return * wxWHITE; |
643ccf62 | 205 | |
db434467 | 206 | case wxSYS_COLOUR_HIGHLIGHT: |
94a09ea5 | 207 | if (!gs_objects.m_colHighlight.Ok()) |
db434467 | 208 | { |
643ccf62 | 209 | int red, green, blue; |
dbcbe229 VZ |
210 | if ( !GetColourFromGTKWidget(red, green, blue, |
211 | wxGTK_BUTTON, | |
212 | GTK_STATE_SELECTED) ) | |
e6527f9d | 213 | { |
643ccf62 VZ |
214 | red = |
215 | green = 0; | |
216 | blue = 0x9c40; | |
e6527f9d | 217 | } |
db434467 | 218 | |
94a09ea5 | 219 | gs_objects.m_colHighlight = wxColour( red >> SHIFT, |
643ccf62 VZ |
220 | green >> SHIFT, |
221 | blue >> SHIFT ); | |
db434467 | 222 | } |
94a09ea5 | 223 | return gs_objects.m_colHighlight; |
643ccf62 | 224 | |
74f55195 | 225 | case wxSYS_COLOUR_LISTBOX: |
94a09ea5 | 226 | if (!gs_objects.m_colListBox.Ok()) |
74f55195 | 227 | { |
643ccf62 | 228 | int red, green, blue; |
dbcbe229 VZ |
229 | if ( GetColourFromGTKWidget(red, green, blue, |
230 | wxGTK_LIST, | |
231 | GTK_STATE_NORMAL, | |
232 | wxGTK_BASE) ) | |
74f55195 | 233 | { |
94a09ea5 | 234 | gs_objects.m_colListBox = wxColour( red >> SHIFT, |
643ccf62 VZ |
235 | green >> SHIFT, |
236 | blue >> SHIFT ); | |
74f55195 VS |
237 | } |
238 | else | |
643ccf62 | 239 | { |
94a09ea5 | 240 | gs_objects.m_colListBox = wxColour(*wxWHITE); |
643ccf62 | 241 | } |
74f55195 | 242 | } |
94a09ea5 | 243 | return gs_objects.m_colListBox; |
643ccf62 VZ |
244 | |
245 | case wxSYS_COLOUR_MENUTEXT: | |
246 | case wxSYS_COLOUR_WINDOWTEXT: | |
247 | case wxSYS_COLOUR_CAPTIONTEXT: | |
248 | case wxSYS_COLOUR_INACTIVECAPTIONTEXT: | |
249 | case wxSYS_COLOUR_BTNTEXT: | |
94a09ea5 | 250 | if (!gs_objects.m_colBtnText.Ok()) |
37d403aa | 251 | { |
dbcbe229 VZ |
252 | int red, green, blue; |
253 | if ( !GetColourFromGTKWidget(red, green, blue, | |
254 | wxGTK_BUTTON, | |
255 | GTK_STATE_NORMAL, | |
256 | wxGTK_FG) ) | |
37d403aa | 257 | { |
dbcbe229 VZ |
258 | red = |
259 | green = | |
260 | blue = 0; | |
37d403aa | 261 | } |
dbcbe229 | 262 | |
94a09ea5 | 263 | gs_objects.m_colBtnText = wxColour( red >> SHIFT, |
dbcbe229 VZ |
264 | green >> SHIFT, |
265 | blue >> SHIFT ); | |
37d403aa | 266 | } |
94a09ea5 | 267 | return gs_objects.m_colBtnText; |
643ccf62 | 268 | |
17d61cbf | 269 | case wxSYS_COLOUR_INFOBK: |
c05cc2c7 RR |
270 | if (!gs_objects.m_colTooltip.Ok()) { |
271 | GetTooltipColors(); | |
272 | } | |
273 | return gs_objects.m_colTooltip; | |
274 | ||
275 | case wxSYS_COLOUR_INFOTEXT: | |
276 | if (!gs_objects.m_colTooltipText.Ok()) { | |
277 | GetTooltipColors(); | |
278 | } | |
279 | return gs_objects.m_colTooltipText; | |
17d61cbf | 280 | |
643ccf62 | 281 | case wxSYS_COLOUR_HIGHLIGHTTEXT: |
94a09ea5 | 282 | if (!gs_objects.m_colHighlightText.Ok()) |
643ccf62 | 283 | { |
984152a6 | 284 | wxColour hclr = GetColour(wxSYS_COLOUR_HIGHLIGHT); |
643ccf62 | 285 | if (hclr.Red() > 200 && hclr.Green() > 200 && hclr.Blue() > 200) |
94a09ea5 | 286 | gs_objects.m_colHighlightText = wxColour(*wxBLACK); |
643ccf62 | 287 | else |
94a09ea5 | 288 | gs_objects.m_colHighlightText = wxColour(*wxWHITE); |
643ccf62 | 289 | } |
94a09ea5 | 290 | return gs_objects.m_colHighlightText; |
643ccf62 | 291 | |
643ccf62 VZ |
292 | case wxSYS_COLOUR_APPWORKSPACE: |
293 | return *wxWHITE; // ? | |
221ed576 | 294 | |
9d6a9fdd RR |
295 | case wxSYS_COLOUR_ACTIVECAPTION: |
296 | case wxSYS_COLOUR_MENUHILIGHT: | |
297 | if (!gs_objects.m_colMenuItemHighlight.Ok()) | |
298 | { | |
299 | int red, green, blue; | |
300 | if ( !GetColourFromGTKWidget(red, green, blue, | |
301 | wxGTK_MENUITEM, | |
302 | GTK_STATE_SELECTED, | |
303 | wxGTK_BG) ) | |
304 | { | |
305 | red = | |
306 | green = | |
307 | blue = 0; | |
308 | } | |
309 | ||
310 | gs_objects.m_colMenuItemHighlight = wxColour( red >> SHIFT, | |
311 | green >> SHIFT, | |
312 | blue >> SHIFT ); | |
313 | } | |
314 | return gs_objects.m_colMenuItemHighlight; | |
315 | ||
221ed576 VZ |
316 | case wxSYS_COLOUR_HOTLIGHT: |
317 | case wxSYS_COLOUR_GRADIENTACTIVECAPTION: | |
318 | case wxSYS_COLOUR_GRADIENTINACTIVECAPTION: | |
221ed576 VZ |
319 | // TODO |
320 | return *wxBLACK; | |
321 | ||
322 | case wxSYS_COLOUR_MAX: | |
323 | default: | |
324 | wxFAIL_MSG( _T("unknown system colour index") ); | |
e24b680c | 325 | } |
643ccf62 | 326 | |
e24b680c | 327 | return *wxWHITE; |
ff7b1510 | 328 | } |
c801d85f | 329 | |
0ab5e0e8 | 330 | wxFont wxSystemSettingsNative::GetFont( wxSystemFont index ) |
c801d85f | 331 | { |
2d17d68f | 332 | switch (index) |
c801d85f | 333 | { |
2d17d68f RR |
334 | case wxSYS_OEM_FIXED_FONT: |
335 | case wxSYS_ANSI_FIXED_FONT: | |
336 | case wxSYS_SYSTEM_FIXED_FONT: | |
337 | { | |
338 | return *wxNORMAL_FONT; | |
339 | } | |
340 | case wxSYS_ANSI_VAR_FONT: | |
341 | case wxSYS_SYSTEM_FONT: | |
342 | case wxSYS_DEVICE_DEFAULT_FONT: | |
343 | case wxSYS_DEFAULT_GUI_FONT: | |
344 | { | |
94a09ea5 | 345 | if (!gs_objects.m_fontSystem.Ok()) |
d06b34a7 | 346 | { |
94a09ea5 | 347 | gs_objects.m_fontSystem = wxFont( 12, wxSWISS, wxNORMAL, wxNORMAL ); |
d06b34a7 | 348 | } |
94a09ea5 | 349 | return gs_objects.m_fontSystem; |
2d17d68f | 350 | } |
c801d85f | 351 | |
0ab5e0e8 VS |
352 | default: |
353 | return wxNullFont; | |
354 | } | |
c801d85f | 355 | } |
c801d85f | 356 | |
9b0b5ba7 | 357 | int wxSystemSettingsNative::GetMetric( wxSystemMetric index, wxWindow* win ) |
c801d85f | 358 | { |
1ecc4d80 RR |
359 | switch (index) |
360 | { | |
9b0b5ba7 RR |
361 | case wxSYS_CURSOR_X: |
362 | case wxSYS_CURSOR_Y: | |
3cbab641 | 363 | return 16; |
9b0b5ba7 | 364 | |
f618020a MB |
365 | // MBN: ditto for icons |
366 | case wxSYS_ICON_X: return 32; | |
367 | case wxSYS_ICON_Y: return 32; | |
9b0b5ba7 RR |
368 | |
369 | case wxSYS_SCREEN_X: | |
3cbab641 | 370 | return gdk_screen_width(); |
9b0b5ba7 RR |
371 | |
372 | case wxSYS_SCREEN_Y: | |
3cbab641 | 373 | return gdk_screen_height(); |
9b0b5ba7 RR |
374 | |
375 | case wxSYS_HSCROLL_Y: return 15; | |
376 | case wxSYS_VSCROLL_X: return 15; | |
377 | ||
378 | // a gtk1 implementation should be possible too if gtk2 efficiency/convenience functions aren't used | |
3cbab641 | 379 | #if 0 |
9b0b5ba7 RR |
380 | case wxSYS_CAPTION_Y: |
381 | if (!window) | |
382 | // No realized window specified, and no implementation for that case yet. | |
383 | return -1; | |
384 | ||
385 | // Check if wm supports frame extents - we can't know the caption height if it does not. | |
386 | #if GTK_CHECK_VERSION(2,2,0) | |
387 | if (!gtk_check_version(2,2,0)) | |
388 | { | |
389 | if (!gdk_x11_screen_supports_net_wm_hint( | |
390 | gdk_drawable_get_screen(window), | |
391 | gdk_atom_intern("_NET_FRAME_EXTENTS", false) ) ) | |
392 | return -1; | |
393 | } | |
394 | else | |
395 | #endif | |
396 | { | |
397 | if (!gdk_net_wm_supports(gdk_atom_intern("_NET_FRAME_EXTENTS", false))) | |
398 | return -1; | |
399 | } | |
400 | ||
401 | wxASSERT_MSG( wxDynamicCast(win, wxTopLevelWindow), | |
402 | wxT("Asking for caption height of a non toplevel window") ); | |
403 | ||
404 | // Get the height of the top windowmanager border. | |
405 | // This is the titlebar in most cases. The titlebar might be elsewhere, and | |
406 | // we could check which is the thickest wm border to decide on which side the | |
407 | // titlebar is, but this might lead to interesting behaviours in used code. | |
408 | // Reconsider when we have a way to report to the user on which side it is. | |
409 | ||
410 | Atom type; | |
411 | gint format; | |
412 | gulong nitems; | |
9b0b5ba7 | 413 | |
5ac8ce9e RR |
414 | #if GTK_CHECK_VERSION(2,2,0) |
415 | if (!gtk_check_version(2,2,0)) | |
416 | { | |
417 | gulong bytes_after; | |
418 | success = (XGetWindowProperty (GDK_DISPLAY_XDISPLAY(gdk_drawable_get_display(window)), | |
9b0b5ba7 RR |
419 | GDK_WINDOW_XWINDOW(window), |
420 | gdk_x11_get_xatom_by_name_for_display ( | |
421 | gdk_drawable_get_display(window), | |
422 | "_NET_FRAME_EXTENTS" ), | |
423 | 0, // left, right, top, bottom, CARDINAL[4]/32 | |
424 | G_MAXLONG, // size of long | |
425 | false, // do not delete property | |
426 | XA_CARDINAL, // 32 bit | |
427 | &type, &format, &nitems, &bytes_after, &data | |
5ac8ce9e RR |
428 | ) == Success); |
429 | } | |
430 | #endif | |
431 | if (success) | |
9b0b5ba7 RR |
432 | { |
433 | int caption_height = -1; | |
434 | ||
435 | if ((type == XA_CARDINAL) && (format == 32) && (nitems >= 3) && (data)) | |
436 | { | |
437 | long *borders; | |
438 | borders = (long*)data; | |
439 | caption_height = borders[2]; // top frame extent | |
440 | } | |
441 | ||
442 | if (data) | |
443 | XFree(data); | |
444 | ||
445 | return caption_height; | |
446 | } | |
447 | ||
448 | // Try a default approach without a window pointer, if possible | |
449 | // ... | |
450 | ||
451 | return -1; | |
452 | #endif // gtk2 | |
453 | ||
454 | case wxSYS_PENWINDOWS_PRESENT: | |
455 | // No MS Windows for Pen computing extension available in X11 based gtk+. | |
456 | return 0; | |
457 | ||
458 | default: | |
1d451c5b | 459 | return -1; // metric is unknown |
1ecc4d80 | 460 | } |
c67daf87 | 461 | } |
253293c1 | 462 | |
0ab5e0e8 | 463 | bool wxSystemSettingsNative::HasFeature(wxSystemFeature index) |
253293c1 VS |
464 | { |
465 | switch (index) | |
466 | { | |
17a1ebd1 VZ |
467 | case wxSYS_CAN_ICONIZE_FRAME: |
468 | return FALSE; | |
469 | ||
253293c1 | 470 | case wxSYS_CAN_DRAW_FRAME_DECORATIONS: |
17a1ebd1 VZ |
471 | return TRUE; |
472 | ||
253293c1 VS |
473 | default: |
474 | return FALSE; | |
475 | } | |
476 | } |