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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
|
/*
* This file is a part of hildon
*
* Copyright (C) 2008, 2009 Nokia Corporation, all rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser Public License as published by
* the Free Software Foundation; version 2 of the license.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser Public License for more details.
*
*/
/**
* SECTION:hildon-gtk
* @short_description: Additional functions for Gtk widgets
* @see_also: #HildonButton, #HildonCheckButton
*
* Hildon provides some functions to extend the functionality of
* existing Gtk widgets. This also includes convenience functions to
* easily perform frequent tasks.
*/
#include "hildon-gtk.h"
#include "hildon-window.h"
#include "hildon-window-private.h"
#include "hildon-edit-toolbar.h"
#include "hildon-edit-toolbar-private.h"
#include "hildon-private.h"
static void
image_visible_changed_cb (GtkWidget *image,
GParamSpec *arg1,
gpointer oldparent)
{
if (!gtk_widget_get_visible (image))
gtk_widget_show (image);
}
static void
parent_changed_cb (GtkWidget *image,
GParamSpec *arg1,
gpointer oldparent)
{
GtkWidget *parent = gtk_widget_get_parent (image);
/* If the parent has really changed, remove the old signal handlers */
if (parent != oldparent) {
g_signal_handlers_disconnect_by_func (image, parent_changed_cb, oldparent);
g_signal_handlers_disconnect_by_func (image, image_visible_changed_cb, NULL);
}
}
static void
image_changed_cb (GtkButton *button,
GParamSpec *arg1,
gpointer user_data)
{
GtkWidget *image = gtk_button_get_image (button);
g_return_if_fail (image == NULL || GTK_IS_WIDGET (image));
if (image != NULL) {
GtkWidget *parent = gtk_widget_get_parent (image);
/* If the button has a new image, show it */
gtk_widget_show (image);
/* Show the image no matter the value of gtk-button-images */
g_signal_connect (image, "notify::visible", G_CALLBACK (image_visible_changed_cb), NULL);
/* If the image is removed from the button, disconnect these handlers */
g_signal_connect (image, "notify::parent", G_CALLBACK (parent_changed_cb), parent);
}
}
static void
button_common_init (GtkWidget *button,
HildonSizeType size)
{
/* Set requested size */
hildon_gtk_widget_set_theme_size (button, size);
/* Set focus-on-click to FALSE by default */
gtk_button_set_focus_on_click (GTK_BUTTON (button), FALSE);
/* Make sure that all images in this button are always shown */
g_signal_connect (button, "notify::image", G_CALLBACK (image_changed_cb), NULL);
}
/**
* hildon_gtk_menu_new:
*
* This is a convenience function to create a #GtkMenu setting its
* widget name to allow Hildon specific styling.
*
* Return value: A newly created #GtkMenu widget.
*
* Since: 2.2
**/
GtkWidget *
hildon_gtk_menu_new (void)
{
GtkWidget *menu = gtk_menu_new ();
gtk_widget_set_name (menu, "hildon-context-sensitive-menu");
return menu;
}
/**
* hildon_gtk_button_new:
* @size: Flags indicating the size of the new button
*
* This is a convenience function to create a #GtkButton setting its
* size to one of the pre-defined Hildon sizes.
*
* Buttons created with this function also override
* #GtkSettings:gtk-button-images. Images set using
* gtk_button_set_image() are always shown.
*
* Buttons created using this function have #GtkButton:focus-on-click
* set to %FALSE by default.
*
* Return value: A newly created #GtkButton widget.
*
* Since: 2.2
**/
GtkWidget *
hildon_gtk_button_new (HildonSizeType size)
{
GtkWidget *button = gtk_button_new ();
button_common_init (button, size);
return button;
}
/**
* hildon_gtk_toggle_button_new:
* @size: Flags indicating the size of the new button
*
* This is a convenience function to create a #GtkToggleButton setting
* its size to one of the pre-defined Hildon sizes.
*
* Buttons created with this function also override
* #GtkSettings:gtk-button-images. Images set using
* gtk_button_set_image() are always shown.
*
* Buttons created using this function have #GtkButton:focus-on-click
* set to %FALSE by default.
*
* Return value: A newly created #GtkToggleButton widget.
*
* Since: 2.2
**/
GtkWidget *
hildon_gtk_toggle_button_new (HildonSizeType size)
{
GtkWidget *button = gtk_toggle_button_new ();
button_common_init (button, size);
return button;
}
/**
* hildon_gtk_radio_button_new:
* @size: Flags indicating the size of the new button
* @group: An existing radio button group, or %NULL if you are
* creating a new group
*
* This is a convenience function to create a #GtkRadioButton setting
* its size to one of the pre-defined Hildon sizes.
*
* Buttons created with this function also override
* #GtkSettings:gtk-button-images. Images set using
* gtk_button_set_image() are always shown.
*
* Buttons created using this function have #GtkButton:focus-on-click
* set to %FALSE by default.
*
* Return value: A newly created #GtkRadioButton widget.
*
* Since: 2.2
**/
GtkWidget *
hildon_gtk_radio_button_new (HildonSizeType size,
GSList *group)
{
GtkWidget *button = gtk_radio_button_new (group);
button_common_init (button, size);
return button;
}
/**
* hildon_gtk_radio_button_new_from_widget:
* @size: Flags indicating the size of the new button
* @radio_group_member: widget to get radio group from or %NULL
*
* This is a convenience function to create a #GtkRadioButton setting
* its size to one of the pre-defined Hildon sizes.
*
* Buttons created with this function also override
* #GtkSettings:gtk-button-images. Images set using
* gtk_button_set_image() are always shown.
*
* Buttons created using this function have #GtkButton:focus-on-click
* set to %FALSE by default.
*
* Return value: A newly created #GtkRadioButton widget.
*
* Since: 2.2
**/
GtkWidget *
hildon_gtk_radio_button_new_from_widget (HildonSizeType size,
GtkRadioButton *radio_group_member)
{
GtkWidget *button = gtk_radio_button_new_from_widget (radio_group_member);
button_common_init (button, size);
return button;
}
static void
do_set_progress_indicator (GtkWindow *window,
gpointer stateptr)
{
guint state = GPOINTER_TO_UINT (stateptr);
hildon_gtk_window_set_clear_window_flag (window, "_HILDON_WM_WINDOW_PROGRESS_INDICATOR",
XA_INTEGER, state);
g_signal_handlers_disconnect_matched (window, G_SIGNAL_MATCH_FUNC,
0, 0, NULL, do_set_progress_indicator, NULL);
}
static void
do_set_do_not_disturb (GtkWindow *window,
gpointer dndptr)
{
gboolean dndflag = GPOINTER_TO_INT (dndptr);
hildon_gtk_window_set_clear_window_flag (window, "_HILDON_DO_NOT_DISTURB",
XA_INTEGER, dndflag);
g_signal_handlers_disconnect_matched (window, G_SIGNAL_MATCH_FUNC,
0, 0, NULL, do_set_do_not_disturb, NULL);
}
static void
do_set_zoom_keys (GtkWindow *window,
gpointer zoomptr)
{
gboolean zoomflag = GPOINTER_TO_INT (zoomptr);
hildon_gtk_window_set_clear_window_flag (window, "_HILDON_ZOOM_KEY_ATOM",
XA_INTEGER, zoomflag);
g_signal_handlers_disconnect_matched (window, G_SIGNAL_MATCH_FUNC,
0, 0, NULL, do_set_zoom_keys, NULL);
}
static void
do_set_portrait_flags (GtkWindow *window,
gpointer flagsptr)
{
HildonPortraitFlags flags = GPOINTER_TO_INT (flagsptr);
hildon_gtk_window_set_clear_window_flag (window, "_HILDON_PORTRAIT_MODE_REQUEST",
XA_CARDINAL,
flags & HILDON_PORTRAIT_MODE_REQUEST);
hildon_gtk_window_set_clear_window_flag (window, "_HILDON_PORTRAIT_MODE_SUPPORT",
XA_CARDINAL,
flags & HILDON_PORTRAIT_MODE_SUPPORT);
g_signal_handlers_disconnect_matched (window, G_SIGNAL_MATCH_FUNC,
0, 0, NULL, do_set_portrait_flags, NULL);
}
/**
* hildon_gtk_window_set_progress_indicator:
* @window: a #GtkWindow.
* @state: The state we want to set: 1 -> show progress indicator, 0
* -> hide progress indicator.
*
* This functions tells the window manager to show/hide a progress
* indicator in the window title. It applies to #HildonDialog and
* #HildonWindow (including subclasses).
*
* Since: 2.2
**/
void
hildon_gtk_window_set_progress_indicator (GtkWindow *window,
guint state)
{
hildon_gtk_window_set_flag (window, (HildonFlagFunc) do_set_progress_indicator, GUINT_TO_POINTER (state));
if (HILDON_IS_WINDOW (window)) {
HildonWindowPrivate *priv = HILDON_WINDOW_GET_PRIVATE (window);
if (priv->edit_toolbar) {
HildonEditToolbar *tb = HILDON_EDIT_TOOLBAR (priv->edit_toolbar);
hildon_edit_toolbar_set_progress_indicator (tb, state);
}
}
}
/**
* hildon_gtk_window_set_do_not_disturb:
* @window: a #GtkWindow
* @dndflag: %TRUE to set the "do-not-disturb" flag, %FALSE to clear it
*
* This function tells the window manager to set (or clear) the
* "do-not-disturb" flag on @window.
*
* Since: 2.2
**/
void
hildon_gtk_window_set_do_not_disturb (GtkWindow *window,
gboolean dndflag)
{
hildon_gtk_window_set_flag (window, (HildonFlagFunc) do_set_do_not_disturb, GUINT_TO_POINTER (dndflag));
}
/**
* hildon_gtk_window_set_portrait_flags:
* @window: a #GtkWindow
* @portrait_flags: a combination of #HildonPortraitFlags
*
* Sets the portrait flags for @window.
*
* Since: 2.2
**/
void
hildon_gtk_window_set_portrait_flags (GtkWindow *window,
HildonPortraitFlags portrait_flags)
{
hildon_gtk_window_set_flag (window, (HildonFlagFunc) do_set_portrait_flags, GUINT_TO_POINTER (portrait_flags));
}
/**
* hildon_gtk_window_enable_zoom_keys:
* @window: a #GtkWindow
* @enable: %TRUE to let the window use the zoom keys
*
* Use this function with @enable set to %TRUE to make the window
* receive events from the zoom keys (#HILDON_HARDKEY_DECREASE and
* #HILDON_HARDKEY_INCREASE).
*
* If set to %FALSE, those keys will be reserved for the system to
* control things such as the volume level.
*
* Since: 2.2.2
**/
void
hildon_gtk_window_enable_zoom_keys (GtkWindow *window,
gboolean enable)
{
hildon_gtk_window_set_flag (window, (HildonFlagFunc) do_set_zoom_keys, GUINT_TO_POINTER (enable));
}
/**
* hildon_gtk_window_take_screenshot:
* @window: a #GtkWindow
* @take: %TRUE to take a screenshot, %FALSE to destroy the existing one.
*
* Tells the window manager to create a screenshot of @window and save
* it, or to destroy the existing one. If @take is %TRUE but the
* screenshot is already available, the window manager will not create
* it again.
*
* You should only call this method when @window is already mapped.
*
* In Maemo 5 this screenshot, if existent, will be used by the window
* manager in subsequent launches of the application that created
* it. The window manager will remove this screenshot automatically
* whenever the theme, locale, or the time changes; also when a backup
* is restored. If your application changes its appearance between
* runs and you want to force the existent screenshot to be removed,
* set @take to %FALSE.
*
* Since: 2.2
*
**/
void
hildon_gtk_window_take_screenshot (GtkWindow *window,
gboolean take)
{
XEvent xev = { 0 };
g_return_if_fail (GTK_IS_WINDOW (window));
g_return_if_fail (gtk_widget_get_mapped (GTK_WIDGET (window)));
xev.xclient.type = ClientMessage;
xev.xclient.serial = 0;
xev.xclient.send_event = True;
xev.xclient.display = GDK_DISPLAY_XDISPLAY (gtk_widget_get_display (GTK_WIDGET (window)));
xev.xclient.window = XDefaultRootWindow (xev.xclient.display);
xev.xclient.message_type = XInternAtom (xev.xclient.display, "_HILDON_LOADING_SCREENSHOT", False);
xev.xclient.format = 32;
xev.xclient.data.l[0] = take ? 0 : 1;
xev.xclient.data.l[1] = GDK_WINDOW_XID (gtk_widget_get_window (GTK_WIDGET (window)));
XSendEvent (xev.xclient.display,
xev.xclient.window,
False,
SubstructureRedirectMask | SubstructureNotifyMask,
&xev);
XFlush (xev.xclient.display);
XSync (xev.xclient.display, False);
}
/* XIfEvent() predicate to check for a reply to a
* _HILDON_LOADING_SCREENSHOT command. */
static Bool
screenshot_done (Display *dpy, const XEvent *event, GtkWindow *window)
{
return event->type == ClientMessage
&& event->xclient.message_type == XInternAtom (dpy,
"_HILDON_LOADING_SCREENSHOT",
False)
&& event->xclient.window == GDK_WINDOW_XID (gtk_widget_get_window (GTK_WIDGET (window)));
}
/**
* hildon_gtk_window_take_screenshot_sync:
* @window: a #GtkWindow
* @take: %TRUE to take a screenshot, %FALSE to destroy the existing one.
*
* Like hildon_gtk_window_take_screenshot() but blocks until the
* operation is complete.
*
* Since: 2.2.9
*
**/
void
hildon_gtk_window_take_screenshot_sync (GtkWindow *window,
gboolean take)
{
XEvent foo;
hildon_gtk_window_take_screenshot (window, take);
XIfEvent (GDK_DISPLAY_XDISPLAY (gtk_widget_get_display (GTK_WIDGET (window))),
&foo, (void *)screenshot_done, (XPointer)window);
}
/**
* hildon_gtk_hscale_new:
*
* Creates a new horizontal scale widget that lets the user select
* a value. The value is technically a double between 0.0 and 1.0.
* See gtk_adjustment_configure() for reconfiguring the adjustment.
*
* The scale is hildonized, which means that a click or tap immediately
* jumps to the desired position, see gtk_range_set_jump_to_position().
* Further more the value is not displayed, see gtk_scale_set_draw_value().
*
* Returns: a new hildonized #GtkHScale
*
* Since: 2.2
**/
GtkWidget*
hildon_gtk_hscale_new (void)
{
GtkWidget *scale = gtk_hscale_new_with_range (0.0, 1.0, 0.1);
g_object_set (scale, "draw-value", FALSE, NULL);
return scale;
}
/**
* hildon_gtk_vscale_new:
*
* Creates a new vertical scale widget that lets the user select
* a value. The value is technically a double between 0.0 and 1.0.
* See gtk_adjustment_configure() for reconfiguring the adjustment.
*
* The scale is hildonized, which means that a click or tap immediately
* jumps to the desired position, see gtk_range_set_jump_to_position().
* Further more the value is not displayed, see gtk_scale_set_draw_value().
*
* Returns: a new hildonized #GtkVScale
*
* Since: 2.2
**/
GtkWidget*
hildon_gtk_vscale_new (void)
{
GtkWidget *scale = gtk_vscale_new_with_range (0.0, 1.0, 0.1);
g_object_set (scale, "draw-value", FALSE, NULL);
return scale;
}
#define HILDON_HEIGHT_FINGER 70
#define HILDON_HEIGHT_THUMB 105
#define HILDON_WIDTH_FULLSCREEN (gdk_screen_get_width (gdk_screen_get_default ()))
#define HILDON_WIDTH_HALFSCREEN (HILDON_WIDTH_FULLSCREEN / 2)
/**
* hildon_gtk_widget_set_theme_size:
* @widget: A #GtkWidget
* @size: Flags indicating the size of the widget
*
* This function sets the requested size of a widget.
*
* Since: maemo 2.0
* Stability: Unstable
**/
void
hildon_gtk_widget_set_theme_size (GtkWidget *widget,
HildonSizeType size)
{
gint width = -1;
gint height = -1;
gchar *widget_name = NULL;
g_return_if_fail (GTK_IS_WIDGET (widget));
/* Requested height */
if (size & HILDON_SIZE_FINGER_HEIGHT)
{
height = HILDON_HEIGHT_FINGER;
widget_name = "-finger";
}
else if (size & HILDON_SIZE_THUMB_HEIGHT)
{
height = HILDON_HEIGHT_THUMB;
widget_name = "-thumb";
}
if (widget_name)
widget_name = g_strconcat (g_type_name (G_OBJECT_TYPE (widget)),
widget_name, NULL);
/* Requested width */
if (size & HILDON_SIZE_HALFSCREEN_WIDTH)
width = HILDON_WIDTH_HALFSCREEN;
else if (size & HILDON_SIZE_FULLSCREEN_WIDTH)
width = HILDON_WIDTH_FULLSCREEN;
gtk_widget_set_size_request (widget, width, height);
if (widget_name)
{
gtk_widget_set_name (widget, widget_name);
g_free (widget_name);
}
}
|