notcurses/rust/examples/direct-cursor.rs

48 lines
1.1 KiB
Rust
Raw Normal View History

2020-11-16 22:53:07 +00:00
//! Example 'direct-cursor'
//!
//! Explore cursor functions in direct mode
//!
use libnotcurses_sys::*;
fn main() -> NcResult<()> {
unsafe {
2020-11-16 22:53:07 +00:00
let ncd = NcDirect::new();
2020-11-16 22:53:07 +00:00
let cols = ncdirect_dim_x(ncd);
let rows = ncdirect_dim_y(ncd);
2020-09-21 18:03:18 +00:00
println!("terminal size (rows, cols): {}, {}", rows, cols);
ncd.putstr(0, "The current coordinates are")?;
ncd.flush()?;
for _n in 0..20 {
ncd.putstr(0, ".")?;
ncd.flush()?;
sleep![50];
}
2020-09-21 18:03:18 +00:00
if let Some((cy, cx)) = ncd.cursor_yx() {
ncd.putstr(0, &format!(" ({},{})\n", cy, cx))?;
}
sleep![1000];
let sentence = vec!["And", "now", "I", "will", "clear", "the", "screen", ".", ".", "."];
for word in sentence {
ncd.putstr(0, &format!["{} ", word])?;
ncd.flush()?;
sleep![200];
}
sleep![300];
ncd.putstr(0, "\nbye!\n\n")?;
ncd.flush()?;
sleep![600];
2020-09-21 18:03:18 +00:00
ncd.clear()?;
sleep![1000];
ncd.stop()?;
}
Ok(())
}