Method
GtkContainerforall
Declaration [src]
void
gtk_container_forall (
GtkContainer* container,
GtkCallback callback,
gpointer callback_data
)
Description [src]
Invokes callback
on each direct child of container
, including
children that are considered “internal” (implementation details
of the container). “Internal” children generally weren’t added
by the user of the container, but were added by the container
implementation itself.
Most applications should use gtk_container_foreach(), rather than gtk_container_forall().
Parameters
callback
-
Type:
GtkCallback
A callback.
callback_data
-
Type:
gpointer
Callback user data.
The argument can be NULL
.The data is owned by the caller of the method.