Enum luminance_glfw::WindowEvent [] [src]

pub enum WindowEvent {
    Pos(i32i32),
    Size(i32i32),
    Close,
    Refresh,
    Focus(bool),
    Iconify(bool),
    FramebufferSize(i32i32),
    MouseButton(MouseButtonActionModifiers),
    CursorPos(f64f64),
    CursorEnter(bool),
    Scroll(f64f64),
    Key(Keyi32ActionModifiers),
    Char(char),
    CharModifiers(charModifiers),
    FileDrop(Vec<PathBuf>),
}

Window event messages.

Variants

Trait Implementations

impl PartialOrd<WindowEvent> for WindowEvent
[src]

impl PartialEq<WindowEvent> for WindowEvent
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for WindowEvent
[src]

Formats the value using the given formatter.

impl Clone for WindowEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more