gtkShow                package:RGtk2                R Documentation

_S_h_o_w/_r_e_a_l_i_z_e _o_n_e _o_r _m_o_r_e _W_i_d_g_e_t_s

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

     *DEPRECATED!! (compatibility wrappers for RGtk 1!)* 

     This causes each widget given in the call to be realized or
     actually displayed

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

     gtkShow(..., all = T)

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

     ...: any collection of widgets that are to be realized. These are
          processed in the order they are given.

     all: a logical value indicating whether to show the particular
          widget ('FALSE'), or both it and all of the sub-widgets which
          it contains ('TRUE'). This is the difference between a call
          to 'gtk_widget_show' and 'gtk_widget_show_all' in the
          lower-level Gtk interface. 

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

     This calls 'gtk_widget_show' or 'gtk_widget_show_all' for each
     widget.

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

     An integer giving the number of widgets that were realized in the
     call.

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

     Duncan Temple Lang

_R_e_f_e_r_e_n_c_e_s:

     <URL: http://www.gtk.org> <URL: http://www.omegahat.org/RGtk>

_S_e_e _A_l_s_o:

     'gtkWidgetShow'

_E_x_a_m_p_l_e_s:

       if (gtkInit()) {
         w <- gtkWindow(show = FALSE) 
         b <- gtkButton("Hit me") # automatically shown in the creation.
         w$add(b)
         gtkShow(w)
       }

