Enum smithay_client_toolkit::window::Event
source · [−]Expand description
Possible events generated by a window that you need to handle
Variants
Configure
Fields
new_size: Option<(u32, u32)>
Optional new size for your inner surface
This is the new size of the contents of your window as suggested by the server. You can ignore it and choose a new size if you want better control on the possible sizes of your window.
The size is expressed in logical pixels, you need to multiply it by your buffer scale to get the actual number of pixels to draw.
In all cases, these events can be generated in large batches during an interactive resize, and you should buffer them before processing them. You only need to handle the last one of a batch.
The state of your window has been changed
Close
A close request has been received
Most likely the user has clicked on the close button of the decorations or something equivalent
Refresh
The decorations need to be refreshed
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more