2015-05-15 19:16:58 +00:00
|
|
|
//! User-input events and their effects.
|
|
|
|
|
2015-05-28 01:04:33 +00:00
|
|
|
use std::fmt;
|
2015-05-15 00:41:17 +00:00
|
|
|
use std::rc::Rc;
|
|
|
|
|
2015-05-28 01:04:33 +00:00
|
|
|
use ncurses;
|
|
|
|
|
2016-03-15 22:37:57 +00:00
|
|
|
use Cursive;
|
2015-05-16 00:56:38 +00:00
|
|
|
|
2015-05-15 00:41:17 +00:00
|
|
|
/// Callback is a function that can be triggered by an event.
|
|
|
|
/// It has a mutable access to the cursive root.
|
2015-05-24 00:07:22 +00:00
|
|
|
pub type Callback = Box<Fn(&mut Cursive)>;
|
2015-05-15 00:41:17 +00:00
|
|
|
|
|
|
|
/// Answer to an event notification.
|
|
|
|
/// The event can be consumed or ignored.
|
|
|
|
pub enum EventResult {
|
|
|
|
/// The event was ignored. The parent can keep handling it.
|
|
|
|
Ignored,
|
|
|
|
/// The event was consumed. An optionnal callback to run is attached.
|
2015-05-24 00:07:22 +00:00
|
|
|
Consumed(Option<Rc<Callback>>),
|
2015-05-19 02:41:35 +00:00
|
|
|
}
|
2015-05-28 01:04:33 +00:00
|
|
|
|
2015-06-08 22:38:10 +00:00
|
|
|
/// Represents a key, or a combination of keys.
|
2015-05-28 01:04:33 +00:00
|
|
|
#[derive(PartialEq,Eq,Clone,Copy,Hash)]
|
|
|
|
pub enum Key {
|
2015-05-28 19:22:39 +00:00
|
|
|
/// Both Enter and numpad Enter
|
2015-05-28 01:04:33 +00:00
|
|
|
Enter,
|
2015-05-28 19:22:39 +00:00
|
|
|
/// Tabulation key
|
2015-05-28 05:21:23 +00:00
|
|
|
Tab,
|
2015-05-28 23:19:16 +00:00
|
|
|
ShiftTab,
|
2016-06-26 02:28:42 +00:00
|
|
|
Backspace,
|
|
|
|
|
2016-06-26 02:38:22 +00:00
|
|
|
/// Indicates the window was resized
|
|
|
|
///
|
|
|
|
/// (Not really a key)
|
|
|
|
Resize,
|
|
|
|
|
2016-06-26 02:28:42 +00:00
|
|
|
/// Escape key.
|
|
|
|
Esc,
|
|
|
|
/// The 5 in the center of the keypad, when numlock is disabled.
|
|
|
|
NumpadCenter,
|
|
|
|
|
2015-05-28 21:44:10 +00:00
|
|
|
Left,
|
2016-06-26 02:28:42 +00:00
|
|
|
/// Left arrow while shift is pressed.
|
|
|
|
ShiftLeft,
|
|
|
|
AltLeft,
|
|
|
|
AltShiftLeft,
|
|
|
|
CtrlLeft,
|
|
|
|
CtrlShiftLeft,
|
|
|
|
CtrlAltLeft,
|
|
|
|
|
2015-05-28 21:44:10 +00:00
|
|
|
Right,
|
2016-06-26 02:28:42 +00:00
|
|
|
/// Right arrow while shift is pressed.
|
|
|
|
ShiftRight,
|
|
|
|
AltRight,
|
|
|
|
AltShiftRight,
|
|
|
|
CtrlRight,
|
|
|
|
CtrlShiftRight,
|
|
|
|
CtrlAltRight,
|
|
|
|
|
2015-05-28 21:44:10 +00:00
|
|
|
Up,
|
2016-06-26 02:28:42 +00:00
|
|
|
ShiftUp,
|
|
|
|
AltUp,
|
|
|
|
AltShiftUp,
|
|
|
|
CtrlUp,
|
|
|
|
CtrlShiftUp,
|
|
|
|
CtrlAltUp,
|
|
|
|
|
2015-05-28 21:44:10 +00:00
|
|
|
Down,
|
2016-06-26 02:28:42 +00:00
|
|
|
ShiftDown,
|
|
|
|
AltDown,
|
|
|
|
AltShiftDown,
|
|
|
|
CtrlDown,
|
|
|
|
CtrlShiftDown,
|
|
|
|
CtrlAltDown,
|
|
|
|
|
2015-05-28 01:04:33 +00:00
|
|
|
PageUp,
|
2016-06-26 02:28:42 +00:00
|
|
|
ShiftPageUp,
|
|
|
|
AltPageUp,
|
|
|
|
AltShiftPageUp,
|
|
|
|
CtrlPageUp,
|
|
|
|
CtrlShiftPageUp,
|
|
|
|
CtrlAltPageUp,
|
|
|
|
|
2015-05-28 01:04:33 +00:00
|
|
|
PageDown,
|
2016-06-26 02:28:42 +00:00
|
|
|
ShiftPageDown,
|
|
|
|
AltPageDown,
|
|
|
|
AltShiftPageDown,
|
|
|
|
CtrlPageDown,
|
|
|
|
CtrlShiftPageDown,
|
|
|
|
CtrlAltPageDown,
|
|
|
|
|
2015-05-28 01:04:33 +00:00
|
|
|
Home,
|
2015-06-06 22:05:01 +00:00
|
|
|
ShiftHome,
|
2016-06-26 02:28:42 +00:00
|
|
|
AltHome,
|
|
|
|
AltShiftHome,
|
2015-06-01 17:49:43 +00:00
|
|
|
CtrlHome,
|
2015-06-06 22:05:01 +00:00
|
|
|
CtrlShiftHome,
|
2016-06-26 02:28:42 +00:00
|
|
|
CtrlAltHome,
|
|
|
|
|
2015-05-28 01:04:33 +00:00
|
|
|
End,
|
2015-06-06 22:05:01 +00:00
|
|
|
ShiftEnd,
|
2016-06-26 02:28:42 +00:00
|
|
|
AltEnd,
|
|
|
|
AltShiftEnd,
|
2015-06-01 17:49:43 +00:00
|
|
|
CtrlEnd,
|
2015-06-06 22:05:01 +00:00
|
|
|
CtrlShiftEnd,
|
2016-06-26 02:28:42 +00:00
|
|
|
CtrlAltEnd,
|
|
|
|
|
2015-05-28 19:22:39 +00:00
|
|
|
/// Delete key
|
2015-05-28 01:04:33 +00:00
|
|
|
Del,
|
2015-05-29 18:31:20 +00:00
|
|
|
ShiftDel,
|
2016-06-26 02:28:42 +00:00
|
|
|
AltDel,
|
|
|
|
AltShiftDel,
|
2015-05-29 18:31:20 +00:00
|
|
|
CtrlDel,
|
2015-06-06 22:05:01 +00:00
|
|
|
CtrlShiftDel,
|
2016-06-26 02:28:42 +00:00
|
|
|
|
2015-06-07 05:48:16 +00:00
|
|
|
/// Insert key.
|
2015-05-28 19:22:39 +00:00
|
|
|
Ins,
|
2015-06-07 05:48:16 +00:00
|
|
|
/// Insert key while ctrl is pressed.
|
2015-06-01 17:49:43 +00:00
|
|
|
CtrlIns,
|
2016-06-26 02:28:42 +00:00
|
|
|
AltIns,
|
|
|
|
CtrlAltIns,
|
|
|
|
|
2015-05-28 21:57:21 +00:00
|
|
|
F(u8),
|
2015-05-29 18:31:20 +00:00
|
|
|
ShiftF(u8),
|
2016-06-26 02:38:22 +00:00
|
|
|
AltF(u8),
|
|
|
|
CtrlF(u8),
|
2015-05-29 18:31:20 +00:00
|
|
|
CtrlShiftF(u8),
|
2015-05-28 21:44:10 +00:00
|
|
|
CtrlChar(char),
|
2015-05-28 01:04:33 +00:00
|
|
|
Unknown(i32),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Key {
|
2015-06-03 22:36:51 +00:00
|
|
|
/// Returns the Key enum corresponding to the given ncurses event.
|
2015-05-28 01:04:33 +00:00
|
|
|
pub fn from_ncurses(ch: i32) -> Self {
|
|
|
|
match ch {
|
2016-06-26 02:38:22 +00:00
|
|
|
// Values under 256 are chars and control values
|
|
|
|
|
2015-05-29 18:31:20 +00:00
|
|
|
// Tab is '\t'
|
2015-05-28 05:21:23 +00:00
|
|
|
9 => Key::Tab,
|
2015-05-29 18:31:20 +00:00
|
|
|
// Treat '\n' and the numpad Enter the same
|
2015-05-28 19:22:39 +00:00
|
|
|
10 | ncurses::KEY_ENTER => Key::Enter,
|
2015-05-29 18:31:20 +00:00
|
|
|
// This is the escape key when pressed by itself.
|
|
|
|
// When used for control sequences, it should have been caught earlier.
|
2015-05-28 20:49:13 +00:00
|
|
|
27 => Key::Esc,
|
2015-05-29 18:31:20 +00:00
|
|
|
// `Backspace` sends 127, but Ctrl-H sends `Backspace`
|
2015-05-28 21:44:10 +00:00
|
|
|
127 | ncurses::KEY_BACKSPACE => Key::Backspace,
|
2016-06-26 02:38:22 +00:00
|
|
|
|
|
|
|
410 => Key::Resize,
|
2016-06-26 02:28:42 +00:00
|
|
|
|
|
|
|
// Values 512 and above are probably extensions
|
2015-05-28 23:19:16 +00:00
|
|
|
// Those keys don't seem to be documented...
|
2016-06-26 02:28:42 +00:00
|
|
|
519 => Key::AltDel,
|
|
|
|
520 => Key::AltShiftDel,
|
|
|
|
521 => Key::CtrlDel,
|
|
|
|
522 => Key::CtrlShiftDel,
|
|
|
|
// 523: CtrlAltDel?
|
|
|
|
|
|
|
|
// 524?
|
|
|
|
|
|
|
|
525 => Key::AltDown,
|
|
|
|
526 => Key::AltShiftDown,
|
|
|
|
527 => Key::CtrlDown,
|
|
|
|
528 => Key::CtrlShiftDown,
|
|
|
|
529 => Key::CtrlAltDown,
|
|
|
|
|
|
|
|
530 => Key::AltEnd,
|
|
|
|
531 => Key::AltShiftEnd,
|
|
|
|
532 => Key::CtrlEnd,
|
|
|
|
533 => Key::CtrlShiftEnd,
|
|
|
|
534 => Key::CtrlAltEnd,
|
|
|
|
|
|
|
|
535 => Key::AltHome,
|
|
|
|
536 => Key::AltShiftHome,
|
|
|
|
537 => Key::CtrlHome,
|
|
|
|
538 => Key::CtrlShiftHome,
|
|
|
|
539 => Key::CtrlAltHome,
|
|
|
|
|
|
|
|
540 => Key::AltIns,
|
|
|
|
// 541: AltShiftIns?
|
|
|
|
542 => Key::CtrlIns,
|
|
|
|
// 543: CtrlShiftIns?
|
|
|
|
544 => Key::CtrlAltIns,
|
|
|
|
|
|
|
|
545 => Key::AltLeft,
|
|
|
|
546 => Key::AltShiftLeft,
|
|
|
|
547 => Key::CtrlLeft,
|
|
|
|
548 => Key::CtrlShiftLeft,
|
|
|
|
549 => Key::CtrlAltLeft,
|
|
|
|
|
|
|
|
550 => Key::AltPageDown,
|
|
|
|
551 => Key::AltShiftPageDown,
|
|
|
|
552 => Key::CtrlPageDown,
|
|
|
|
553 => Key::CtrlShiftPageDown,
|
|
|
|
554 => Key::CtrlAltPageDown,
|
|
|
|
|
|
|
|
555 => Key::AltPageUp,
|
|
|
|
556 => Key::AltShiftPageUp,
|
|
|
|
557 => Key::CtrlPageUp,
|
|
|
|
558 => Key::CtrlShiftPageUp,
|
|
|
|
559 => Key::CtrlAltPageUp,
|
|
|
|
|
|
|
|
560 => Key::AltRight,
|
|
|
|
561 => Key::AltShiftRight,
|
|
|
|
562 => Key::CtrlRight,
|
|
|
|
563 => Key::CtrlShiftRight,
|
|
|
|
564 => Key::CtrlAltRight,
|
|
|
|
// 565?
|
|
|
|
|
|
|
|
566 => Key::AltUp,
|
|
|
|
567 => Key::AltShiftUp,
|
|
|
|
568 => Key::CtrlUp,
|
|
|
|
569 => Key::CtrlShiftUp,
|
|
|
|
570 => Key::CtrlAltUp,
|
|
|
|
|
2015-06-07 05:48:16 +00:00
|
|
|
ncurses::KEY_B2 => Key::NumpadCenter,
|
2015-05-30 03:44:53 +00:00
|
|
|
ncurses::KEY_DC => Key::Del,
|
|
|
|
ncurses::KEY_IC => Key::Ins,
|
2015-05-28 23:19:16 +00:00
|
|
|
ncurses::KEY_BTAB => Key::ShiftTab,
|
2015-05-28 21:44:10 +00:00
|
|
|
ncurses::KEY_SLEFT => Key::ShiftLeft,
|
|
|
|
ncurses::KEY_SRIGHT => Key::ShiftRight,
|
|
|
|
ncurses::KEY_LEFT => Key::Left,
|
|
|
|
ncurses::KEY_RIGHT => Key::Right,
|
|
|
|
ncurses::KEY_UP => Key::Up,
|
|
|
|
ncurses::KEY_DOWN => Key::Down,
|
2015-06-07 05:48:16 +00:00
|
|
|
ncurses::KEY_SR => Key::ShiftUp,
|
|
|
|
ncurses::KEY_SF => Key::ShiftDown,
|
2015-05-28 01:04:33 +00:00
|
|
|
ncurses::KEY_PPAGE => Key::PageUp,
|
|
|
|
ncurses::KEY_NPAGE => Key::PageDown,
|
|
|
|
ncurses::KEY_HOME => Key::Home,
|
|
|
|
ncurses::KEY_END => Key::End,
|
2015-06-06 22:05:01 +00:00
|
|
|
ncurses::KEY_SHOME => Key::ShiftHome,
|
|
|
|
ncurses::KEY_SEND => Key::ShiftEnd,
|
2015-05-29 18:31:20 +00:00
|
|
|
ncurses::KEY_SDC => Key::ShiftDel,
|
2016-06-26 02:28:42 +00:00
|
|
|
ncurses::KEY_SNEXT => Key::ShiftPageDown,
|
|
|
|
ncurses::KEY_SPREVIOUS => Key::ShiftPageUp,
|
2015-05-29 18:31:20 +00:00
|
|
|
// All Fn keys use the same enum with associated number
|
2016-06-25 23:36:22 +00:00
|
|
|
f @ ncurses::KEY_F1...ncurses::KEY_F12 => Key::F((f - ncurses::KEY_F0) as u8),
|
2016-06-26 02:38:22 +00:00
|
|
|
f @ 277...288 => Key::ShiftF((f - 277) as u8),
|
|
|
|
f @ 289...300 => Key::CtrlF((f - 289) as u8),
|
|
|
|
f @ 301...312 => Key::CtrlShiftF((f - 300) as u8),
|
|
|
|
f @ 313...324 => Key::AltF((f - 313) as u8),
|
2015-05-29 18:31:20 +00:00
|
|
|
// Shift and Ctrl F{1-4} need escape sequences...
|
2016-03-15 22:37:57 +00:00
|
|
|
//
|
2015-05-29 18:31:20 +00:00
|
|
|
// TODO: shift and ctrl Fn keys
|
2015-05-28 23:19:16 +00:00
|
|
|
// Avoids 8-10 (H,I,J), they are used by other commands.
|
2016-06-25 23:36:22 +00:00
|
|
|
c @ 1...7 | c @ 11...25 => Key::CtrlChar(('a' as u8 + (c - 1) as u8) as char),
|
2015-05-28 01:04:33 +00:00
|
|
|
_ => Key::Unknown(ch),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for Key {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
match *self {
|
|
|
|
Key::Unknown(ch) => write!(f, "Unknown: {}", ch),
|
2015-05-28 21:44:10 +00:00
|
|
|
Key::CtrlChar(ch) => write!(f, "Ctrl-{}", ch),
|
2015-05-28 21:57:21 +00:00
|
|
|
Key::F(n) => write!(f, "F{}", n),
|
2015-05-29 18:31:20 +00:00
|
|
|
Key::ShiftF(n) => write!(f, "Shift-F{}", n),
|
2016-06-26 02:38:22 +00:00
|
|
|
Key::AltF(n) => write!(f, "Alt-F{}", n),
|
2015-05-29 18:31:20 +00:00
|
|
|
Key::CtrlF(n) => write!(f, "Ctrl-F{}", n),
|
|
|
|
Key::CtrlShiftF(n) => write!(f, "Ctrl-Shift-F{}", n),
|
2016-06-25 23:36:22 +00:00
|
|
|
key => {
|
|
|
|
write!(f,
|
|
|
|
"{}",
|
|
|
|
match key {
|
2016-06-26 02:38:22 +00:00
|
|
|
Key::Resize => "Screen resize",
|
2016-06-25 23:36:22 +00:00
|
|
|
Key::NumpadCenter => "Numpad center",
|
2016-06-26 02:28:42 +00:00
|
|
|
Key::Backspace => "Backspace",
|
|
|
|
Key::Enter => "Enter",
|
|
|
|
Key::Tab => "Tab",
|
|
|
|
Key::ShiftTab => "Shift-Tab",
|
|
|
|
|
|
|
|
Key::PageUp => "PageUp",
|
|
|
|
Key::ShiftPageUp => "Shift-PageUp",
|
|
|
|
Key::AltPageUp => "Alt-PageUp",
|
|
|
|
Key::AltShiftPageUp => "Alt-Shift-PageUp",
|
|
|
|
Key::CtrlPageUp => "Ctrl-PageUp",
|
|
|
|
Key::CtrlShiftPageUp => "Ctrl-Shift-PageUp",
|
|
|
|
Key::CtrlAltPageUp => "Ctrl-Alt-PageUp",
|
|
|
|
|
|
|
|
Key::PageDown => "PageDown",
|
|
|
|
Key::ShiftPageDown => "Shift-PageDown",
|
|
|
|
Key::AltPageDown => "Alt-PageDown",
|
|
|
|
Key::AltShiftPageDown => "Alt-Shift-PageDown",
|
|
|
|
Key::CtrlPageDown => "Ctrl-PageDown",
|
|
|
|
Key::CtrlShiftPageDown => "Ctrl-Shift-PageDown",
|
|
|
|
Key::CtrlAltPageDown => "Ctrl-Alt-PageDown",
|
|
|
|
|
2016-06-25 23:36:22 +00:00
|
|
|
Key::Left => "Left",
|
2016-06-26 02:28:42 +00:00
|
|
|
Key::ShiftLeft => "Shift-Left",
|
|
|
|
Key::AltLeft => "Alt-Left",
|
|
|
|
Key::AltShiftLeft => "Alt-Shift-Left",
|
|
|
|
Key::CtrlLeft => "Ctrl-Left",
|
2016-06-25 23:36:22 +00:00
|
|
|
Key::CtrlShiftLeft => "Ctrl-Shift-Left",
|
2016-06-26 02:28:42 +00:00
|
|
|
Key::CtrlAltLeft => "Ctrl-Alt-Left",
|
|
|
|
|
|
|
|
Key::Right => "Right",
|
|
|
|
Key::ShiftRight => "Shift-Right",
|
|
|
|
Key::AltRight => "Alt-Right",
|
|
|
|
Key::AltShiftRight => "Alt-Shift-Right",
|
|
|
|
Key::CtrlRight => "Ctrl-Right",
|
2016-06-25 23:36:22 +00:00
|
|
|
Key::CtrlShiftRight => "Ctrl-Shift-Right",
|
2016-06-26 02:28:42 +00:00
|
|
|
Key::CtrlAltRight => "Ctrl-Alt-Right",
|
|
|
|
|
|
|
|
Key::Down => "Down",
|
|
|
|
Key::ShiftDown => "Shift-Down",
|
|
|
|
Key::AltDown => "Alt-Down",
|
|
|
|
Key::AltShiftDown => "Alt-Shift-Down",
|
|
|
|
Key::CtrlDown => "Ctrl-Down",
|
2016-06-25 23:36:22 +00:00
|
|
|
Key::CtrlShiftDown => "Ctrl-Shift-Down",
|
2016-06-26 02:28:42 +00:00
|
|
|
Key::CtrlAltDown => "Ctrl-Alt-Down",
|
|
|
|
|
|
|
|
Key::Up => "Up",
|
2016-06-25 23:36:22 +00:00
|
|
|
Key::ShiftUp => "Shift-Up",
|
2016-06-26 02:28:42 +00:00
|
|
|
Key::AltUp => "Alt-Up",
|
|
|
|
Key::AltShiftUp => "Alt-Shift-Up",
|
|
|
|
Key::CtrlUp => "Ctrl-Up",
|
|
|
|
Key::CtrlShiftUp => "Ctrl-Shift-Up",
|
|
|
|
Key::CtrlAltUp => "Ctrl-Alt-Up",
|
|
|
|
|
|
|
|
Key::Del => "Del",
|
2016-06-25 23:36:22 +00:00
|
|
|
Key::ShiftDel => "Shift-Del",
|
2016-06-26 02:28:42 +00:00
|
|
|
Key::AltDel => "Alt-Del",
|
|
|
|
Key::AltShiftDel => "Alt-Shift-Del",
|
2016-06-25 23:36:22 +00:00
|
|
|
Key::CtrlDel => "Ctrl-Del",
|
|
|
|
Key::CtrlShiftDel => "Ctrl-Shift-Del",
|
2016-06-26 02:28:42 +00:00
|
|
|
|
2016-06-25 23:36:22 +00:00
|
|
|
Key::Home => "Home",
|
|
|
|
Key::ShiftHome => "Shift-Home",
|
2016-06-26 02:28:42 +00:00
|
|
|
Key::AltHome => "Alt-Home",
|
|
|
|
Key::AltShiftHome => "Alt-Shift-Home",
|
2016-06-25 23:36:22 +00:00
|
|
|
Key::CtrlHome => "Ctrl-Home",
|
|
|
|
Key::CtrlShiftHome => "Ctrl-Shift-Home",
|
2016-06-26 02:28:42 +00:00
|
|
|
Key::CtrlAltHome => "Ctrl-Alt-Home",
|
|
|
|
|
2016-06-25 23:36:22 +00:00
|
|
|
Key::End => "End",
|
|
|
|
Key::ShiftEnd => "Shift-End",
|
2016-06-26 02:28:42 +00:00
|
|
|
Key::AltEnd => "Alt-End",
|
|
|
|
Key::AltShiftEnd => "Alt-Shift-End",
|
2016-06-25 23:36:22 +00:00
|
|
|
Key::CtrlEnd => "Ctrl-End",
|
|
|
|
Key::CtrlShiftEnd => "Ctrl-Shift-End",
|
2016-06-26 02:28:42 +00:00
|
|
|
Key::CtrlAltEnd => "Ctrl-Alt-End",
|
|
|
|
|
2016-06-25 23:36:22 +00:00
|
|
|
Key::Ins => "Ins",
|
2016-06-26 02:28:42 +00:00
|
|
|
Key::AltIns => "Alt-Ins",
|
2016-06-25 23:36:22 +00:00
|
|
|
Key::CtrlIns => "Ctrl-Ins",
|
2016-06-26 02:28:42 +00:00
|
|
|
Key::CtrlAltIns => "Ctrl-Alt-Ins",
|
|
|
|
|
2016-06-25 23:36:22 +00:00
|
|
|
Key::Esc => "Esc",
|
|
|
|
_ => "Missing key label",
|
|
|
|
})
|
|
|
|
}
|
2015-05-28 01:04:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-08 22:38:10 +00:00
|
|
|
/// Represents an event as seen by the application.
|
|
|
|
///
|
2015-05-28 01:04:33 +00:00
|
|
|
#[derive(PartialEq,Eq,Clone,Copy,Hash)]
|
|
|
|
pub enum Event {
|
2015-06-08 22:38:10 +00:00
|
|
|
/// A text character was entered.
|
2015-05-28 01:04:33 +00:00
|
|
|
CharEvent(char),
|
2015-06-08 22:38:10 +00:00
|
|
|
/// A key was pressed.
|
2015-05-28 01:04:33 +00:00
|
|
|
KeyEvent(Key),
|
|
|
|
}
|
|
|
|
|
2015-06-03 22:36:51 +00:00
|
|
|
/// Generic trait to convert a value to an event.
|
2015-05-28 01:04:33 +00:00
|
|
|
pub trait ToEvent {
|
|
|
|
fn to_event(self) -> Event;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToEvent for char {
|
|
|
|
fn to_event(self) -> Event {
|
|
|
|
Event::CharEvent(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToEvent for Key {
|
|
|
|
fn to_event(self) -> Event {
|
|
|
|
Event::KeyEvent(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToEvent for Event {
|
|
|
|
fn to_event(self) -> Event {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|