Struct gtk4::builders::FileChooserNativeBuilder

source ·
pub struct FileChooserNativeBuilder { /* private fields */ }
👎Deprecated: Since 4.10
Expand description

A builder-pattern type to construct FileChooserNative objects.

Implementations§

source§

impl FileChooserNativeBuilder

source

pub fn accept_label(self, accept_label: impl Into<GString>) -> Self

👎Deprecated: Since 4.10

The text used for the label on the accept button in the dialog, or None to use the default text.

source

pub fn cancel_label(self, cancel_label: impl Into<GString>) -> Self

👎Deprecated: Since 4.10

The text used for the label on the cancel button in the dialog, or None to use the default text.

source

pub fn modal(self, modal: bool) -> Self

👎Deprecated: Since 4.10

Whether the window should be modal with respect to its transient parent.

source

pub fn title(self, title: impl Into<GString>) -> Self

👎Deprecated: Since 4.10

The title of the dialog window

source

pub fn transient_for(self, transient_for: &impl IsA<Window>) -> Self

👎Deprecated: Since 4.10

The transient parent of the dialog, or None for none.

source

pub fn visible(self, visible: bool) -> Self

👎Deprecated: Since 4.10

Whether the window is currently visible.

source

pub fn action(self, action: FileChooserAction) -> Self

👎Deprecated: Since 4.10

The type of operation that the file chooser is performing. Use FileDialog instead

source

pub fn create_folders(self, create_folders: bool) -> Self

👎Deprecated: Since 4.10

Whether a file chooser not in FileChooserAction::Open mode will offer the user to create new folders. Use FileDialog instead

source

pub fn filter(self, filter: &FileFilter) -> Self

👎Deprecated: Since 4.10

The current filter for selecting files that are displayed. Use FileDialog instead

source

pub fn select_multiple(self, select_multiple: bool) -> Self

👎Deprecated: Since 4.10

Whether to allow multiple files to be selected. Use FileDialog instead

source

pub fn build(self) -> FileChooserNative

👎Deprecated: Since 4.10

Build the FileChooserNative.

Auto Trait Implementations§

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.

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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.