Enum smithay_client_toolkit::shell::Event [−][src]
Expand description
Possible events generated by a shell surface that you need to handle
Variants
Configure
Fields
new_size: Option<(u32, u32)>
Optional new size for your shell surface
This is the new size of the contents of your shell surface 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 shell surface.
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
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Event
impl UnwindSafe for Event
Blanket Implementations
Mutably borrows from an owned value. Read more