Enum smithay_client_toolkit::window::FrameRequest[][src]

pub enum FrameRequest {
    Minimize,
    Maximize,
    UnMaximize,
    Close,
    Move(Proxy<WlSeat>),
    Resize(Proxy<WlSeat>, ResizeEdge),
    Refresh,
}

Request generated by a Frame

These requests are generated by a Frame and the Window will forward them appropriately to the server.

Variants

The window should be minimized

The window should be maximized

The window should be unmaximized

The window should be closed

An interactive move should be started

An interactive resize should be started

The frame requests to be refreshed

Auto Trait Implementations