TreeSelection.getSelectedRows

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_foreach (list, gtk_tree_path_free, NULL); g_list_free (list); Since 2.2

class TreeSelection
getSelectedRows

Parameters

model TreeModelIF

A pointer to set to the GtkTreeModel, or NULL.

Return Value

Type: TreePath[]

A GList containing a GtkTreePath for each selected row.

Meta