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"
24 #include "wx/gtk/private/win_gtk.h"
26 bool wxGetFrameExtents(GdkWindow
* window
, int* left
, int* right
, int* top
, int* bottom
);
28 // ----------------------------------------------------------------------------
29 // wxSystemSettings implementation
30 // ----------------------------------------------------------------------------
32 static wxFont gs_fontSystem
;
34 static GtkContainer
* ContainerWidget()
36 static GtkContainer
* s_widget
;
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
));
47 static void style_set(GtkWidget
*, GtkStyle
*, void*)
49 gs_fontSystem
= wxNullFont
;
53 static const GtkStyle
* ButtonStyle()
55 static GtkWidget
* s_widget
;
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
);
63 return s_widget
->style
;
66 static const GtkStyle
* ListStyle()
68 static GtkWidget
* s_widget
;
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
);
76 return s_widget
->style
;
79 static const GtkStyle
* TextCtrlStyle()
81 static GtkWidget
* s_widget
;
84 s_widget
= gtk_text_view_new();
85 gtk_container_add(ContainerWidget(), s_widget
);
86 gtk_widget_ensure_style(s_widget
);
88 return s_widget
->style
;
91 static const GtkStyle
* MenuItemStyle()
93 static GtkWidget
* s_widget
;
96 s_widget
= gtk_menu_item_new();
97 gtk_container_add(ContainerWidget(), s_widget
);
98 gtk_widget_ensure_style(s_widget
);
100 return s_widget
->style
;
103 static const GtkStyle
* MenuBarStyle()
105 static GtkWidget
* s_widget
;
106 if (s_widget
== NULL
)
108 s_widget
= gtk_menu_bar_new();
109 gtk_container_add(ContainerWidget(), s_widget
);
110 gtk_widget_ensure_style(s_widget
);
112 return s_widget
->style
;
115 static const GtkStyle
* ToolTipStyle()
117 static GtkWidget
* s_widget
;
118 if (s_widget
== NULL
)
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
);
127 return s_widget
->style
;
130 wxColour
wxSystemSettingsNative::GetColour( wxSystemColour index
)
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
]);
149 case wxSYS_COLOUR_WINDOW
:
150 color
= wxColor(TextCtrlStyle()->base
[GTK_STATE_NORMAL
]);
153 case wxSYS_COLOUR_MENUBAR
:
154 color
= wxColor(MenuBarStyle()->bg
[GTK_STATE_NORMAL
]);
157 case wxSYS_COLOUR_3DDKSHADOW
:
161 case wxSYS_COLOUR_GRAYTEXT
:
162 case wxSYS_COLOUR_BTNSHADOW
:
163 //case wxSYS_COLOUR_3DSHADOW:
165 wxColour
faceColour(GetColour(wxSYS_COLOUR_3DFACE
));
167 wxColour((unsigned char) (faceColour
.Red() * 2 / 3),
168 (unsigned char) (faceColour
.Green() * 2 / 3),
169 (unsigned char) (faceColour
.Blue() * 2 / 3));
173 case wxSYS_COLOUR_BTNHIGHLIGHT
:
174 //case wxSYS_COLOUR_BTNHILIGHT:
175 //case wxSYS_COLOUR_3DHIGHLIGHT:
176 //case wxSYS_COLOUR_3DHILIGHT:
180 case wxSYS_COLOUR_HIGHLIGHT
:
181 color
= wxColor(ButtonStyle()->bg
[GTK_STATE_SELECTED
]);
184 case wxSYS_COLOUR_LISTBOX
:
185 color
= wxColor(ListStyle()->base
[GTK_STATE_NORMAL
]);
188 case wxSYS_COLOUR_LISTBOXTEXT
:
189 color
= wxColor(ListStyle()->text
[GTK_STATE_NORMAL
]);
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
]);
200 case wxSYS_COLOUR_INFOBK
:
201 color
= wxColor(ToolTipStyle()->bg
[GTK_STATE_NORMAL
]);
204 case wxSYS_COLOUR_INFOTEXT
:
205 color
= wxColor(ToolTipStyle()->fg
[GTK_STATE_NORMAL
]);
208 case wxSYS_COLOUR_HIGHLIGHTTEXT
:
209 color
= wxColor(ButtonStyle()->fg
[GTK_STATE_SELECTED
]);
212 case wxSYS_COLOUR_APPWORKSPACE
:
213 color
= *wxWHITE
; // ?
216 case wxSYS_COLOUR_ACTIVECAPTION
:
217 case wxSYS_COLOUR_MENUHILIGHT
:
218 color
= wxColor(MenuItemStyle()->bg
[GTK_STATE_SELECTED
]);
221 case wxSYS_COLOUR_HOTLIGHT
:
222 case wxSYS_COLOUR_GRADIENTACTIVECAPTION
:
223 case wxSYS_COLOUR_GRADIENTINACTIVECAPTION
:
228 case wxSYS_COLOUR_MAX
:
230 wxFAIL_MSG( _T("unknown system colour index") );
238 wxFont
wxSystemSettingsNative::GetFont( wxSystemFont index
)
243 case wxSYS_OEM_FIXED_FONT
:
244 case wxSYS_ANSI_FIXED_FONT
:
245 case wxSYS_SYSTEM_FIXED_FONT
:
246 font
= *wxNORMAL_FONT
;
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())
255 wxNativeFontInfo info
;
256 info
.description
= ButtonStyle()->font_desc
;
257 gs_fontSystem
= wxFont(info
);
258 info
.description
= NULL
;
260 font
= gs_fontSystem
;
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
)
273 return window
? gtk_settings_get_for_screen(gdk_drawable_get_screen(window
))
274 : gtk_settings_get_default();
277 static int GetBorderWidth(wxSystemMetric index
, wxWindow
* win
)
281 wxPizza
* pizza
= WX_PIZZA(win
->m_wxwindow
);
283 pizza
->get_border_widths(x
, y
);
288 case wxSYS_FRAMESIZE_X
:
297 int wxSystemSettingsNative::GetMetric( wxSystemMetric index
, wxWindow
* win
)
299 GdkWindow
*window
= NULL
;
300 if(win
&& GTK_WIDGET_REALIZED(win
->GetHandle()))
301 window
= win
->GetHandle()->window
;
309 case wxSYS_FRAMESIZE_X
:
310 case wxSYS_FRAMESIZE_Y
:
313 wxTopLevelWindow
*tlw
= wxDynamicCast(win
, wxTopLevelWindow
);
315 return GetBorderWidth(index
, win
);
318 // Get the frame extents from the windowmanager.
319 // In most cases the top extent is the titlebar, so we use the bottom extent
322 if (wxGetFrameExtents(window
, NULL
, &right
, NULL
, &bottom
))
328 case wxSYS_FRAMESIZE_X
:
329 return right
; // width of right extent
331 return bottom
; // height of bottom extent
337 return -1; // no window specified
341 return gdk_display_get_default_cursor_size(
342 window
? gdk_drawable_get_display(window
)
343 : gdk_display_get_default());
347 gint dclick_distance
;
348 g_object_get(GetSettingsForWindowScreen(window
),
349 "gtk-double-click-distance", &dclick_distance
, NULL
);
351 return dclick_distance
* 2;
353 case wxSYS_DCLICK_MSEC
:
355 g_object_get(GetSettingsForWindowScreen(window
),
356 "gtk-double-click-time", &dclick
, NULL
);
362 g_object_get(GetSettingsForWindowScreen(window
),
363 "gtk-dnd-drag-threshold", &drag_threshold
, NULL
);
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;
371 return drag_threshold
;
379 return gdk_screen_get_width(gdk_drawable_get_screen(window
));
381 return gdk_screen_width();
385 return gdk_screen_get_height(gdk_drawable_get_screen(window
));
387 return gdk_screen_height();
389 case wxSYS_HSCROLL_Y
:
390 case wxSYS_VSCROLL_X
:
393 case wxSYS_CAPTION_Y
:
395 // No realized window specified, and no implementation for that case yet.
398 wxASSERT_MSG( wxDynamicCast(win
, wxTopLevelWindow
),
399 wxT("Asking for caption height of a non toplevel window") );
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.
408 if (wxGetFrameExtents(window
, NULL
, NULL
, &top
, NULL
))
410 return top
; // top frame extent
414 // Try a default approach without a window pointer, if possible
419 case wxSYS_PENWINDOWS_PRESENT
:
420 // No MS Windows for Pen computing extension available in X11 based gtk+.
424 return -1; // metric is unknown
428 bool wxSystemSettingsNative::HasFeature(wxSystemFeature index
)
432 case wxSYS_CAN_ICONIZE_FRAME
:
435 case wxSYS_CAN_DRAW_FRAME_DECORATIONS
: