forked from AuroraMiddleware/gtk
204 lines
7.6 KiB
C
204 lines
7.6 KiB
C
#include <gtk/gtk.h>
|
|
#include <glib/gstdio.h>
|
|
|
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
|
|
|
static void
|
|
activate (GSimpleAction *action,
|
|
GVariant *parameter,
|
|
gpointer user_data)
|
|
{
|
|
g_print ("%s activated\n", g_action_get_name (G_ACTION (action)));
|
|
}
|
|
|
|
static GActionEntry entries[] = {
|
|
{ "cut", activate, NULL, NULL, NULL },
|
|
{ "copy", activate, NULL, NULL, NULL },
|
|
{ "paste", activate, NULL, NULL, NULL },
|
|
{ "bold", NULL, NULL, "false", NULL },
|
|
{ "italic", NULL, NULL, "false", NULL },
|
|
{ "strikethrough", NULL, NULL, "false", NULL },
|
|
{ "underline", NULL, NULL, "false", NULL },
|
|
{ "set-view", NULL, "s", "'list'", NULL },
|
|
{ "action1", activate, NULL, NULL, NULL },
|
|
{ "action2", NULL, NULL, "true", NULL },
|
|
{ "action2a", NULL, NULL, "false", NULL },
|
|
{ "action3", NULL, "s", "'three'", NULL },
|
|
{ "action4", activate, NULL, NULL, NULL },
|
|
{ "action5", activate, NULL, NULL, NULL },
|
|
{ "action6", activate, NULL, NULL, NULL },
|
|
{ "action7", activate, NULL, NULL, NULL },
|
|
{ "action8", activate, NULL, NULL, NULL },
|
|
{ "action9", activate, NULL, NULL, NULL },
|
|
{ "action10", activate, NULL, NULL, NULL }
|
|
};
|
|
|
|
static void
|
|
quit_cb (GtkWidget *widget,
|
|
gpointer data)
|
|
{
|
|
gboolean *done = data;
|
|
|
|
*done = TRUE;
|
|
|
|
g_main_context_wakeup (NULL);
|
|
}
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
GtkWidget *win;
|
|
GtkWidget *box;
|
|
GtkWidget *button;
|
|
GtkWidget *button1;
|
|
GtkWidget *button2;
|
|
GtkBuilder *builder;
|
|
GMenuModel *model;
|
|
GSimpleActionGroup *actions;
|
|
GtkWidget *overlay;
|
|
GtkWidget *grid;
|
|
GtkWidget *popover;
|
|
GtkWidget *popover1;
|
|
GtkWidget *popover2;
|
|
GtkWidget *label;
|
|
GtkWidget *check;
|
|
GtkWidget *combo;
|
|
GtkWidget *header_bar;
|
|
gboolean done = FALSE;
|
|
|
|
#ifdef GTK_SRCDIR
|
|
g_chdir (GTK_SRCDIR);
|
|
#endif
|
|
|
|
gtk_init ();
|
|
|
|
win = gtk_window_new ();
|
|
gtk_window_set_default_size (GTK_WINDOW (win), 400, 600);
|
|
header_bar = gtk_header_bar_new ();
|
|
gtk_window_set_titlebar (GTK_WINDOW (win), header_bar);
|
|
gtk_window_set_title (GTK_WINDOW (win), "Test GtkPopover");
|
|
actions = g_simple_action_group_new ();
|
|
g_action_map_add_action_entries (G_ACTION_MAP (actions), entries, G_N_ELEMENTS (entries), NULL);
|
|
|
|
gtk_widget_insert_action_group (win, "top", G_ACTION_GROUP (actions));
|
|
|
|
overlay = gtk_overlay_new ();
|
|
gtk_window_set_child (GTK_WINDOW (win), overlay);
|
|
|
|
grid = gtk_grid_new ();
|
|
gtk_widget_set_halign (grid, GTK_ALIGN_FILL);
|
|
gtk_widget_set_valign (grid, GTK_ALIGN_FILL);
|
|
gtk_grid_set_row_spacing (GTK_GRID (grid), 10);
|
|
gtk_grid_set_column_spacing (GTK_GRID (grid), 10);
|
|
gtk_overlay_set_child (GTK_OVERLAY (overlay), grid);
|
|
|
|
label = gtk_label_new ("");
|
|
gtk_widget_set_hexpand (label, TRUE);
|
|
gtk_widget_set_vexpand (label, TRUE);
|
|
gtk_grid_attach (GTK_GRID (grid), label, 0, 0, 1, 1);
|
|
|
|
label = gtk_label_new ("");
|
|
gtk_widget_set_hexpand (label, TRUE);
|
|
gtk_widget_set_vexpand (label, TRUE);
|
|
gtk_grid_attach (GTK_GRID (grid), label, 3, 7, 1, 1);
|
|
|
|
builder = gtk_builder_new_from_file ("popover.ui");
|
|
model = (GMenuModel *)gtk_builder_get_object (builder, "menu");
|
|
|
|
box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
|
|
button = gtk_menu_button_new ();
|
|
gtk_box_append (GTK_BOX (box), button);
|
|
button1 = gtk_menu_button_new ();
|
|
gtk_box_append (GTK_BOX (box), button1);
|
|
button2 = gtk_menu_button_new ();
|
|
gtk_box_append (GTK_BOX (box), button2);
|
|
|
|
gtk_menu_button_set_menu_model (GTK_MENU_BUTTON (button), model);
|
|
popover = GTK_WIDGET (gtk_menu_button_get_popover (GTK_MENU_BUTTON (button)));
|
|
|
|
popover1 = gtk_popover_menu_new_from_model_full (model, GTK_POPOVER_MENU_NESTED);
|
|
gtk_menu_button_set_popover (GTK_MENU_BUTTON (button1), popover1);
|
|
|
|
g_object_unref (builder);
|
|
builder = gtk_builder_new_from_file ("popover2.ui");
|
|
popover2 = (GtkWidget *)gtk_builder_get_object (builder, "popover");
|
|
gtk_menu_button_set_popover (GTK_MENU_BUTTON (button2), popover2);
|
|
|
|
gtk_widget_set_margin_start (box, 10);
|
|
gtk_widget_set_margin_end (box, 10);
|
|
gtk_widget_set_margin_top (box, 10);
|
|
gtk_widget_set_margin_bottom (box, 10);
|
|
gtk_overlay_add_overlay (GTK_OVERLAY (overlay), box);
|
|
|
|
label = gtk_label_new ("Popover hexpand");
|
|
check = gtk_check_button_new ();
|
|
g_object_bind_property (check, "active", popover, "hexpand", G_BINDING_SYNC_CREATE);
|
|
g_object_bind_property (check, "active", popover1, "hexpand", G_BINDING_SYNC_CREATE);
|
|
g_object_bind_property (check, "active", popover2, "hexpand", G_BINDING_SYNC_CREATE);
|
|
gtk_grid_attach (GTK_GRID (grid), label , 1, 1, 1, 1);
|
|
gtk_grid_attach (GTK_GRID (grid), check, 2, 1, 1, 1);
|
|
|
|
label = gtk_label_new ("Popover vexpand");
|
|
check = gtk_check_button_new ();
|
|
g_object_bind_property (check, "active", popover, "vexpand", G_BINDING_SYNC_CREATE);
|
|
g_object_bind_property (check, "active", popover1, "vexpand", G_BINDING_SYNC_CREATE);
|
|
g_object_bind_property (check, "active", popover2, "vexpand", G_BINDING_SYNC_CREATE);
|
|
gtk_grid_attach (GTK_GRID (grid), label , 1, 2, 1, 1);
|
|
gtk_grid_attach (GTK_GRID (grid), check, 2, 2, 1, 1);
|
|
|
|
|
|
label = gtk_label_new ("Autohide");
|
|
check = gtk_check_button_new ();
|
|
g_object_bind_property (check, "active", popover, "autohide", G_BINDING_SYNC_CREATE);
|
|
g_object_bind_property (check, "active", popover1, "autohide", G_BINDING_SYNC_CREATE);
|
|
g_object_bind_property (check, "active", popover2, "autohide", G_BINDING_SYNC_CREATE);
|
|
gtk_check_button_set_active (GTK_CHECK_BUTTON (check), TRUE);
|
|
gtk_grid_attach (GTK_GRID (grid), label , 1, 3, 1, 1);
|
|
gtk_grid_attach (GTK_GRID (grid), check, 2, 3, 1, 1);
|
|
|
|
label = gtk_label_new ("Button direction");
|
|
combo = gtk_combo_box_text_new ();
|
|
gtk_combo_box_text_append (GTK_COMBO_BOX_TEXT (combo), "up", "Up");
|
|
gtk_combo_box_text_append (GTK_COMBO_BOX_TEXT (combo), "down", "Down");
|
|
gtk_combo_box_text_append (GTK_COMBO_BOX_TEXT (combo), "left", "Left");
|
|
gtk_combo_box_text_append (GTK_COMBO_BOX_TEXT (combo), "right", "Right");
|
|
gtk_combo_box_set_active (GTK_COMBO_BOX (combo), 1);
|
|
g_object_bind_property (combo, "active", button, "direction", G_BINDING_SYNC_CREATE);
|
|
g_object_bind_property (combo, "active", button1, "direction", G_BINDING_SYNC_CREATE);
|
|
g_object_bind_property (combo, "active", button2, "direction", G_BINDING_SYNC_CREATE);
|
|
gtk_grid_attach (GTK_GRID (grid), label , 1, 4, 1, 1);
|
|
gtk_grid_attach (GTK_GRID (grid), combo, 2, 4, 1, 1);
|
|
|
|
label = gtk_label_new ("Button halign");
|
|
combo = gtk_combo_box_text_new ();
|
|
gtk_combo_box_text_append (GTK_COMBO_BOX_TEXT (combo), "fill", "Fill");
|
|
gtk_combo_box_text_append (GTK_COMBO_BOX_TEXT (combo), "start", "Start");
|
|
gtk_combo_box_text_append (GTK_COMBO_BOX_TEXT (combo), "end", "End");
|
|
gtk_combo_box_text_append (GTK_COMBO_BOX_TEXT (combo), "center", "Center");
|
|
gtk_combo_box_set_active (GTK_COMBO_BOX (combo), 2);
|
|
g_object_bind_property (combo, "active", box, "halign", G_BINDING_SYNC_CREATE);
|
|
gtk_grid_attach (GTK_GRID (grid), label , 1, 5, 1, 1);
|
|
gtk_grid_attach (GTK_GRID (grid), combo, 2, 5, 1, 1);
|
|
|
|
label = gtk_label_new ("Button valign");
|
|
combo = gtk_combo_box_text_new ();
|
|
gtk_combo_box_text_append (GTK_COMBO_BOX_TEXT (combo), "fill", "Fill");
|
|
gtk_combo_box_text_append (GTK_COMBO_BOX_TEXT (combo), "start", "Start");
|
|
gtk_combo_box_text_append (GTK_COMBO_BOX_TEXT (combo), "end", "End");
|
|
gtk_combo_box_text_append (GTK_COMBO_BOX_TEXT (combo), "center", "Center");
|
|
gtk_combo_box_set_active (GTK_COMBO_BOX (combo), 1);
|
|
g_object_bind_property (combo, "active", box, "valign", G_BINDING_SYNC_CREATE);
|
|
gtk_grid_attach (GTK_GRID (grid), label , 1, 6, 1, 1);
|
|
gtk_grid_attach (GTK_GRID (grid), combo, 2, 6, 1, 1);
|
|
g_object_unref (builder);
|
|
|
|
|
|
g_signal_connect (win, "destroy", G_CALLBACK (quit_cb), &done);
|
|
gtk_window_present (GTK_WINDOW (win));
|
|
|
|
while (!done)
|
|
g_main_context_iteration (NULL, TRUE);
|
|
|
|
return 0;
|
|
}
|