/// A mask that can be used to track all mouse events.
pub const MOUSE_EVENT_MASK: u32 =
ALL_MOUSE_EVENTS | REPORT_MOUSE_POSITION;
/// A sequence of escape codes to enable terminal mouse support.
/// We use this directly instead of using `MouseTerminal` from termion.
pub const ENABLE_MOUSE_CAPTURE: &str = "\x1B[?1002h";
/// A sequence of escape codes to disable terminal mouse support.
/// We use this directly instead of using `MouseTerminal` from termion.
pub const DISABLE_MOUSE_CAPTURE: &str = "\x1B[?1002l";