pub struct Window {
Show 15 fields window_id: WindowId, display: Display, surface: WlSurface, scale_factor: Arc<Mutex<f64>>, size: Arc<Mutex<LogicalSize<u32>>>, output_manager_handle: OutputManagerHandle, event_loop_awakener: Ping, fullscreen: Arc<AtomicBool>, maximized: Arc<AtomicBool>, windowing_features: WindowingFeatures, window_requests: Arc<Mutex<Vec<WindowRequest>>>, resizeable: AtomicBool, decorated: AtomicBool, cursor_grab_mode: Mutex<CursorGrabMode>, has_focus: Arc<AtomicBool>,
}

Fields§

§window_id: WindowId

Window id.

§display: Display

The Wayland display.

§surface: WlSurface

The underlying wl_surface.

§scale_factor: Arc<Mutex<f64>>

The scale factor.

§size: Arc<Mutex<LogicalSize<u32>>>

The current window size.

§output_manager_handle: OutputManagerHandle

A handle to output manager.

§event_loop_awakener: Ping

Event loop proxy to wake it up.

§fullscreen: Arc<AtomicBool>

Fullscreen state.

§maximized: Arc<AtomicBool>

Maximized state.

§windowing_features: WindowingFeatures

Available windowing features.

§window_requests: Arc<Mutex<Vec<WindowRequest>>>

Requests that SCTK window should perform.

§resizeable: AtomicBool

Whether the window is resizeable.

§decorated: AtomicBool

Whether the window is decorated.

§cursor_grab_mode: Mutex<CursorGrabMode>

Grabbing mode.

§has_focus: Arc<AtomicBool>

Whether the window has keyboard focus.

Implementations§

source§

impl Window

source

pub(crate) fn new<T>( event_loop_window_target: &EventLoopWindowTarget<T>, attributes: WindowAttributes, platform_attributes: PlatformAttributes ) -> Result<Self, RootOsError>

source§

impl Window

source

pub fn id(&self) -> WindowId

source

pub fn set_title(&self, title: &str)

source

pub fn set_transparent(&self, transparent: bool)

source

pub fn set_visible(&self, _visible: bool)

source

pub fn is_visible(&self) -> Option<bool>

source

pub fn outer_position(&self) -> Result<PhysicalPosition<i32>, NotSupportedError>

source

pub fn inner_position(&self) -> Result<PhysicalPosition<i32>, NotSupportedError>

source

pub fn set_outer_position(&self, _: Position)

source

pub fn inner_size(&self) -> PhysicalSize<u32>

source

pub fn request_redraw(&self)

source

pub fn outer_size(&self) -> PhysicalSize<u32>

source

pub fn set_inner_size(&self, size: Size)

source

pub fn set_min_inner_size(&self, dimensions: Option<Size>)

source

pub fn set_max_inner_size(&self, dimensions: Option<Size>)

source

pub fn resize_increments(&self) -> Option<PhysicalSize<u32>>

source

pub fn set_resize_increments(&self, _increments: Option<Size>)

source

pub fn set_resizable(&self, resizable: bool)

source

pub fn is_resizable(&self) -> bool

source

pub fn set_enabled_buttons(&self, _buttons: WindowButtons)

source

pub fn enabled_buttons(&self) -> WindowButtons

source

pub fn scale_factor(&self) -> f64

source

pub fn set_decorations(&self, decorate: bool)

source

pub fn is_decorated(&self) -> bool

source

pub fn is_minimized(&self) -> Option<bool>

source

pub fn set_minimized(&self, minimized: bool)

source

pub fn is_maximized(&self) -> bool

source

pub fn set_maximized(&self, maximized: bool)

source

pub(crate) fn fullscreen(&self) -> Option<Fullscreen>

source

pub(crate) fn set_fullscreen(&self, fullscreen: Option<Fullscreen>)

source

pub fn set_cursor_icon(&self, cursor: CursorIcon)

source

pub fn set_cursor_visible(&self, visible: bool)

source

pub fn set_cursor_grab(&self, mode: CursorGrabMode) -> Result<(), ExternalError>

source

pub fn request_user_attention(&self, request_type: Option<UserAttentionType>)

source

pub fn set_cursor_position( &self, position: Position ) -> Result<(), ExternalError>

source

pub fn drag_window(&self) -> Result<(), ExternalError>

source

pub fn drag_resize_window( &self, _direction: ResizeDirection ) -> Result<(), ExternalError>

source

pub fn set_cursor_hittest(&self, hittest: bool) -> Result<(), ExternalError>

source

pub fn set_ime_position(&self, position: Position)

source

pub fn set_ime_allowed(&self, allowed: bool)

source

pub fn set_ime_purpose(&self, purpose: ImePurpose)

source

pub fn display(&self) -> &Display

source

pub fn surface(&self) -> &WlSurface

source

pub fn current_monitor(&self) -> Option<MonitorHandle>

source

pub fn available_monitors(&self) -> VecDeque<MonitorHandle>

source

pub fn primary_monitor(&self) -> Option<PlatformMonitorHandle>

source

pub fn raw_window_handle(&self) -> RawWindowHandle

source

pub fn raw_display_handle(&self) -> RawDisplayHandle

source

fn send_request(&self, request: WindowRequest)

source

pub fn set_theme(&self, theme: Option<Theme>)

source

pub fn theme(&self) -> Option<Theme>

source

pub fn has_focus(&self) -> bool

source

pub fn title(&self) -> String

Trait Implementations§

source§

impl Drop for Window

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl !RefUnwindSafe for Window

§

impl Send for Window

§

impl Sync for Window

§

impl Unpin for Window

§

impl !UnwindSafe for Window

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.