semtext 0.1.0

Terminal UI Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// input/mod.rs
//
// Copyright (c) 2020-2021  Douglas P Lau
//
//! Keyboard and mouse input handling

mod action;
mod event;

pub use action::{Action, KeyMap};
pub(crate) use event::Event;
pub use event::{
    FocusEvent, FunKey, KeyPress, ModKeys, MouseButton, MouseEvent, NavKey,
};