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
|
#include <gtk/gtk.h>
GtkWidget *label;
static void
change_label_button (GSimpleAction *action,
GVariant *parameter,
gpointer user_data)
{
gtk_label_set_label (GTK_LABEL (label), "Text set from button");
}
static void
normal_menu_item (GSimpleAction *action,
GVariant *parameter,
gpointer user_data)
{
gtk_label_set_label (GTK_LABEL (label), "Text set from normal menu item");
}
static void
toggle_menu_item (GSimpleAction *action,
GVariant *parameter,
gpointer user_data)
{
gtk_label_set_label (GTK_LABEL (label), "Text set from toggle menu item");
}
static void
submenu_item (GSimpleAction *action,
GVariant *parameter,
gpointer user_data)
{
gtk_label_set_label (GTK_LABEL (label), "Text set from submenu item");
}
static void
radio (GSimpleAction *action, GVariant *parameter, gpointer user_data)
{
GVariant *new_state = g_variant_new_string (g_variant_get_string (parameter, NULL));
char *str;
str = g_strdup_printf ("From Radio menu item %s",
g_variant_get_string (new_state, NULL));
gtk_label_set_label (GTK_LABEL (label), str);
g_free (str);
}
static const GActionEntry win_actions[] = {
{ "change-label-button", change_label_button, NULL, NULL, NULL },
{ "normal-menu-item", normal_menu_item, NULL, NULL, NULL },
{ "toggle-menu-item", toggle_menu_item, NULL, "true", NULL },
{ "submenu-item", submenu_item, NULL, NULL, NULL },
{ "radio", radio, "s", "1", NULL },
};
static const char *menu_data =
"<interface>"
" <menu id=\"menu_model\">"
" <section>"
" <item>"
" <attribute name=\"label\">Normal Menu Item</attribute>"
" <attribute name=\"action\">win.normal-menu-item</attribute>"
" </item>"
" <submenu>"
" <attribute name=\"label\">Submenu</attribute>"
" <item>"
" <attribute name=\"label\">Submenu Item</attribute>"
" <attribute name=\"action\">win.submenu-item</attribute>"
" </item>"
" </submenu>"
" <item>"
" <attribute name=\"label\">Toggle Menu Item</attribute>"
" <attribute name=\"action\">win.toggle-menu-item</attribute>"
" </item>"
" </section>"
" <section>"
" <item>"
" <attribute name=\"label\">Radio 1</attribute>"
" <attribute name=\"action\">win.radio</attribute>"
" <attribute name=\"target\">1</attribute>"
" </item>"
" <item>"
" <attribute name=\"label\">Radio 2</attribute>"
" <attribute name=\"action\">win.radio</attribute>"
" <attribute name=\"target\">2</attribute>"
" </item>"
" <item>"
" <attribute name=\"label\">Radio 3</attribute>"
" <attribute name=\"action\">win.radio</attribute>"
" <attribute name=\"target\">3</attribute>"
" </item>"
" </section>"
" </menu>"
"</interface>"
;
int main (int argc, char **argv)
{
gtk_init ();
GtkWidget *window = gtk_window_new ();
GtkWidget *box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12);
GtkWidget *menubutton = gtk_menu_button_new ();
GtkWidget *button1 = gtk_button_new_with_label ("Change Label Text");
GtkWidget *menu;
GSimpleActionGroup *action_group;
action_group = g_simple_action_group_new ();
g_action_map_add_action_entries (G_ACTION_MAP (action_group),
win_actions,
G_N_ELEMENTS (win_actions),
NULL);
gtk_widget_insert_action_group (window, "win", G_ACTION_GROUP (action_group));
label = gtk_label_new ("Initial Text");
gtk_widget_set_margin_top (label, 12);
gtk_widget_set_margin_bottom (label, 12);
gtk_box_append (GTK_BOX (box), label);
gtk_widget_set_halign (menubutton, GTK_ALIGN_CENTER);
{
GMenuModel *menu_model;
GtkBuilder *builder = gtk_builder_new_from_string (menu_data, -1);
menu_model = G_MENU_MODEL (gtk_builder_get_object (builder, "menu_model"));
menu = gtk_popover_menu_new_from_model (menu_model);
}
gtk_menu_button_set_popover (GTK_MENU_BUTTON (menubutton), menu);
gtk_box_append (GTK_BOX (box), menubutton);
gtk_widget_set_halign (button1, GTK_ALIGN_CENTER);
gtk_actionable_set_action_name (GTK_ACTIONABLE (button1), "win.change-label-button");
gtk_box_append (GTK_BOX (box), button1);
gtk_window_set_child (GTK_WINDOW (window), box);
gtk_widget_show (window);
while (TRUE)
g_main_context_iteration (NULL, TRUE);
return 0;
}
|