36 lines
954 B
Rust
36 lines
954 B
Rust
|
extern crate termion;
|
||
|
|
||
|
fn main() {
|
||
|
use termion::{TermRead, TermWrite, IntoRawMode, Key, Event};
|
||
|
use std::io::{Write, stdout, stdin};
|
||
|
|
||
|
let stdin = stdin();
|
||
|
let mut stdout = stdout().into_raw_mode().unwrap();
|
||
|
|
||
|
stdout.clear().unwrap();
|
||
|
stdout.goto(0, 0).unwrap();
|
||
|
stdout.write(b"q to exit. Type stuff, use alt, click around...").unwrap();
|
||
|
stdout.flush().unwrap();
|
||
|
|
||
|
let mut x = 0;
|
||
|
let mut y = 0;
|
||
|
|
||
|
for c in stdin.events() {
|
||
|
stdout.goto(5, 5).unwrap();
|
||
|
stdout.clear_line().unwrap();
|
||
|
match c.unwrap() {
|
||
|
Event::KeyEvent(Key::Char('q')) => break,
|
||
|
Event::MouseEvent(val, a, b) => {
|
||
|
x = a;
|
||
|
y = b;
|
||
|
println!("{:?}", Event::MouseEvent(val, a, b));
|
||
|
},
|
||
|
val => println!("{:?}", val),
|
||
|
}
|
||
|
stdout.goto(x, y).unwrap();
|
||
|
stdout.flush().unwrap();
|
||
|
}
|
||
|
|
||
|
stdout.show_cursor().unwrap();
|
||
|
}
|