* src/hildon-app-menu.h Update API. * src/hildon-app-menu.c (hildon_app_menu_init...
[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-app-menu.h>
27
28 static void
29 menu_button_clicked                             (GtkButton *button,
30                                                  GtkLabel *label)
31 {
32     const char *buttontext = gtk_button_get_label (button);
33     char *text = g_strdup_printf("Last button clicked:\n%s", buttontext);
34     gtk_label_set_text (label, text);
35     g_free (text);
36 }
37
38 static HildonAppMenu *
39 create_menu                                     (GtkWidget *label)
40 {
41     GtkWidget *button;
42     GtkWidget *group;
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 static void
81 button_clicked                                  (GtkButton *button,
82                                                  HildonAppMenu *menu)
83 {
84     gtk_widget_show (GTK_WIDGET (menu));
85 }
86
87 static void
88 close_app                                       (GtkWidget *widget,
89                                                  GdkEvent  *event,
90                                                  GtkWidget *menu)
91 {
92     gtk_widget_destroy (GTK_WIDGET (menu));
93     gtk_main_quit ();
94 }
95
96 int
97 main                                            (int argc,
98                                                  char **argv)
99 {
100     GtkWidget *win;
101     GtkWidget *button;
102     GtkWidget *label;
103     GtkWidget *label2;
104     GtkBox *vbox;
105     HildonAppMenu *menu;
106
107     gtk_init (&argc, &argv);
108
109     gtk_rc_parse_string ("style \"default\" {\n"
110                          "bg[NORMAL] = \"#505050\""
111                          "}\n"
112                          "class \"HildonAppMenu\" style \"default\"\n");
113
114     button = gtk_button_new_with_label ("Press me");
115     label = gtk_label_new ("This is an example of the\nHildonAppMenu widget");
116     label2 = gtk_label_new ("No button has been clicked");
117     vbox = GTK_BOX (gtk_vbox_new (FALSE, 10));
118     win = gtk_window_new (GTK_WINDOW_TOPLEVEL);
119
120     menu = create_menu (label2);
121
122     gtk_box_pack_start (vbox, label, TRUE, TRUE, 0);
123     gtk_box_pack_start (vbox, button, TRUE, TRUE, 0);
124     gtk_box_pack_start (vbox, label2, TRUE, TRUE, 0);
125
126     gtk_container_set_border_width (GTK_CONTAINER (win), 20);
127     gtk_container_add (GTK_CONTAINER (win), GTK_WIDGET (vbox));
128
129     g_signal_connect (button, "clicked", G_CALLBACK(button_clicked), menu);
130     g_signal_connect (win, "delete_event", G_CALLBACK(close_app), menu);
131
132     gtk_widget_show_all (win);
133
134     gtk_main ();
135
136     return 0;
137 }