Trait FileChooserWidgetExt

Source
pub trait FileChooserWidgetExt: 'static {
Show 29 methods // 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;
}

Required Methods§

Source

fn get_property_search_mode(&self) -> bool

Source

fn set_property_search_mode(&self, search_mode: bool)

Source

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

Source

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

Source

fn emit_desktop_folder(&self)

Source

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

Source

fn emit_down_folder(&self)

Source

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

Source

fn emit_home_folder(&self)

Source

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

Source

fn emit_location_popup(&self, path: &str)

Source

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

Source

fn emit_location_popup_on_paste(&self)

Source

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

Source

fn emit_location_toggle_popup(&self)

Source

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

Source

fn emit_places_shortcut(&self)

Source

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

Source

fn emit_quick_bookmark(&self, bookmark_index: i32)

Source

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

Source

fn emit_recent_shortcut(&self)

Source

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

Source

fn emit_search_shortcut(&self)

Source

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

Source

fn emit_show_hidden(&self)

Source

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

Source

fn emit_up_folder(&self)

Source

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

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§