Trait gtk::prelude::FileChooserExt [] [src]

pub trait FileChooserExt {
    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_create_folders(&self) -> bool;
fn get_current_folder(&self) -> Option<PathBuf>;
fn get_current_folder_uri(&self) -> Option<String>;
fn get_do_overwrite_confirmation(&self) -> bool;
fn get_extra_widget(&self) -> Option<Widget>;
fn get_filename(&self) -> Option<PathBuf>;
fn get_filenames(&self) -> Vec<PathBuf>;
fn get_filter(&self) -> Option<FileFilter>;
fn get_local_only(&self) -> bool;
fn get_preview_filename(&self) -> Option<PathBuf>;
fn get_preview_uri(&self) -> Option<String>;
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<String>;
fn get_uris(&self) -> Vec<String>;
fn get_use_preview_label(&self) -> bool;
fn list_filters(&self) -> Vec<FileFilter>;
fn list_shortcut_folder_uris(&self) -> Vec<String>;
fn list_shortcut_folders(&self) -> Vec<PathBuf>;
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_filename<P: AsRef<Path>>(&self, filename: P) -> bool;
fn select_uri(&self, uri: &str) -> bool;
fn set_action(&self, action: FileChooserAction);
fn set_create_folders(&self, create_folders: bool);
fn set_current_folder<P: AsRef<Path>>(&self, filename: P) -> bool;
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_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_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

Implementors