Gtk.RecentChooser

const Gtk = imports.gi.Gtk;

let recent_chooser = new Gtk.RecentChooser({
    filter: value,
    limit: value,
    local_only: value,
    recent_manager: value,
    select_multiple: value,
    show_icons: value,
    show_not_found: value,
    show_private: value,
    show_tips: value,
    sort_type: value,
});
  

Gtk.RecentChooser is an interface that can be implemented by widgets displaying the list of recently used files. In GTK+, the main objects that implement this interface are Gtk.RecentChooserWidget, Gtk.RecentChooserDialog and Gtk.RecentChooserMenu.

Recently used files are supported since GTK+ 2.10.

Hierarchy

  • Gtk.RecentChooser