mirror of
https://github.com/dankamongmen/notcurses
synced 2025-03-11 10:09:03 -04:00
- make char: all NCKEY_* constants. - make const fn: nckey_mouse_p, ncinput_equal_p & NcInput::new. - make rsleep!() return the notcurses_render() result. - new Notcurses constructor with_flags(). - new example: full-input.rs. - fix comments.
43 lines
855 B
Rust
43 lines
855 B
Rust
//! Input
|
|
//!
|
|
//! https://github.com/dankamongmen/notcurses/blob/master/USAGE.md#input
|
|
//!
|
|
|
|
use libnotcurses_sys::*;
|
|
|
|
fn main() {
|
|
let nc = Notcurses::with_flags(
|
|
NCOPTION_SUPPRESS_BANNERS
|
|
| NCOPTION_NO_WINCH_SIGHANDLER
|
|
| NCOPTION_NO_QUIT_SIGHANDLERS
|
|
);
|
|
|
|
// doesn't seem to be necessary:
|
|
// let ready = unsafe { notcurses_inputready_fd(nc) };
|
|
// println!("{}", ready);
|
|
|
|
println!("Exit with F1\n");
|
|
|
|
let mut input = NcInput::new();
|
|
|
|
loop {
|
|
let key = notcurses_getc_nblock(nc, &mut input);
|
|
|
|
if key as i32 != -1 {
|
|
println!("'{0}' ({1:x})\n{2:?}", key, key as u32, input);
|
|
}
|
|
|
|
rsleep![nc, 100];
|
|
|
|
match key {
|
|
NCKEY_F01 => break,
|
|
_ => (),
|
|
}
|
|
}
|
|
|
|
println!("\nExiting...");
|
|
|
|
rsleep![nc, 1000];
|
|
nc.stop();
|
|
}
|