Skip to main content

WindowOptions

Struct WindowOptions 

Source
pub struct WindowOptions {
Show 22 fields pub id: WindowId, pub owner: Option<WindowId>, pub title: String, pub visible: bool, pub size: Size, pub minimum_size: Option<Size>, pub maximum_size: Option<Size>, pub resizable: bool, pub native_titlebar: bool, pub position: WindowPosition, pub transparent: bool, pub corner_radius: i32, pub topmost: bool, pub hide_on_deactivate: bool, pub background_memory_optimization: bool, pub titlebar_drag_height: Option<f32>, pub drag_exclusion: Option<WindowDragExclusion>, pub scale_reference_size: Option<Size>, pub scale_preference: ScalePreference, pub mode: WindowMode, pub close_policy: ClosePolicy, pub close_handler: Option<WindowCloseHandler>, /* private fields */
}

Fields§

§id: WindowId§owner: Option<WindowId>§title: String§visible: bool§size: Size§minimum_size: Option<Size>§maximum_size: Option<Size>§resizable: bool§native_titlebar: bool§position: WindowPosition§transparent: bool§corner_radius: i32§topmost: bool§hide_on_deactivate: bool§background_memory_optimization: bool§titlebar_drag_height: Option<f32>

COMPATIBILITY: remove after consumers migrate to Element::window_drag_region.

§drag_exclusion: Option<WindowDragExclusion>

COMPATIBILITY: remove after consumers migrate to Element::window_drag_region.

§scale_reference_size: Option<Size>§scale_preference: ScalePreference§mode: WindowMode§close_policy: ClosePolicy§close_handler: Option<WindowCloseHandler>

Implementations§

Source§

impl WindowOptions

Source

pub fn new(id: impl Into<WindowId>) -> Self

Source

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

Source

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

Source

pub fn owner(self, owner: impl Into<WindowId>) -> Self

Source

pub fn size(self, size: Size) -> Self

Source

pub fn minimum_size(self, size: Size) -> Self

Source

pub fn maximum_size(self, size: Size) -> Self

Source

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

Source

pub fn native_titlebar(self, enabled: bool) -> Self

Source

pub fn position(self, position: WindowPosition) -> Self

Source

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

Source

pub fn corner_radius(self, radius: i32) -> Self

Source

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

Source

pub fn hide_on_deactivate(self, hide: bool) -> Self

Source

pub fn background_memory_optimization(self, enabled: bool) -> Self

Releases reconstructible render state while hidden. When all top-level windows are hidden, shared caches and the process working set are also trimmed. Component state, effects and background tasks remain alive.

Source

pub fn titlebar_drag( self, height: f32, exclusion: Option<WindowDragExclusion>, ) -> Self

👎Deprecated:

geometry-based titlebar drag is a compatibility path; migrate immediately to Element::window_drag_region

Source

pub fn scale_reference_size(self, size: Size) -> Self

Source

pub fn scale_preference(self, preference: ScalePreference) -> Self

Source

pub fn mode(self, mode: WindowMode) -> Self

Source

pub fn close_policy(self, policy: ClosePolicy) -> Self

Source

pub fn on_close_requested(self, handler: WindowCloseHandler) -> Self

Source

pub fn with_platform_options<T>(self, options: T) -> Self
where T: Any + Send + Sync,

Source

pub fn platform_options<T>(&self) -> Option<&T>
where T: Any + Send + Sync,

Trait Implementations§

Source§

impl Clone for WindowOptions

Source§

fn clone(&self) -> WindowOptions

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for WindowOptions

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for WindowOptions

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

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.