Enum smithay_client_toolkit::window::Event[][src]

pub enum Event {
    Configure {
        new_size: Option<(u32, u32)>,
        states: Vec<State>,
    },
    Close,
    Refresh,
}
Expand description

Possible events generated by a window that you need to handle

Variants

Configure

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.

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.

states: Vec<State>

New combination of states of your window

Typically tells you if your surface is active/inactive, maximized, etc…

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.