[−][src]Struct glutin::window::WindowBuilder
Object that allows you to build windows.
Fields
window: WindowAttributes
The attributes to use to create the window.
Implementations
impl WindowBuilder
[src]
pub fn new() -> WindowBuilder
[src]
Initializes a new WindowBuilder
with default values.
pub fn with_inner_size<S>(self, size: S) -> WindowBuilder where
S: Into<Size>,
[src]
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) -> WindowBuilder where
S: Into<Size>,
[src]
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) -> WindowBuilder where
S: Into<Size>,
[src]
S: Into<Size>,
Sets a maximum dimension size for the window.
See Window::set_max_inner_size
for details.
pub fn with_resizable(self, resizable: bool) -> WindowBuilder
[src]
Sets whether the window is resizable or not.
See Window::set_resizable
for details.
pub fn with_title<T>(self, title: T) -> WindowBuilder where
T: Into<String>,
[src]
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
[src]
Sets the window fullscreen state.
See Window::set_fullscreen
for details.
pub fn with_maximized(self, maximized: bool) -> WindowBuilder
[src]
Requests maximized mode.
See Window::set_maximized
for details.
pub fn with_visible(self, visible: bool) -> WindowBuilder
[src]
Sets whether the window will be initially hidden or visible.
See Window::set_visible
for details.
pub fn with_transparent(self, transparent: bool) -> WindowBuilder
[src]
Sets whether the background of the window should be transparent.
pub fn with_decorations(self, decorations: bool) -> WindowBuilder
[src]
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
[src]
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
[src]
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,
[src]
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
[src]
fn clone(&self) -> WindowBuilder
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for WindowBuilder
[src]
impl Default for WindowBuilder
[src]
fn default() -> WindowBuilder
[src]
impl WindowBuilderExtUnix for WindowBuilder
[src]
fn with_x11_visual<T>(self, visual_infos: *const T) -> WindowBuilder
[src]
fn with_x11_screen(self, screen_id: i32) -> WindowBuilder
[src]
fn with_class(self, instance: String, class: String) -> WindowBuilder
[src]
fn with_override_redirect(self, override_redirect: bool) -> WindowBuilder
[src]
fn with_x11_window_type(
self,
x11_window_types: Vec<WindowType>
) -> WindowBuilder
[src]
self,
x11_window_types: Vec<WindowType>
) -> WindowBuilder
fn with_gtk_theme_variant(self, variant: String) -> WindowBuilder
[src]
fn with_resize_increments<S>(self, increments: S) -> WindowBuilder where
S: Into<Size>,
[src]
S: Into<Size>,
fn with_base_size<S>(self, base_size: S) -> WindowBuilder where
S: Into<Size>,
[src]
S: Into<Size>,
fn with_app_id(self, app_id: String) -> WindowBuilder
[src]
Auto Trait Implementations
impl !RefUnwindSafe for WindowBuilder
impl !Send for WindowBuilder
impl !Sync for WindowBuilder
impl Unpin for WindowBuilder
impl !UnwindSafe for WindowBuilder
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,