pub type NcInput = ncinput;Expand description
Reads and decodes input events.
Reads from stdin and decodes the input to stdout, including synthesized events and mouse events. Notcurses provides input from keyboards and mice.
Single Unicode codepoints are received from the keyboard, directly encoded
as u32.
All events carry an NcInput structure with them.
For mouse events, the x and y coordinates are reported within this struct. For all events, modifiers (e.g. “Alt”) are carried as bools in this struct.
Aliased Type§
#[repr(C)]pub struct NcInput {
pub id: u32,
pub y: i32,
pub x: i32,
pub utf8: [i8; 5],
pub alt: bool,
pub shift: bool,
pub ctrl: bool,
pub evtype: u32,
pub modifiers: u32,
pub ypx: i32,
pub xpx: i32,
pub eff_text: [u32; 4],
}Fields§
§id: u32Unicode codepoint or synthesized NCKEY event
y: i32y/x cell coordinate of event, -1 for undefined
x: i32y/x cell coordinate of event, -1 for undefined
utf8: [i8; 5]utf8 representation, if one exists
alt: boolwas alt held?
shift: boolwas shift held?
ctrl: boolwas ctrl held?
evtype: u32END DEPRECATION
modifiers: u32bitmask over NCKEY_MOD_*
ypx: i32pixel offsets within cell, -1 for undefined
xpx: i32pixel offsets within cell, -1 for undefined
eff_text: [u32; 4]Effective
Implementations§
Source§impl NcInput
§Constructors
impl NcInput
§Constructors
Sourcepub fn with_shift(id: char) -> NcInput
pub fn with_shift(id: char) -> NcInput
New NcInput with shift key.
Sourcepub fn with_all_args(
id: char,
x: Option<u32>,
y: Option<u32>,
modifiers: NcKeyMod,
evtype: NcInputType,
) -> NcInput
pub fn with_all_args( id: char, x: Option<u32>, y: Option<u32>, modifiers: NcKeyMod, evtype: NcInputType, ) -> NcInput
New NcInput, expecting all the arguments (except utf8).
Source§impl NcInput
§Methods
impl NcInput
§Methods
Sourcepub fn nomod_p(&self) -> bool
pub fn nomod_p(&self) -> bool
Returns true if there are no modifiers present.
C style function: ncinput_nomod_p().
Sourcepub fn shift_p(&self) -> bool
pub fn shift_p(&self) -> bool
Returns true if the Shift modifier is present.
C style function: ncinput_shift_p().
Sourcepub fn alt_p(&self) -> bool
pub fn alt_p(&self) -> bool
Returns true if the Alt modifier is present.
C style function: ncinput_alt_p().
Sourcepub fn ctrl_p(&self) -> bool
pub fn ctrl_p(&self) -> bool
Returns true if the Ctrl modifier is present.
C style function: ncinput_ctrl_p().
Sourcepub fn meta_p(&self) -> bool
pub fn meta_p(&self) -> bool
Returns true if the Meta modifier is present.
C style function: ncinput_meta_p().
Sourcepub fn super_p(&self) -> bool
pub fn super_p(&self) -> bool
Returns true if the Super modifier is present.
C style function: ncinput_super_p().
Sourcepub fn hyper_p(&self) -> bool
pub fn hyper_p(&self) -> bool
Returns true if the Hyper modifier is present.
C style function: ncinput_hyper_p().
Sourcepub fn capslock_p(&self) -> bool
pub fn capslock_p(&self) -> bool
Returns true if the CapsLock modifier is present.
C style function: ncinput_capslock_p().
Sourcepub fn numlock_p(&self) -> bool
pub fn numlock_p(&self) -> bool
Returns true if the NumLock modifier is present.
C style function: ncinput_numlock_p().
Sourcepub fn equal_p(&self, other: &NcInput) -> bool
pub fn equal_p(&self, other: &NcInput) -> bool
Returns true if both NcInputs are equal.
C style function: ncinput_equal_p().