Method
GtkIconViewget_cursor
Declaration [src]
gboolean
gtk_icon_view_get_cursor (
GtkIconView* icon_view,
GtkTreePath** path,
GtkCellRenderer** cell
)
Description [src]
Fills in path
and cell
with the current cursor path and cell.
If the cursor isn’t currently set, then path
will be NULL
.
If no cell currently has focus, then cell
will be NULL
.
The returned GtkTreePath
must be freed with gtk_tree_path_free().
Parameters
path |
GtkTreePath |
Return location for the current cursor path. |
|
The argument will be set by the function. | |
The argument can be NULL . | |
The instance takes ownership of the data, and is responsible for freeing it. | |
cell |
GtkCellRenderer |
Return location the current focus cell. |
|
The argument will be set by the function. | |
The argument can be NULL . | |
The data is owned by the caller of the function. |