* src/hildon-app-menu.h * src/hildon-app-menu.c * examples/hildon-app-menu-example...
[hildon] / src / hildon-app-menu.c
1 /*
2  * This file is a part of hildon
3  *
4  * Copyright (C) 2008 Nokia Corporation, all rights reserved.
5  *
6  * Contact: Karl Lattimer <karl.lattimer@nokia.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser Public License as published by
10  * the Free Software Foundation; version 2 of the license.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Lesser Public License for more details.
16  *
17  */
18
19 /**
20  * SECTION:hildon-app-menu
21  * @short_description: Widget representing the application menu in the Hildon framework.
22  *
23  * The #HildonAppMenu is a GTK widget which represents an application
24  * menu in the Hildon framework.
25  *
26  * This menu opens from the top of the screen and contains a number of
27  * entries (#GtkButton) organized in two columns. Entries are added
28  * left to right and top to bottom.
29  *
30  * Besides that, the #HildonAppMenu can contain filter buttons
31  * (#GtkToggleButton or #GtkRadioButton), which can be grouped.
32  *
33  * <example>
34  * <title>Creating a HildonAppMenu</title>
35  * <programlisting>
36  * HildonAppMenu *menu;
37  * GtkWidget *button;
38  * GtkWidget *filter;
39  * GtkWidget *filtergroup;
40  * <!-- -->
41  * menu = HILDON_APP_MENU (hildon_app_menu_new ());
42  * <!-- -->
43  * // Create a button and add it to the menu
44  * button = gtk_button_new_with_label ("Menu command one");
45  * g_signal_connect (button, "clicked", G_CALLBACK (button_one_clicked), userdata);
46  * hildon_app_menu_append (menu, GTK_BUTTON (button));
47  * // Another button
48  * button = gtk_button_new_with_label ("Menu command two");
49  * g_signal_connect (button, "clicked", G_CALLBACK (button_two_clicked), userdata);
50  * hildon_app_menu_append (menu, GTK_BUTTON (button));
51  * <!-- -->
52  * // Create a filter and add it to the menu
53  * filter = gtk_toggle_button_new_with_label ("Filter one");
54  * g_signal_connect (filter, "clicked", G_CALLBACK (filter_one_clicked), userdata);
55  * hildon_app_menu_add_filter (menu, GTK_BUTTON (filter), NULL);
56  * <!-- -->
57  * // Create another filter and add it to a new filter group
58  * filter = gtk_radio_button_new_with_label (NULL, "Filter two");
59  * gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (filter), FALSE);
60  * g_signal_connect (filter, "clicked", G_CALLBACK (filter_two_clicked), userdata);
61  * filtergroup = hildon_app_menu_add_filter (menu, GTK_BUTTON (filter), NULL);
62  * // Add a new filter to the same filter group
63  * filter = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON (filter), "Filter three");
64  * gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (filter), FALSE);
65  * g_signal_connect (filter, "clicked", G_CALLBACK (filter_three_clicked), userdata);
66  * hildon_app_menu_add_filter (menu, GTK_BUTTON (filter), filtergroup);
67  * <!-- -->
68  * // Show the menu
69  * gtk_widget_show (menu);
70  * </programlisting>
71  * </example>
72  *
73  */
74
75 #include "hildon-app-menu.h"
76 #include "hildon-app-menu-private.h"
77
78 static GdkWindow *
79 grab_transfer_window_get                        (GtkWidget *widget);
80
81 G_DEFINE_TYPE (HildonAppMenu, hildon_app_menu, GTK_TYPE_WINDOW);
82
83 /**
84  * hildon_app_menu_new:
85  *
86  * Creates a new HildonAppMenu.
87  *
88  * Return value: A @HildonAppMenu.
89  **/
90 GtkWidget *
91 hildon_app_menu_new                             (void)
92 {
93     GtkWidget *menu = g_object_new (HILDON_TYPE_APP_MENU, NULL);
94     return menu;
95 }
96
97 /**
98  * hildon_app_menu_append
99  * @menu : A @HildonAppMenu
100  * @item : A @GtkButton to add to the HildonAppMenu
101  *
102  * Adds the @item to the @HildonAppMenu
103  */
104 void
105 hildon_app_menu_append                          (HildonAppMenu *menu,
106                                                  GtkButton *item)
107 {
108     HildonAppMenuPrivate *priv;
109     int row, col;
110
111     g_return_if_fail (HILDON_IS_APP_MENU (menu));
112     g_return_if_fail (GTK_IS_BUTTON (item));
113
114     priv = HILDON_APP_MENU_GET_PRIVATE(menu);
115
116     /* Calculate the row and column number */
117     col = priv->nitems % 2;
118     row = (priv->nitems - col) / 2;
119     priv->nitems++;
120
121     /* GtkTable already calls gtk_table_resize() if necessary */
122     gtk_table_attach_defaults (priv->table, GTK_WIDGET (item), col, col + 1, row, row + 1);
123
124     /* Close the menu when the button is clicked */
125     g_signal_connect_swapped (item, "clicked", G_CALLBACK (gtk_widget_hide), menu);
126
127     gtk_widget_show (GTK_WIDGET (item));
128 }
129
130 /**
131  * hildon_app_menu_add_filter
132  * @menu : A @HildonAppMenu
133  * @filter : A @GtkButton to add to the HildonAppMenu
134  * @group : An existing filter group, or %NULL to create a new one
135  *
136  * Adds the @filter to the @HildonAppMenu, to the group specified by @group
137  *
138  * Return value: The filter group where the filter has been added
139  */
140 GtkWidget *
141 hildon_app_menu_add_filter                      (HildonAppMenu *menu,
142                                                  GtkButton *filter,
143                                                  GtkWidget *group)
144 {
145     HildonAppMenuPrivate *priv;
146
147     g_return_val_if_fail (HILDON_IS_APP_MENU (menu), NULL);
148     g_return_val_if_fail (GTK_IS_BUTTON (filter), NULL);
149     g_return_val_if_fail (!group || GTK_IS_BOX (group), NULL);
150
151     priv = HILDON_APP_MENU_GET_PRIVATE(menu);
152
153     /* Create a new group if needed */
154     if (!group) {
155         group = gtk_hbox_new (TRUE, 0);
156         gtk_box_pack_start (priv->filters_hbox, group, TRUE, TRUE, 0);
157         gtk_widget_show (group);
158     }
159
160     /* Pack the filter in the group and set its size */
161     gtk_box_pack_start (GTK_BOX (group), GTK_WIDGET (filter), TRUE, TRUE, 0);
162     gtk_size_group_add_widget (priv->sizegroup, GTK_WIDGET (filter));
163
164     /* Close the menu when the button is clicked */
165     g_signal_connect_swapped (filter, "clicked", G_CALLBACK (gtk_widget_hide), menu);
166
167     gtk_widget_show (GTK_WIDGET (filter));
168
169     return group;
170 }
171
172 /**
173  * hildon_app_menu_get_group_from_filter
174  * @menu : A @HildonAppMenu
175  * @filter : A @GtkButton previously added to the menu
176  *
177  * Gets the filter group from a @filter previously added to a @HildonAppMenu
178  *
179  * Return value: The group where the @filter is in, or %NULL
180  */
181 GtkWidget *
182 hildon_app_menu_get_group_from_filter           (HildonAppMenu *menu,
183                                                  GtkButton *filter)
184 {
185     HildonAppMenuPrivate *priv;
186     GList *grouplist;
187     GtkWidget *result = NULL;
188
189     g_return_val_if_fail (HILDON_IS_APP_MENU (menu), NULL);
190     g_return_val_if_fail (GTK_IS_BUTTON (filter), NULL);
191
192     priv = HILDON_APP_MENU_GET_PRIVATE(menu);
193
194     /* Get the list of filter groups */
195     grouplist = gtk_container_get_children (GTK_CONTAINER (priv->filters_hbox));
196
197     for (; grouplist != NULL && !result; grouplist = grouplist->next) {
198
199         GtkBox *group = GTK_BOX (grouplist->data);
200         GList *items = gtk_container_get_children (GTK_CONTAINER (group));
201
202         /* Look for the filter inside each filter group */
203         for (; items != NULL && !result; items = items->next) {
204             if (filter == items->data) {
205                 result = GTK_WIDGET (group);
206             }
207         }
208         g_list_free (items);
209
210     }
211     g_list_free (grouplist);
212
213     if (!result)
214         g_critical("Filter not found in hildon app menu!");
215
216     return result;
217 }
218
219 static void
220 hildon_app_menu_map                             (GtkWidget *widget)
221 {
222     HildonAppMenuPrivate *priv = HILDON_APP_MENU_GET_PRIVATE(widget);
223
224     GTK_WIDGET_CLASS (hildon_app_menu_parent_class)->map (widget);
225
226     /* Grab pointer and keyboard */
227     if (priv->transfer_window == NULL) {
228         priv->transfer_window = grab_transfer_window_get (widget);
229         gdk_pointer_grab (
230             priv->transfer_window, TRUE,
231             GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
232             GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK |
233             GDK_POINTER_MOTION_MASK, NULL, NULL, GDK_CURRENT_TIME);
234         gdk_keyboard_grab (priv->transfer_window, TRUE, GDK_CURRENT_TIME);
235         gtk_grab_add (widget);
236     }
237 }
238
239 static void
240 hildon_app_menu_unmap                           (GtkWidget *widget)
241 {
242     HildonAppMenuPrivate *priv = HILDON_APP_MENU_GET_PRIVATE(widget);
243
244     if (priv->transfer_window != NULL) {
245         /* Remove the grab */
246         gdk_display_pointer_ungrab (gtk_widget_get_display (widget),
247                                     GDK_CURRENT_TIME);
248         gtk_grab_remove (widget);
249
250         /* Destroy the transfer window */
251         gdk_window_destroy (priv->transfer_window);
252         priv->transfer_window = NULL;
253     }
254
255     GTK_WIDGET_CLASS (hildon_app_menu_parent_class)->unmap (widget);
256 }
257
258 static gboolean
259 hildon_app_menu_button_release                  (GtkWidget *widget,
260                                                  GdkEventButton *event)
261 {
262     int x, y;
263     gboolean released_outside;
264     HildonAppMenuPrivate *priv = HILDON_APP_MENU_GET_PRIVATE(widget);
265
266     gdk_window_get_position (widget->window, &x, &y);
267
268     /* Whether the button has been released outside the widget */
269     released_outside = (event->window != priv->transfer_window ||
270                         event->x < x || event->x > x + widget->allocation.width ||
271                         event->y < y || event->y > y + widget->allocation.height);
272
273     if (released_outside) {
274         gtk_widget_hide (widget);
275     }
276
277     if (GTK_WIDGET_CLASS (hildon_app_menu_parent_class)->button_release_event) {
278         return GTK_WIDGET_CLASS (hildon_app_menu_parent_class)->button_release_event (widget, event);
279     } else {
280         return FALSE;
281     }
282 }
283
284 /* Grab transfer window (based on the one from GtkMenu) */
285 static GdkWindow *
286 grab_transfer_window_get                        (GtkWidget *widget)
287 {
288     GdkWindow *window;
289     GdkWindowAttr attributes;
290     gint attributes_mask;
291
292     attributes.x = 0;
293     attributes.y = 0;
294     attributes.width = 10;
295     attributes.height = 10;
296     attributes.window_type = GDK_WINDOW_TEMP;
297     attributes.wclass = GDK_INPUT_ONLY;
298     attributes.override_redirect = TRUE;
299     attributes.event_mask = 0;
300
301     attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_NOREDIR;
302
303     window = gdk_window_new (gtk_widget_get_root_window (widget),
304                                  &attributes, attributes_mask);
305     gdk_window_set_user_data (window, widget);
306
307     gdk_window_show (window);
308
309     return window;
310 }
311
312 static void
313 hildon_app_menu_realize                         (GtkWidget *widget)
314 {
315     GTK_WIDGET_CLASS (hildon_app_menu_parent_class)->realize (widget);
316     gdk_window_set_override_redirect(widget->window, TRUE);
317 }
318
319 static void
320 hildon_app_menu_init                            (HildonAppMenu *menu)
321 {
322     GtkWidget *alignment;
323     GdkScreen *screen;
324     int width;
325     guint filter_group_spacing, horizontal_spacing, vertical_spacing,
326             external_border;
327     HildonAppMenuPrivate *priv = HILDON_APP_MENU_GET_PRIVATE(menu);
328
329     gtk_widget_style_get (GTK_WIDGET (menu),
330                           "filter-group-spacing", &filter_group_spacing,
331                           "horizontal-spacing", &horizontal_spacing,
332                           "vertical-spacing", &vertical_spacing,
333                           "external-border", &external_border,
334                           NULL);
335
336     /* Initialize private variables */
337     priv->filters_hbox = GTK_BOX (gtk_hbox_new (FALSE, filter_group_spacing));
338     priv->vbox = GTK_BOX (gtk_vbox_new (FALSE, 10));
339     priv->table = GTK_TABLE (gtk_table_new (1, 2, TRUE));
340     priv->sizegroup = GTK_SIZE_GROUP (gtk_size_group_new (GTK_SIZE_GROUP_BOTH));
341     priv->nitems = 0;
342     priv->transfer_window = NULL;
343
344     /* Set spacing between table elements */
345     gtk_table_set_row_spacings (priv->table, vertical_spacing);
346     gtk_table_set_col_spacings (priv->table, horizontal_spacing);
347
348     /* Align the filters to the center */
349     alignment = gtk_alignment_new (0.5, 0.5, 0, 0);
350     gtk_container_add (GTK_CONTAINER (alignment), GTK_WIDGET (priv->filters_hbox));
351
352     /* Pack everything */
353     gtk_container_add (GTK_CONTAINER (menu), GTK_WIDGET (priv->vbox));
354     gtk_box_pack_start (priv->vbox, alignment, TRUE, TRUE, 0);
355     gtk_box_pack_start (priv->vbox, GTK_WIDGET (priv->table), TRUE, TRUE, 0);
356
357     /* Set default size */
358     screen = gtk_widget_get_screen (GTK_WIDGET (menu));
359     width = gdk_screen_get_width (screen) - external_border * 2;
360     gtk_window_set_default_size (GTK_WINDOW (menu), width, -1);
361
362     gtk_widget_show_all (GTK_WIDGET (priv->vbox));
363
364     gtk_window_set_type_hint (GTK_WINDOW (menu), GDK_WINDOW_TYPE_HINT_POPUP_MENU);
365 }
366
367 static void
368 hildon_app_menu_finalize                        (GObject *object)
369 {
370     HildonAppMenuPrivate *priv = HILDON_APP_MENU_GET_PRIVATE(object);
371
372     g_object_unref (priv->sizegroup);
373     if (priv->transfer_window)
374         gdk_window_destroy (priv->transfer_window);
375
376     g_signal_handlers_destroy (object);
377     G_OBJECT_CLASS (hildon_app_menu_parent_class)->finalize (object);
378 }
379
380 static void
381 hildon_app_menu_class_init                      (HildonAppMenuClass *klass)
382 {
383     GObjectClass *gobject_class = (GObjectClass *)klass;
384     GtkWidgetClass *widget_class = (GtkWidgetClass *)klass;
385
386     gobject_class->finalize = hildon_app_menu_finalize;
387     widget_class->map = hildon_app_menu_map;
388     widget_class->unmap = hildon_app_menu_unmap;
389     widget_class->realize = hildon_app_menu_realize;
390     widget_class->button_release_event = hildon_app_menu_button_release;
391
392     g_type_class_add_private (klass, sizeof (HildonAppMenuPrivate));
393
394     gtk_widget_class_install_style_property (
395         widget_class,
396         g_param_spec_uint (
397             "filter-group-spacing",
398             "Space between filter groups",
399             "Space in pixels between the filter groups",
400             0, G_MAXUINT, 10,
401             G_PARAM_READABLE));
402
403     gtk_widget_class_install_style_property (
404         widget_class,
405         g_param_spec_uint (
406             "horizontal-spacing",
407             "Horizontal spacing on menu items",
408             "Horizontal spacing between each menu item (but not filters)",
409             0, G_MAXUINT, 10,
410             G_PARAM_READABLE));
411
412     gtk_widget_class_install_style_property (
413         widget_class,
414         g_param_spec_uint (
415             "vertical-spacing",
416             "Vertical spacing on menu items",
417             "Vertical spacing between each menu item (but not filters)",
418             0, G_MAXUINT, 10,
419             G_PARAM_READABLE));
420
421     gtk_widget_class_install_style_property (
422         widget_class,
423         g_param_spec_uint (
424             "external-border",
425             "Border between menu and screen edges",
426             "Border between the right and left edges of the menu and the screen edges",
427             0, G_MAXUINT, 40,
428             G_PARAM_READABLE));
429 }