Virtual Method

GtkContainerforall

Declaration [src]

void
forall (
  GtkContainer* container,
  gboolean include_internals,
  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

include_internals

Type: gboolean

No description available.

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.