Trait FileChooserExt

Source
pub trait FileChooserExt: 'static {
Show 78 methods // Required methods fn add_filter(&self, filter: &FileFilter); fn add_shortcut_folder<P: AsRef<Path>>( &self, folder: P, ) -> Result<(), Error>; fn add_shortcut_folder_uri(&self, uri: &str) -> Result<(), Error>; fn get_action(&self) -> FileChooserAction; fn get_choice(&self, id: &str) -> Option<GString>; fn get_create_folders(&self) -> bool; fn get_current_folder(&self) -> Option<PathBuf>; fn get_current_folder_file(&self) -> Option<File>; fn get_current_folder_uri(&self) -> Option<GString>; fn get_current_name(&self) -> Option<GString>; fn get_do_overwrite_confirmation(&self) -> bool; fn get_extra_widget(&self) -> Option<Widget>; fn get_file(&self) -> Option<File>; fn get_filename(&self) -> Option<PathBuf>; fn get_filenames(&self) -> Vec<PathBuf>; fn get_files(&self) -> Vec<File>; fn get_filter(&self) -> Option<FileFilter>; fn get_local_only(&self) -> bool; fn get_preview_file(&self) -> Option<File>; fn get_preview_filename(&self) -> Option<PathBuf>; fn get_preview_uri(&self) -> Option<GString>; fn get_preview_widget(&self) -> Option<Widget>; fn get_preview_widget_active(&self) -> bool; fn get_select_multiple(&self) -> bool; fn get_show_hidden(&self) -> bool; fn get_uri(&self) -> Option<GString>; fn get_uris(&self) -> Vec<GString>; fn get_use_preview_label(&self) -> bool; fn list_filters(&self) -> Vec<FileFilter>; fn list_shortcut_folder_uris(&self) -> Vec<GString>; fn list_shortcut_folders(&self) -> Vec<PathBuf>; fn remove_choice(&self, id: &str); fn remove_filter(&self, filter: &FileFilter); fn remove_shortcut_folder<P: AsRef<Path>>( &self, folder: P, ) -> Result<(), Error>; fn remove_shortcut_folder_uri(&self, uri: &str) -> Result<(), Error>; fn select_all(&self); fn select_file<P: IsA<File>>(&self, file: &P) -> Result<(), Error>; fn select_filename<P: AsRef<Path>>(&self, filename: P) -> bool; fn select_uri(&self, uri: &str) -> bool; fn set_action(&self, action: FileChooserAction); fn set_choice(&self, id: &str, option: &str); fn set_create_folders(&self, create_folders: bool); fn set_current_folder<P: AsRef<Path>>(&self, filename: P) -> bool; fn set_current_folder_file<P: IsA<File>>( &self, file: &P, ) -> Result<(), Error>; fn set_current_folder_uri(&self, uri: &str) -> bool; fn set_current_name<P: AsRef<Path>>(&self, name: P); fn set_do_overwrite_confirmation(&self, do_overwrite_confirmation: bool); fn set_extra_widget<P: IsA<Widget>>(&self, extra_widget: &P); fn set_file<P: IsA<File>>(&self, file: &P) -> Result<(), Error>; fn set_filename<P: AsRef<Path>>(&self, filename: P) -> bool; fn set_filter(&self, filter: &FileFilter); fn set_local_only(&self, local_only: bool); fn set_preview_widget<P: IsA<Widget>>(&self, preview_widget: &P); fn set_preview_widget_active(&self, active: bool); fn set_select_multiple(&self, select_multiple: bool); fn set_show_hidden(&self, show_hidden: bool); fn set_uri(&self, uri: &str) -> bool; fn set_use_preview_label(&self, use_label: bool); fn unselect_all(&self); fn unselect_file<P: IsA<File>>(&self, file: &P); fn unselect_filename<P: AsRef<Path>>(&self, filename: P); fn unselect_uri(&self, uri: &str); fn connect_confirm_overwrite<F: Fn(&Self) -> FileChooserConfirmation + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_current_folder_changed<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_file_activated<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_selection_changed<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_update_preview<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_action_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_create_folders_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_do_overwrite_confirmation_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_extra_widget_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_filter_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_local_only_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_preview_widget_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_preview_widget_active_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_select_multiple_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_show_hidden_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_use_preview_label_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId;
}

Required Methods§

Source

fn add_filter(&self, filter: &FileFilter)

Source

fn add_shortcut_folder<P: AsRef<Path>>(&self, folder: P) -> Result<(), Error>

Source

fn add_shortcut_folder_uri(&self, uri: &str) -> Result<(), Error>

Source

fn get_action(&self) -> FileChooserAction

Source

fn get_choice(&self, id: &str) -> Option<GString>

Source

fn get_create_folders(&self) -> bool

Source

fn get_current_folder(&self) -> Option<PathBuf>

Source

fn get_current_folder_file(&self) -> Option<File>

Source

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

Source

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

Source

fn get_do_overwrite_confirmation(&self) -> bool

Source

fn get_extra_widget(&self) -> Option<Widget>

Source

fn get_file(&self) -> Option<File>

Source

fn get_filename(&self) -> Option<PathBuf>

Source

fn get_filenames(&self) -> Vec<PathBuf>

Source

fn get_files(&self) -> Vec<File>

Source

fn get_filter(&self) -> Option<FileFilter>

Source

fn get_local_only(&self) -> bool

Source

fn get_preview_file(&self) -> Option<File>

Source

fn get_preview_filename(&self) -> Option<PathBuf>

Source

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

Source

fn get_preview_widget(&self) -> Option<Widget>

Source

fn get_preview_widget_active(&self) -> bool

Source

fn get_select_multiple(&self) -> bool

Source

fn get_show_hidden(&self) -> bool

Source

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

Source

fn get_uris(&self) -> Vec<GString>

Source

fn get_use_preview_label(&self) -> bool

Source

fn list_filters(&self) -> Vec<FileFilter>

Source

fn list_shortcut_folder_uris(&self) -> Vec<GString>

Source

fn list_shortcut_folders(&self) -> Vec<PathBuf>

Source

fn remove_choice(&self, id: &str)

Source

fn remove_filter(&self, filter: &FileFilter)

Source

fn remove_shortcut_folder<P: AsRef<Path>>(&self, folder: P) -> Result<(), Error>

Source

fn remove_shortcut_folder_uri(&self, uri: &str) -> Result<(), Error>

Source

fn select_all(&self)

Source

fn select_file<P: IsA<File>>(&self, file: &P) -> Result<(), Error>

Source

fn select_filename<P: AsRef<Path>>(&self, filename: P) -> bool

Source

fn select_uri(&self, uri: &str) -> bool

Source

fn set_action(&self, action: FileChooserAction)

Source

fn set_choice(&self, id: &str, option: &str)

Source

fn set_create_folders(&self, create_folders: bool)

Source

fn set_current_folder<P: AsRef<Path>>(&self, filename: P) -> bool

Source

fn set_current_folder_file<P: IsA<File>>(&self, file: &P) -> Result<(), Error>

Source

fn set_current_folder_uri(&self, uri: &str) -> bool

Source

fn set_current_name<P: AsRef<Path>>(&self, name: P)

Source

fn set_do_overwrite_confirmation(&self, do_overwrite_confirmation: bool)

Source

fn set_extra_widget<P: IsA<Widget>>(&self, extra_widget: &P)

Source

fn set_file<P: IsA<File>>(&self, file: &P) -> Result<(), Error>

Source

fn set_filename<P: AsRef<Path>>(&self, filename: P) -> bool

Source

fn set_filter(&self, filter: &FileFilter)

Source

fn set_local_only(&self, local_only: bool)

Source

fn set_preview_widget<P: IsA<Widget>>(&self, preview_widget: &P)

Source

fn set_preview_widget_active(&self, active: bool)

Source

fn set_select_multiple(&self, select_multiple: bool)

Source

fn set_show_hidden(&self, show_hidden: bool)

Source

fn set_uri(&self, uri: &str) -> bool

Source

fn set_use_preview_label(&self, use_label: bool)

Source

fn unselect_all(&self)

Source

fn unselect_file<P: IsA<File>>(&self, file: &P)

Source

fn unselect_filename<P: AsRef<Path>>(&self, filename: P)

Source

fn unselect_uri(&self, uri: &str)

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

fn connect_property_use_preview_label_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§