Fixed the compilation without maemo gtk adding ifdefs with MAEMO_CHANGES define to...
[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.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 option selected:\n%s", buttontext);
34     gtk_label_set_text (label, text);
35     g_free (text);
36     g_debug ("Button clicked: %s", buttontext);
37 }
38
39 static HildonAppMenu *
40 create_menu                                     (GtkWidget     *label,
41                                                  GtkAccelGroup *accel)
42 {
43     GtkWidget *button;
44     HildonAppMenu *menu = HILDON_APP_MENU (hildon_app_menu_new ());
45
46     /* Options */
47     button = gtk_button_new_with_label ("Menu command one");
48     g_signal_connect_after (button, "clicked", G_CALLBACK (menu_button_clicked), label);
49     hildon_app_menu_append (menu, GTK_BUTTON (button));
50
51     gtk_widget_add_accelerator (button, "activate", accel, GDK_r, GDK_CONTROL_MASK, GTK_ACCEL_VISIBLE);
52
53     button = gtk_button_new_with_label ("Menu command two");
54     g_signal_connect_after (button, "clicked", G_CALLBACK (menu_button_clicked), label);
55     hildon_app_menu_append (menu, GTK_BUTTON (button));
56
57     button = gtk_button_new_with_label ("Menu command three");
58     g_signal_connect_after (button, "clicked", G_CALLBACK (menu_button_clicked), label);
59     hildon_app_menu_append (menu, GTK_BUTTON (button));
60
61     button = gtk_button_new_with_label ("Menu command four");
62     g_signal_connect_after (button, "clicked", G_CALLBACK (menu_button_clicked), label);
63     hildon_app_menu_append (menu, GTK_BUTTON (button));
64
65     button = gtk_button_new_with_label ("Menu command five");
66     g_signal_connect_after (button, "clicked", G_CALLBACK (menu_button_clicked), label);
67     hildon_app_menu_append (menu, GTK_BUTTON (button));
68
69     /* Filters */
70     button = gtk_radio_button_new_with_label (NULL, "filter one");
71     g_signal_connect_after (button, "clicked", G_CALLBACK (menu_button_clicked), label);
72     hildon_app_menu_add_filter (menu, GTK_BUTTON (button));
73     gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (button), FALSE);
74
75     button = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON (button), "filter two");
76     g_signal_connect_after (button, "clicked", G_CALLBACK (menu_button_clicked), label);
77     hildon_app_menu_add_filter (menu, GTK_BUTTON (button));
78     gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (button), FALSE);
79
80     return menu;
81 }
82
83 int
84 main                                            (int argc,
85                                                  char **argv)
86 {
87     GtkWidget *win;
88     GtkWidget *label;
89     GtkWidget *label2;
90     GtkBox *vbox;
91     HildonAppMenu *menu;
92     GtkAccelGroup *accel;
93
94     gtk_init (&argc, &argv);
95
96     label = gtk_label_new ("This is an example of the\nHildonAppMenu widget.\n\n"
97                            "Click on the titlebar\nto pop up the menu.");
98     label2 = gtk_label_new ("No menu option has been selected yet.");
99
100     accel = gtk_accel_group_new ();
101
102     gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_CENTER);
103     gtk_label_set_justify (GTK_LABEL (label2), GTK_JUSTIFY_CENTER);
104
105     vbox = GTK_BOX (gtk_vbox_new (FALSE, 10));
106     win = hildon_stackable_window_new ();
107
108     menu = create_menu (label2, accel);
109
110     hildon_stackable_window_set_main_menu (HILDON_STACKABLE_WINDOW (win), menu);
111
112     gtk_window_add_accel_group (GTK_WINDOW (win), accel);
113     g_object_unref (accel);
114
115     gtk_box_pack_start (vbox, label, TRUE, TRUE, 0);
116     gtk_box_pack_start (vbox, label2, TRUE, TRUE, 0);
117
118     gtk_container_set_border_width (GTK_CONTAINER (win), 20);
119     gtk_container_add (GTK_CONTAINER (win), GTK_WIDGET (vbox));
120
121     g_signal_connect (win, "delete_event", G_CALLBACK (gtk_main_quit), NULL);
122
123     gtk_widget_show_all (win);
124
125     gtk_main ();
126
127     return 0;
128 }