ttx 0.1.0
Loading...
Searching...
No Matches
key_bind.h
Go to the documentation of this file.
1#pragma once
2
3#include "action.h"
4#include "di/reflect/prelude.h"
5#include "input_mode.h"
6#include "ttx/key.h"
7#include "ttx/modifiers.h"
8
9namespace ttx {
10struct KeyBind {
11 constexpr auto is_default() const -> bool { return key == Key::None; }
12
15 InputMode mode { InputMode::Normal }; // Mode required for the bind to match.
16 InputMode next_mode { InputMode::Insert }; // Mode key binding will transition to next.
18
19 constexpr friend auto tag_invoke(di::Tag<di::reflect>, di::InPlaceType<KeyBind>) {
20 return di::make_fields<"KeyBind">(di::field<"key", &KeyBind::key>, di::field<"modifiers", &KeyBind::modifiers>,
21 di::field<"mode", &KeyBind::mode>,
22 di::field<"next_mode", &KeyBind::next_mode>,
23 di::field<"action", &KeyBind::action>);
24 }
25};
26
27auto make_key_binds(Key prefix, di::Path save_state_path, bool replay_mode) -> di::Vector<KeyBind>;
28}
Definition cursor_style.h:5
InputMode
Definition input_mode.h:6
@ Normal
Definition input_mode.h:8
@ Insert
Definition input_mode.h:7
Modifiers
Definition modifiers.h:9
@ None
Definition modifiers.h:10
Key
Definition key.h:8
@ None
Definition key.h:9
auto make_key_binds(Key prefix, di::Path save_state_path, bool replay_mode) -> di::Vector< KeyBind >
Definition key_bind.cpp:102
Definition action.h:16
Definition key_bind.h:10
Action action
Definition key_bind.h:17
Key key
Definition key_bind.h:13
Modifiers modifiers
Definition key_bind.h:14
InputMode mode
Definition key_bind.h:15
constexpr auto is_default() const -> bool
Definition key_bind.h:11
constexpr friend auto tag_invoke(di::Tag< di::reflect >, di::InPlaceType< KeyBind >)
Definition key_bind.h:19
InputMode next_mode
Definition key_bind.h:16