[][src]Enum cursive::event::Event

pub enum Event {
    WindowResize,
    Refresh,
    Char(char),
    CtrlChar(char),
    AltChar(char),
    Key(Key),
    Shift(Key),
    Alt(Key),
    AltShift(Key),
    Ctrl(Key),
    CtrlShift(Key),
    CtrlAlt(Key),
    Mouse {
        offset: Vec2,
        position: Vec2,
        event: MouseEvent,
    },
    Unknown(Vec<u8>),
    // some variants omitted
}

Represents an event as seen by the application.

Variants

WindowResize

Event fired when the window is resized.

Refresh

Event fired regularly when a auto-refresh is set.

Char(char)

A character was entered (includes numbers, punctuation, ...).

CtrlChar(char)

A character was entered with the Ctrl key pressed.

AltChar(char)

A character was entered with the Alt key pressed.

Key(Key)

A non-character key was pressed.

Shift(Key)

A non-character key was pressed with the Shift key pressed.

Alt(Key)

A non-character key was pressed with the Alt key pressed.

AltShift(Key)

A non-character key was pressed with the Shift and Alt keys pressed.

Ctrl(Key)

A non-character key was pressed with the Ctrl key pressed.

CtrlShift(Key)

A non-character key was pressed with the Ctrl and Shift keys pressed.

CtrlAlt(Key)

A non-character key was pressed with the Ctrl and Alt keys pressed.

Mouse

A mouse event was sent.

Fields of Mouse

offset: Vec2

Position of the top-left corner of the view receiving this event.

position: Vec2

Position of the mouse when this event was fired.

event: MouseEvent

The mouse event itself.

Unknown(Vec<u8>)

An unknown event was received.

Methods

impl Event[src]

pub fn mouse_position(&self) -> Option<Vec2>[src]

Returns the position of the mouse, if self is a mouse event.

pub fn mouse_position_mut(&mut self) -> Option<&mut Vec2>[src]

Returns a mutable reference to the position of the mouse/

Returns None if self is not a mouse event.

pub fn relativize<V>(&mut self, top_left: V) where
    V: Into<Vec2>, 
[src]

Update self with the given offset.

If self is a mouse event, adds top_left to its offset. Otherwise, do nothing.

pub fn relativized<V>(&self, top_left: V) -> Self where
    V: Into<Vec2>, 
[src]

Returns a cloned, relativized event.

If self is a mouse event, adds top_left to its offset. Otherwise, returns a simple clone.

Trait Implementations

impl Clone for Event[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl From<Event> for EventTrigger[src]

impl From<char> for Event[src]

impl From<Key> for Event[src]

impl PartialEq<Event> for Event[src]

impl Eq for Event[src]

impl Debug for Event[src]

impl Hash for Event[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Sync for Event

impl Send for Event

impl Unpin for Event

impl RefUnwindSafe for Event

impl UnwindSafe for Event

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T[src]