ttx 0.1.0
Loading...
Searching...
No Matches
input_mode.h
Go to the documentation of this file.
1#pragma once
2
3#include "di/reflect/prelude.h"
4
5namespace ttx {
6enum class InputMode {
7 Insert, // Default mode - sends keys to active pane.
8 Normal, // Normal mode - waiting for key after pressing the prefix key.
9 Switch, // Switch mode - only a subset of keys will be handled by ttx, for moving.
10 Resize, // Resize mode - only a subset of keys will be handled by ttx, for resizing panes.
11};
12
13constexpr auto tag_invoke(di::Tag<di::reflect>, di::InPlaceType<InputMode>) {
14 using enum InputMode;
15 return di::make_enumerators<"InputMode">(di::enumerator<"INSERT", Insert>, di::enumerator<"NORMAL", Normal>,
16 di::enumerator<"SWITCH", Switch>, di::enumerator<"RESIZE", Resize>);
17}
18}
Definition cursor_style.h:5
@ Normal
Definition graphics_rendition.h:65
InputMode
Definition input_mode.h:6
@ Resize
Definition input_mode.h:10
@ Switch
Definition input_mode.h:9
@ Insert
Definition key.h:67
constexpr auto tag_invoke(di::Tag< di::reflect >, di::InPlaceType< CursorStyle >)
Definition cursor_style.h:16