pub trait OpenSaveController {
    fn user_entered_filename(&self, _filename: &str, _confirmed: bool) { ... }
    fn panel_selection_did_change(&self) { ... }
    fn did_change_to_directory(&self, _url: &str) { ... }
    fn will_expand(&self, _expanding: bool) { ... }
    fn should_enable_url(&self, _url: &str) -> bool { ... }
}

Provided Methods

Called when the user has entered a filename (typically, during saving). confirmed indicates whether or not they hit the save button.

Notifies you that the panel selection changed.

Notifies you that the user changed directories.

Notifies you that the Save panel is about to expand or collapse because the user clicked the disclosure triangle that displays or hides the file browser.

Determine whether the specified URL should be enabled in the Open panel.

Implementors