guiToolkit             package:gWidgets             R Documentation

_F_u_n_c_t_i_o_n _t_o _s_e_l_e_c_t _t_h_e _G_U_I _t_o_o_l_k_i_t _u_s_e_d _b_y _g_W_i_d_g_e_t_s

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

     A GUI toolkit is a separate package that implements the gWidgets
     API. This function allows one to select the toolkit to be used by
     default.

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

     guiToolkit(name = NULL)

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

    name: The name matches the package name without the initial
          gWidgets. For instance, "RGtk2" refers to the implementation
          provided by gWidgetsRGtk2.

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

     Toolkits are named gWidgetsXXX.

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

     This function returns a subclass of guiWidgetsToolkit that is used
     for dispatching purposes by gWidgets. For example, the method
     svalue dispatches on its first argument and the value of the
     toolkit class stored in the toolkit slot of the object.

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

             guiToolkit("RGtk2")

