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"
22 #include "wx/fontenum.h"
25 #include "wx/gtk/private/win_gtk.h"
27 bool wxGetFrameExtents(GdkWindow
* window
, int* left
, int* right
, int* top
, int* bottom
);
29 // ----------------------------------------------------------------------------
30 // wxSystemSettings implementation
31 // ----------------------------------------------------------------------------
33 static wxFont gs_fontSystem
;
35 static GtkContainer
* ContainerWidget()
37 static GtkContainer
* s_widget
;
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
));
48 static void style_set(GtkWidget
*, GtkStyle
*, void*)
50 gs_fontSystem
= wxNullFont
;
54 static const GtkStyle
* ButtonStyle()
56 static GtkWidget
* s_widget
;
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
);
64 return s_widget
->style
;
67 static const GtkStyle
* ListStyle()
69 static GtkWidget
* s_widget
;
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
);
77 return s_widget
->style
;
80 static const GtkStyle
* TextCtrlStyle()
82 static GtkWidget
* s_widget
;
85 s_widget
= gtk_text_view_new();
86 gtk_container_add(ContainerWidget(), s_widget
);
87 gtk_widget_ensure_style(s_widget
);
89 return s_widget
->style
;
92 static const GtkStyle
* MenuItemStyle()
94 static GtkWidget
* s_widget
;
97 s_widget
= gtk_menu_item_new();
98 gtk_container_add(ContainerWidget(), s_widget
);
99 gtk_widget_ensure_style(s_widget
);
101 return s_widget
->style
;
104 static const GtkStyle
* MenuBarStyle()
106 static GtkWidget
* s_widget
;
107 if (s_widget
== NULL
)
109 s_widget
= gtk_menu_bar_new();
110 gtk_container_add(ContainerWidget(), s_widget
);
111 gtk_widget_ensure_style(s_widget
);
113 return s_widget
->style
;
116 static const GtkStyle
* ToolTipStyle()
118 static GtkWidget
* s_widget
;
119 if (s_widget
== NULL
)
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
);
128 return s_widget
->style
;
131 wxColour
wxSystemSettingsNative::GetColour( wxSystemColour index
)
136 case wxSYS_COLOUR_SCROLLBAR
:
137 case wxSYS_COLOUR_BACKGROUND
:
138 //case wxSYS_COLOUR_DESKTOP:
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
:
145 //case wxSYS_COLOUR_3DFACE:
146 case wxSYS_COLOUR_3DLIGHT
:
147 color
= wxColor(ButtonStyle()->bg
[GTK_STATE_NORMAL
]);
150 case wxSYS_COLOUR_WINDOW
:
151 color
= wxColor(TextCtrlStyle()->base
[GTK_STATE_NORMAL
]);
154 case wxSYS_COLOUR_MENUBAR
:
155 color
= wxColor(MenuBarStyle()->bg
[GTK_STATE_NORMAL
]);
158 case wxSYS_COLOUR_3DDKSHADOW
:
162 case wxSYS_COLOUR_GRAYTEXT
:
163 case wxSYS_COLOUR_BTNSHADOW
:
164 //case wxSYS_COLOUR_3DSHADOW:
166 wxColour
faceColour(GetColour(wxSYS_COLOUR_3DFACE
));
168 wxColour((unsigned char) (faceColour
.Red() * 2 / 3),
169 (unsigned char) (faceColour
.Green() * 2 / 3),
170 (unsigned char) (faceColour
.Blue() * 2 / 3));
174 case wxSYS_COLOUR_BTNHIGHLIGHT
:
175 //case wxSYS_COLOUR_BTNHILIGHT:
176 //case wxSYS_COLOUR_3DHIGHLIGHT:
177 //case wxSYS_COLOUR_3DHILIGHT:
181 case wxSYS_COLOUR_HIGHLIGHT
:
182 color
= wxColor(ButtonStyle()->bg
[GTK_STATE_SELECTED
]);
185 case wxSYS_COLOUR_LISTBOX
:
186 color
= wxColor(ListStyle()->base
[GTK_STATE_NORMAL
]);
189 case wxSYS_COLOUR_LISTBOXTEXT
:
190 color
= wxColor(ListStyle()->text
[GTK_STATE_NORMAL
]);
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
:
198 color
= wxColor(ButtonStyle()->fg
[GTK_STATE_NORMAL
]);
201 case wxSYS_COLOUR_INFOBK
:
202 color
= wxColor(ToolTipStyle()->bg
[GTK_STATE_NORMAL
]);
205 case wxSYS_COLOUR_INFOTEXT
:
206 color
= wxColor(ToolTipStyle()->fg
[GTK_STATE_NORMAL
]);
209 case wxSYS_COLOUR_HIGHLIGHTTEXT
:
210 color
= wxColor(ButtonStyle()->fg
[GTK_STATE_SELECTED
]);
213 case wxSYS_COLOUR_APPWORKSPACE
:
214 color
= *wxWHITE
; // ?
217 case wxSYS_COLOUR_ACTIVECAPTION
:
218 case wxSYS_COLOUR_MENUHILIGHT
:
219 color
= wxColor(MenuItemStyle()->bg
[GTK_STATE_SELECTED
]);
222 case wxSYS_COLOUR_HOTLIGHT
:
223 case wxSYS_COLOUR_GRADIENTACTIVECAPTION
:
224 case wxSYS_COLOUR_GRADIENTINACTIVECAPTION
:
229 case wxSYS_COLOUR_MAX
:
231 wxFAIL_MSG( wxT("unknown system colour index") );
236 wxASSERT(color
.IsOk());
240 wxFont
wxSystemSettingsNative::GetFont( wxSystemFont index
)
245 case wxSYS_OEM_FIXED_FONT
:
246 case wxSYS_ANSI_FIXED_FONT
:
247 case wxSYS_SYSTEM_FIXED_FONT
:
248 font
= *wxNORMAL_FONT
;
251 case wxSYS_ANSI_VAR_FONT
:
252 case wxSYS_SYSTEM_FONT
:
253 case wxSYS_DEVICE_DEFAULT_FONT
:
254 case wxSYS_DEFAULT_GUI_FONT
:
255 if (!gs_fontSystem
.Ok())
257 wxNativeFontInfo info
;
258 info
.description
= ButtonStyle()->font_desc
;
259 gs_fontSystem
= wxFont(info
);
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");
267 #endif // wxUSE_FONTENUM
269 info
.description
= NULL
;
271 font
= gs_fontSystem
;
278 wxASSERT( font
.IsOk() );
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
)
287 return window
? gtk_settings_get_for_screen(gdk_drawable_get_screen(window
))
288 : gtk_settings_get_default();
291 static int GetBorderWidth(wxSystemMetric index
, wxWindow
* win
)
295 wxPizza
* pizza
= WX_PIZZA(win
->m_wxwindow
);
297 pizza
->get_border_widths(x
, y
);
302 case wxSYS_FRAMESIZE_X
:
311 int wxSystemSettingsNative::GetMetric( wxSystemMetric index
, wxWindow
* win
)
313 GdkWindow
*window
= NULL
;
314 if(win
&& GTK_WIDGET_REALIZED(win
->GetHandle()))
315 window
= win
->GetHandle()->window
;
323 case wxSYS_FRAMESIZE_X
:
324 case wxSYS_FRAMESIZE_Y
:
327 wxTopLevelWindow
*tlw
= wxDynamicCast(win
, wxTopLevelWindow
);
329 return GetBorderWidth(index
, win
);
332 // Get the frame extents from the windowmanager.
333 // In most cases the top extent is the titlebar, so we use the bottom extent
336 if (wxGetFrameExtents(window
, NULL
, &right
, NULL
, &bottom
))
342 case wxSYS_FRAMESIZE_X
:
343 return right
; // width of right extent
345 return bottom
; // height of bottom extent
351 return -1; // no window specified
355 return gdk_display_get_default_cursor_size(
356 window
? gdk_drawable_get_display(window
)
357 : gdk_display_get_default());
361 gint dclick_distance
;
362 g_object_get(GetSettingsForWindowScreen(window
),
363 "gtk-double-click-distance", &dclick_distance
, NULL
);
365 return dclick_distance
* 2;
367 case wxSYS_DCLICK_MSEC
:
369 g_object_get(GetSettingsForWindowScreen(window
),
370 "gtk-double-click-time", &dclick
, NULL
);
376 g_object_get(GetSettingsForWindowScreen(window
),
377 "gtk-dnd-drag-threshold", &drag_threshold
, NULL
);
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.
383 // drag_threshold *= 2;
385 return drag_threshold
;
393 return gdk_screen_get_width(gdk_drawable_get_screen(window
));
395 return gdk_screen_width();
399 return gdk_screen_get_height(gdk_drawable_get_screen(window
));
401 return gdk_screen_height();
403 case wxSYS_HSCROLL_Y
:
404 case wxSYS_VSCROLL_X
:
407 case wxSYS_CAPTION_Y
:
409 // No realized window specified, and no implementation for that case yet.
412 wxASSERT_MSG( wxDynamicCast(win
, wxTopLevelWindow
),
413 wxT("Asking for caption height of a non toplevel window") );
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.
422 if (wxGetFrameExtents(window
, NULL
, NULL
, &top
, NULL
))
424 return top
; // top frame extent
428 // Try a default approach without a window pointer, if possible
433 case wxSYS_PENWINDOWS_PRESENT
:
434 // No MS Windows for Pen computing extension available in X11 based gtk+.
438 return -1; // metric is unknown
442 bool wxSystemSettingsNative::HasFeature(wxSystemFeature index
)
446 case wxSYS_CAN_ICONIZE_FRAME
:
449 case wxSYS_CAN_DRAW_FRAME_DECORATIONS
: