pub struct WindowAttributes {Show 20 fields
pub inner_size: Option<Size>,
pub min_inner_size: Option<Size>,
pub max_inner_size: Option<Size>,
pub position: Option<Position>,
pub resizable: bool,
pub enabled_buttons: WindowButtons,
pub title: String,
pub maximized: bool,
pub visible: bool,
pub transparent: bool,
pub blur: bool,
pub decorations: bool,
pub window_icon: Option<Icon>,
pub preferred_theme: Option<Theme>,
pub resize_increments: Option<Size>,
pub content_protected: bool,
pub window_level: WindowLevel,
pub active: bool,
pub cursor: Cursor,
pub fullscreen: Option<Fullscreen>,
/* private fields */
}
Expand description
Attributes used when creating a window.
Fields§
§inner_size: Option<Size>
§min_inner_size: Option<Size>
§max_inner_size: Option<Size>
§position: Option<Position>
§resizable: bool
§title: String
§maximized: bool
§visible: bool
§transparent: bool
§blur: bool
§decorations: bool
§window_icon: Option<Icon>
§preferred_theme: Option<Theme>
§resize_increments: Option<Size>
§content_protected: bool
§window_level: WindowLevel
§active: bool
§cursor: Cursor
§fullscreen: Option<Fullscreen>
Implementations§
Source§impl WindowAttributes
impl WindowAttributes
Sourcepub fn parent_window(&self) -> Option<&RawWindowHandle>
Available on crate feature rwh_06
only.
pub fn parent_window(&self) -> Option<&RawWindowHandle>
rwh_06
only.Get the parent window stored on the attributes.
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.
If this is not set, some platform-specific dimensions will be used.
See Window::request_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 the minimum dimensions a window can have.
If this is not set, the window will have no minimum dimensions (aside from reserved).
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 the maximum dimensions a window can have.
If this is not set, the window will have no maximum or will be set to the primary monitor’s dimensions by the platform.
See Window::set_max_inner_size
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.
If this is not set, some platform-specific position will be chosen.
See Window::set_outer_position
for details.
§Platform-specific
- macOS: The top left corner position of the window content, the window’s “inner”
position. The window title bar will be placed above it. The window will be positioned such
that it fits on screen, maintaining set
inner_size
if any. If you need to precisely position the top left corner of the whole window you have to useWindow::set_outer_position
after creating the window. - Windows: The top left corner position of the window title bar, the window’s “outer” position. There may be a small gap between this position and the window due to the specifics of the Window Manager.
- X11: The top left corner of the window, the window’s “outer” position.
- Others: Ignored.
Sourcepub fn with_resizable(self, resizable: bool) -> Self
pub fn with_resizable(self, resizable: bool) -> Self
Sets whether the window is resizable or not.
The default is true
.
See Window::set_resizable
for details.
Sets the enabled window buttons.
The default is WindowButtons::all
See Window::set_enabled_buttons
for details.
Sourcepub fn with_title<T: Into<String>>(self, title: T) -> Self
pub fn with_title<T: Into<String>>(self, title: T) -> Self
Sets the initial title of the window in the title bar.
The default is "winit 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 whether the window should be put into fullscreen upon creation.
The default is None
.
See Window::set_fullscreen
for details.
Sourcepub fn with_maximized(self, maximized: bool) -> Self
pub fn with_maximized(self, maximized: bool) -> Self
Request that the window is maximized upon creation.
The default is false
.
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 visible or hidden.
The default is to show the window.
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.
If this is true
, writing colors with alpha values different than
1.0
will produce a transparent window. On some platforms this
is more of a hint for the system and you’d still have the alpha
buffer. To control it see Window::set_transparent
.
The default is false
.
Sourcepub fn with_blur(self, blur: bool) -> Self
pub fn with_blur(self, blur: bool) -> Self
Sets whether the background of the window should be blurred by the system.
The default is false
.
See Window::set_blur
for details.
Sourcepub fn transparent(&self) -> bool
pub fn transparent(&self) -> bool
Get whether the window will support transparency.
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.
The default is true
.
See Window::set_decorations
for details.
Sourcepub fn with_window_level(self, level: WindowLevel) -> Self
pub fn with_window_level(self, level: WindowLevel) -> Self
Sets the window level.
This is just a hint to the OS, and the system could ignore it.
The default is WindowLevel::Normal
.
See WindowLevel
for details.
Sourcepub fn with_window_icon(self, window_icon: Option<Icon>) -> Self
pub fn with_window_icon(self, window_icon: Option<Icon>) -> Self
Sourcepub fn with_theme(self, theme: Option<Theme>) -> Self
pub fn with_theme(self, theme: Option<Theme>) -> Self
Sets a specific theme for the window.
If None
is provided, the window will use the system theme.
The default is None
.
§Platform-specific
- Wayland: This controls only CSD. When using
None
it’ll try to use dbus to get the system preference. When explicit theme is used, this will avoid dbus all together. - x11: Build window with
_GTK_THEME_VARIANT
hint set todark
orlight
. - iOS / Android / Web / x11 / Orbital: Ignored.
Sourcepub fn with_resize_increments<S: Into<Size>>(self, resize_increments: S) -> Self
pub fn with_resize_increments<S: Into<Size>>(self, resize_increments: S) -> Self
Build window with resize increments hint.
The default is None
.
See Window::set_resize_increments
for details.
Sourcepub fn with_content_protected(self, protected: bool) -> Self
pub fn with_content_protected(self, protected: bool) -> Self
Prevents the window contents from being captured by other apps.
The default is false
.
§Platform-specific
- macOS: if
false
,NSWindowSharingNone
is used but doesn’t completely prevent all apps from reading the window content, for instance, QuickTime. - iOS / Android / Web / x11 / Orbital: Ignored.
Sourcepub fn with_active(self, active: bool) -> Self
pub fn with_active(self, active: bool) -> Self
Whether the window will be initially focused or not.
The window should be assumed as not focused by default
following by the WindowEvent::Focused
.
§Platform-specific:
Android / iOS / X11 / Wayland / Orbital: Unsupported.
Sourcepub fn with_cursor(self, cursor: impl Into<Cursor>) -> Self
pub fn with_cursor(self, cursor: impl Into<Cursor>) -> Self
Modifies the cursor icon of the window.
The default is CursorIcon::Default
.
See Window::set_cursor()
for more details.
Sourcepub unsafe fn with_parent_window(
self,
parent_window: Option<RawWindowHandle>,
) -> Self
Available on crate feature rwh_06
only.
pub unsafe fn with_parent_window( self, parent_window: Option<RawWindowHandle>, ) -> Self
rwh_06
only.Build window with parent window.
The default is None
.
§Safety
parent_window
must be a valid window handle.
§Platform-specific
- Windows : A child window has the WS_CHILD style and is confined to the client area of its parent window. For more information, see https://docs.microsoft.com/en-us/windows/win32/winmsg/window-features#child-windows
- X11: A child window is confined to the client area of its parent window.
- Android / iOS / Wayland / Web: Unsupported.
Trait Implementations§
Source§impl Clone for WindowAttributes
impl Clone for WindowAttributes
Source§fn clone(&self) -> WindowAttributes
fn clone(&self) -> WindowAttributes
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for WindowAttributes
impl Debug for WindowAttributes
Source§impl Default for WindowAttributes
impl Default for WindowAttributes
Source§fn default() -> WindowAttributes
fn default() -> WindowAttributes
Source§impl WindowAttributesExtIOS for WindowAttributes
Available on ios_platform
only.
impl WindowAttributesExtIOS for WindowAttributes
ios_platform
only.Source§fn with_scale_factor(self, scale_factor: f64) -> Self
fn with_scale_factor(self, scale_factor: f64) -> Self
Source§fn with_valid_orientations(self, valid_orientations: ValidOrientations) -> Self
fn with_valid_orientations(self, valid_orientations: ValidOrientations) -> Self
Source§fn with_preferred_screen_edges_deferring_system_gestures(
self,
edges: ScreenEdge,
) -> Self
fn with_preferred_screen_edges_deferring_system_gestures( self, edges: ScreenEdge, ) -> Self
Source§fn with_preferred_status_bar_style(
self,
status_bar_style: StatusBarStyle,
) -> Self
fn with_preferred_status_bar_style( self, status_bar_style: StatusBarStyle, ) -> Self
Source§impl WindowAttributesExtMacOS for WindowAttributes
Available on macos_platform
only.
impl WindowAttributesExtMacOS for WindowAttributes
macos_platform
only.Source§fn with_movable_by_window_background(
self,
movable_by_window_background: bool,
) -> Self
fn with_movable_by_window_background( self, movable_by_window_background: bool, ) -> Self
Source§fn with_titlebar_transparent(self, titlebar_transparent: bool) -> Self
fn with_titlebar_transparent(self, titlebar_transparent: bool) -> Self
Source§fn with_fullsize_content_view(self, fullsize_content_view: bool) -> Self
fn with_fullsize_content_view(self, fullsize_content_view: bool) -> Self
fn with_disallow_hidpi(self, disallow_hidpi: bool) -> Self
fn with_has_shadow(self, has_shadow: bool) -> Self
Source§fn with_accepts_first_mouse(self, accepts_first_mouse: bool) -> Self
fn with_accepts_first_mouse(self, accepts_first_mouse: bool) -> Self
Source§fn with_tabbing_identifier(self, tabbing_identifier: &str) -> Self
fn with_tabbing_identifier(self, tabbing_identifier: &str) -> Self
Source§fn with_option_as_alt(self, option_as_alt: OptionAsAlt) -> Self
fn with_option_as_alt(self, option_as_alt: OptionAsAlt) -> Self
Source§fn with_borderless_game(self, borderless_game: bool) -> Self
fn with_borderless_game(self, borderless_game: bool) -> Self
WindowExtMacOS::set_borderless_game
for details on what this means if set.Source§impl WindowAttributesExtStartupNotify for WindowAttributes
Available on x11_platform
or wayland_platform
only.
impl WindowAttributesExtStartupNotify for WindowAttributes
x11_platform
or wayland_platform
only.Source§fn with_activation_token(self, token: ActivationToken) -> Self
fn with_activation_token(self, token: ActivationToken) -> Self
ActivationToken
during window creation. Read moreSource§impl WindowAttributesExtWayland for WindowAttributes
Available on wayland_platform
only.
impl WindowAttributesExtWayland for WindowAttributes
wayland_platform
only.Source§impl WindowAttributesExtWebSys for WindowAttributes
Available on web_platform
only.
impl WindowAttributesExtWebSys for WindowAttributes
web_platform
only.Source§fn with_canvas(self, canvas: Option<HtmlCanvasElement>) -> Self
fn with_canvas(self, canvas: Option<HtmlCanvasElement>) -> Self
HtmlCanvasElement
to be used for this Window
. If None
,
WindowAttributes::default()
will create one. Read moreSource§fn with_prevent_default(self, prevent_default: bool) -> Self
fn with_prevent_default(self, prevent_default: bool) -> Self
event.preventDefault()
should be called on events on the
canvas that have side effects. Read moreSource§fn with_focusable(self, focusable: bool) -> Self
fn with_focusable(self, focusable: bool) -> Self
Source§fn with_append(self, append: bool) -> Self
fn with_append(self, append: bool) -> Self
Source§impl WindowAttributesExtWindows for WindowAttributes
Available on windows_platform
only.
impl WindowAttributesExtWindows for WindowAttributes
windows_platform
only.Source§fn with_owner_window(self, parent: HWND) -> Self
fn with_owner_window(self, parent: HWND) -> Self
WindowAttributes::with_parent_window
isn’t called or set to None
.
Can be used in combination with
WindowExtWindows::set_enable(false)
on the owner
window to create a modal dialog box. Read moreSource§fn with_taskbar_icon(self, taskbar_icon: Option<Icon>) -> Self
fn with_taskbar_icon(self, taskbar_icon: Option<Icon>) -> Self
ICON_BIG
. A good ceiling here is 256x256.Source§fn with_no_redirection_bitmap(self, flag: bool) -> Self
fn with_no_redirection_bitmap(self, flag: bool) -> Self
WS_EX_NOREDIRECTIONBITMAP
.Source§fn with_drag_and_drop(self, flag: bool) -> Self
fn with_drag_and_drop(self, flag: bool) -> Self
CoInitializeEx
with COINIT_MULTITHREADED
instead of COINIT_APARTMENTTHREADED
) on the same thread. Note that winit may still
attempt to initialize COM API regardless of this option. Currently only fullscreen mode
does that, but there may be more in the future. If you need COM API with
COINIT_MULTITHREADED
you must initialize it before calling any winit functions. See https://docs.microsoft.com/en-us/windows/win32/api/objbase/nf-objbase-coinitialize#remarks for more information.Source§fn with_skip_taskbar(self, skip: bool) -> Self
fn with_skip_taskbar(self, skip: bool) -> Self
Source§fn with_class_name<S: Into<String>>(self, class_name: S) -> Self
fn with_class_name<S: Into<String>>(self, class_name: S) -> Self
Source§fn with_undecorated_shadow(self, shadow: bool) -> Self
fn with_undecorated_shadow(self, shadow: bool) -> Self
Source§fn with_system_backdrop(self, backdrop_type: BackdropType) -> Self
fn with_system_backdrop(self, backdrop_type: BackdropType) -> Self
Source§fn with_clip_children(self, flag: bool) -> Self
fn with_clip_children(self, flag: bool) -> Self
WS_CLIPCHILDREN
style.Source§fn with_border_color(self, color: Option<Color>) -> Self
fn with_border_color(self, color: Option<Color>) -> Self
Source§fn with_title_background_color(self, color: Option<Color>) -> Self
fn with_title_background_color(self, color: Option<Color>) -> Self
Source§fn with_title_text_color(self, color: Color) -> Self
fn with_title_text_color(self, color: Color) -> Self
Source§fn with_corner_preference(self, corners: CornerPreference) -> Self
fn with_corner_preference(self, corners: CornerPreference) -> Self
Source§impl WindowAttributesExtX11 for WindowAttributes
Available on x11_platform
only.
impl WindowAttributesExtX11 for WindowAttributes
x11_platform
only.Source§fn with_x11_visual(self, visual_id: XVisualID) -> Self
fn with_x11_visual(self, visual_id: XVisualID) -> Self
fn with_x11_screen(self, screen_id: i32) -> Self
Source§fn with_override_redirect(self, override_redirect: bool) -> Self
fn with_override_redirect(self, override_redirect: bool) -> Self
Source§fn with_x11_window_type(self, x11_window_types: Vec<WindowType>) -> Self
fn with_x11_window_type(self, x11_window_types: Vec<WindowType>) -> Self
_NET_WM_WINDOW_TYPE
hints; defaults to Normal
.Source§fn with_base_size<S: Into<Size>>(self, base_size: S) -> Self
fn with_base_size<S: Into<Size>>(self, base_size: S) -> Self
Source§fn with_embed_parent_window(self, parent_window_id: XWindow) -> Self
fn with_embed_parent_window(self, parent_window_id: XWindow) -> Self
impl WindowAttributesExtAndroid for WindowAttributes
android_platform
only.Auto Trait Implementations§
impl Freeze for WindowAttributes
impl !RefUnwindSafe for WindowAttributes
impl Send for WindowAttributes
impl Sync for WindowAttributes
impl Unpin for WindowAttributes
impl !UnwindSafe for WindowAttributes
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§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.