]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
e7c80f9e | 2 | // Name: src/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" |
e7c80f9e | 15 | |
ce5d92e1 WS |
16 | #ifndef WX_PRECOMP |
17 | #include "wx/cmndata.h" | |
1832043f | 18 | #include "wx/toplevel.h" |
ce5d92e1 WS |
19 | #endif |
20 | ||
2b5f62a0 | 21 | #include "wx/fontutil.h" |
e3527f7b | 22 | #include "wx/fontenum.h" |
d06b34a7 | 23 | |
aed8ac3f | 24 | #include <gtk/gtk.h> |
53357e24 | 25 | #include "wx/gtk/private/win_gtk.h" |
83624f79 | 26 | |
166b4de7 | 27 | bool wxGetFrameExtents(GdkWindow* window, int* left, int* right, int* top, int* bottom); |
9b0b5ba7 | 28 | |
0ab5e0e8 | 29 | // ---------------------------------------------------------------------------- |
0d0b57ac | 30 | // wxSystemSettings implementation |
0ab5e0e8 VS |
31 | // ---------------------------------------------------------------------------- |
32 | ||
0d0b57ac PC |
33 | static wxFont gs_fontSystem; |
34 | ||
35 | static GtkContainer* ContainerWidget() | |
a51d7c4b | 36 | { |
0d0b57ac PC |
37 | static GtkContainer* s_widget; |
38 | if (s_widget == NULL) | |
39 | { | |
40 | s_widget = GTK_CONTAINER(gtk_fixed_new()); | |
41 | GtkWidget* window = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
42 | gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(s_widget)); | |
43 | } | |
44 | return s_widget; | |
a51d7c4b JS |
45 | } |
46 | ||
0d0b57ac PC |
47 | extern "C" { |
48 | static void style_set(GtkWidget*, GtkStyle*, void*) | |
643ccf62 | 49 | { |
0d0b57ac PC |
50 | gs_fontSystem = wxNullFont; |
51 | } | |
52 | } | |
53 | ||
54 | static const GtkStyle* ButtonStyle() | |
643ccf62 | 55 | { |
0d0b57ac PC |
56 | static GtkWidget* s_widget; |
57 | if (s_widget == NULL) | |
dbcbe229 | 58 | { |
0d0b57ac PC |
59 | s_widget = gtk_button_new(); |
60 | gtk_container_add(ContainerWidget(), s_widget); | |
61 | gtk_widget_ensure_style(s_widget); | |
62 | g_signal_connect(s_widget, "style_set", G_CALLBACK(style_set), NULL); | |
dbcbe229 | 63 | } |
0d0b57ac PC |
64 | return s_widget->style; |
65 | } | |
dbcbe229 | 66 | |
0d0b57ac PC |
67 | static const GtkStyle* ListStyle() |
68 | { | |
69 | static GtkWidget* s_widget; | |
70 | if (s_widget == NULL) | |
71 | { | |
72 | s_widget = gtk_tree_view_new_with_model( | |
73 | GTK_TREE_MODEL(gtk_list_store_new(1, G_TYPE_INT))); | |
74 | gtk_container_add(ContainerWidget(), s_widget); | |
75 | gtk_widget_ensure_style(s_widget); | |
76 | } | |
77 | return s_widget->style; | |
78 | } | |
643ccf62 | 79 | |
0d0b57ac PC |
80 | static const GtkStyle* TextCtrlStyle() |
81 | { | |
82 | static GtkWidget* s_widget; | |
83 | if (s_widget == NULL) | |
643ccf62 | 84 | { |
0d0b57ac PC |
85 | s_widget = gtk_text_view_new(); |
86 | gtk_container_add(ContainerWidget(), s_widget); | |
87 | gtk_widget_ensure_style(s_widget); | |
643ccf62 | 88 | } |
0d0b57ac PC |
89 | return s_widget->style; |
90 | } | |
643ccf62 | 91 | |
0d0b57ac PC |
92 | static const GtkStyle* MenuItemStyle() |
93 | { | |
94 | static GtkWidget* s_widget; | |
95 | if (s_widget == NULL) | |
96 | { | |
97 | s_widget = gtk_menu_item_new(); | |
98 | gtk_container_add(ContainerWidget(), s_widget); | |
99 | gtk_widget_ensure_style(s_widget); | |
100 | } | |
101 | return s_widget->style; | |
102 | } | |
643ccf62 | 103 | |
0d0b57ac PC |
104 | static const GtkStyle* MenuBarStyle() |
105 | { | |
106 | static GtkWidget* s_widget; | |
107 | if (s_widget == NULL) | |
108 | { | |
109 | s_widget = gtk_menu_bar_new(); | |
110 | gtk_container_add(ContainerWidget(), s_widget); | |
111 | gtk_widget_ensure_style(s_widget); | |
112 | } | |
113 | return s_widget->style; | |
643ccf62 VZ |
114 | } |
115 | ||
0d0b57ac | 116 | static const GtkStyle* ToolTipStyle() |
c05cc2c7 | 117 | { |
0d0b57ac PC |
118 | static GtkWidget* s_widget; |
119 | if (s_widget == NULL) | |
120 | { | |
121 | s_widget = gtk_window_new(GTK_WINDOW_POPUP); | |
122 | const char* name = "gtk-tooltip"; | |
123 | if (gtk_check_version(2, 11, 0)) | |
124 | name = "gtk-tooltips"; | |
125 | gtk_widget_set_name(s_widget, name); | |
126 | gtk_widget_ensure_style(s_widget); | |
127 | } | |
128 | return s_widget->style; | |
c05cc2c7 RR |
129 | } |
130 | ||
0ab5e0e8 | 131 | wxColour wxSystemSettingsNative::GetColour( wxSystemColour index ) |
c801d85f | 132 | { |
b0ae510a | 133 | wxColor color; |
db434467 | 134 | switch (index) |
c801d85f | 135 | { |
db434467 RR |
136 | case wxSYS_COLOUR_SCROLLBAR: |
137 | case wxSYS_COLOUR_BACKGROUND: | |
0d0b57ac | 138 | //case wxSYS_COLOUR_DESKTOP: |
db434467 RR |
139 | case wxSYS_COLOUR_INACTIVECAPTION: |
140 | case wxSYS_COLOUR_MENU: | |
141 | case wxSYS_COLOUR_WINDOWFRAME: | |
142 | case wxSYS_COLOUR_ACTIVEBORDER: | |
143 | case wxSYS_COLOUR_INACTIVEBORDER: | |
144 | case wxSYS_COLOUR_BTNFACE: | |
0d0b57ac | 145 | //case wxSYS_COLOUR_3DFACE: |
5b211fbf | 146 | case wxSYS_COLOUR_3DLIGHT: |
0d0b57ac | 147 | color = wxColor(ButtonStyle()->bg[GTK_STATE_NORMAL]); |
b0ae510a | 148 | break; |
643ccf62 | 149 | |
db434467 | 150 | case wxSYS_COLOUR_WINDOW: |
0d0b57ac | 151 | color = wxColor(TextCtrlStyle()->base[GTK_STATE_NORMAL]); |
b0ae510a | 152 | break; |
643ccf62 | 153 | |
3ab6b7e6 | 154 | case wxSYS_COLOUR_MENUBAR: |
0d0b57ac | 155 | color = wxColor(MenuBarStyle()->bg[GTK_STATE_NORMAL]); |
3ab6b7e6 VZ |
156 | break; |
157 | ||
37d403aa | 158 | case wxSYS_COLOUR_3DDKSHADOW: |
b0ae510a PC |
159 | color = *wxBLACK; |
160 | break; | |
643ccf62 | 161 | |
db434467 RR |
162 | case wxSYS_COLOUR_GRAYTEXT: |
163 | case wxSYS_COLOUR_BTNSHADOW: | |
37d403aa | 164 | //case wxSYS_COLOUR_3DSHADOW: |
37d403aa | 165 | { |
984152a6 | 166 | wxColour faceColour(GetColour(wxSYS_COLOUR_3DFACE)); |
0d0b57ac | 167 | color = |
b0ae510a PC |
168 | wxColour((unsigned char) (faceColour.Red() * 2 / 3), |
169 | (unsigned char) (faceColour.Green() * 2 / 3), | |
170 | (unsigned char) (faceColour.Blue() * 2 / 3)); | |
db434467 | 171 | } |
b0ae510a | 172 | break; |
643ccf62 | 173 | |
0d0b57ac PC |
174 | case wxSYS_COLOUR_BTNHIGHLIGHT: |
175 | //case wxSYS_COLOUR_BTNHILIGHT: | |
176 | //case wxSYS_COLOUR_3DHIGHLIGHT: | |
177 | //case wxSYS_COLOUR_3DHILIGHT: | |
b0ae510a PC |
178 | color = *wxWHITE; |
179 | break; | |
643ccf62 | 180 | |
db434467 | 181 | case wxSYS_COLOUR_HIGHLIGHT: |
0d0b57ac | 182 | color = wxColor(ButtonStyle()->bg[GTK_STATE_SELECTED]); |
b0ae510a | 183 | break; |
643ccf62 | 184 | |
74f55195 | 185 | case wxSYS_COLOUR_LISTBOX: |
0d0b57ac | 186 | color = wxColor(ListStyle()->base[GTK_STATE_NORMAL]); |
b0ae510a | 187 | break; |
643ccf62 | 188 | |
9f2968ad VZ |
189 | case wxSYS_COLOUR_LISTBOXTEXT: |
190 | color = wxColor(ListStyle()->text[GTK_STATE_NORMAL]); | |
191 | break; | |
192 | ||
643ccf62 VZ |
193 | case wxSYS_COLOUR_MENUTEXT: |
194 | case wxSYS_COLOUR_WINDOWTEXT: | |
195 | case wxSYS_COLOUR_CAPTIONTEXT: | |
196 | case wxSYS_COLOUR_INACTIVECAPTIONTEXT: | |
197 | case wxSYS_COLOUR_BTNTEXT: | |
0d0b57ac | 198 | color = wxColor(ButtonStyle()->fg[GTK_STATE_NORMAL]); |
b0ae510a | 199 | break; |
643ccf62 | 200 | |
17d61cbf | 201 | case wxSYS_COLOUR_INFOBK: |
0d0b57ac | 202 | color = wxColor(ToolTipStyle()->bg[GTK_STATE_NORMAL]); |
b0ae510a | 203 | break; |
c05cc2c7 RR |
204 | |
205 | case wxSYS_COLOUR_INFOTEXT: | |
0d0b57ac | 206 | color = wxColor(ToolTipStyle()->fg[GTK_STATE_NORMAL]); |
b0ae510a | 207 | break; |
17d61cbf | 208 | |
643ccf62 | 209 | case wxSYS_COLOUR_HIGHLIGHTTEXT: |
0d0b57ac | 210 | color = wxColor(ButtonStyle()->fg[GTK_STATE_SELECTED]); |
b0ae510a | 211 | break; |
643ccf62 | 212 | |
643ccf62 | 213 | case wxSYS_COLOUR_APPWORKSPACE: |
b0ae510a PC |
214 | color = *wxWHITE; // ? |
215 | break; | |
221ed576 | 216 | |
9d6a9fdd RR |
217 | case wxSYS_COLOUR_ACTIVECAPTION: |
218 | case wxSYS_COLOUR_MENUHILIGHT: | |
0d0b57ac | 219 | color = wxColor(MenuItemStyle()->bg[GTK_STATE_SELECTED]); |
b0ae510a | 220 | break; |
9d6a9fdd | 221 | |
221ed576 VZ |
222 | case wxSYS_COLOUR_HOTLIGHT: |
223 | case wxSYS_COLOUR_GRADIENTACTIVECAPTION: | |
224 | case wxSYS_COLOUR_GRADIENTINACTIVECAPTION: | |
221ed576 | 225 | // TODO |
b0ae510a PC |
226 | color = *wxBLACK; |
227 | break; | |
221ed576 VZ |
228 | |
229 | case wxSYS_COLOUR_MAX: | |
230 | default: | |
9a83f860 | 231 | wxFAIL_MSG( wxT("unknown system colour index") ); |
b0ae510a PC |
232 | color = *wxWHITE; |
233 | break; | |
e24b680c | 234 | } |
643ccf62 | 235 | |
e3527f7b | 236 | wxASSERT(color.IsOk()); |
b0ae510a | 237 | return color; |
ff7b1510 | 238 | } |
c801d85f | 239 | |
0ab5e0e8 | 240 | wxFont wxSystemSettingsNative::GetFont( wxSystemFont index ) |
c801d85f | 241 | { |
b0ae510a | 242 | wxFont font; |
2d17d68f | 243 | switch (index) |
c801d85f | 244 | { |
2d17d68f RR |
245 | case wxSYS_OEM_FIXED_FONT: |
246 | case wxSYS_ANSI_FIXED_FONT: | |
247 | case wxSYS_SYSTEM_FIXED_FONT: | |
b0ae510a PC |
248 | font = *wxNORMAL_FONT; |
249 | break; | |
250 | ||
2d17d68f RR |
251 | case wxSYS_ANSI_VAR_FONT: |
252 | case wxSYS_SYSTEM_FONT: | |
253 | case wxSYS_DEVICE_DEFAULT_FONT: | |
254 | case wxSYS_DEFAULT_GUI_FONT: | |
0d0b57ac | 255 | if (!gs_fontSystem.Ok()) |
d06b34a7 | 256 | { |
0d0b57ac PC |
257 | wxNativeFontInfo info; |
258 | info.description = ButtonStyle()->font_desc; | |
259 | gs_fontSystem = wxFont(info); | |
03647350 | 260 | |
330b3189 | 261 | #if wxUSE_FONTENUM |
e3527f7b FM |
262 | // (try to) heal the default font (on some common systems e.g. Ubuntu |
263 | // it's "Sans Serif" but the real font is called "Sans"): | |
264 | if (!wxFontEnumerator::IsValidFacename(gs_fontSystem.GetFaceName()) && | |
265 | gs_fontSystem.GetFaceName() == "Sans Serif") | |
266 | gs_fontSystem.SetFaceName("Sans"); | |
330b3189 | 267 | #endif // wxUSE_FONTENUM |
03647350 | 268 | |
0d0b57ac | 269 | info.description = NULL; |
d06b34a7 | 270 | } |
0d0b57ac | 271 | font = gs_fontSystem; |
b0ae510a | 272 | break; |
c801d85f | 273 | |
0ab5e0e8 | 274 | default: |
b0ae510a | 275 | break; |
0ab5e0e8 | 276 | } |
e3527f7b | 277 | |
330b3189 | 278 | wxASSERT( font.IsOk() ); |
e3527f7b | 279 | |
b0ae510a | 280 | return font; |
c801d85f | 281 | } |
c801d85f | 282 | |
ff654490 VZ |
283 | // helper: return the GtkSettings either for the screen the current window is |
284 | // on or for the default screen if window is NULL | |
285 | static GtkSettings *GetSettingsForWindowScreen(GdkWindow *window) | |
286 | { | |
287 | return window ? gtk_settings_get_for_screen(gdk_drawable_get_screen(window)) | |
288 | : gtk_settings_get_default(); | |
289 | } | |
290 | ||
53357e24 PC |
291 | static int GetBorderWidth(wxSystemMetric index, wxWindow* win) |
292 | { | |
293 | if (win->m_wxwindow) | |
294 | { | |
295 | wxPizza* pizza = WX_PIZZA(win->m_wxwindow); | |
296 | int x, y; | |
297 | pizza->get_border_widths(x, y); | |
298 | switch (index) | |
299 | { | |
300 | case wxSYS_BORDER_X: | |
301 | case wxSYS_EDGE_X: | |
302 | case wxSYS_FRAMESIZE_X: | |
303 | return x; | |
304 | default: | |
305 | return y; | |
306 | } | |
307 | } | |
308 | return -1; | |
309 | } | |
310 | ||
b0ae510a PC |
311 | int wxSystemSettingsNative::GetMetric( wxSystemMetric index, wxWindow* win ) |
312 | { | |
9b0b5ba7 RR |
313 | GdkWindow *window = NULL; |
314 | if(win && GTK_WIDGET_REALIZED(win->GetHandle())) | |
315 | window = win->GetHandle()->window; | |
9b0b5ba7 | 316 | |
1ecc4d80 RR |
317 | switch (index) |
318 | { | |
9b0b5ba7 RR |
319 | case wxSYS_BORDER_X: |
320 | case wxSYS_BORDER_Y: | |
321 | case wxSYS_EDGE_X: | |
322 | case wxSYS_EDGE_Y: | |
323 | case wxSYS_FRAMESIZE_X: | |
324 | case wxSYS_FRAMESIZE_Y: | |
53357e24 | 325 | if (win) |
9b0b5ba7 RR |
326 | { |
327 | wxTopLevelWindow *tlw = wxDynamicCast(win, wxTopLevelWindow); | |
328 | if (!tlw) | |
53357e24 PC |
329 | return GetBorderWidth(index, win); |
330 | else if (window) | |
9b0b5ba7 | 331 | { |
9b0b5ba7 RR |
332 | // Get the frame extents from the windowmanager. |
333 | // In most cases the top extent is the titlebar, so we use the bottom extent | |
334 | // for the heights. | |
37cafc6a | 335 | int right, bottom; |
166b4de7 | 336 | if (wxGetFrameExtents(window, NULL, &right, NULL, &bottom)) |
9b0b5ba7 | 337 | { |
37cafc6a | 338 | switch (index) |
9b0b5ba7 | 339 | { |
37cafc6a PC |
340 | case wxSYS_BORDER_X: |
341 | case wxSYS_EDGE_X: | |
342 | case wxSYS_FRAMESIZE_X: | |
343 | return right; // width of right extent | |
344 | default: | |
345 | return bottom; // height of bottom extent | |
9b0b5ba7 | 346 | } |
9b0b5ba7 RR |
347 | } |
348 | } | |
349 | } | |
350 | ||
351 | return -1; // no window specified | |
352 | ||
353 | case wxSYS_CURSOR_X: | |
354 | case wxSYS_CURSOR_Y: | |
ff654490 VZ |
355 | return gdk_display_get_default_cursor_size( |
356 | window ? gdk_drawable_get_display(window) | |
357 | : gdk_display_get_default()); | |
17d61cbf | 358 | |
44fd6f72 VS |
359 | case wxSYS_DCLICK_X: |
360 | case wxSYS_DCLICK_Y: | |
361 | gint dclick_distance; | |
ff654490 VZ |
362 | g_object_get(GetSettingsForWindowScreen(window), |
363 | "gtk-double-click-distance", &dclick_distance, NULL); | |
9b0b5ba7 RR |
364 | |
365 | return dclick_distance * 2; | |
44fd6f72 | 366 | |
5595181f VZ |
367 | case wxSYS_DCLICK_MSEC: |
368 | gint dclick; | |
ff654490 | 369 | g_object_get(GetSettingsForWindowScreen(window), |
5595181f VZ |
370 | "gtk-double-click-time", &dclick, NULL); |
371 | return dclick; | |
372 | ||
44fd6f72 VS |
373 | case wxSYS_DRAG_X: |
374 | case wxSYS_DRAG_Y: | |
375 | gint drag_threshold; | |
ff654490 VZ |
376 | g_object_get(GetSettingsForWindowScreen(window), |
377 | "gtk-dnd-drag-threshold", &drag_threshold, NULL); | |
44fd6f72 | 378 | |
9fcdfe05 RR |
379 | // The correct thing here would be to double the value |
380 | // since that is what the API wants. But the values | |
381 | // are much bigger under GNOME than under Windows and | |
382 | // just seem to much in many cases to be useful. | |
f4322df6 | 383 | // drag_threshold *= 2; |
9fcdfe05 | 384 | |
1e7373d0 | 385 | return drag_threshold; |
9b0b5ba7 | 386 | |
ff654490 VZ |
387 | case wxSYS_ICON_X: |
388 | case wxSYS_ICON_Y: | |
389 | return 32; | |
9b0b5ba7 RR |
390 | |
391 | case wxSYS_SCREEN_X: | |
ff654490 | 392 | if (window) |
9b0b5ba7 RR |
393 | return gdk_screen_get_width(gdk_drawable_get_screen(window)); |
394 | else | |
9b0b5ba7 RR |
395 | return gdk_screen_width(); |
396 | ||
397 | case wxSYS_SCREEN_Y: | |
ff654490 | 398 | if (window) |
9b0b5ba7 RR |
399 | return gdk_screen_get_height(gdk_drawable_get_screen(window)); |
400 | else | |
9b0b5ba7 RR |
401 | return gdk_screen_height(); |
402 | ||
ff654490 VZ |
403 | case wxSYS_HSCROLL_Y: |
404 | case wxSYS_VSCROLL_X: | |
405 | return 15; | |
9b0b5ba7 | 406 | |
9b0b5ba7 RR |
407 | case wxSYS_CAPTION_Y: |
408 | if (!window) | |
409 | // No realized window specified, and no implementation for that case yet. | |
410 | return -1; | |
411 | ||
9b0b5ba7 RR |
412 | wxASSERT_MSG( wxDynamicCast(win, wxTopLevelWindow), |
413 | wxT("Asking for caption height of a non toplevel window") ); | |
414 | ||
415 | // Get the height of the top windowmanager border. | |
416 | // This is the titlebar in most cases. The titlebar might be elsewhere, and | |
417 | // we could check which is the thickest wm border to decide on which side the | |
418 | // titlebar is, but this might lead to interesting behaviours in used code. | |
419 | // Reconsider when we have a way to report to the user on which side it is. | |
9b0b5ba7 | 420 | { |
37cafc6a | 421 | int top; |
166b4de7 | 422 | if (wxGetFrameExtents(window, NULL, NULL, &top, NULL)) |
9b0b5ba7 | 423 | { |
37cafc6a | 424 | return top; // top frame extent |
9b0b5ba7 | 425 | } |
9b0b5ba7 RR |
426 | } |
427 | ||
428 | // Try a default approach without a window pointer, if possible | |
429 | // ... | |
430 | ||
431 | return -1; | |
9b0b5ba7 RR |
432 | |
433 | case wxSYS_PENWINDOWS_PRESENT: | |
434 | // No MS Windows for Pen computing extension available in X11 based gtk+. | |
435 | return 0; | |
436 | ||
437 | default: | |
1d451c5b | 438 | return -1; // metric is unknown |
1ecc4d80 | 439 | } |
c67daf87 | 440 | } |
253293c1 | 441 | |
0ab5e0e8 | 442 | bool wxSystemSettingsNative::HasFeature(wxSystemFeature index) |
253293c1 VS |
443 | { |
444 | switch (index) | |
445 | { | |
17a1ebd1 | 446 | case wxSYS_CAN_ICONIZE_FRAME: |
e7c80f9e | 447 | return false; |
17a1ebd1 | 448 | |
253293c1 | 449 | case wxSYS_CAN_DRAW_FRAME_DECORATIONS: |
e7c80f9e | 450 | return true; |
17a1ebd1 | 451 | |
253293c1 | 452 | default: |
e7c80f9e | 453 | return false; |
253293c1 VS |
454 | } |
455 | } |