Struct wry::application::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 new() -> WindowBuilder
pub fn new() -> WindowBuilder
Initializes a new WindowBuilder
with default values.
sourcepub fn with_inner_size<S>(self, size: S) -> WindowBuilderwhere
S: Into<Size>,
pub fn with_inner_size<S>(self, size: S) -> WindowBuilderwhere S: Into<Size>,
Requests the window to be of specific dimensions.
See Window::set_inner_size
for details.
sourcepub fn with_min_inner_size<S>(self, min_size: S) -> WindowBuilderwhere
S: Into<Size>,
pub fn with_min_inner_size<S>(self, min_size: S) -> WindowBuilderwhere S: Into<Size>,
Sets a minimum dimension size for the window.
See Window::set_min_inner_size
for details.
sourcepub fn with_max_inner_size<S>(self, max_size: S) -> WindowBuilderwhere
S: Into<Size>,
pub fn with_max_inner_size<S>(self, max_size: S) -> WindowBuilderwhere S: Into<Size>,
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
) -> WindowBuilder
pub fn with_inner_size_constraints( self, constraints: WindowSizeConstraints ) -> WindowBuilder
Sets inner size constraints for the window.
See Window::set_inner_size_constraints
for details.
sourcepub fn with_position<P>(self, position: P) -> WindowBuilderwhere
P: Into<Position>,
pub fn with_position<P>(self, position: P) -> WindowBuilderwhere P: Into<Position>,
Sets a desired initial position for the window.
See WindowAttributes::position
for details.
sourcepub fn with_resizable(self, resizable: bool) -> WindowBuilder
pub fn with_resizable(self, resizable: bool) -> WindowBuilder
Sets whether the window is resizable or not.
See Window::set_resizable
for details.
sourcepub fn with_minimizable(self, minimizable: bool) -> WindowBuilder
pub fn with_minimizable(self, minimizable: bool) -> WindowBuilder
Sets whether the window is minimizable or not.
See Window::set_minimizable
for details.
sourcepub fn with_maximizable(self, maximizable: bool) -> WindowBuilder
pub fn with_maximizable(self, maximizable: bool) -> WindowBuilder
Sets whether the window is maximizable or not.
See Window::set_maximizable
for details.
sourcepub fn with_closable(self, closable: bool) -> WindowBuilder
pub fn with_closable(self, closable: bool) -> WindowBuilder
Sets whether the window is closable or not.
See Window::set_closable
for details.
sourcepub fn with_title<T>(self, title: T) -> WindowBuilderwhere
T: Into<String>,
pub fn with_title<T>(self, title: T) -> WindowBuilderwhere T: Into<String>,
Requests a specific title for the window.
See Window::set_title
for details.
sourcepub fn with_fullscreen(self, fullscreen: Option<Fullscreen>) -> WindowBuilder
pub fn with_fullscreen(self, fullscreen: Option<Fullscreen>) -> WindowBuilder
Sets the window fullscreen state.
See Window::set_fullscreen
for details.
sourcepub fn with_maximized(self, maximized: bool) -> WindowBuilder
pub fn with_maximized(self, maximized: bool) -> WindowBuilder
Requests maximized mode.
See Window::set_maximized
for details.
sourcepub fn with_visible(self, visible: bool) -> WindowBuilder
pub fn with_visible(self, visible: bool) -> WindowBuilder
Sets whether the window will be initially hidden or visible.
See Window::set_visible
for details.
sourcepub fn with_transparent(self, transparent: bool) -> WindowBuilder
pub fn with_transparent(self, transparent: bool) -> WindowBuilder
Sets whether the background of the window should be transparent.
sourcepub fn with_decorations(self, decorations: bool) -> WindowBuilder
pub fn with_decorations(self, decorations: bool) -> WindowBuilder
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) -> WindowBuilder
pub fn with_always_on_bottom(self, always_on_bottom: bool) -> WindowBuilder
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) -> WindowBuilder
pub fn with_always_on_top(self, always_on_top: bool) -> WindowBuilder
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>) -> WindowBuilder
pub fn with_window_icon(self, window_icon: Option<Icon>) -> WindowBuilder
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
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: ApplicationWindow) -> WindowBuilder
fn with_transient_for(self, parent: ApplicationWindow) -> 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.