Method
Gtk.TreeSelection.get_selected_rows
Declaration [src]
GList*
gtk_tree_selection_get_selected_rows (
  GtkTreeSelection* selection,
  GtkTreeModel** model
)
Description [src]
Creates a list of path of all selected rows. Additionally, if you are
planning on modifying the model after calling this function, you may
want to convert the returned list into a list of GtkTreeRowReferences.
To do this, you can use gtk_tree_row_reference_new().
To free the return value, use:
g_list_free_full (list, (GDestroyNotify) gtk_tree_path_free);
Parameters
| model | GtkTreeModel | 
| A pointer to set to the  | |
| Direction: out | |
| Ownership is not transferred to the callee | 
Return value
| Returns: A list of GtkTreePath | |
| A  | |
| Ownership of the data is transferred to the caller | |