1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/common/gtk_util.h"
#include <gtk/gtk.h>
#include <gdk/gdkx.h>
#include <cstdarg>
#include "app/l10n_util.h"
#include "app/resource_bundle.h"
#include "base/linux_util.h"
#include "base/logging.h"
#include "grit/theme_resources.h"
#include "third_party/skia/include/core/SkBitmap.h"
namespace {
// Callback used in RemoveAllChildren.
void RemoveWidget(GtkWidget* widget, gpointer container) {
gtk_container_remove(GTK_CONTAINER(container), widget);
}
// These two functions are copped almost directly from gtk core. The only
// difference is that they accept middle clicks.
gboolean OnMouseButtonPressed(GtkWidget* widget, GdkEventButton* event,
gpointer unused) {
if (event->type == GDK_BUTTON_PRESS) {
if (gtk_button_get_focus_on_click(GTK_BUTTON(widget)) &&
!GTK_WIDGET_HAS_FOCUS(widget)) {
gtk_widget_grab_focus(widget);
}
if (event->button == 1 || event->button == 2)
gtk_button_pressed(GTK_BUTTON(widget));
}
return TRUE;
}
gboolean OnMouseButtonReleased(GtkWidget* widget, GdkEventButton* event,
gpointer unused) {
if (event->button == 1 || event->button == 2)
gtk_button_released(GTK_BUTTON(widget));
return TRUE;
}
} // namespace
namespace event_utils {
WindowOpenDisposition DispositionFromEventFlags(guint event_flags) {
if ((event_flags & GDK_BUTTON2_MASK) || (event_flags & GDK_CONTROL_MASK)) {
return (event_flags & GDK_SHIFT_MASK) ?
NEW_FOREGROUND_TAB : NEW_BACKGROUND_TAB;
}
if (event_flags & GDK_SHIFT_MASK)
return NEW_WINDOW;
return false /*event.IsAltDown()*/ ? SAVE_TO_DISK : CURRENT_TAB;
}
guint32 GetGdkEventTime(GdkEvent* event) {
// The order of these entries in the switch statement match the GDK enum.
switch (event->type) {
case GDK_NOTHING:
case GDK_DELETE:
case GDK_DESTROY:
case GDK_EXPOSE:
return 0;
case GDK_MOTION_NOTIFY:
return reinterpret_cast<GdkEventMotion*>(event)->time;
case GDK_BUTTON_PRESS:
case GDK_2BUTTON_PRESS:
case GDK_3BUTTON_PRESS:
case GDK_BUTTON_RELEASE:
return reinterpret_cast<GdkEventButton*>(event)->time;
case GDK_KEY_PRESS:
case GDK_KEY_RELEASE:
return reinterpret_cast<GdkEventKey*>(event)->time;
case GDK_ENTER_NOTIFY:
case GDK_LEAVE_NOTIFY:
return reinterpret_cast<GdkEventCrossing*>(event)->time;
case GDK_FOCUS_CHANGE:
case GDK_CONFIGURE:
case GDK_MAP:
case GDK_UNMAP:
return 0;
case GDK_PROPERTY_NOTIFY:
return reinterpret_cast<GdkEventProperty*>(event)->time;
case GDK_SELECTION_CLEAR:
case GDK_SELECTION_REQUEST:
case GDK_SELECTION_NOTIFY:
return reinterpret_cast<GdkEventSelection*>(event)->time;
case GDK_PROXIMITY_IN:
case GDK_PROXIMITY_OUT:
return reinterpret_cast<GdkEventProximity*>(event)->time;
case GDK_DRAG_ENTER:
case GDK_DRAG_LEAVE:
case GDK_DRAG_MOTION:
case GDK_DRAG_STATUS:
case GDK_DROP_START:
case GDK_DROP_FINISHED:
return reinterpret_cast<GdkEventDND*>(event)->time;
case GDK_CLIENT_EVENT:
case GDK_VISIBILITY_NOTIFY:
case GDK_NO_EXPOSE:
return 0;
case GDK_SCROLL:
return reinterpret_cast<GdkEventScroll*>(event)->time;
case GDK_WINDOW_STATE:
case GDK_SETTING:
return 0;
case GDK_OWNER_CHANGE:
return reinterpret_cast<GdkEventOwnerChange*>(event)->time;
case GDK_GRAB_BROKEN:
default:
return 0;
}
}
} // namespace event_utils
namespace gtk_util {
GtkWidget* CreateLabeledControlsGroup(std::vector<GtkWidget*>* labels,
const char* text, ...) {
va_list ap;
va_start(ap, text);
GtkWidget* table = gtk_table_new(0, 2, FALSE);
gtk_table_set_col_spacing(GTK_TABLE(table), 0, kLabelSpacing);
gtk_table_set_row_spacings(GTK_TABLE(table), kControlSpacing);
for (guint row = 0; text; ++row) {
gtk_table_resize(GTK_TABLE(table), row + 1, 2);
GtkWidget* control = va_arg(ap, GtkWidget*);
GtkWidget* label = gtk_label_new(text);
gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
if (labels)
labels->push_back(label);
gtk_table_attach(GTK_TABLE(table), label,
0, 1, row, row + 1,
GTK_FILL, GTK_FILL,
0, 0);
gtk_table_attach_defaults(GTK_TABLE(table), control,
1, 2, row, row + 1);
text = va_arg(ap, const char*);
}
va_end(ap);
return table;
}
GtkWidget* CreateGtkBorderBin(GtkWidget* child, const GdkColor* color,
int top, int bottom, int left, int right) {
// Use a GtkEventBox to get the background painted. However, we can't just
// use a container border, since it won't paint there. Use an alignment
// inside to get the sizes exactly of how we want the border painted.
GtkWidget* ebox = gtk_event_box_new();
if (color)
gtk_widget_modify_bg(ebox, GTK_STATE_NORMAL, color);
GtkWidget* alignment = gtk_alignment_new(0.0, 0.0, 1.0, 1.0);
gtk_alignment_set_padding(GTK_ALIGNMENT(alignment), top, bottom, left, right);
gtk_container_add(GTK_CONTAINER(alignment), child);
gtk_container_add(GTK_CONTAINER(ebox), alignment);
return ebox;
}
bool GetWidgetSizeFromResources(GtkWidget* widget, int width_chars,
int height_lines, int* width, int* height) {
PangoContext* context = gtk_widget_create_pango_context(widget);
PangoFontMetrics* metrics = pango_context_get_metrics(context,
widget->style->font_desc, pango_context_get_language(context));
double chars = 0;
StringToDouble(l10n_util::GetStringUTF8(width_chars), &chars);
*width =
pango_font_metrics_get_approximate_char_width(metrics) *
static_cast<int>(chars) / PANGO_SCALE;
double lines = 0;
StringToDouble(l10n_util::GetStringUTF8(height_lines), &lines);
*height =
(pango_font_metrics_get_ascent(metrics) +
pango_font_metrics_get_descent(metrics)) *
static_cast<int>(lines) / PANGO_SCALE;
pango_font_metrics_unref(metrics);
g_object_unref(context);
return true;
}
void RemoveAllChildren(GtkWidget* container) {
gtk_container_foreach(GTK_CONTAINER(container), RemoveWidget, container);
}
void ForceFontSizePixels(GtkWidget* widget, double size_pixels) {
GtkStyle* style = widget->style;
PangoFontDescription* font_desc = style->font_desc;
// pango_font_description_set_absolute_size sets the font size in device
// units, which for us is pixels.
pango_font_description_set_absolute_size(font_desc,
PANGO_SCALE * size_pixels);
gtk_widget_modify_font(widget, font_desc);
}
gfx::Point GetWidgetScreenPosition(GtkWidget* widget) {
int x = 0, y = 0;
if (GTK_IS_WINDOW(widget)) {
gdk_window_get_origin(widget->window, &x, &y);
return gfx::Point(x, y);
} else {
x = widget->allocation.x;
y = widget->allocation.y;
}
GtkWidget* parent = gtk_widget_get_parent(widget);
while (parent) {
if (GTK_IS_WINDOW(parent)) {
int window_x, window_y;
// Returns the origin of the window, excluding the frame if one is exists.
gdk_window_get_origin(parent->window, &window_x, &window_y);
x += window_x;
y += window_y;
return gfx::Point(x, y);
}
if (!GTK_WIDGET_NO_WINDOW(parent)) {
x += parent->allocation.x;
y += parent->allocation.y;
}
parent = gtk_widget_get_parent(parent);
}
return gfx::Point(x, y);
}
gfx::Rect GetWidgetScreenBounds(GtkWidget* widget) {
gfx::Point position = GetWidgetScreenPosition(widget);
return gfx::Rect(position.x(), position.y(),
widget->allocation.width, widget->allocation.height);
}
void ConvertWidgetPointToScreen(GtkWidget* widget, gfx::Point* p) {
DCHECK(widget);
DCHECK(p);
gfx::Point position = GetWidgetScreenPosition(widget);
p->SetPoint(p->x() + position.x(), p->y() + position.y());
}
void InitRCStyles() {
static const char kRCText[] =
// Make our dialogs styled like the GNOME HIG.
//
// TODO(evanm): content-area-spacing was introduced in a later
// version of GTK, so we need to set that manually on all dialogs.
// Perhaps it would make sense to have a shared FixupDialog() function.
"style \"gnome-dialog\" {\n"
" xthickness = 12\n"
" GtkDialog::action-area-border = 0\n"
" GtkDialog::button-spacing = 6\n"
" GtkDialog::content-area-spacing = 18\n"
" GtkDialog::content-area-border = 12\n"
"}\n"
// Note we set it at the "application" priority, so users can override.
"widget \"GtkDialog\" style : application \"gnome-dialog\"\n"
// Make our about dialog special, so the image is flush with the edge.
"style \"about-dialog\" {\n"
" GtkDialog::action-area-border = 12\n"
" GtkDialog::button-spacing = 6\n"
" GtkDialog::content-area-spacing = 18\n"
" GtkDialog::content-area-border = 0\n"
"}\n"
"widget \"about-dialog\" style : application \"about-dialog\"\n";
gtk_rc_parse_string(kRCText);
}
void CenterWidgetInHBox(GtkWidget* hbox, GtkWidget* widget, bool pack_at_end,
int padding) {
GtkWidget* centering_vbox = gtk_vbox_new(FALSE, 0);
gtk_box_pack_start(GTK_BOX(centering_vbox), widget, TRUE, FALSE, 0);
if (pack_at_end)
gtk_box_pack_end(GTK_BOX(hbox), centering_vbox, FALSE, FALSE, padding);
else
gtk_box_pack_start(GTK_BOX(hbox), centering_vbox, FALSE, FALSE, padding);
}
std::string ConvertAcceleratorsFromWindowsStyle(const std::string& label) {
std::string ret;
ret.reserve(label.length());
for (size_t i = 0; i < label.length(); ++i) {
if ('&' == label[i]) {
if (i + 1 < label.length() && '&' == label[i + 1]) {
ret.push_back(label[i]);
++i;
} else {
ret.push_back('_');
}
} else {
ret.push_back(label[i]);
}
}
return ret;
}
bool IsScreenComposited() {
GdkScreen* screen = gdk_screen_get_default();
return gdk_screen_is_composited(screen) == TRUE;
}
void EnumerateTopLevelWindows(x11_util::EnumerateWindowsDelegate* delegate) {
GdkScreen* screen = gdk_screen_get_default();
GList* stack = gdk_screen_get_window_stack(screen);
if (!stack) {
// Window Manager doesn't support _NET_CLIENT_LIST_STACKING, so fall back
// to old school enumeration of all X windows. Some WMs parent 'top-level'
// windows in unnamed actual top-level windows (ion WM), so extend the
// search depth to all children of top-level windows.
const int kMaxSearchDepth = 1;
x11_util::EnumerateAllWindows(delegate, kMaxSearchDepth);
return;
}
for (GList* iter = g_list_last(stack); iter; iter = iter->prev) {
GdkWindow* window = static_cast<GdkWindow*>(iter->data);
if (!gdk_window_is_visible(window))
continue;
XID xid = GDK_WINDOW_XID(window);
if (delegate->ShouldStopIterating(xid))
break;
}
g_list_foreach(stack, (GFunc)g_object_unref, NULL);
g_list_free(stack);
}
void SetButtonTriggersNavigation(GtkWidget* button) {
// We handle button activation manually because we want to accept middle mouse
// clicks.
g_signal_connect(G_OBJECT(button), "button-press-event",
G_CALLBACK(OnMouseButtonPressed), NULL);
g_signal_connect(G_OBJECT(button), "button-release-event",
G_CALLBACK(OnMouseButtonReleased), NULL);
}
int MirroredLeftPointForRect(GtkWidget* widget, const gfx::Rect& bounds) {
if (l10n_util::GetTextDirection() != l10n_util::RIGHT_TO_LEFT) {
return bounds.x();
}
return widget->allocation.width - bounds.x() - bounds.width();
}
int MirroredXCoordinate(GtkWidget* widget, int x) {
if (l10n_util::GetTextDirection() == l10n_util::RIGHT_TO_LEFT) {
return widget->allocation.width - x;
}
return x;
}
bool WidgetContainsCursor(GtkWidget* widget) {
gint x = 0;
gint y = 0;
gtk_widget_get_pointer(widget, &x, &y);
// To quote the gtk docs:
//
// Widget coordinates are a bit odd; for historical reasons, they are
// defined as widget->window coordinates for widgets that are not
// GTK_NO_WINDOW widgets, and are relative to widget->allocation.x,
// widget->allocation.y for widgets that are GTK_NO_WINDOW widgets.
//
// So the base is always (0,0).
gfx::Rect widget_allocation(0, 0, widget->allocation.width,
widget->allocation.height);
return widget_allocation.Contains(x, y);
}
void SetWindowIcon(GtkWindow* window) {
ResourceBundle& rb = ResourceBundle::GetSharedInstance();
GList* icon_list = NULL;
icon_list = g_list_append(icon_list, rb.GetPixbufNamed(IDR_PRODUCT_ICON_32));
icon_list = g_list_append(icon_list, rb.GetPixbufNamed(IDR_PRODUCT_LOGO_16));
gtk_window_set_icon_list(window, icon_list);
g_list_free(icon_list);
}
} // namespace gtk_util
|