GtkRecentChooserDialog         package:RGtk2         R Documentation

_G_t_k_R_e_c_e_n_t_C_h_o_o_s_e_r_D_i_a_l_o_g

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

     Displays recently used files in a dialog

_M_e_t_h_o_d_s _a_n_d _F_u_n_c_t_i_o_n_s:

     'gtkRecentChooserDialogNew(title = NULL, parent = NULL, ..., show
     = TRUE)'
      'gtkRecentChooserDialogNewForManager(title = NULL, parent = NULL,
     manager, ..., show = TRUE)'
      'gtkRecentChooserDialog(title = NULL, parent = NULL, ..., show =
     TRUE)'

_H_i_e_r_a_r_c_h_y:

     GObject
        +----GInitiallyUnowned
              +----GtkObject
                    +----GtkWidget
                          +----GtkContainer
                                +----GtkBin
                                      +----GtkWindow
                                            +----GtkDialog

     +----GtkRecentChooserDialog 

_I_n_t_e_r_f_a_c_e_s:

     GtkRecentChooserDialog implements AtkImplementorIface, 
     'GtkBuildable' and  'GtkRecentChooser'.

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

     'GtkRecentChooserDialog' is a dialog box suitable for displaying
     the recently used documents.  This widgets works by putting a
     'GtkRecentChooserWidget' inside a 'GtkDialog'.  It exposes the
     'GtkRecentChooserIface' interface, so you can use all the
     'GtkRecentChooser' functions on the recent chooser dialog as well
     as those for 'GtkDialog'.

     Note that 'GtkRecentChooserDialog' does not have any methods of
     its own. Instead, you should use the functions that work on a
     'GtkRecentChooser'.

     _Typical usage_


     dialog <- gtkRecentChooserDialog("Recent Documents",
     parent_window,
                                      "gtk-cancel",
     GtkResponseType["cancel"],
                                      "gtk-open",
     GtkResponseType["accept"])

     if (dialog$run() == GtkResponseType["accept"])
     {
       info <- dialog$getCurrentItem()
       open_file(info$getUri())
     }
      Recently used files are supported since GTK+ 2.10.

_S_t_r_u_c_t_u_r_e_s:


     '_G_t_k_R_e_c_e_n_t_C_h_o_o_s_e_r_D_i_a_l_o_g' _undocumented _


_C_o_n_v_e_n_i_e_n_t _C_o_n_s_t_r_u_c_t_i_o_n:

     'gtkRecentChooserDialog' is the equivalent of
     'gtkRecentChooserDialogNew'.

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

     Derived by RGtkGen from GTK+ documentation

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

     <URL:
     http://developer.gnome.org/doc/API/2.0/gtk/GtkRecentChooserDialog.html>

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

     'GtkRecentChooser' 'GtkDialog'

