Trait libnotcurses_sys::NcMiceEventsApi[][src]

pub trait NcMiceEventsApi {
    const NO_EVENTS: NcMiceEvents;
    const MOVE_EVENTS: NcMiceEvents;
    const BUTTON_EVENTS: NcMiceEvents;
    const DRAG_EVENTS: NcMiceEvents;
    const ALL_EVENTS: NcMiceEvents;
}
Expand description

Enables the NcMiceEvents associated methods and constants.

Associated Constants

NcMiceEvents flag that disables all mice events.

NcMiceEvents flag that enables mice move events.

NcMiceEvents flag that enables mice button events.

NcMiceEvents flag that enables mice drag events.

NcMiceEvents flag that enables all mice tracking events.

Implementors