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 WindowBuilderExtUnix for WindowBuilder

source§

fn with_skip_taskbar(self, skip: bool) -> WindowBuilder

Whether to create the window icon with the taskbar icon or not.
source§

fn with_transient_for(self, parent: &impl IsA<Window>) -> WindowBuilder

source§

fn with_transparent_draw(self, draw: bool) -> WindowBuilder

Whether to enable or disable the internal draw for transparent window. Read more
source§

fn with_double_buffered(self, double_buffered: bool) -> WindowBuilder

Whether to enable or disable the double buffered rendering of the window. Read more
source§

fn with_rgba_visual(self, rgba_visual: bool) -> WindowBuilder

Whether to enable the rgba visual for the window. Read more
source§

fn with_app_paintable(self, app_paintable: bool) -> WindowBuilder

Wether to set this window as app paintable Read more
source§

fn with_cursor_moved_event(self, cursor_moved: bool) -> WindowBuilder

Whether to set cursor moved event. Cursor event is suited for native GUI frameworks and games. But it can block gtk’s own pipeline occasionally. Turn this off can help Gtk looks smoother. Read more
source§

fn with_default_vbox(self, add: bool) -> WindowBuilder

Whether to create a vertical gtk::Box and add it as the sole child of this window. Created by default.

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.