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
impl WindowBuilder
sourcepub fn with_inner_size<S: Into<Size>>(self, size: S) -> Self
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.
sourcepub fn with_min_inner_size<S: Into<Size>>(self, min_size: S) -> Self
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.
sourcepub fn with_max_inner_size<S: Into<Size>>(self, max_size: S) -> Self
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.
sourcepub fn with_inner_size_constraints(
self,
constraints: WindowSizeConstraints,
) -> Self
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.
sourcepub fn with_position<P: Into<Position>>(self, position: P) -> Self
pub fn with_position<P: Into<Position>>(self, position: P) -> Self
Sets a desired initial position for the window.
See WindowAttributes::position
for details.
sourcepub fn with_resizable(self, resizable: bool) -> Self
pub fn with_resizable(self, resizable: bool) -> Self
Sets whether the window is resizable or not.
See Window::set_resizable
for details.
sourcepub fn with_minimizable(self, minimizable: bool) -> Self
pub fn with_minimizable(self, minimizable: bool) -> Self
Sets whether the window is minimizable or not.
See Window::set_minimizable
for details.
sourcepub fn with_maximizable(self, maximizable: bool) -> Self
pub fn with_maximizable(self, maximizable: bool) -> Self
Sets whether the window is maximizable or not.
See Window::set_maximizable
for details.
sourcepub fn with_closable(self, closable: bool) -> Self
pub fn with_closable(self, closable: bool) -> Self
Sets whether the window is closable or not.
See Window::set_closable
for details.
sourcepub fn with_title<T: Into<String>>(self, title: T) -> Self
pub fn with_title<T: Into<String>>(self, title: T) -> Self
Requests a specific title for the window.
See Window::set_title
for details.
sourcepub fn with_fullscreen(self, fullscreen: Option<Fullscreen>) -> Self
pub fn with_fullscreen(self, fullscreen: Option<Fullscreen>) -> Self
Sets the window fullscreen state.
See Window::set_fullscreen
for details.
sourcepub fn with_maximized(self, maximized: bool) -> Self
pub fn with_maximized(self, maximized: bool) -> Self
Requests maximized mode.
See Window::set_maximized
for details.
sourcepub fn with_visible(self, visible: bool) -> Self
pub fn with_visible(self, visible: bool) -> Self
Sets whether the window will be initially hidden or visible.
See Window::set_visible
for details.
sourcepub fn with_transparent(self, transparent: bool) -> Self
pub fn with_transparent(self, transparent: bool) -> Self
Sets whether the background of the window should be transparent.
sourcepub fn with_decorations(self, decorations: bool) -> Self
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.
sourcepub fn with_always_on_bottom(self, always_on_bottom: bool) -> Self
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.
sourcepub fn with_always_on_top(self, always_on_top: bool) -> Self
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.
sourcepub fn with_window_icon(self, window_icon: Option<Icon>) -> Self
pub fn with_window_icon(self, window_icon: Option<Icon>) -> Self
Sets the window icon.
See Window::set_window_icon
for details.
sourcepub fn with_theme(self, theme: Option<Theme>) -> WindowBuilder
pub fn with_theme(self, theme: Option<Theme>) -> WindowBuilder
Forces a theme or uses the system settings if None
was provided.
§Platform-specific:
- Windows: It is recommended to always use the same theme used
in
EventLoopBuilderExtWindows::with_theme
for this method also or useNone
so it automatically uses the theme used inEventLoopBuilderExtWindows::with_theme
or falls back to the system preference, becauseEventLoopBuilderExtWindows::with_theme
changes the theme for some controls like context menus which is app-wide and can’t be changed by this method.
sourcepub fn with_focused(self, focused: bool) -> WindowBuilder
pub fn with_focused(self, focused: bool) -> WindowBuilder
Whether the window will be initially focused or not.
§Platform-specific:
Android / iOS: Unsupported.
sourcepub fn with_content_protection(self, protected: bool) -> WindowBuilder
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.
sourcepub fn with_visible_on_all_workspaces(self, visible: bool) -> WindowBuilder
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.
Trait Implementations§
source§impl Clone for WindowBuilder
impl Clone for WindowBuilder
source§fn clone(&self) -> WindowBuilder
fn clone(&self) -> WindowBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for WindowBuilder
impl Debug for WindowBuilder
source§impl Default for WindowBuilder
impl Default for WindowBuilder
source§fn default() -> WindowBuilder
fn default() -> WindowBuilder
source§impl WindowBuilderExtUnix for WindowBuilder
impl WindowBuilderExtUnix for WindowBuilder
source§fn with_skip_taskbar(self, skip: bool) -> WindowBuilder
fn with_skip_taskbar(self, skip: bool) -> WindowBuilder
source§fn with_transient_for(self, parent: &impl IsA<Window>) -> WindowBuilder
fn with_transient_for(self, parent: &impl IsA<Window>) -> WindowBuilder
parent
https://gtk-rs.org/gtk3-rs/stable/latest/docs/gdk/struct.Window.html#method.set_transient_forsource§fn with_transparent_draw(self, draw: bool) -> WindowBuilder
fn with_transparent_draw(self, draw: bool) -> WindowBuilder
source§fn with_double_buffered(self, double_buffered: bool) -> WindowBuilder
fn with_double_buffered(self, double_buffered: bool) -> WindowBuilder
source§fn with_rgba_visual(self, rgba_visual: bool) -> WindowBuilder
fn with_rgba_visual(self, rgba_visual: bool) -> WindowBuilder
source§fn with_app_paintable(self, app_paintable: bool) -> WindowBuilder
fn with_app_paintable(self, app_paintable: bool) -> WindowBuilder
source§fn with_cursor_moved_event(self, cursor_moved: bool) -> WindowBuilder
fn with_cursor_moved_event(self, cursor_moved: bool) -> WindowBuilder
source§fn with_default_vbox(self, add: bool) -> WindowBuilder
fn with_default_vbox(self, add: bool) -> WindowBuilder
gtk::Box
and add it as the sole child of this window.
Created by default.Auto Trait Implementations§
impl Freeze for WindowBuilder
impl RefUnwindSafe for WindowBuilder
impl Send for WindowBuilder
impl Sync for WindowBuilder
impl Unpin for WindowBuilder
impl UnwindSafe for WindowBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)