Method
GtkTreeViewset_destroy_count_func
deprecated: 3.4
Declaration [src]
void
gtk_tree_view_set_destroy_count_func (
GtkTreeView* tree_view,
GtkTreeDestroyCountFunc func,
gpointer data,
GDestroyNotify destroy
)
Description [src]
This function should almost never be used. It is meant for private use by ATK for determining the number of visible children that are removed when the user collapses a row, or a row is deleted.
Deprecated since: 3.4
Accessibility does not need the function anymore.
Parameters
func
-
Type:
GtkTreeDestroyCountFunc
Function to be called when a view row is destroyed, or
NULL
.The argument can be NULL
. data
-
Type:
gpointer
User data to be passed to
func
, orNULL
.The argument can be NULL
.The data is owned by the caller of the method. destroy
-
Type:
GDestroyNotify
Destroy notifier for
data
, orNULL
.The argument can be NULL
.