gtkWidgetNew              package:RGtk2              R Documentation

_g_t_k_W_i_d_g_e_t_N_e_w

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

     This is a convenience function for creating a widget and setting
     its properties in one go. For example you might write:
     'gtk_widget_new (GTK_TYPE_LABEL, "label", "Hello World", "xalign",
     0.0, NULL)' to create a left-aligned label. Equivalent to
     'gObjectNew', but returns a widget so you don't have to cast the
     object yourself.

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

     gtkWidgetNew(type, ..., show = TRUE)

_A_r_g_u_m_e_n_t_s:

  'type': ['GType']  type ID of the widget to create

   '...': value of first property, followed by more properties, 
          'NULL'-terminated

_V_a_l_u_e:

     ['GtkWidget']  a new 'GtkWidget' of type 'widget.type'

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

     Derived by RGtkGen from GTK+ documentation

