gtkWidgetPushCompositeChild: gtkWidgetPushCompositeChild

Description Usage Details Author(s)

View source: R/gtkFuncs.R

Description

Makes all newly-created widgets as composite children until the corresponding gtkWidgetPopCompositeChild call.

Usage

1

Details

A composite child is a child that's an implementation detail of the container it's inside and should not be visible to people using the container. Composite children aren't treated differently by GTK (but see gtkContainerForeach vs. gtkContainerForall), but e.g. GUI builders might want to treat them in a different way.

Here is a simple example:

1
2
3
4
5
gtkWidgetPushCompositeChild()
hscrollbar <- gtkHScrollbarNew(hadjustment)
hscrollbar$setCompositeName("hscrollbar")
gtkWidgetPopCompositeChild()
hscrollbar$setParent(scrolled_window)

Author(s)

Derived by RGtkGen from GTK+ documentation


RGtk2 documentation built on Oct. 14, 2021, 5:08 p.m.