2008-07-31 Alberto Garcia <agarcia@igalia.com>
[hildon] / examples / hildon-app-menu-example.c
1 /*
2  * This file is a part of hildon examples
3  *
4  * Copyright (C) 2008 Nokia Corporation, all rights reserved.
5  *
6  * Author: Karl Lattimer <karl.lattimer@nokia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; version 2.1 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24
25 #include                                        <gtk/gtk.h>
26 #include                                        <hildon-stackable-window.h>
27 #include                                        <hildon-app-menu.h>
28
29 static void
30 menu_button_clicked                             (GtkButton *button,
31                                                  GtkLabel *label)
32 {
33     const char *buttontext = gtk_button_get_label (button);
34     char *text = g_strdup_printf("Last option selected:\n%s", buttontext);
35     gtk_label_set_text (label, text);
36     g_free (text);
37 }
38
39 static HildonAppMenu *
40 create_menu                                     (GtkWidget *label)
41 {
42     GtkWidget *button;
43     HildonAppMenu *menu = HILDON_APP_MENU (hildon_app_menu_new ());
44
45     /* Options */
46     button = gtk_button_new_with_label ("Menu command one");
47     g_signal_connect (button, "clicked", G_CALLBACK (menu_button_clicked), label);
48     hildon_app_menu_append (menu, GTK_BUTTON (button));
49
50     button = gtk_button_new_with_label ("Menu command two");
51     g_signal_connect (button, "clicked", G_CALLBACK (menu_button_clicked), label);
52     hildon_app_menu_append (menu, GTK_BUTTON (button));
53
54     button = gtk_button_new_with_label ("Menu command three");
55     g_signal_connect (button, "clicked", G_CALLBACK (menu_button_clicked), label);
56     hildon_app_menu_append (menu, GTK_BUTTON (button));
57
58     button = gtk_button_new_with_label ("Menu command four");
59     g_signal_connect (button, "clicked", G_CALLBACK (menu_button_clicked), label);
60     hildon_app_menu_append (menu, GTK_BUTTON (button));
61
62     button = gtk_button_new_with_label ("Menu command five");
63     g_signal_connect (button, "clicked", G_CALLBACK (menu_button_clicked), label);
64     hildon_app_menu_append (menu, GTK_BUTTON (button));
65
66     /* Filters */
67     button = gtk_radio_button_new_with_label (NULL, "filter one");
68     g_signal_connect (button, "clicked", G_CALLBACK (menu_button_clicked), label);
69     hildon_app_menu_add_filter (menu, GTK_BUTTON (button));
70     gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (button), FALSE);
71
72     button = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON (button), "filter two");
73     g_signal_connect (button, "clicked", G_CALLBACK (menu_button_clicked), label);
74     hildon_app_menu_add_filter (menu, GTK_BUTTON (button));
75     gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (button), FALSE);
76
77     return menu;
78 }
79
80 int
81 main                                            (int argc,
82                                                  char **argv)
83 {
84     GtkWidget *win;
85     GtkWidget *label;
86     GtkWidget *label2;
87     GtkBox *vbox;
88     HildonAppMenu *menu;
89
90     gtk_init (&argc, &argv);
91
92     gtk_rc_parse_string ("style \"default\" {\n"
93                          "bg[NORMAL] = \"#505050\""
94                          "}\n"
95                          "class \"HildonAppMenu\" style \"default\"\n");
96
97     label = gtk_label_new ("This is an example of the\nHildonAppMenu widget.\n\n"
98                            "Click on the titlebar\nto pop up the menu.");
99     label2 = gtk_label_new ("No menu option has been selected yet.");
100
101     gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_CENTER);
102     gtk_label_set_justify (GTK_LABEL (label2), GTK_JUSTIFY_CENTER);
103
104     vbox = GTK_BOX (gtk_vbox_new (FALSE, 10));
105     win = hildon_stackable_window_new ();
106
107     menu = create_menu (label2);
108
109     hildon_stackable_window_set_main_menu (HILDON_STACKABLE_WINDOW (win), menu);
110
111     gtk_box_pack_start (vbox, label, TRUE, TRUE, 0);
112     gtk_box_pack_start (vbox, label2, TRUE, TRUE, 0);
113
114     gtk_container_set_border_width (GTK_CONTAINER (win), 20);
115     gtk_container_add (GTK_CONTAINER (win), GTK_WIDGET (vbox));
116
117     g_signal_connect (win, "delete_event", G_CALLBACK (gtk_main_quit), NULL);
118
119     gtk_widget_show_all (win);
120
121     gtk_main ();
122
123     return 0;
124 }