[][src]Trait gtk::FileChooserWidgetExt

pub trait FileChooserWidgetExt: 'static {
    fn get_property_search_mode(&self) -> bool;
fn set_property_search_mode(&self, search_mode: bool);
fn get_property_subtitle(&self) -> Option<GString>;
fn connect_desktop_folder<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn emit_desktop_folder(&self);
fn connect_down_folder<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn emit_down_folder(&self);
fn connect_home_folder<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn emit_home_folder(&self);
fn connect_location_popup<F: Fn(&Self, &str) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn emit_location_popup(&self, path: &str);
fn connect_location_popup_on_paste<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn emit_location_popup_on_paste(&self);
fn connect_location_toggle_popup<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn emit_location_toggle_popup(&self);
fn connect_places_shortcut<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn emit_places_shortcut(&self);
fn connect_quick_bookmark<F: Fn(&Self, i32) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn emit_quick_bookmark(&self, bookmark_index: i32);
fn connect_recent_shortcut<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn emit_recent_shortcut(&self);
fn connect_search_shortcut<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn emit_search_shortcut(&self);
fn connect_show_hidden<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn emit_show_hidden(&self);
fn connect_up_folder<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn emit_up_folder(&self);
fn connect_property_search_mode_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_subtitle_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_property_search_mode(&self) -> bool

fn set_property_search_mode(&self, search_mode: bool)

fn get_property_subtitle(&self) -> Option<GString>

fn connect_desktop_folder<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn emit_desktop_folder(&self)

fn connect_down_folder<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

fn emit_down_folder(&self)

fn connect_home_folder<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

fn emit_home_folder(&self)

fn connect_location_popup<F: Fn(&Self, &str) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn emit_location_popup(&self, path: &str)

fn connect_location_popup_on_paste<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn emit_location_popup_on_paste(&self)

fn connect_location_toggle_popup<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn emit_location_toggle_popup(&self)

fn connect_places_shortcut<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn emit_places_shortcut(&self)

fn connect_quick_bookmark<F: Fn(&Self, i32) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn emit_quick_bookmark(&self, bookmark_index: i32)

fn connect_recent_shortcut<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn emit_recent_shortcut(&self)

fn connect_search_shortcut<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn emit_search_shortcut(&self)

fn connect_show_hidden<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

fn emit_show_hidden(&self)

fn connect_up_folder<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

fn emit_up_folder(&self)

fn connect_property_search_mode_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_subtitle_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

Loading content...

Implementors

impl<O: IsA<FileChooserWidget>> FileChooserWidgetExt for O[src]

Loading content...