gtk::prelude

Trait FileChooserExt

Source
pub trait FileChooserExt:
    IsA<FileChooser>
    + Sealed
    + 'static {
Show 78 methods // Provided methods fn add_filter(&self, filter: FileFilter) { ... } fn add_shortcut_folder(&self, folder: impl AsRef<Path>) -> Result<(), Error> { ... } fn add_shortcut_folder_uri(&self, uri: &str) -> Result<(), Error> { ... } fn action(&self) -> FileChooserAction { ... } fn choice(&self, id: &str) -> Option<GString> { ... } fn creates_folders(&self) -> bool { ... } fn current_folder(&self) -> Option<PathBuf> { ... } fn current_folder_file(&self) -> Option<File> { ... } fn current_folder_uri(&self) -> Option<GString> { ... } fn current_name(&self) -> Option<GString> { ... } fn does_overwrite_confirmation(&self) -> bool { ... } fn extra_widget(&self) -> Option<Widget> { ... } fn file(&self) -> Option<File> { ... } fn filename(&self) -> Option<PathBuf> { ... } fn filenames(&self) -> Vec<PathBuf> { ... } fn files(&self) -> Vec<File> { ... } fn filter(&self) -> Option<FileFilter> { ... } fn is_local_only(&self) -> bool { ... } fn preview_file(&self) -> Option<File> { ... } fn preview_filename(&self) -> Option<PathBuf> { ... } fn preview_uri(&self) -> Option<GString> { ... } fn preview_widget(&self) -> Option<Widget> { ... } fn is_preview_widget_active(&self) -> bool { ... } fn selects_multiple(&self) -> bool { ... } fn shows_hidden(&self) -> bool { ... } fn uri(&self) -> Option<GString> { ... } fn uris(&self) -> Vec<GString> { ... } fn uses_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( &self, folder: impl AsRef<Path>, ) -> Result<(), Error> { ... } fn remove_shortcut_folder_uri(&self, uri: &str) -> Result<(), Error> { ... } fn select_all(&self) { ... } fn select_file(&self, file: &impl IsA<File>) -> Result<(), Error> { ... } fn select_filename(&self, filename: impl AsRef<Path>) -> 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(&self, filename: impl AsRef<Path>) -> bool { ... } fn set_current_folder_file( &self, file: &impl IsA<File>, ) -> Result<(), Error> { ... } fn set_current_folder_uri(&self, uri: &str) -> bool { ... } fn set_current_name(&self, name: &str) { ... } fn set_do_overwrite_confirmation(&self, do_overwrite_confirmation: bool) { ... } fn set_extra_widget(&self, extra_widget: &impl IsA<Widget>) { ... } fn set_file(&self, file: &impl IsA<File>) -> Result<(), Error> { ... } fn set_filename(&self, filename: impl AsRef<Path>) -> bool { ... } fn set_filter(&self, filter: &FileFilter) { ... } fn set_local_only(&self, local_only: bool) { ... } fn set_preview_widget(&self, preview_widget: &impl IsA<Widget>) { ... } 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(&self, file: &impl IsA<File>) { ... } fn unselect_filename(&self, filename: impl AsRef<Path>) { ... } 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_action_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_create_folders_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_do_overwrite_confirmation_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_extra_widget_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_filter_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_local_only_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_preview_widget_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_preview_widget_active_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_select_multiple_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_show_hidden_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_use_preview_label_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... }
}

Provided Methods§

Source

fn add_filter(&self, filter: FileFilter)

Source

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

Source

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

Source

fn action(&self) -> FileChooserAction

Source

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

Source

fn creates_folders(&self) -> bool

Source

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

Source

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

Source

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

Source

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

Source

fn does_overwrite_confirmation(&self) -> bool

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

fn is_local_only(&self) -> bool

Source

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

Source

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

Source

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

Source

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

Source

fn is_preview_widget_active(&self) -> bool

Source

fn selects_multiple(&self) -> bool

Source

fn shows_hidden(&self) -> bool

Source

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

Source

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

Source

fn uses_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(&self, folder: impl AsRef<Path>) -> Result<(), Error>

Source

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

Source

fn select_all(&self)

Source

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

Source

fn select_filename(&self, filename: impl AsRef<Path>) -> 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(&self, filename: impl AsRef<Path>) -> bool

Source

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

Source

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

Source

fn set_current_name(&self, name: &str)

Source

fn set_do_overwrite_confirmation(&self, do_overwrite_confirmation: bool)

Source

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

Source

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

Source

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

Source

fn set_filter(&self, filter: &FileFilter)

Source

fn set_local_only(&self, local_only: bool)

Source

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

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(&self, file: &impl IsA<File>)

Source

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

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_action_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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