summaryrefslogtreecommitdiff
path: root/tests/testspinbutton.c
diff options
context:
space:
mode:
authorMorten Welinder <terra@gnome.org>2004-03-12 15:49:22 +0000
committerMorten Welinder <mortenw@src.gnome.org>2004-03-12 15:49:22 +0000
commited649f3bff1fc2d8239e5375c41a8be512c61595 (patch)
tree1c22a45a25938ea6ed3b395efe70b2179ef304aa /tests/testspinbutton.c
parent989bfc4af8f8fffc7b3c1bb9d48ea200b0e986bd (diff)
downloadgtk+-ed649f3bff1fc2d8239e5375c41a8be512c61595.tar.gz
Add new testspinbutton.c
2004-03-12 Morten Welinder <terra@gnome.org> * tests/Makefile.am: Add new testspinbutton.c
Diffstat (limited to 'tests/testspinbutton.c')
-rw-r--r--tests/testspinbutton.c44
1 files changed, 44 insertions, 0 deletions
diff --git a/tests/testspinbutton.c b/tests/testspinbutton.c
new file mode 100644
index 0000000000..9027a973fd
--- /dev/null
+++ b/tests/testspinbutton.c
@@ -0,0 +1,44 @@
+#include <config.h>
+#include <gtk/gtk.h>
+
+int
+main (int argc, char **argv)
+{
+ GtkWidget *window, *mainbox;
+ int max;
+
+ gtk_init (&argc, &argv);
+
+ window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+ g_signal_connect (window, "delete_event", gtk_main_quit, NULL);
+
+ mainbox = gtk_vbox_new (FALSE, 2);
+ gtk_container_add (GTK_CONTAINER (window), mainbox);
+
+ for (max = 9; max <= 999999999; max = max * 10 + 9) {
+ GtkAdjustment *adj =
+ GTK_ADJUSTMENT (gtk_adjustment_new (max,
+ 1, max,
+ 1,
+ (max + 1) / 10,
+ 0.0));
+
+ GtkWidget *spin = gtk_spin_button_new (adj, 1.0, 0);
+ GtkWidget *hbox = gtk_hbox_new (FALSE, 2);
+
+ gtk_box_pack_start (GTK_BOX (hbox),
+ spin,
+ FALSE,
+ FALSE,
+ 2);
+
+ gtk_container_add (GTK_CONTAINER (mainbox), hbox);
+
+ }
+
+ gtk_widget_show_all (window);
+
+ gtk_main ();
+
+ return 0;
+}