Package: gtk

Function gtk-container-children

Lambda List

gtk-container-children (container)

Arguments

container -- a gtk-container widget

Return Value

A list of the containers non-internal children.

Details

Returns a list with the non-internal children of the container. See the gtk-container-forall function for details on what constitutes an "internal" child.

Example

(setq box (make-instance 'gtk-box :orientation :vertical))
=> #<GTK-BOX {1001E2A183}>
(gtk-container-add box (make-instance 'gtk-button))
(gtk-container-add box (make-instance 'gtk-label))
(gtk-container-children box)
=> (#<GTK-BUTTON {1001E2B0A3}> #<GTK-LABEL {1001E2BFD3}>)    
 

See also

2021-9-12