mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 22:20:24 +00:00
Remove testactionbar
This test relies on child properties.
This commit is contained in:
parent
1f37600c4c
commit
f184393f07
@ -111,7 +111,6 @@ gtk_tests = [
|
||||
['testtreelistmodel'],
|
||||
['testsplitheaders'],
|
||||
['teststackedheaders'],
|
||||
['testactionbar'],
|
||||
['testwindowsize'],
|
||||
['testpopover'],
|
||||
['gdkgears', ['gtkgears.c']],
|
||||
|
@ -1,169 +0,0 @@
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
static void
|
||||
toggle_center (GtkCheckButton *button,
|
||||
GParamSpec *pspec,
|
||||
GtkActionBar *bar)
|
||||
{
|
||||
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button)))
|
||||
{
|
||||
GtkWidget *button;
|
||||
|
||||
button = gtk_button_new_with_label ("Center");
|
||||
gtk_widget_show (button);
|
||||
gtk_action_bar_set_center_widget (bar, button);
|
||||
}
|
||||
else
|
||||
{
|
||||
gtk_action_bar_set_center_widget (bar, NULL);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
toggle_visibility (GtkCheckButton *button,
|
||||
GParamSpec *pspec,
|
||||
GtkActionBar *bar)
|
||||
{
|
||||
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button)))
|
||||
gtk_action_bar_set_revealed (bar, TRUE);
|
||||
else
|
||||
gtk_action_bar_set_revealed (bar, FALSE);
|
||||
}
|
||||
|
||||
static void
|
||||
create_widgets (GtkActionBar *bar,
|
||||
GtkPackType pack_type,
|
||||
gint n)
|
||||
{
|
||||
GList *children, *l;
|
||||
GtkWidget *child;
|
||||
gint i;
|
||||
gchar *label;
|
||||
|
||||
children = gtk_container_get_children (GTK_CONTAINER (bar));
|
||||
for (l = children; l; l = l->next)
|
||||
{
|
||||
GtkPackType type;
|
||||
|
||||
child = l->data;
|
||||
|
||||
if (child == gtk_action_bar_get_center_widget (bar))
|
||||
continue;
|
||||
|
||||
gtk_container_child_get (GTK_CONTAINER (bar), child, "pack-type", &type, NULL);
|
||||
if (type == pack_type)
|
||||
gtk_container_remove (GTK_CONTAINER (bar), child);
|
||||
}
|
||||
g_list_free (children);
|
||||
|
||||
for (i = 0; i < n; i++)
|
||||
{
|
||||
label = g_strdup_printf ("%d", i);
|
||||
child = gtk_button_new_with_label (label);
|
||||
g_free (label);
|
||||
|
||||
gtk_widget_show (child);
|
||||
if (pack_type == GTK_PACK_START)
|
||||
gtk_action_bar_pack_start (bar, child);
|
||||
else
|
||||
gtk_action_bar_pack_end (bar, child);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
change_start (GtkSpinButton *button,
|
||||
GParamSpec *pspec,
|
||||
GtkActionBar *bar)
|
||||
{
|
||||
create_widgets (bar,
|
||||
GTK_PACK_START,
|
||||
gtk_spin_button_get_value_as_int (button));
|
||||
}
|
||||
|
||||
static void
|
||||
change_end (GtkSpinButton *button,
|
||||
GParamSpec *pspec,
|
||||
GtkActionBar *bar)
|
||||
{
|
||||
create_widgets (bar,
|
||||
GTK_PACK_END,
|
||||
gtk_spin_button_get_value_as_int (button));
|
||||
}
|
||||
|
||||
static void
|
||||
activate (GApplication *gapp)
|
||||
{
|
||||
GtkApplication *app = GTK_APPLICATION (gapp);
|
||||
GtkWidget *window;
|
||||
GtkWidget *box;
|
||||
GtkWidget *grid;
|
||||
GtkWidget *label;
|
||||
GtkWidget *spin;
|
||||
GtkWidget *check;
|
||||
GtkWidget *bar;
|
||||
|
||||
window = gtk_application_window_new (app);
|
||||
gtk_application_add_window (app, GTK_WINDOW (window));
|
||||
|
||||
bar = gtk_action_bar_new ();
|
||||
gtk_action_bar_set_revealed (GTK_ACTION_BAR (bar), FALSE);
|
||||
|
||||
box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
|
||||
|
||||
grid = gtk_grid_new ();
|
||||
g_object_set (grid,
|
||||
"halign", GTK_ALIGN_CENTER,
|
||||
"margin", 20,
|
||||
"row-spacing", 12,
|
||||
"column-spacing", 12,
|
||||
"vexpand", TRUE,
|
||||
NULL);
|
||||
gtk_container_add (GTK_CONTAINER (box), grid);
|
||||
|
||||
label = gtk_label_new ("Start");
|
||||
gtk_widget_set_halign (label, GTK_ALIGN_END);
|
||||
spin = gtk_spin_button_new_with_range (0, 10, 1);
|
||||
g_signal_connect (spin, "notify::value",
|
||||
G_CALLBACK (change_start), bar);
|
||||
gtk_grid_attach (GTK_GRID (grid), label, 0, 0, 1, 1);
|
||||
gtk_grid_attach (GTK_GRID (grid), spin, 1, 0, 1, 1);
|
||||
|
||||
label = gtk_label_new ("Center");
|
||||
gtk_widget_set_halign (label, GTK_ALIGN_END);
|
||||
check = gtk_check_button_new ();
|
||||
g_signal_connect (check, "notify::active",
|
||||
G_CALLBACK (toggle_center), bar);
|
||||
gtk_grid_attach (GTK_GRID (grid), label, 0, 1, 1, 1);
|
||||
gtk_grid_attach (GTK_GRID (grid), check, 1, 1, 1, 1);
|
||||
|
||||
label = gtk_label_new ("End");
|
||||
gtk_widget_set_halign (label, GTK_ALIGN_END);
|
||||
spin = gtk_spin_button_new_with_range (0, 10, 1);
|
||||
g_signal_connect (spin, "notify::value",
|
||||
G_CALLBACK (change_end), bar);
|
||||
gtk_grid_attach (GTK_GRID (grid), label, 0, 2, 1, 1);
|
||||
gtk_grid_attach (GTK_GRID (grid), spin, 1, 2, 1, 1);
|
||||
|
||||
label = gtk_label_new ("Visible");
|
||||
gtk_widget_set_halign (label, GTK_ALIGN_END);
|
||||
check = gtk_check_button_new ();
|
||||
g_signal_connect (check, "notify::active",
|
||||
G_CALLBACK (toggle_visibility), bar);
|
||||
gtk_grid_attach (GTK_GRID (grid), label, 0, 3, 1, 1);
|
||||
gtk_grid_attach (GTK_GRID (grid), check, 1, 3, 1, 1);
|
||||
|
||||
gtk_container_add (GTK_CONTAINER (box), bar);
|
||||
gtk_container_add (GTK_CONTAINER (window), box);
|
||||
gtk_widget_show (window);
|
||||
}
|
||||
|
||||
int
|
||||
main (int argc, char *argv[])
|
||||
{
|
||||
GtkApplication *app;
|
||||
|
||||
app = gtk_application_new ("org.gtk.Test.ActionBar", 0);
|
||||
g_signal_connect (app, "activate", G_CALLBACK (activate), NULL);
|
||||
|
||||
return g_application_run (G_APPLICATION (app), argc, argv);
|
||||
}
|
Loading…
Reference in New Issue
Block a user