Function
GtkTreeSelectionForeachFunc
deprecated: 4.20
Declaration
void
(* GtkTreeSelectionForeachFunc) (
  GtkTreeModel* model,
  GtkTreePath* path,
  GtkTreeIter* iter,
  gpointer data
)
Description [src]
A function used by gtk_tree_selection_selected_foreach() to map all
selected rows.  It will be called on every selected row in the view.
Deprecated since: 4.20
There is no replacement.
Parameters
- model
- 
            Type: GtkTreeModelThe GtkTreeModelbeing viewed.The data is owned by the caller of the function. 
- path
- 
            Type: GtkTreePathThe GtkTreePathof a selected row.The data is owned by the caller of the function. 
- iter
- 
            Type: GtkTreeIterA GtkTreeIterpointing to a selected row.The data is owned by the caller of the function. 
- data
- 
            Type: gpointerUser data. The argument can be NULL.The data is owned by the caller of the function.