Trait gtk::prelude::FileChooserWidgetExt  
                   
                       [−]
                   
               [src]
pub trait FileChooserWidgetExt {
    fn get_property_search_mode(&self) -> bool;
    fn set_property_search_mode(&self, search_mode: bool);
    fn get_property_subtitle(&self) -> Option<String>;
    fn connect_desktop_folder<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
    fn connect_down_folder<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
    fn connect_home_folder<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
    fn connect_location_popup<F: Fn(&Self, &str) + 'static>(&self, f: F) -> u64;
    fn connect_location_popup_on_paste<F: Fn(&Self) + 'static>(
        &self, 
        f: F
    ) -> u64;
    fn connect_location_toggle_popup<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
    fn connect_places_shortcut<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
    fn connect_quick_bookmark<F: Fn(&Self, i32) + 'static>(&self, f: F) -> u64;
    fn connect_recent_shortcut<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
    fn connect_search_shortcut<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
    fn connect_show_hidden<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
    fn connect_up_folder<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
}
            Required Methods
fn get_property_search_mode(&self) -> bool
fn set_property_search_mode(&self, search_mode: bool)
fn get_property_subtitle(&self) -> Option<String>
fn connect_desktop_folder<F: Fn(&Self) + 'static>(&self, f: F) -> u64
fn connect_down_folder<F: Fn(&Self) + 'static>(&self, f: F) -> u64
fn connect_home_folder<F: Fn(&Self) + 'static>(&self, f: F) -> u64
fn connect_location_popup<F: Fn(&Self, &str) + 'static>(&self, f: F) -> u64
fn connect_location_popup_on_paste<F: Fn(&Self) + 'static>(&self, f: F) -> u64
fn connect_location_toggle_popup<F: Fn(&Self) + 'static>(&self, f: F) -> u64
fn connect_places_shortcut<F: Fn(&Self) + 'static>(&self, f: F) -> u64
fn connect_quick_bookmark<F: Fn(&Self, i32) + 'static>(&self, f: F) -> u64
fn connect_recent_shortcut<F: Fn(&Self) + 'static>(&self, f: F) -> u64
fn connect_search_shortcut<F: Fn(&Self) + 'static>(&self, f: F) -> u64
fn connect_up_folder<F: Fn(&Self) + 'static>(&self, f: F) -> u64
Implementors
impl<O: IsA<FileChooserWidget> + IsA<Object>> FileChooserWidgetExt for O