Gtk.IconView.prototype.get_selected_items
function get_selected_items():[Gtk.TreePath] { // Gjs wrapper for gtk_icon_view_get_selected_items() }
Creates a list of paths of all selected items. 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 Gtk.TreeRowReference<!-- -->s. To do this, you can use Gtk.new.
To free the return value, use: |[ g_list_free_full (list, (GDestroyNotify) gtk_tree_path_free); ]|
Since 2.6
- Returns
A GLib.List containing a Gtk.TreePath for each selected row.