gtkWidgetPushCompositeChild      package:RGtk2      R Documentation

_g_t_k_W_i_d_g_e_t_P_u_s_h_C_o_m_p_o_s_i_t_e_C_h_i_l_d

_D_e_s_c_r_i_p_t_i_o_n:

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

_U_s_a_g_e:

     gtkWidgetPushCompositeChild()

_D_e_t_a_i_l_s:

     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:


     gtkWidgetPushCompositeChild()
     hscrollbar <- gtkHScrollbarNew(hadjustment)
     hscrollbar$setCompositeName("hscrollbar")
     gtkWidgetPopCompositeChild()
     hscrollbar$setParent(scrolled_window)


_A_u_t_h_o_r(_s):

     Derived by RGtkGen from GTK+ documentation

