[−][src]Enum smithay_client_toolkit::window::Event
Possible events generated by a window that you need to handle
Variants
The state of your window has been changed
Fields of Configure
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.
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.
states: Vec<State>
New combination of states of your window
Typically tells you if your surface is active/inactive, maximized, etc...
A close request has been received
Most likely the user has clicked on the close button of the decorations or something equivalent
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
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>,