Struct tao::window::WindowBuilder

source ·
pub struct WindowBuilder {
    pub window: WindowAttributes,
    /* private fields */
}
Expand description

Object that allows you to build windows.

Fields§

§window: WindowAttributes

The attributes to use to create the window.

Implementations§

source§

impl WindowBuilder

source

pub fn new() -> Self

Initializes a new WindowBuilder with default values.

source

pub fn with_inner_size<S: Into<Size>>(self, size: S) -> Self

Requests the window to be of specific dimensions.

See Window::set_inner_size for details.

source

pub fn with_min_inner_size<S: Into<Size>>(self, min_size: S) -> Self

Sets a minimum dimension size for the window.

See Window::set_min_inner_size for details.

source

pub fn with_max_inner_size<S: Into<Size>>(self, max_size: S) -> Self

Sets a maximum dimension size for the window.

See Window::set_max_inner_size for details.

source

pub fn with_inner_size_constraints( self, constraints: WindowSizeConstraints ) -> Self

Sets inner size constraints for the window.

See Window::set_inner_size_constraints for details.

source

pub fn with_position<P: Into<Position>>(self, position: P) -> Self

Sets a desired initial position for the window.

See WindowAttributes::position for details.

source

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

Sets whether the window is resizable or not.

See Window::set_resizable for details.

source

pub fn with_minimizable(self, minimizable: bool) -> Self

Sets whether the window is minimizable or not.

See Window::set_minimizable for details.

source

pub fn with_maximizable(self, maximizable: bool) -> Self

Sets whether the window is maximizable or not.

See Window::set_maximizable for details.

source

pub fn with_closable(self, closable: bool) -> Self

Sets whether the window is closable or not.

See Window::set_closable for details.

source

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

Requests a specific title for the window.

See Window::set_title for details.

source

pub fn with_fullscreen(self, fullscreen: Option<Fullscreen>) -> Self

Sets the window fullscreen state.

See Window::set_fullscreen for details.

source

pub fn with_maximized(self, maximized: bool) -> Self

Requests maximized mode.

See Window::set_maximized for details.

source

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

Sets whether the window will be initially hidden or visible.

See Window::set_visible for details.

source

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

Sets whether the background of the window should be transparent.

source

pub fn with_decorations(self, decorations: bool) -> Self

Sets whether the window should have a border, a title bar, etc.

See Window::set_decorations for details.

source

pub fn with_always_on_bottom(self, always_on_bottom: bool) -> Self

Sets whether or not the window will always be below other windows.

See Window::set_always_on_bottom for details.

source

pub fn with_always_on_top(self, always_on_top: bool) -> Self

Sets whether or not the window will always be on top of other windows.

See Window::set_always_on_top for details.

source

pub fn with_window_icon(self, window_icon: Option<Icon>) -> Self

Sets the window icon.

See Window::set_window_icon for details.

source

pub fn with_theme(self, theme: Option<Theme>) -> WindowBuilder

Forces a theme or uses the system settings if None was provided.

§Platform-specific:
source

pub fn with_focused(self, focused: bool) -> WindowBuilder

Whether the window will be initially focused or not.

§Platform-specific:

Android / iOS: Unsupported.

source

pub fn with_content_protection(self, protected: bool) -> WindowBuilder

Prevents the window contents from being captured by other apps.

§Platform-specific
  • iOS / Android / Linux: Unsupported.
source

pub fn with_visible_on_all_workspaces(self, visible: bool) -> WindowBuilder

Sets whether the window should be visible on all workspaces.

§Platform-specific
  • iOS / Android / Windows: Unsupported.
source

pub fn build<T: 'static>( self, window_target: &EventLoopWindowTarget<T> ) -> Result<Window, OsError>

Builds the window.

Possible causes of error include denied permission, incompatible system, and lack of memory.

Trait Implementations§

source§

impl Clone for WindowBuilder

source§

fn clone(&self) -> WindowBuilder

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for WindowBuilder

source§

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

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

impl Default for WindowBuilder

source§

fn default() -> WindowBuilder

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

impl WindowBuilderExtMacOS for WindowBuilder

source§

fn with_parent_window(self, parent: *mut c_void) -> WindowBuilder

Sets a parent to the window to be created.
source§

fn with_movable_by_window_background( self, movable_by_window_background: bool ) -> WindowBuilder

Enables click-and-drag behavior for the entire window, not just the titlebar.
source§

fn with_titlebar_transparent(self, titlebar_transparent: bool) -> WindowBuilder

Makes the titlebar transparent and allows the content to appear behind it.
source§

fn with_titlebar_hidden(self, titlebar_hidden: bool) -> WindowBuilder

Hides the window titlebar.
source§

fn with_titlebar_buttons_hidden( self, titlebar_buttons_hidden: bool ) -> WindowBuilder

Hides the window titlebar buttons.
source§

fn with_title_hidden(self, title_hidden: bool) -> WindowBuilder

Hides the window title.
source§

fn with_fullsize_content_view( self, fullsize_content_view: bool ) -> WindowBuilder

Makes the window content appear behind the titlebar.
source§

fn with_resize_increments(self, increments: LogicalSize<f64>) -> WindowBuilder

Build window with resizeIncrements property. Values must not be 0.
source§

fn with_disallow_hidpi(self, disallow_hidpi: bool) -> WindowBuilder

source§

fn with_has_shadow(self, has_shadow: bool) -> WindowBuilder

Sets whether or not the window has shadow.
source§

fn with_traffic_light_inset<P: Into<Position>>(self, inset: P) -> WindowBuilder

Sets the traffic light position to (x, y) relative to the upper left corner
source§

fn with_automatic_window_tabbing(self, automatic_tabbing: bool) -> WindowBuilder

Sets whether the system can automatically organize windows into tabs.
source§

fn with_tabbing_identifier(self, tabbing_identifier: &str) -> WindowBuilder

Defines the window tabbing identifier.

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

§

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

§

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.