]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/gtk/settings.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Modified by: Mart Raudsepp (GetMetric) | |
6 | // Id: $Id$ | |
7 | // Copyright: (c) 1998 Robert Roebling | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | // For compilers that support precompilation, includes "wx.h". | |
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #include "wx/settings.h" | |
15 | ||
16 | #ifndef WX_PRECOMP | |
17 | #include "wx/cmndata.h" | |
18 | #include "wx/toplevel.h" | |
19 | #endif | |
20 | ||
21 | #include "wx/fontutil.h" | |
22 | ||
23 | #include <gtk/gtk.h> | |
24 | #include "wx/gtk/private/win_gtk.h" | |
25 | ||
26 | bool wxGetFrameExtents(GdkWindow* window, int* left, int* right, int* top, int* bottom); | |
27 | ||
28 | // ---------------------------------------------------------------------------- | |
29 | // wxSystemSettings implementation | |
30 | // ---------------------------------------------------------------------------- | |
31 | ||
32 | static wxFont gs_fontSystem; | |
33 | ||
34 | static GtkContainer* ContainerWidget() | |
35 | { | |
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; | |
44 | } | |
45 | ||
46 | extern "C" { | |
47 | static void style_set(GtkWidget*, GtkStyle*, void*) | |
48 | { | |
49 | gs_fontSystem = wxNullFont; | |
50 | } | |
51 | } | |
52 | ||
53 | static const GtkStyle* ButtonStyle() | |
54 | { | |
55 | static GtkWidget* s_widget; | |
56 | if (s_widget == NULL) | |
57 | { | |
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); | |
62 | } | |
63 | return s_widget->style; | |
64 | } | |
65 | ||
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 | } | |
78 | ||
79 | static const GtkStyle* TextCtrlStyle() | |
80 | { | |
81 | static GtkWidget* s_widget; | |
82 | if (s_widget == NULL) | |
83 | { | |
84 | s_widget = gtk_text_view_new(); | |
85 | gtk_container_add(ContainerWidget(), s_widget); | |
86 | gtk_widget_ensure_style(s_widget); | |
87 | } | |
88 | return s_widget->style; | |
89 | } | |
90 | ||
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 | } | |
102 | ||
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; | |
113 | } | |
114 | ||
115 | static const GtkStyle* ToolTipStyle() | |
116 | { | |
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; | |
128 | } | |
129 | ||
130 | wxColour wxSystemSettingsNative::GetColour( wxSystemColour index ) | |
131 | { | |
132 | wxColor color; | |
133 | switch (index) | |
134 | { | |
135 | case wxSYS_COLOUR_SCROLLBAR: | |
136 | case wxSYS_COLOUR_BACKGROUND: | |
137 | //case wxSYS_COLOUR_DESKTOP: | |
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: | |
144 | //case wxSYS_COLOUR_3DFACE: | |
145 | case wxSYS_COLOUR_3DLIGHT: | |
146 | color = wxColor(ButtonStyle()->bg[GTK_STATE_NORMAL]); | |
147 | break; | |
148 | ||
149 | case wxSYS_COLOUR_WINDOW: | |
150 | color = wxColor(TextCtrlStyle()->base[GTK_STATE_NORMAL]); | |
151 | break; | |
152 | ||
153 | case wxSYS_COLOUR_MENUBAR: | |
154 | color = wxColor(MenuBarStyle()->bg[GTK_STATE_NORMAL]); | |
155 | break; | |
156 | ||
157 | case wxSYS_COLOUR_3DDKSHADOW: | |
158 | color = *wxBLACK; | |
159 | break; | |
160 | ||
161 | case wxSYS_COLOUR_GRAYTEXT: | |
162 | case wxSYS_COLOUR_BTNSHADOW: | |
163 | //case wxSYS_COLOUR_3DSHADOW: | |
164 | { | |
165 | wxColour faceColour(GetColour(wxSYS_COLOUR_3DFACE)); | |
166 | color = | |
167 | wxColour((unsigned char) (faceColour.Red() * 2 / 3), | |
168 | (unsigned char) (faceColour.Green() * 2 / 3), | |
169 | (unsigned char) (faceColour.Blue() * 2 / 3)); | |
170 | } | |
171 | break; | |
172 | ||
173 | case wxSYS_COLOUR_BTNHIGHLIGHT: | |
174 | //case wxSYS_COLOUR_BTNHILIGHT: | |
175 | //case wxSYS_COLOUR_3DHIGHLIGHT: | |
176 | //case wxSYS_COLOUR_3DHILIGHT: | |
177 | color = *wxWHITE; | |
178 | break; | |
179 | ||
180 | case wxSYS_COLOUR_HIGHLIGHT: | |
181 | color = wxColor(ButtonStyle()->bg[GTK_STATE_SELECTED]); | |
182 | break; | |
183 | ||
184 | case wxSYS_COLOUR_LISTBOX: | |
185 | color = wxColor(ListStyle()->base[GTK_STATE_NORMAL]); | |
186 | break; | |
187 | ||
188 | case wxSYS_COLOUR_LISTBOXTEXT: | |
189 | color = wxColor(ListStyle()->text[GTK_STATE_NORMAL]); | |
190 | break; | |
191 | ||
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: | |
197 | color = wxColor(ButtonStyle()->fg[GTK_STATE_NORMAL]); | |
198 | break; | |
199 | ||
200 | case wxSYS_COLOUR_INFOBK: | |
201 | color = wxColor(ToolTipStyle()->bg[GTK_STATE_NORMAL]); | |
202 | break; | |
203 | ||
204 | case wxSYS_COLOUR_INFOTEXT: | |
205 | color = wxColor(ToolTipStyle()->fg[GTK_STATE_NORMAL]); | |
206 | break; | |
207 | ||
208 | case wxSYS_COLOUR_HIGHLIGHTTEXT: | |
209 | color = wxColor(ButtonStyle()->fg[GTK_STATE_SELECTED]); | |
210 | break; | |
211 | ||
212 | case wxSYS_COLOUR_APPWORKSPACE: | |
213 | color = *wxWHITE; // ? | |
214 | break; | |
215 | ||
216 | case wxSYS_COLOUR_ACTIVECAPTION: | |
217 | case wxSYS_COLOUR_MENUHILIGHT: | |
218 | color = wxColor(MenuItemStyle()->bg[GTK_STATE_SELECTED]); | |
219 | break; | |
220 | ||
221 | case wxSYS_COLOUR_HOTLIGHT: | |
222 | case wxSYS_COLOUR_GRADIENTACTIVECAPTION: | |
223 | case wxSYS_COLOUR_GRADIENTINACTIVECAPTION: | |
224 | // TODO | |
225 | color = *wxBLACK; | |
226 | break; | |
227 | ||
228 | case wxSYS_COLOUR_MAX: | |
229 | default: | |
230 | wxFAIL_MSG( _T("unknown system colour index") ); | |
231 | color = *wxWHITE; | |
232 | break; | |
233 | } | |
234 | ||
235 | return color; | |
236 | } | |
237 | ||
238 | wxFont wxSystemSettingsNative::GetFont( wxSystemFont index ) | |
239 | { | |
240 | wxFont font; | |
241 | switch (index) | |
242 | { | |
243 | case wxSYS_OEM_FIXED_FONT: | |
244 | case wxSYS_ANSI_FIXED_FONT: | |
245 | case wxSYS_SYSTEM_FIXED_FONT: | |
246 | font = *wxNORMAL_FONT; | |
247 | break; | |
248 | ||
249 | case wxSYS_ANSI_VAR_FONT: | |
250 | case wxSYS_SYSTEM_FONT: | |
251 | case wxSYS_DEVICE_DEFAULT_FONT: | |
252 | case wxSYS_DEFAULT_GUI_FONT: | |
253 | if (!gs_fontSystem.Ok()) | |
254 | { | |
255 | wxNativeFontInfo info; | |
256 | info.description = ButtonStyle()->font_desc; | |
257 | gs_fontSystem = wxFont(info); | |
258 | info.description = NULL; | |
259 | } | |
260 | font = gs_fontSystem; | |
261 | break; | |
262 | ||
263 | default: | |
264 | break; | |
265 | } | |
266 | return font; | |
267 | } | |
268 | ||
269 | // helper: return the GtkSettings either for the screen the current window is | |
270 | // on or for the default screen if window is NULL | |
271 | static GtkSettings *GetSettingsForWindowScreen(GdkWindow *window) | |
272 | { | |
273 | return window ? gtk_settings_get_for_screen(gdk_drawable_get_screen(window)) | |
274 | : gtk_settings_get_default(); | |
275 | } | |
276 | ||
277 | static int GetBorderWidth(wxSystemMetric index, wxWindow* win) | |
278 | { | |
279 | if (win->m_wxwindow) | |
280 | { | |
281 | wxPizza* pizza = WX_PIZZA(win->m_wxwindow); | |
282 | int x, y; | |
283 | pizza->get_border_widths(x, y); | |
284 | switch (index) | |
285 | { | |
286 | case wxSYS_BORDER_X: | |
287 | case wxSYS_EDGE_X: | |
288 | case wxSYS_FRAMESIZE_X: | |
289 | return x; | |
290 | default: | |
291 | return y; | |
292 | } | |
293 | } | |
294 | return -1; | |
295 | } | |
296 | ||
297 | int wxSystemSettingsNative::GetMetric( wxSystemMetric index, wxWindow* win ) | |
298 | { | |
299 | GdkWindow *window = NULL; | |
300 | if(win && GTK_WIDGET_REALIZED(win->GetHandle())) | |
301 | window = win->GetHandle()->window; | |
302 | ||
303 | switch (index) | |
304 | { | |
305 | case wxSYS_BORDER_X: | |
306 | case wxSYS_BORDER_Y: | |
307 | case wxSYS_EDGE_X: | |
308 | case wxSYS_EDGE_Y: | |
309 | case wxSYS_FRAMESIZE_X: | |
310 | case wxSYS_FRAMESIZE_Y: | |
311 | if (win) | |
312 | { | |
313 | wxTopLevelWindow *tlw = wxDynamicCast(win, wxTopLevelWindow); | |
314 | if (!tlw) | |
315 | return GetBorderWidth(index, win); | |
316 | else if (window) | |
317 | { | |
318 | // Get the frame extents from the windowmanager. | |
319 | // In most cases the top extent is the titlebar, so we use the bottom extent | |
320 | // for the heights. | |
321 | int right, bottom; | |
322 | if (wxGetFrameExtents(window, NULL, &right, NULL, &bottom)) | |
323 | { | |
324 | switch (index) | |
325 | { | |
326 | case wxSYS_BORDER_X: | |
327 | case wxSYS_EDGE_X: | |
328 | case wxSYS_FRAMESIZE_X: | |
329 | return right; // width of right extent | |
330 | default: | |
331 | return bottom; // height of bottom extent | |
332 | } | |
333 | } | |
334 | } | |
335 | } | |
336 | ||
337 | return -1; // no window specified | |
338 | ||
339 | case wxSYS_CURSOR_X: | |
340 | case wxSYS_CURSOR_Y: | |
341 | return gdk_display_get_default_cursor_size( | |
342 | window ? gdk_drawable_get_display(window) | |
343 | : gdk_display_get_default()); | |
344 | ||
345 | case wxSYS_DCLICK_X: | |
346 | case wxSYS_DCLICK_Y: | |
347 | gint dclick_distance; | |
348 | g_object_get(GetSettingsForWindowScreen(window), | |
349 | "gtk-double-click-distance", &dclick_distance, NULL); | |
350 | ||
351 | return dclick_distance * 2; | |
352 | ||
353 | case wxSYS_DCLICK_MSEC: | |
354 | gint dclick; | |
355 | g_object_get(GetSettingsForWindowScreen(window), | |
356 | "gtk-double-click-time", &dclick, NULL); | |
357 | return dclick; | |
358 | ||
359 | case wxSYS_DRAG_X: | |
360 | case wxSYS_DRAG_Y: | |
361 | gint drag_threshold; | |
362 | g_object_get(GetSettingsForWindowScreen(window), | |
363 | "gtk-dnd-drag-threshold", &drag_threshold, NULL); | |
364 | ||
365 | // The correct thing here would be to double the value | |
366 | // since that is what the API wants. But the values | |
367 | // are much bigger under GNOME than under Windows and | |
368 | // just seem to much in many cases to be useful. | |
369 | // drag_threshold *= 2; | |
370 | ||
371 | return drag_threshold; | |
372 | ||
373 | case wxSYS_ICON_X: | |
374 | case wxSYS_ICON_Y: | |
375 | return 32; | |
376 | ||
377 | case wxSYS_SCREEN_X: | |
378 | if (window) | |
379 | return gdk_screen_get_width(gdk_drawable_get_screen(window)); | |
380 | else | |
381 | return gdk_screen_width(); | |
382 | ||
383 | case wxSYS_SCREEN_Y: | |
384 | if (window) | |
385 | return gdk_screen_get_height(gdk_drawable_get_screen(window)); | |
386 | else | |
387 | return gdk_screen_height(); | |
388 | ||
389 | case wxSYS_HSCROLL_Y: | |
390 | case wxSYS_VSCROLL_X: | |
391 | return 15; | |
392 | ||
393 | case wxSYS_CAPTION_Y: | |
394 | if (!window) | |
395 | // No realized window specified, and no implementation for that case yet. | |
396 | return -1; | |
397 | ||
398 | wxASSERT_MSG( wxDynamicCast(win, wxTopLevelWindow), | |
399 | wxT("Asking for caption height of a non toplevel window") ); | |
400 | ||
401 | // Get the height of the top windowmanager border. | |
402 | // This is the titlebar in most cases. The titlebar might be elsewhere, and | |
403 | // we could check which is the thickest wm border to decide on which side the | |
404 | // titlebar is, but this might lead to interesting behaviours in used code. | |
405 | // Reconsider when we have a way to report to the user on which side it is. | |
406 | { | |
407 | int top; | |
408 | if (wxGetFrameExtents(window, NULL, NULL, &top, NULL)) | |
409 | { | |
410 | return top; // top frame extent | |
411 | } | |
412 | } | |
413 | ||
414 | // Try a default approach without a window pointer, if possible | |
415 | // ... | |
416 | ||
417 | return -1; | |
418 | ||
419 | case wxSYS_PENWINDOWS_PRESENT: | |
420 | // No MS Windows for Pen computing extension available in X11 based gtk+. | |
421 | return 0; | |
422 | ||
423 | default: | |
424 | return -1; // metric is unknown | |
425 | } | |
426 | } | |
427 | ||
428 | bool wxSystemSettingsNative::HasFeature(wxSystemFeature index) | |
429 | { | |
430 | switch (index) | |
431 | { | |
432 | case wxSYS_CAN_ICONIZE_FRAME: | |
433 | return false; | |
434 | ||
435 | case wxSYS_CAN_DRAW_FRAME_DECORATIONS: | |
436 | return true; | |
437 | ||
438 | default: | |
439 | return false; | |
440 | } | |
441 | } |