diff options
author | Matthias Clasen <mclasen@redhat.com> | 2004-11-09 19:25:55 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-11-09 19:25:55 +0000 |
commit | 82e2f5558177a2378ba4316b4477693af98946a6 (patch) | |
tree | 9d71d71daf4b9858db5c8573b7598e5044b8a805 /tests/testiconview.c | |
parent | cd5fb14a4175b482f5a78f7a4ddf6edc82c904ae (diff) | |
download | gtk+-82e2f5558177a2378ba4316b4477693af98946a6.tar.gz |
Add a real "Add many" button.
2004-11-09 Matthias Clasen <mclasen@redhat.com>
* tests/testiconview.c: Add a real "Add many" button.
Diffstat (limited to 'tests/testiconview.c')
-rw-r--r-- | tests/testiconview.c | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/tests/testiconview.c b/tests/testiconview.c index dac725aa28..69fd6a873c 100644 --- a/tests/testiconview.c +++ b/tests/testiconview.c @@ -22,8 +22,9 @@ #include <string.h> #include "prop-editor.h" -#define NUMBER_OF_ITEMS 10 -#define MANY_ITEMS 10000 +#define NUMBER_OF_ITEMS 10 +#define SOME_ITEMS 100 +#define MANY_ITEMS 10000 static void fill_model (GtkTreeModel *model) @@ -103,7 +104,7 @@ foreach_selected_remove (GtkWidget *button, GtkIconView *icon_list) static void -add_many (GtkWidget *button, GtkIconView *icon_list) +add_n_items (GtkIconView *icon_list, gint n) { static gint count = NUMBER_OF_ITEMS; @@ -117,7 +118,7 @@ add_many (GtkWidget *button, GtkIconView *icon_list) pixbuf = gdk_pixbuf_new_from_file ("gnome-textfile.png", NULL); - for (i = 0; i < MANY_ITEMS; i++) + for (i = 0; i < n; i++) { str = g_strdup_printf ("Icon %d", count); str2 = g_strdup_printf ("Icon <b>%d</b>", count); @@ -135,6 +136,18 @@ add_many (GtkWidget *button, GtkIconView *icon_list) } static void +add_some (GtkWidget *button, GtkIconView *icon_list) +{ + add_n_items (icon_list, SOME_ITEMS); +} + +static void +add_many (GtkWidget *button, GtkIconView *icon_list) +{ + add_n_items (icon_list, MANY_ITEMS); +} + +static void select_all (GtkWidget *button, GtkIconView *icon_list) { gtk_icon_view_select_all (icon_list); @@ -308,6 +321,10 @@ main (gint argc, gchar **argv) gtk_button_box_set_layout (GTK_BUTTON_BOX (bbox), GTK_BUTTONBOX_START); gtk_box_pack_start (GTK_BOX (vbox), bbox, FALSE, FALSE, 0); + button = gtk_button_new_with_label ("Add some"); + g_signal_connect (button, "clicked", G_CALLBACK (add_some), icon_list); + gtk_box_pack_start_defaults (GTK_BOX (bbox), button); + button = gtk_button_new_with_label ("Add many"); g_signal_connect (button, "clicked", G_CALLBACK (add_many), icon_list); gtk_box_pack_start_defaults (GTK_BOX (bbox), button); |