semtext/input/
mod.rs

1// input/mod.rs
2//
3// Copyright (c) 2020-2021  Douglas P Lau
4//
5//! Keyboard and mouse input handling
6
7mod action;
8mod event;
9
10pub use action::{Action, KeyMap};
11pub(crate) use event::Event;
12pub use event::{
13    FocusEvent, FunKey, KeyPress, ModKeys, MouseButton, MouseEvent, NavKey,
14};