diff options
author | Kristian Rietveld <kris@gtk.org> | 2002-10-22 23:05:29 +0000 |
---|---|---|
committer | Kristian Rietveld <kristian@src.gnome.org> | 2002-10-22 23:05:29 +0000 |
commit | ecb42dc78969437f18569dfcdc70ddec61ac9121 (patch) | |
tree | 4536b725e30bfddebbff2338d1195f5b55b7cd90 /gtk/gtktreeselection.c | |
parent | fbccc0848ded858cf6681050cc8c880fe9c91c00 (diff) | |
download | gtk+-ecb42dc78969437f18569dfcdc70ddec61ac9121.tar.gz |
Another feature to create truly ugly TreeViews!: style properties for the
Wed Oct 23 01:03:43 2002 Kristian Rietveld <kris@gtk.org>
Another feature to create truly ugly TreeViews!: style properties
for the even/odd colors used for row hinting. (#71595, reported
by Owen Taylor).
* gtk/gtktreeview.c (gtk_tree_view_class_init): add even_row_color
and odd_row_color style properties.
* gtk/gtkstyle.c (get_darkened_gc): support darken_count == 0 case,
(gtk_default_draw_flat_box): rework cell coloring code to support
user-provided even/odd row colors.
Wed Oct 23 01:01:52 2002 Kristian Rietveld <kris@gtk.org>
Cache signal IDs to speed up signal emission. This is a good speedup
because GtkTreeModel emits a big number of signals.
* gtk/gtktreemodel.c (gtk_tree_model_base_init): save IDs returned
by g_signal_new,
(gtk_tree_model_row_changed): use g_signal_emit instead of
g_signal_emit_by_name,
(gtk_tree_model_row_inserted): ditto,
(gtk_tree_model_row_has_child_toggled): ditto,
(gtk_tree_model_row_deleted): ditto,
(gtk_tree_model_rows_reordered): ditto.
Wed Oct 23 00:56:15 2002 Kristian Rietveld <kris@gtk.org>
* gtk/gtktreeselection.c (model_changed): new function,
(gtk_tree_selection_selected_foreach): monitor changes in the model,
bail out if the model has been changed from the foreach func.
(#50263, reported by Havoc Pennington).
* gtk/gtktreeselection.c (_gtk_tree_selection_internal_select_node):
free anchor if applicable (#94868, reported and testcase provided by
Daniel Elstner).
Diffstat (limited to 'gtk/gtktreeselection.c')
-rw-r--r-- | gtk/gtktreeselection.c | 73 |
1 files changed, 67 insertions, 6 deletions
diff --git a/gtk/gtktreeselection.c b/gtk/gtktreeselection.c index 40546838c5..6c1211e5a5 100644 --- a/gtk/gtktreeselection.c +++ b/gtk/gtktreeselection.c @@ -580,6 +580,15 @@ gtk_tree_selection_count_selected_rows (GtkTreeSelection *selection) return count; } +/* gtk_tree_selection_selected_foreach helper */ +static void +model_changed (gpointer data) +{ + gboolean *stop = (gboolean *)data; + + *stop = TRUE; +} + /** * gtk_tree_selection_selected_foreach: * @selection: A #GtkTreeSelection. @@ -600,6 +609,9 @@ gtk_tree_selection_selected_foreach (GtkTreeSelection *selection, GtkRBNode *node; GtkTreeIter iter; + guint inserted_id, deleted_id, reordered_id; + gboolean stop = FALSE, has_next = FALSE, has_parent = FALSE; + g_return_if_fail (GTK_IS_TREE_SELECTION (selection)); g_return_if_fail (selection->tree_view != NULL); g_return_if_fail (selection->tree_view->priv->model != NULL); @@ -628,6 +640,20 @@ gtk_tree_selection_selected_foreach (GtkTreeSelection *selection, while (node->left != tree->nil) node = node->left; + /* connect to signals to monitor changes in treemodel */ + inserted_id = g_signal_connect_swapped (selection->tree_view->priv->model, + "row_inserted", + G_CALLBACK (model_changed), + &stop); + deleted_id = g_signal_connect_swapped (selection->tree_view->priv->model, + "row_deleted", + G_CALLBACK (model_changed), + &stop); + reordered_id = g_signal_connect_swapped (selection->tree_view->priv->model, + "rows_reordered", + G_CALLBACK (model_changed), + &stop); + /* find the node internally */ path = gtk_tree_path_new_first (); gtk_tree_model_get_iter (selection->tree_view->priv->model, @@ -637,6 +663,10 @@ gtk_tree_selection_selected_foreach (GtkTreeSelection *selection, { if (GTK_RBNODE_FLAG_SET (node, GTK_RBNODE_IS_SELECTED)) (* func) (selection->tree_view->priv->model, path, &iter, data); + + if (stop) + goto out; + if (node->children) { gboolean has_child; @@ -649,8 +679,10 @@ gtk_tree_selection_selected_foreach (GtkTreeSelection *selection, tmp = iter; has_child = gtk_tree_model_iter_children (selection->tree_view->priv->model, &iter, &tmp); gtk_tree_path_append_index (path, 0); - /* Sanity Check! */ - TREE_VIEW_INTERNAL_ASSERT_VOID (has_child); + + /* we do the sanity check at the bottom of this function */ + if (has_child) + goto out; } else { @@ -678,21 +710,47 @@ gtk_tree_selection_selected_foreach (GtkTreeSelection *selection, tree = tree->parent_tree; if (tree == NULL) { - gtk_tree_path_free (path); /* we've run out of tree */ /* We're done with this function */ - return; + + goto out; } + has_parent = gtk_tree_model_iter_parent (selection->tree_view->priv->model, &iter, &tmp_iter); gtk_tree_path_up (path); - /* Sanity check */ - TREE_VIEW_INTERNAL_ASSERT_VOID (has_parent); + + /* we do the sanity check at the bottom of this function */ + if (has_parent) + goto out; } } while (!done); } } while (TRUE); + +out: + if (path) + gtk_tree_path_free (path); + + g_signal_handler_disconnect (selection->tree_view->priv->model, + inserted_id); + g_signal_handler_disconnect (selection->tree_view->priv->model, + deleted_id); + g_signal_handler_disconnect (selection->tree_view->priv->model, + reordered_id); + + /* check if we have to spew a scary message */ + if (has_next) + TREE_VIEW_INTERNAL_ASSERT_VOID (has_next); + if (has_parent) + TREE_VIEW_INTERNAL_ASSERT_VOID (has_parent); + if (stop) + g_warning + ("The model has been modified from within gtk_tree_selection_foreach.\n" + "This function is for observing the selections of the tree only. If\n" + "you are trying to get all selected items from the tree, try using\n" + "gtk_tree_selection_get_selected_rows instead.\n"); } /** @@ -1281,6 +1339,9 @@ _gtk_tree_selection_internal_select_node (GtkTreeSelection *selection, if (gtk_tree_selection_real_select_node (selection, tree, node, TRUE)) { dirty = TRUE; + if (selection->tree_view->priv->anchor) + gtk_tree_row_reference_free (selection->tree_view->priv->anchor); + selection->tree_view->priv->anchor = gtk_tree_row_reference_new_proxy (G_OBJECT (selection->tree_view), selection->tree_view->priv->model, path); } |