diff options
author | Erick PĂ©rez Castellanos <erick.red@gmail.com> | 2013-06-13 20:33:42 +0200 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2013-06-13 20:33:42 +0200 |
commit | 33a1c4d6e03bbe2c0eee7b3ce4b8f26e848ae1cb (patch) | |
tree | a4f1813e47ef580a792013e8c8594b1f5849d2d4 /tests/teststack.c | |
parent | 53a9311e2c5580c483904a10d18a9f2350c1081b (diff) | |
download | gtk+-33a1c4d6e03bbe2c0eee7b3ce4b8f26e848ae1cb.tar.gz |
GtkStack: Add position-dependent slide transitions
These go left/right or up/down depending on the relative
order of the children being switched between.
Diffstat (limited to 'tests/teststack.c')
-rw-r--r-- | tests/teststack.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/teststack.c b/tests/teststack.c index 0befd8d86f..3853af2ba2 100644 --- a/tests/teststack.c +++ b/tests/teststack.c @@ -215,6 +215,8 @@ main (gint argc, gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo), "SLIDE_LEFT"); gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo), "SLIDE_UP"); gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo), "SLIDE_DOWN"); + gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo), "SLIDE_LEFT_RIGHT"); + gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo), "SLIDE_UP_DOWN"); gtk_combo_box_set_active (GTK_COMBO_BOX (combo), 0); gtk_container_add (GTK_CONTAINER (hbox), combo); |