[][src]Struct native_windows_gui::FileDialogT

pub struct FileDialogT<S: Clone + Into<String>, ID: Hash + Clone> {
    pub title: S,
    pub parent: Option<ID>,
    pub action: FileDialogAction,
    pub multiselect: bool,
    pub default_folder: Option<S>,
    pub filters: Option<S>,
}

A template that creates a standard file dialog

Available events:
Event::Destroyed

Members:
title: The title of the dialog
parent: The dialog parent window. While the dialog is running, the parent will be disabled.
action: The action that the dialog will execute. It can be Open, OpenDirectory or Save
multiselect: The user can select more than one choice.
default_folder: If defined, this defines the default folder that is openened when run is called
filters: If defined, filter the files that the user can select (In a Open dialog) or which extension to add to the saved file (in a Save dialog)

Failures:
Error::UserError: if the default folder do not identify a folder
Error::UserError: if the extension filter format is not valid
Error::System: if the folder do not exists
Error::System: if the extensions filters could not be set

Fields

title: Sparent: Option<ID>action: FileDialogActionmultiselect: booldefault_folder: Option<S>filters: Option<S>

Trait Implementations

impl<S1: Clone + Into<String>, ID: Hash + Clone> ControlT<ID> for FileDialogT<S1, ID>[src]

impl<S: Clone + Clone + Into<String>, ID: Clone + Hash + Clone> Clone for FileDialogT<S, ID>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<S, ID> Send for FileDialogT<S, ID> where
    ID: Send,
    S: Send

impl<S, ID> Sync for FileDialogT<S, ID> where
    ID: Sync,
    S: Sync

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]