Enum nannou::WindowEvent []

pub enum WindowEvent {
    Resized(u32u32),
    Moved(i32i32),
    Closed,
    DroppedFile(PathBuf),
    HoveredFile(PathBuf),
    HoveredFileCancelled,
    ReceivedCharacter(char),
    Focused(bool),
    KeyboardInput {
        device_id: DeviceId,
        input: KeyboardInput,
    },
    CursorMoved {
        device_id: DeviceId,
        position: (f64, f64),
        modifiers: ModifiersState,
    },
    CursorEntered {
        device_id: DeviceId,
    },
    CursorLeft {
        device_id: DeviceId,
    },
    MouseWheel {
        device_id: DeviceId,
        delta: MouseScrollDelta,
        phase: TouchPhase,
        modifiers: ModifiersState,
    },
    MouseInput {
        device_id: DeviceId,
        state: ElementState,
        button: MouseButton,
        modifiers: ModifiersState,
    },
    TouchpadPressure {
        device_id: DeviceId,
        pressure: f32,
        stage: i64,
    },
    AxisMotion {
        device_id: DeviceId,
        axis: u32,
        value: f64,
    },
    Refresh,
    Touch(Touch),
    HiDPIFactorChanged(f32),
}

Describes an event from a Window.

Variants

The size of the window has changed.

The position of the window has changed.

The window has been closed.

A file has been dropped into the window.

A file is being hovered over the window.

A file was hovered, but has exited the window.

The window received a unicode character.

The window gained or lost focus.

The parameter is true if the window has gained focus, and false if it has lost focus.

An event from the keyboard has been received.

Fields of KeyboardInput

The cursor has moved on the window.

Fields of CursorMoved

(x,y) coords in pixels relative to the top-left corner of the window. Because the range of this data is limited by the display area and it may have been transformed by the OS to implement effects such as cursor acceleration, it should not be used to implement non-cursor-like interactions such as 3D camera control.

The cursor has entered the window.

Fields of CursorEntered

The cursor has left the window.

Fields of CursorLeft

A mouse wheel movement or touchpad scroll occurred.

Fields of MouseWheel

An mouse button press has been received.

Fields of MouseInput

Touchpad pressure event.

At the moment, only supported on Apple forcetouch-capable macbooks. The parameters are: pressure level (value between 0 and 1 representing how hard the touchpad is being pressed) and stage (integer representing the click level).

Fields of TouchpadPressure

Motion on some analog axis. May report data redundant to other, more specific events.

Fields of AxisMotion

The window needs to be redrawn.

Touch event has been received

DPI scaling factor of the window has changed.

The following actions cause DPI changes:

  • A user changes the resolution.
  • A user changes the desktop scaling value (e.g. in Control Panel on Windows).
  • A user moves the application window to a display with a different DPI.

Trait Implementations

impl Clone for WindowEvent

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for WindowEvent

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for WindowEvent

impl Sync for WindowEvent