Struct zng_wgt_dialog::DIALOG

source ·
pub struct DIALOG;
Expand description

Dialog service.

The non-custom dialog methods can be configured to open as native dialogs instead of the custom overlay dialogs.

§Panics

All dialog methods panic is not called inside a window.

Implementations§

source§

impl DIALOG

source

pub fn info( &self, title: impl IntoVar<Txt>, msg: impl IntoVar<Txt>, ) -> ResponseVar<()>

Show an info dialog with “Ok” button.

source

pub fn warn( &self, title: impl IntoVar<Txt>, msg: impl IntoVar<Txt>, ) -> ResponseVar<()>

Show a warning dialog with “Ok” button.

source

pub fn error( &self, title: impl IntoVar<Txt>, msg: impl IntoVar<Txt>, ) -> ResponseVar<()>

Show an error dialog with “Ok” button.

source

pub fn ask( &self, title: impl IntoVar<Txt>, question: impl IntoVar<Txt>, ) -> ResponseVar<bool>

Shows a question dialog with “No” and “Yes” buttons. Returns true for “Yes”.

source

pub fn confirm( &self, title: impl IntoVar<Txt>, question: impl IntoVar<Txt>, ) -> ResponseVar<bool>

Shows a question dialog with “Cancel” and “Ok” buttons. Returns true for “Ok”.

source

pub fn open_file( &self, title: impl IntoVar<Txt>, starting_dir: impl Into<PathBuf>, starting_name: impl IntoVar<Txt>, filters: impl Into<FileDialogFilters>, ) -> ResponseVar<FileDialogResponse>

Shows a native file picker dialog configured to select one existing file.

source

pub fn open_files( &self, title: impl IntoVar<Txt>, starting_dir: impl Into<PathBuf>, starting_name: impl IntoVar<Txt>, filters: impl Into<FileDialogFilters>, ) -> ResponseVar<FileDialogResponse>

Shows a native file picker dialog configured to select one or more existing files.

source

pub fn save_file( &self, title: impl IntoVar<Txt>, starting_dir: impl Into<PathBuf>, starting_name: impl IntoVar<Txt>, filters: impl Into<FileDialogFilters>, ) -> ResponseVar<FileDialogResponse>

Shows a native file picker dialog configured to select one file path that does not exist yet.

source

pub fn select_folder( &self, title: impl IntoVar<Txt>, starting_dir: impl Into<PathBuf>, starting_name: impl IntoVar<Txt>, ) -> ResponseVar<FileDialogResponse>

Shows a native file picker dialog configured to select one existing directory.

source

pub fn select_folders( &self, title: impl IntoVar<Txt>, starting_dir: impl Into<PathBuf>, starting_name: impl IntoVar<Txt>, ) -> ResponseVar<FileDialogResponse>

Shows a native file picker dialog configured to select one or more existing directories.

source

pub fn custom(&self, dialog: impl UiNode) -> ResponseVar<Response>

Open the custom dialog.

Returns the selected response or close if the dialog is closed without response.

source§

impl DIALOG

source

pub fn native_dialogs(&self) -> ArcVar<DialogKind>

Variable that defines what native dialogs are used when the dialog methods are called in window contexts.

The native_dialogs context property can also be used to override the config just for some widgets.

Note that some dialogs only have the native implementation as of this release.

source§

impl DIALOG

source

pub fn respond(&self, response: Response)

Close the contextual dialog with the `response``.

source

pub fn respond_default(&self)

Try to close the contextual dialog without directly setting a response.

If the dialog has no default_response the on_dialog_close_canceled event notifies instead of closing.

Auto Trait Implementations§

§

impl Freeze for DIALOG

§

impl RefUnwindSafe for DIALOG

§

impl Send for DIALOG

§

impl Sync for DIALOG

§

impl Unpin for DIALOG

§

impl UnwindSafe for DIALOG

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T

source§

impl<T> StateValue for T
where T: Any + Send + Sync,