1/* testtreeflow.c
2 * Copyright (C) 2001 Red Hat, Inc
3 * Author: Jonathan Blandford
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
14 *
15 * You should have received a copy of the GNU Library General Public
16 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19#include "config.h"
20#include <gtk/gtk.h>
21
22GtkTreeModel *model = NULL;
23static GRand *grand = NULL;
24GtkTreeSelection *selection = NULL;
25enum
26{
27 TEXT_COLUMN,
28 NUM_COLUMNS
29};
30
31static const char *words[] =
32{
33 "Boom",
34 "Borp",
35 "Multiline\ntext",
36 "Bingo",
37 "Veni\nVedi\nVici",
38 NULL
39};
40
41
42#define NUM_WORDS 5
43#define NUM_ROWS 100
44
45
46static void
47initialize_model (void)
48{
49 int i;
50 GtkTreeIter iter;
51
52 model = (GtkTreeModel *) gtk_list_store_new (n_columns: NUM_COLUMNS, G_TYPE_STRING);
53 grand = g_rand_new ();
54 for (i = 0; i < NUM_ROWS; i++)
55 {
56 gtk_list_store_append (GTK_LIST_STORE (model), iter: &iter);
57 gtk_list_store_set (GTK_LIST_STORE (model), iter: &iter,
58 TEXT_COLUMN, words[g_rand_int_range (rand_: grand, begin: 0, NUM_WORDS)],
59 -1);
60 }
61}
62
63static void
64futz_row (void)
65{
66 int i;
67 GtkTreePath *path;
68 GtkTreeIter iter;
69 GtkTreeIter iter2;
70
71 i = g_rand_int_range (rand_: grand, begin: 0,
72 end: gtk_tree_model_iter_n_children (tree_model: model, NULL));
73 path = gtk_tree_path_new ();
74 gtk_tree_path_append_index (path, index_: i);
75 gtk_tree_model_get_iter (tree_model: model, iter: &iter, path);
76 gtk_tree_path_free (path);
77
78 if (gtk_tree_selection_iter_is_selected (selection, iter: &iter))
79 return;
80 switch (g_rand_int_range (rand_: grand, begin: 0, end: 3))
81 {
82 case 0:
83 /* insert */
84 gtk_list_store_insert_after (GTK_LIST_STORE (model),
85 iter: &iter2, sibling: &iter);
86 gtk_list_store_set (GTK_LIST_STORE (model), iter: &iter2,
87 TEXT_COLUMN, words[g_rand_int_range (rand_: grand, begin: 0, NUM_WORDS)],
88 -1);
89 break;
90 case 1:
91 /* delete */
92 if (gtk_tree_model_iter_n_children (tree_model: model, NULL) == 0)
93 return;
94 gtk_list_store_remove (GTK_LIST_STORE (model), iter: &iter);
95 break;
96 case 2:
97 /* modify */
98 return;
99 if (gtk_tree_model_iter_n_children (tree_model: model, NULL) == 0)
100 return;
101 gtk_list_store_set (GTK_LIST_STORE (model), iter: &iter,
102 TEXT_COLUMN, words[g_rand_int_range (rand_: grand, begin: 0, NUM_WORDS)],
103 -1);
104 break;
105 default:
106 g_assert_not_reached ();
107 }
108}
109
110static gboolean
111futz (void)
112{
113 int i;
114
115 for (i = 0; i < 15; i++)
116 futz_row ();
117 g_print (format: "Number of rows: %d\n", gtk_tree_model_iter_n_children (tree_model: model, NULL));
118 return TRUE;
119}
120
121static void
122quit_cb (GtkWidget *widget,
123 gpointer data)
124{
125 gboolean *done = data;
126
127 *done = TRUE;
128
129 g_main_context_wakeup (NULL);
130}
131
132int
133main (int argc, char *argv[])
134{
135 GtkWidget *window;
136 GtkWidget *vbox;
137 GtkWidget *scrolled_window;
138 GtkWidget *tree_view;
139 GtkWidget *hbox;
140 GtkWidget *button;
141 GtkTreePath *path;
142 gboolean done = FALSE;
143
144 gtk_init ();
145
146 path = gtk_tree_path_new_from_string (path: "80");
147 window = gtk_window_new ();
148 gtk_window_set_title (GTK_WINDOW (window), title: "Reflow test");
149 g_signal_connect (window, "destroy", G_CALLBACK (quit_cb), &done);
150 vbox = gtk_box_new (orientation: GTK_ORIENTATION_VERTICAL, spacing: 8);
151 gtk_box_append (GTK_BOX (vbox), child: gtk_label_new (str: "Incremental Reflow Test"));
152 gtk_window_set_child (GTK_WINDOW (window), child: vbox);
153 scrolled_window = gtk_scrolled_window_new ();
154 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window),
155 hscrollbar_policy: GTK_POLICY_AUTOMATIC,
156 vscrollbar_policy: GTK_POLICY_AUTOMATIC);
157 gtk_widget_set_vexpand (widget: scrolled_window, TRUE);
158 gtk_box_append (GTK_BOX (vbox), child: scrolled_window);
159
160 initialize_model ();
161 tree_view = gtk_tree_view_new_with_model (model);
162 gtk_tree_view_scroll_to_cell (GTK_TREE_VIEW (tree_view), path, NULL, TRUE, row_align: 0.5, col_align: 0.0);
163 selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (tree_view));
164 gtk_tree_selection_select_path (selection, path);
165 gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (tree_view), FALSE);
166 gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (tree_view),
167 position: -1,
168 NULL,
169 cell: gtk_cell_renderer_text_new (),
170 "text", TEXT_COLUMN,
171 NULL);
172 gtk_scrolled_window_set_child (GTK_SCROLLED_WINDOW (scrolled_window), child: tree_view);
173 hbox = gtk_box_new (orientation: GTK_ORIENTATION_HORIZONTAL, spacing: 0);
174 gtk_box_append (GTK_BOX (vbox), child: hbox);
175 button = gtk_button_new_with_mnemonic (label: "<b>_Futz!!</b>");
176 gtk_box_append (GTK_BOX (hbox), child: button);
177 gtk_label_set_use_markup (GTK_LABEL (gtk_button_get_child (GTK_BUTTON (button))), TRUE);
178 g_signal_connect (button, "clicked", G_CALLBACK (futz), NULL);
179 g_signal_connect (button, "realize", G_CALLBACK (gtk_widget_grab_focus), NULL);
180 gtk_window_set_default_size (GTK_WINDOW (window), width: 300, height: 400);
181 gtk_widget_show (widget: window);
182 g_timeout_add (interval: 1000, function: (GSourceFunc) futz, NULL);
183 while (!done)
184 g_main_context_iteration (NULL, TRUE);
185 return 0;
186}
187

source code of gtk/tests/testtreeflow.c