pub const NEXT: &str = "next";
pub const DOWN: &str = "down";
pub const PREV: &str = "prev";
pub const UP: &str = "up";
pub const FIRST: &str = "first";
pub const HOME: &str = "home";
pub const LAST: &str = "last";
pub const END: &str = "end";
pub const LEFT: &str = "left";
pub const RIGHT: &str = "right";
pub const TOGGLE: &str = "toggle";
pub const SELECT: &str = "select";
pub const CONFIRM: &str = "confirm";
pub const PAGE_DOWN: &str = "page_down";
pub const PAGE_UP: &str = "page_up";
pub const SUBMIT: &str = "submit";
pub const CANCEL: &str = "cancel";
pub mod text_input {
pub use super::{CANCEL, SUBMIT};
pub const MOVE_BACKWARD: &str = "move_backward";
pub const MOVE_FORWARD: &str = "move_forward";
pub const MOVE_WORD_BACKWARD: &str = "move_word_backward";
pub const MOVE_WORD_FORWARD: &str = "move_word_forward";
pub const MOVE_HOME: &str = "move_home";
pub const MOVE_END: &str = "move_end";
pub const DELETE_BACKWARD: &str = "delete_backward";
pub const DELETE_FORWARD: &str = "delete_forward";
pub const DELETE_WORD_BACKWARD: &str = "delete_word_backward";
pub const DELETE_WORD_FORWARD: &str = "delete_word_forward";
pub const MOVE_LEFT: &str = "move_left";
pub const MOVE_RIGHT: &str = "move_right";
pub const MOVE_WORD_LEFT: &str = "move_word_left";
pub const MOVE_WORD_RIGHT: &str = "move_word_right";
pub const DELETE_LEFT: &str = "delete_left";
pub const DELETE_RIGHT: &str = "delete_right";
pub const DELETE_WORD_LEFT: &str = "delete_word_left";
pub const DELETE_WORD_RIGHT: &str = "delete_word_right";
}