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