pub struct TaoWindowBuilder {
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) -> WindowBuilder
pub fn with_inner_size<S>(self, size: S) -> WindowBuilder
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) -> WindowBuilder
pub fn with_min_inner_size<S>(self, min_size: S) -> WindowBuilder
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) -> WindowBuilder
pub fn with_max_inner_size<S>(self, max_size: S) -> WindowBuilder
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) -> WindowBuilder
pub fn with_position<P>(self, position: P) -> WindowBuilder
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) -> WindowBuilder
pub fn with_title<T>(self, title: T) -> WindowBuilder
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
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.
Sourcepub fn with_background_color(self, color: (u8, u8, u8, u8)) -> WindowBuilder
pub fn with_background_color(self, color: (u8, u8, u8, u8)) -> WindowBuilder
Sets the window background color.
§Platform-specific:
- Windows: alpha channel is ignored. Instead manually draw the window, for example using
softbuffer
crate, see https://github.com/tauri-apps/tao/blob/dev/examples/transparent.rs - iOS / Android: 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
)