]> Pileus Git - ~andy/gtk/commitdiff
Testcase for GtkOrientable
authorDavyd Madeley <davyd@madeley.id.au>
Tue, 2 Jun 2009 10:58:10 +0000 (18:58 +0800)
committerDavyd Madeley <davyd@madeley.id.au>
Mon, 15 Jun 2009 01:14:00 +0000 (09:14 +0800)
tests/Makefile.am
tests/testorientable.c [new file with mode: 0644]

index 924ac99842dc5e68ef27c5098dac5f0a2ce7a2af..d5b07e74905aa72ea74a4eaf7a63d4201ab5678b 100644 (file)
@@ -55,6 +55,7 @@ noinst_PROGRAMS =  $(TEST_PROGS)      \
        testmultiscreen                 \
        testnotebookdnd                 \
        testnouiprint                   \
+       testorientable                  \
        testprint                       \
        testrgb                         \
        testrecentchooser               \
@@ -133,6 +134,7 @@ testmultidisplay_DEPENDENCIES = $(TEST_DEPS)
 testmultiscreen_DEPENDENCIES = $(TEST_DEPS)
 testnotebookdnd_DEPENDENCIES = $(TEST_DEPS)
 testnouiprint_DEPENDENCIES = $(TEST_DEPS)
+testorientable_DEPENDENCIES = $(TEST_DEPS)
 testprint_DEPENDENCIES = $(TEST_DEPS)
 testrecentchooser_DEPENDENCIES = $(TEST_DEPS)
 testrecentchoosermenu_DEPENDENCIES = $(TEST_DEPS)
@@ -191,6 +193,7 @@ testmultidisplay_LDADD = $(LDADDS)
 testmultiscreen_LDADD = $(LDADDS)
 testnotebookdnd_LDADD = $(LDADDS)
 testnouiprint_LDADD = $(LDADDS)
+testorientable_LDADD = $(LDADDS)
 testprint_LDADD = $(LDADDS)
 testrecentchooser_LDADD = $(LDADDS)
 testrecentchoosermenu_LDADD = $(LDADDS)
diff --git a/tests/testorientable.c b/tests/testorientable.c
new file mode 100644 (file)
index 0000000..024816f
--- /dev/null
@@ -0,0 +1,111 @@
+/* testorientable.c
+ * Copyright (C) 2004  Red Hat, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#include <gtk/gtk.h>
+
+static void
+orient_toggled (GtkToggleButton *button, gpointer user_data)
+{
+  GList *orientables = (GList *) user_data, *ptr;
+  gboolean state = gtk_toggle_button_get_active (button);
+  GtkOrientation orientation;
+
+  if (state)
+    {
+      orientation = GTK_ORIENTATION_VERTICAL;
+      gtk_button_set_label (GTK_BUTTON (button), "Vertical");
+    }
+  else
+    {
+      orientation = GTK_ORIENTATION_HORIZONTAL;
+      gtk_button_set_label (GTK_BUTTON (button), "Horizontal");
+    }
+
+  for (ptr = orientables; ptr; ptr = ptr->next)
+    {
+      GtkOrientable *orientable = GTK_ORIENTABLE (ptr->data);
+
+      gtk_orientable_set_orientation (orientable, orientation);
+    }
+}
+
+int
+main (int argc, char **argv)
+{
+  GtkWidget *window;
+  GtkWidget *table;
+  GtkWidget *box, *button;
+  GList *orientables = NULL;
+
+  gtk_init (&argc, &argv);
+
+  window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+  table = gtk_table_new (2, 3, FALSE);
+  gtk_table_set_row_spacings (GTK_TABLE (table), 12);
+  gtk_table_set_col_spacings (GTK_TABLE (table), 12);
+
+  /* GtkBox */
+  box = gtk_hbox_new (6, FALSE);
+  orientables = g_list_prepend (orientables, box);
+  gtk_table_attach_defaults (GTK_TABLE (table), box, 0, 1, 1, 2);
+  gtk_box_pack_start (GTK_BOX (box),
+                  gtk_button_new_with_label ("GtkBox 1"),
+                  TRUE, TRUE, 0);
+  gtk_box_pack_start (GTK_BOX (box),
+                  gtk_button_new_with_label ("GtkBox 2"),
+                  TRUE, TRUE, 0);
+  gtk_box_pack_start (GTK_BOX (box),
+                  gtk_button_new_with_label ("GtkBox 3"),
+                  TRUE, TRUE, 0);
+
+  /* GtkButtonBox */
+  box = gtk_hbutton_box_new ();
+  orientables = g_list_prepend (orientables, box);
+  gtk_table_attach_defaults (GTK_TABLE (table), box, 1, 2, 1, 2);
+  gtk_box_pack_start (GTK_BOX (box),
+                  gtk_button_new_with_label ("GtkButtonBox 1"),
+                  TRUE, TRUE, 0);
+  gtk_box_pack_start (GTK_BOX (box),
+                  gtk_button_new_with_label ("GtkButtonBox 2"),
+                  TRUE, TRUE, 0);
+  gtk_box_pack_start (GTK_BOX (box),
+                  gtk_button_new_with_label ("GtkButtonBox 3"),
+                  TRUE, TRUE, 0);
+
+  /* GtkSeparator */
+  box = gtk_hseparator_new ();
+  orientables = g_list_prepend (orientables, box);
+  gtk_table_attach_defaults (GTK_TABLE (table), box, 2, 3, 1, 2);
+
+  button = gtk_toggle_button_new_with_label ("Horizontal");
+  gtk_table_attach (GTK_TABLE (table), button, 0, 1, 0, 1,
+                  GTK_FILL, GTK_FILL, 0, 0);
+  g_signal_connect (button, "toggled",
+                  G_CALLBACK (orient_toggled), orientables);
+
+  gtk_container_add (GTK_CONTAINER (window), table);
+  gtk_widget_show_all (window);
+
+  g_signal_connect (window, "destroy",
+                  G_CALLBACK (gtk_main_quit), NULL);
+
+  gtk_main ();
+
+  return 0;
+}