Struct raui_app::window::WindowBuilder
pub struct WindowBuilder {
pub window: WindowAttributes,
/* private fields */
}Expand description
Object that allows you to build windows.
Fields§
§window: WindowAttributesThe attributes to use to create the window.
Implementations§
§impl WindowBuilder
impl WindowBuilder
pub fn new() -> WindowBuilder
pub fn new() -> WindowBuilder
Initializes a new WindowBuilder with default values.
pub 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.
pub 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.
pub 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.
pub 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.
pub 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.
pub 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.
pub 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.
pub fn with_maximized(self, maximized: bool) -> WindowBuilder
pub fn with_maximized(self, maximized: bool) -> WindowBuilder
Requests maximized mode.
See Window::set_maximized for details.
pub 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.
pub 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.
pub 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.
pub 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.
pub 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.
pub fn build<T>(
self,
window_target: &EventLoopWindowTarget<T>
) -> Result<Window, OsError>where
T: 'static,
pub fn build<T>( self, window_target: &EventLoopWindowTarget<T> ) -> Result<Window, OsError>where T: 'static,
Builds the window.
Possible causes of error include denied permission, incompatible system, and lack of memory.
Platform-specific behavior:
- Web: The window is created but not inserted into the web page automatically. Please see the web platform module for more information.
Trait Implementations§
§impl Clone for WindowBuilder
impl Clone for WindowBuilder
§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 more§impl Debug for WindowBuilder
impl Debug for WindowBuilder
§impl Default for WindowBuilder
impl Default for WindowBuilder
§fn default() -> WindowBuilder
fn default() -> WindowBuilder
§impl WindowBuilderExtUnix for WindowBuilder
impl WindowBuilderExtUnix for WindowBuilder
fn with_x11_visual<T>(self, visual_infos: *const T) -> WindowBuilder
fn with_x11_screen(self, screen_id: i32) -> WindowBuilder
§fn with_class(self, instance: String, class: String) -> WindowBuilder
fn with_class(self, instance: String, class: String) -> WindowBuilder
WM_CLASS hint; defaults to the name of the binary. Only relevant on X11.§fn with_override_redirect(self, override_redirect: bool) -> WindowBuilder
fn with_override_redirect(self, override_redirect: bool) -> WindowBuilder
§fn with_x11_window_type(
self,
x11_window_types: Vec<WindowType>
) -> WindowBuilder
fn with_x11_window_type( self, x11_window_types: Vec<WindowType> ) -> WindowBuilder
_NET_WM_WINDOW_TYPE hints; defaults to Normal. Only relevant on X11.§fn with_gtk_theme_variant(self, variant: String) -> WindowBuilder
fn with_gtk_theme_variant(self, variant: String) -> WindowBuilder
_GTK_THEME_VARIANT hint set to the specified value. Currently only relevant on X11.§fn with_resize_increments<S>(self, increments: S) -> WindowBuilderwhere
S: Into<Size>,
fn with_resize_increments<S>(self, increments: S) -> WindowBuilderwhere S: Into<Size>,
§fn with_base_size<S>(self, base_size: S) -> WindowBuilderwhere
S: Into<Size>,
fn with_base_size<S>(self, base_size: S) -> WindowBuilderwhere S: Into<Size>,
§fn with_app_id(self, app_id: String) -> WindowBuilder
fn with_app_id(self, app_id: String) -> WindowBuilder
.desktop file distributed with
your program. Only relevant on Wayland. Read moreAuto Trait Implementations§
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
§impl<T> Initialize for Twhere
T: Default,
impl<T> Initialize for Twhere T: Default,
fn initialize(&mut self)
§unsafe fn initialize_raw(data: *mut ())
unsafe fn initialize_raw(data: *mut ())
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for Pwhere
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for Pwhere R: Read + ReadEndian<P>, P: Default,
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
ReadEndian::read_from_little_endian().