Function
GtkTreeModelForeachFunc
Declaration
gboolean
(* GtkTreeModelForeachFunc) (
  GtkTreeModel* model,
  GtkTreePath* path,
  GtkTreeIter* iter,
  gpointer data
)
Description [src]
Type of the callback passed to gtk_tree_model_foreach() to
iterate over the rows in a tree model.
Parameters
- model
- 
            Type: GtkTreeModelThe GtkTreeModelbeing iterated.The data is owned by the caller of the function. 
- path
- 
            Type: GtkTreePathThe current GtkTreePathThe data is owned by the caller of the function. 
- iter
- 
            Type: GtkTreeIterThe current GtkTreeIterThe data is owned by the caller of the function. 
- data
- 
            Type: gpointerThe user data passed to gtk_tree_model_foreach()The argument can be NULL.The data is owned by the caller of the function.