Re: List of Children Widgets



Antony Stace wrote:

Is there any way to get a list of all a Widgets children?

If it's a container you should be able to do something like:

GList *children;

children = gtk_container_children (GTK_CONTAINER(...));

First child would be children->data, next child children->next->data
(provided they exist at all).

WL






[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]