|
enum class | CursorStyle {
BlinkingBlock = 1
, SteadyBlock = 2
, BlinkingUnderline = 3
, SteadyUnderline = 4
,
BlinkingBar = 5
, SteadyBar = 6
, Max
} |
|
enum class | Direction { None
, Horizontal
, Vertical
} |
|
enum class | FocusEventMode { Disabled
, Enabled
} |
|
enum class | BlinkMode : u8 { None
, Normal
, Rapid
} |
|
enum class | FontWeight : u8 { None
, Bold
, Dim
} |
|
enum class | UnderlineMode : u8 {
None = 0
, Normal = 1
, Double = 2
, Curly = 3
,
Dotted = 4
, Dashed = 5
} |
|
enum class | Key {
None
, A
, B
, C
,
D
, E
, F
, G
,
H
, I
, J
, K
,
L
, M
, N
, O
,
P
, Q
, R
, S
,
T
, U
, V
, W
,
X
, Y
, Z
, _0
,
_1
, _2
, _3
, _4
,
_5
, _6
, _7
, _8
,
_9
, Backtick
, Minus
, Equal
,
Star
, Plus
, LeftBracket
, RightBracket
,
BackSlash
, SemiColon
, Quote
, Comma
,
Period
, Slash
, Escape
, Enter
,
Tab
, Backspace
, Space
, Insert
,
Delete
, Left
, Right
, Up
,
Down
, PageUp
, PageDown
, Home
,
End
, CapsLock
, ScrollLock
, NumLock
,
PrintScreen
, Pause
, Menu
, F1
,
F2
, F3
, F4
, F5
,
F6
, F7
, F8
, F9
,
F10
, F11
, F12
, F13
,
F14
, F15
, F16
, F17
,
F18
, F19
, F20
, F21
,
F22
, F23
, F24
, F25
,
F26
, F27
, F28
, F29
,
F30
, F31
, F32
, F33
,
F34
, F35
, KeyPad0
, KeyPad1
,
KeyPad2
, KeyPad3
, KeyPad4
, KeyPad5
,
KeyPad6
, KeyPad7
, KeyPad8
, KeyPad9
,
KeyPadDecimal
, KeyPadDivide
, KeyPadMultiply
, KeyPadSubtract
,
KeyPadAdd
, KeyPadEnter
, KeyPadEqual
, KeyPadSeparator
,
KeyPadLeft
, KeyPadRight
, KeyPadUp
, KeyPadDown
,
KeyPadPageUp
, KeyPadPageDown
, KeyPadHome
, KeyPadEnd
,
KeyPadInsert
, KeyPadDelete
, KeyPadBegin
, MediaPlay
,
MediaPause
, MediaPlayPause
, MediaReverse
, MediaStop
,
MediaFastForward
, MediaRewind
, MediaTrackNext
, MediaTrackPrevious
,
MediaRecord
, LowerVolume
, RaiseVolume
, MuteVolume
,
ModifiersBegin
, LeftShift
, LeftControl
, LeftAlt
,
LeftSuper
, LeftHyper
, LeftMeta
, RightShift
,
RightControl
, RightAlt
, RightSuper
, RightHyper
,
RightMeta
, IsoLevel3Shift
, IsoLevel5Shift
, ModifiersEnd
,
KeyMax
} |
|
enum class | KeyEventType { Press = 1
, Repeat = 2
, Release = 3
} |
|
enum class | ApplicationCursorKeysMode { Disabled
, Enabled
} |
|
enum class | KeyReportingFlags {
None = 0
, Disambiguate = 1 << 0
, ReportEventTypes = 1 << 1
, ReportAlternateKeys = 1 << 2
,
ReportAllKeysAsEscapeCodes = 1 << 3
, ReportAssociatedText = 1 << 4
, All = Disambiguate | ReportEventTypes | ReportAlternateKeys | ReportAllKeysAsEscapeCodes | ReportAssociatedText
} |
|
enum class | ResizeDirection { Left
, Right
, Top
, Bottom
} |
|
enum class | Modifiers {
None = 0
, Shift = 1 << 0
, Alt = 1 << 1
, Control = 1 << 2
,
Super = 1 << 3
, Hyper = 1 << 4
, Meta = 1 << 5
, CapsLock = 1 << 6
,
NumLock = 1 << 7
, LockModifiers = CapsLock | NumLock
} |
|
enum class | MouseButton {
None = 0
, Left = 1 << 0
, Middle = 1 << 1
, Right = 1 << 2
,
ScrollUp = 1 << 3
, ScrollDown = 1 << 4
, ScrollLeft = 1 << 5
, ScrollRight = 1 << 6
,
_8 = 1 << 7
, _9 = 1 << 8
, _10 = 1 << 9
, _11 = 1 << 10
,
HorizontalScrollButtons = ScrollRight | ScrollLeft
, VerticalScrollButtons = ScrollUp | ScrollDown
, ScrollButtons = HorizontalScrollButtons | VerticalScrollButtons
} |
|
enum class | MouseEventType { Press = 1
, Move = 2
, Release = 3
} |
|
enum class | AlternateScrollMode { Disabled
, Enabled
} |
|
enum class | MouseProtocol {
None = 0
, X10 = 9
, VT200 = 1000
, BtnEvent = 1002
,
AnyEvent = 1003
} |
|
enum class | MouseEncoding {
X10 = 9
, UTF8 = 1005
, SGR = 1006
, URXVT = 1015
,
SGRPixels = 1016
} |
|
enum class | BracketedPasteMode { Disabled
, Enabled
} |
|
enum class | ColorType { Fg
, Bg
, Underine
} |
|
enum class | InputMode { Insert
, Normal
, Switch
, Resize
} |
|
enum class | NavigateDirection { Left
, Right
, Up
, Down
} |
|
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< CursorStyle >) |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< Direction >) |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< FocusEventMode >) |
|
auto | serialize_focus_event (FocusEvent const &focus_event, FocusEventMode mode) -> di::Optional< di::String > |
|
auto | focus_event_from_csi (CSI const &csi) -> di::Optional< FocusEvent > |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< Color::Palette >) |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< BlinkMode >) |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< FontWeight >) |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< UnderlineMode >) |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< Key >) |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< KeyEventType >) |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< ApplicationCursorKeysMode >) |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< KeyReportingFlags >) |
|
auto | serialize_key_event (KeyEvent const &event, ApplicationCursorKeysMode cursor_key_mode, KeyReportingFlags flags) -> di::Optional< di::String > |
|
auto | key_event_from_legacy_code_point (c32 code_point, Modifiers base_modifiers=Modifiers::None) -> KeyEvent |
|
auto | key_event_from_csi (CSI const &csi) -> di::Optional< KeyEvent > |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< ResizeDirection >) |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< Modifiers >) |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< MouseButton >) |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< MouseEventType >) |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< AlternateScrollMode >) |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< MouseProtocol >) |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< MouseEncoding >) |
|
auto | serialize_mouse_event (MouseEvent const &event, MouseProtocol protocol, MouseEncoding encoding, di::Optional< MousePosition > prev_event_position, MouseScrollProtocol const &scroll_protocol, dius::tty::WindowSize const &window_size) -> di::Optional< di::TransparentString > |
|
auto | mouse_event_from_csi (CSI const &csi, di::Optional< dius::tty::WindowSize > window_size_if_using_pixels={}) -> di::Optional< MouseEvent > |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< BracketedPasteMode >) |
|
auto | serialize_paste_event (PasteEvent const &event, BracketedPasteMode mode) -> di::String |
|
auto | is_bracketed_paste_begin (CSI const &csi) -> bool |
|
| STATE (ground) |
|
| STATE (escape) |
|
| STATE (escape_intermediate) |
|
| STATE (csi_entry) |
|
| STATE (csi_intermediate) |
|
| STATE (csi_param) |
|
| STATE (csi_ignore) |
|
| STATE (dcs_entry) |
|
| STATE (dcs_param) |
|
| STATE (dcs_intermediate) |
|
| STATE (dcs_passthrough) |
|
| STATE (dcs_ignore) |
|
| STATE (osc_string) |
|
| STATE (apc_string) |
|
| STATE (sos_pm_string) |
|
| STATE (ss3) |
|
auto | enter_normal_mode () -> Action |
|
auto | reset_mode () -> Action |
|
auto | navigate (NavigateDirection direction) -> Action |
|
auto | resize (ResizeDirection direction, i32 amount_in_cells) -> Action |
|
auto | create_tab () -> Action |
|
auto | switch_tab (usize index) -> Action |
|
auto | quit () -> Action |
|
auto | save_state (di::Path path) -> Action |
|
auto | stop_capture () -> Action |
|
auto | exit_pane () -> Action |
|
auto | add_pane (Direction direction) -> Action |
|
auto | scroll (Direction direction, i32 amount_in_cells) -> Action |
|
auto | send_to_pane () -> Action |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< InputMode >) |
|
auto | make_key_binds (Key prefix, di::Path save_state_path, bool replay_mode) -> di::Vector< KeyBind > |
|
constexpr auto | tag_invoke (di::Tag< di::reflect >, di::InPlaceType< NavigateDirection >) |
|