summaryrefslogtreecommitdiff
path: root/gtk/gtktreemodel.c
diff options
context:
space:
mode:
authorJonathan Blandford <jrb@redhat.com>2001-06-29 04:19:30 +0000
committerJonathan Blandford <jrb@src.gnome.org>2001-06-29 04:19:30 +0000
commitdb93c6131e6f5c1c362628ebecedc78ee087778f (patch)
tree7f5ca428eb2b2cc68768bf81558cea9c9da793d6 /gtk/gtktreemodel.c
parentb6f809739bafdee2bf29052584a0b8fda0c52034 (diff)
downloadgtk+-db93c6131e6f5c1c362628ebecedc78ee087778f.tar.gz
New function to walk through a model in a depth first manner, with the
Fri Jun 29 00:13:34 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktreemodel.c (gtk_tree_model_foreach): New function to walk through a model in a depth first manner, with the option to break out.
Diffstat (limited to 'gtk/gtktreemodel.c')
-rw-r--r--gtk/gtktreemodel.c56
1 files changed, 56 insertions, 0 deletions
diff --git a/gtk/gtktreemodel.c b/gtk/gtktreemodel.c
index 34c872666f..a2936830a6 100644
--- a/gtk/gtktreemodel.c
+++ b/gtk/gtktreemodel.c
@@ -1116,6 +1116,61 @@ gtk_tree_model_reordered (GtkTreeModel *tree_model,
}
+static gboolean
+gtk_tree_model_foreach_helper (GtkTreeModel *model,
+ GtkTreeIter *iter,
+ GtkTreePath *path,
+ GtkTreeModelForeachFunc func,
+ gpointer user_data)
+{
+ gtk_tree_path_append_index (path, 0);
+
+ do
+ {
+ GtkTreeIter child;
+
+ if (gtk_tree_model_iter_children (model, &child, iter))
+ {
+ if (gtk_tree_model_foreach_helper (model, &child, path, func, user_data))
+ return TRUE;
+ }
+
+ if ((* func) (model, path, iter, user_data))
+ return TRUE;
+
+ gtk_tree_path_next (path);
+ }
+ while (gtk_tree_model_iter_next (model, iter));
+
+ gtk_tree_path_up (path);
+ return FALSE;
+}
+
+/**
+ * gtk_tree_model_foreach:
+ * @model: A #GtkTreeModel
+ * @func: A function to be called on each row
+ * @user_data: User data to passed to func.
+ *
+ * Calls func on each node in model in a depth-first fashion. If func returns
+ * %TRUE, then the tree ceases to be walked, and gtk_tree_model_foreach returns.
+ **/
+
+void
+gtk_tree_model_foreach (GtkTreeModel *model,
+ GtkTreeModelForeachFunc func,
+ gpointer user_data)
+{
+ GtkTreePath *path;
+ GtkTreeIter iter;
+
+ path = gtk_tree_path_new_root ();
+ gtk_tree_model_get_iter (model, &iter, path);
+ gtk_tree_model_foreach_helper (model, &iter, path, func, user_data);
+ gtk_tree_path_free (path);
+}
+
+
/*
* GtkTreeRowReference
*/
@@ -1520,3 +1575,4 @@ gtk_tree_row_reference_reordered (GObject *proxy,
gtk_tree_row_ref_reordered_callback (NULL, path, iter, new_order, proxy);
}
+