getClassList      package:RGtkBindingGenerator      R Documentation

_A_l_l _d_e_f_i_n_e_d _c_l_a_s_s_e_s _i_n _f_i_l_e_s

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

     This returns a vector of the names of the ancestor classes for the
     Gtk class given by 'name'. This is used as the S3-style class
     attribute for a Gtk object. (The vector also contains 'name'
     itself, giving an appropriate class vector for the Gtk object.)

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

     getClassList(name, classes)

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

    name: the name of the Gtk class whose ancestor classes are to be
          determined.

 classes: the list of class definitions from the .defs files

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

     This recursively walks its way up the Gtk class hierarchy in
     'classes' by finding the parent class.

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

     A character vector containing 'name' and its ancestor classes, in
     the order in which they inherit from each other - most specific to
     least specific.

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

     Duncan Temple Lang <duncan@research.bell-labs.com>

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

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

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

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

      data(GtkDefs)
      getClassList("GtkDrawingArea", GtkDefs$classes)

