Function
GtkTreeModelForeachFunc
Declaration
gboolean
(*GtkTreeModelForeachFunc)(
GtkTreeModel*model,
GtkTreePath*path,
GtkTreeIter*iter,
gpointerdata
)
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
GtkTreePath.The data is owned by the caller of the function. iter-
Type:
GtkTreeIterThe current
GtkTreeIter.The data is owned by the caller of the function. data-
Type:
gpointerThe user data passed to gtk_tree_model_foreach().
The argument can beNULL.The data is owned by the caller of the function.
Return value
Type: gboolean
TRUE to stop iterating, FALSE to continue.