1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/settings.cpp
4 // Author: Robert Roebling
5 // Modified by: Mart Raudsepp (GetMetric)
7 // Copyright: (c) 1998 Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
14 #include "wx/settings.h"
17 #include "wx/cmndata.h"
18 #include "wx/toplevel.h"
21 #include "wx/fontutil.h"
23 #include <gtk/gtkversion.h>
24 #if GTK_CHECK_VERSION(2, 9, 0)
26 #undef GTK_DISABLE_DEPRECATED
31 #include <X11/Xatom.h>
33 // ----------------------------------------------------------------------------
35 // ----------------------------------------------------------------------------
37 struct wxSystemObjects
39 wxColour m_colBtnFace
,
46 m_colMenuItemHighlight
,
53 static wxSystemObjects gs_objects
;
55 // ----------------------------------------------------------------------------
56 // wxSystemSettings implementation
57 // ----------------------------------------------------------------------------
59 // kind of widget to use in GetColourFromGTKWidget
75 // wxSystemSettings::GetColour() helper: get the colours from a GTK+
76 // widget style, return true if we did get them
77 static bool GetColourFromGTKWidget(GdkColor
& gdkColor
,
78 wxGtkWidgetType type
= wxGTK_BUTTON
,
79 GtkStateType state
= GTK_STATE_NORMAL
,
80 wxGtkColourType colour
= wxGTK_BG
)
86 wxFAIL_MSG( _T("unexpected GTK widget type") );
90 widget
= gtk_button_new();
94 widget
= gtk_tree_view_new_with_model(
95 (GtkTreeModel
*)gtk_list_store_new(1, G_TYPE_INT
));
99 widget
= gtk_menu_item_new();
102 GtkStyle
*def
= gtk_rc_get_style( widget
);
104 def
= gtk_widget_get_default_style();
106 const bool ok
= def
!= NULL
;
112 wxFAIL_MSG( _T("unexpected GTK colour type") );
116 gdkColor
= def
->fg
[state
];
120 gdkColor
= def
->bg
[state
];
124 gdkColor
= def
->base
[state
];
129 gtk_object_sink((GtkObject
*)widget
);
134 static void GetTooltipColors()
136 GtkWidget
* widget
= gtk_window_new(GTK_WINDOW_POPUP
);
137 const char* name
= "gtk-tooltip";
138 if (gtk_check_version(2, 11, 0))
139 name
= "gtk-tooltips";
140 gtk_widget_set_name(widget
, name
);
141 gtk_widget_ensure_style(widget
);
143 GdkColor c
= widget
->style
->bg
[GTK_STATE_NORMAL
];
144 gs_objects
.m_colTooltip
= wxColor(c
);
145 c
= widget
->style
->fg
[GTK_STATE_NORMAL
];
146 gs_objects
.m_colTooltipText
= wxColor(c
);
148 gtk_widget_destroy(widget
);
151 wxColour
wxSystemSettingsNative::GetColour( wxSystemColour index
)
157 case wxSYS_COLOUR_SCROLLBAR
:
158 case wxSYS_COLOUR_BACKGROUND
:
159 case wxSYS_COLOUR_INACTIVECAPTION
:
160 case wxSYS_COLOUR_MENU
:
161 case wxSYS_COLOUR_WINDOWFRAME
:
162 case wxSYS_COLOUR_ACTIVEBORDER
:
163 case wxSYS_COLOUR_INACTIVEBORDER
:
164 case wxSYS_COLOUR_BTNFACE
:
165 case wxSYS_COLOUR_MENUBAR
:
166 case wxSYS_COLOUR_3DLIGHT
:
167 if (!gs_objects
.m_colBtnFace
.Ok())
171 gdkColor
.blue
= 0x9c40;
172 GetColourFromGTKWidget(gdkColor
);
173 gs_objects
.m_colBtnFace
= wxColor(gdkColor
);
175 color
= gs_objects
.m_colBtnFace
;
178 case wxSYS_COLOUR_WINDOW
:
182 case wxSYS_COLOUR_3DDKSHADOW
:
186 case wxSYS_COLOUR_GRAYTEXT
:
187 case wxSYS_COLOUR_BTNSHADOW
:
188 //case wxSYS_COLOUR_3DSHADOW:
189 if (!gs_objects
.m_colBtnShadow
.Ok())
191 wxColour
faceColour(GetColour(wxSYS_COLOUR_3DFACE
));
192 gs_objects
.m_colBtnShadow
=
193 wxColour((unsigned char) (faceColour
.Red() * 2 / 3),
194 (unsigned char) (faceColour
.Green() * 2 / 3),
195 (unsigned char) (faceColour
.Blue() * 2 / 3));
197 color
= gs_objects
.m_colBtnShadow
;
200 case wxSYS_COLOUR_3DHIGHLIGHT
:
201 //case wxSYS_COLOUR_BTNHIGHLIGHT:
205 case wxSYS_COLOUR_HIGHLIGHT
:
206 if (!gs_objects
.m_colHighlight
.Ok())
210 gdkColor
.blue
= 0x9c40;
211 GetColourFromGTKWidget(
212 gdkColor
, wxGTK_BUTTON
, GTK_STATE_SELECTED
);
213 gs_objects
.m_colHighlight
= wxColour(gdkColor
);
215 color
= gs_objects
.m_colHighlight
;
218 case wxSYS_COLOUR_LISTBOX
:
219 if (!gs_objects
.m_colListBox
.Ok())
221 if ( GetColourFromGTKWidget(gdkColor
,
226 gs_objects
.m_colListBox
= wxColour(gdkColor
);
230 gs_objects
.m_colListBox
= *wxWHITE
;
233 color
= gs_objects
.m_colListBox
;
236 case wxSYS_COLOUR_MENUTEXT
:
237 case wxSYS_COLOUR_WINDOWTEXT
:
238 case wxSYS_COLOUR_CAPTIONTEXT
:
239 case wxSYS_COLOUR_INACTIVECAPTIONTEXT
:
240 case wxSYS_COLOUR_BTNTEXT
:
241 if (!gs_objects
.m_colBtnText
.Ok())
246 GetColourFromGTKWidget(
247 gdkColor
, wxGTK_BUTTON
, GTK_STATE_NORMAL
, wxGTK_FG
);
248 gs_objects
.m_colBtnText
= wxColour(gdkColor
);
250 color
= gs_objects
.m_colBtnText
;
253 case wxSYS_COLOUR_INFOBK
:
254 if (!gs_objects
.m_colTooltip
.Ok()) {
257 color
= gs_objects
.m_colTooltip
;
260 case wxSYS_COLOUR_INFOTEXT
:
261 if (!gs_objects
.m_colTooltipText
.Ok()) {
264 color
= gs_objects
.m_colTooltipText
;
267 case wxSYS_COLOUR_HIGHLIGHTTEXT
:
268 if (!gs_objects
.m_colHighlightText
.Ok())
270 wxColour hclr
= GetColour(wxSYS_COLOUR_HIGHLIGHT
);
271 if (hclr
.Red() > 200 && hclr
.Green() > 200 && hclr
.Blue() > 200)
272 gs_objects
.m_colHighlightText
= *wxBLACK
;
274 gs_objects
.m_colHighlightText
= *wxWHITE
;
276 color
= gs_objects
.m_colHighlightText
;
279 case wxSYS_COLOUR_APPWORKSPACE
:
280 color
= *wxWHITE
; // ?
283 case wxSYS_COLOUR_ACTIVECAPTION
:
284 case wxSYS_COLOUR_MENUHILIGHT
:
285 if (!gs_objects
.m_colMenuItemHighlight
.Ok())
290 GetColourFromGTKWidget(
291 gdkColor
, wxGTK_MENUITEM
, GTK_STATE_SELECTED
, wxGTK_BG
);
292 gs_objects
.m_colMenuItemHighlight
= wxColour(gdkColor
);
294 color
= gs_objects
.m_colMenuItemHighlight
;
297 case wxSYS_COLOUR_HOTLIGHT
:
298 case wxSYS_COLOUR_GRADIENTACTIVECAPTION
:
299 case wxSYS_COLOUR_GRADIENTINACTIVECAPTION
:
304 case wxSYS_COLOUR_MAX
:
306 wxFAIL_MSG( _T("unknown system colour index") );
314 wxFont
wxSystemSettingsNative::GetFont( wxSystemFont index
)
319 case wxSYS_OEM_FIXED_FONT
:
320 case wxSYS_ANSI_FIXED_FONT
:
321 case wxSYS_SYSTEM_FIXED_FONT
:
322 font
= *wxNORMAL_FONT
;
325 case wxSYS_ANSI_VAR_FONT
:
326 case wxSYS_SYSTEM_FONT
:
327 case wxSYS_DEVICE_DEFAULT_FONT
:
328 case wxSYS_DEFAULT_GUI_FONT
:
329 if (!gs_objects
.m_fontSystem
.Ok())
331 GtkWidget
*widget
= gtk_button_new();
332 GtkStyle
*def
= gtk_rc_get_style( widget
);
333 if ( !def
|| !def
->font_desc
)
334 def
= gtk_widget_get_default_style();
335 if ( def
&& def
->font_desc
)
337 wxNativeFontInfo info
;
339 pango_font_description_copy(def
->font_desc
);
340 gs_objects
.m_fontSystem
= wxFont(info
);
344 GtkSettings
*settings
= gtk_settings_get_default();
345 gchar
*font_name
= NULL
;
346 g_object_get ( settings
,
351 gs_objects
.m_fontSystem
= wxFont( 12, wxSWISS
, wxNORMAL
, wxNORMAL
);
353 gs_objects
.m_fontSystem
= wxFont(wxString::FromAscii(font_name
));
356 gtk_object_sink((GtkObject
*)widget
);
358 font
= gs_objects
.m_fontSystem
;
367 static bool GetFrameExtents(GdkWindow
* window
, int* left
, int* right
, int* top
, int* bottom
)
369 bool success
= false;
371 #if GTK_CHECK_VERSION(2, 2, 0)
372 if (gtk_check_version(2, 2, 0) == NULL
)
374 if (gdk_x11_screen_supports_net_wm_hint(
375 gdk_drawable_get_screen(window
),
376 gdk_atom_intern("_NET_FRAME_EXTENTS", false)))
379 property
= gdk_x11_get_xatom_by_name_for_display(
380 gdk_drawable_get_display(window
),
381 "_NET_FRAME_EXTENTS");
387 if (gdk_net_wm_supports(gdk_atom_intern("_NET_FRAME_EXTENTS", false)))
390 property
= gdk_x11_get_xatom_by_name("_NET_FRAME_EXTENTS");
397 gulong nitems
, bytes_after
;
399 success
= XGetWindowProperty(
400 gdk_x11_drawable_get_xdisplay(window
),
401 gdk_x11_drawable_get_xid(window
),
406 &type
, &format
, &nitems
, &bytes_after
, (guchar
**)&data
410 success
= data
&& nitems
== 4;
413 if (left
) *left
= int(data
[0]);
414 if (right
) *right
= int(data
[1]);
415 if (top
) *top
= int(data
[2]);
416 if (bottom
) *bottom
= int(data
[3]);
425 int wxSystemSettingsNative::GetMetric( wxSystemMetric index
, wxWindow
* win
)
427 GdkWindow
*window
= NULL
;
428 if(win
&& GTK_WIDGET_REALIZED(win
->GetHandle()))
429 window
= win
->GetHandle()->window
;
437 case wxSYS_FRAMESIZE_X
:
438 case wxSYS_FRAMESIZE_Y
:
439 // If a window is specified/realized, and it is a toplevel window, we can query from wm.
440 // The returned border thickness is outside the client area in that case.
443 wxTopLevelWindow
*tlw
= wxDynamicCast(win
, wxTopLevelWindow
);
445 return -1; // not a tlw, not sure how to approach
448 // Get the frame extents from the windowmanager.
449 // In most cases the top extent is the titlebar, so we use the bottom extent
452 if (GetFrameExtents(window
, NULL
, &right
, NULL
, &bottom
))
458 case wxSYS_FRAMESIZE_X
:
459 return right
; // width of right extent
461 return bottom
; // height of bottom extent
467 return -1; // no window specified
472 if (!gtk_check_version(2,4,0))
475 return gdk_display_get_default_cursor_size(gdk_drawable_get_display(window
));
477 return gdk_display_get_default_cursor_size(gdk_display_get_default());
485 gint dclick_distance
;
486 #if GTK_CHECK_VERSION(2,2,0)
487 if (window
&& !gtk_check_version(2,2,0))
488 g_object_get(gtk_settings_get_for_screen(gdk_drawable_get_screen(window
)),
489 "gtk-double-click-distance", &dclick_distance
, NULL
);
492 g_object_get(gtk_settings_get_default(),
493 "gtk-double-click-distance", &dclick_distance
, NULL
);
495 return dclick_distance
* 2;
497 case wxSYS_DCLICK_MSEC
:
499 g_object_get(gtk_settings_get_default(),
500 "gtk-double-click-time", &dclick
, NULL
);
506 #if GTK_CHECK_VERSION(2,2,0)
507 if (window
&& !gtk_check_version(2,2,0))
510 gtk_settings_get_for_screen(gdk_drawable_get_screen(window
)),
511 "gtk-dnd-drag-threshold",
512 &drag_threshold
, NULL
);
517 g_object_get(gtk_settings_get_default(),
518 "gtk-dnd-drag-threshold", &drag_threshold
, NULL
);
521 // The correct thing here would be to double the value
522 // since that is what the API wants. But the values
523 // are much bigger under GNOME than under Windows and
524 // just seem to much in many cases to be useful.
525 // drag_threshold *= 2;
527 return drag_threshold
;
529 // MBN: ditto for icons
530 case wxSYS_ICON_X
: return 32;
531 case wxSYS_ICON_Y
: return 32;
534 #if GTK_CHECK_VERSION(2,2,0)
535 if (window
&& !gtk_check_version(2,2,0))
536 return gdk_screen_get_width(gdk_drawable_get_screen(window
));
539 return gdk_screen_width();
542 #if GTK_CHECK_VERSION(2,2,0)
543 if (window
&& !gtk_check_version(2,2,0))
544 return gdk_screen_get_height(gdk_drawable_get_screen(window
));
547 return gdk_screen_height();
549 case wxSYS_HSCROLL_Y
: return 15;
550 case wxSYS_VSCROLL_X
: return 15;
552 case wxSYS_CAPTION_Y
:
554 // No realized window specified, and no implementation for that case yet.
557 wxASSERT_MSG( wxDynamicCast(win
, wxTopLevelWindow
),
558 wxT("Asking for caption height of a non toplevel window") );
560 // Get the height of the top windowmanager border.
561 // This is the titlebar in most cases. The titlebar might be elsewhere, and
562 // we could check which is the thickest wm border to decide on which side the
563 // titlebar is, but this might lead to interesting behaviours in used code.
564 // Reconsider when we have a way to report to the user on which side it is.
567 if (GetFrameExtents(window
, NULL
, NULL
, &top
, NULL
))
569 return top
; // top frame extent
573 // Try a default approach without a window pointer, if possible
578 case wxSYS_PENWINDOWS_PRESENT
:
579 // No MS Windows for Pen computing extension available in X11 based gtk+.
583 return -1; // metric is unknown
587 bool wxSystemSettingsNative::HasFeature(wxSystemFeature index
)
591 case wxSYS_CAN_ICONIZE_FRAME
:
594 case wxSYS_CAN_DRAW_FRAME_DECORATIONS
: