1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#ifndef keymap_manager_hh_INCLUDED
#define keymap_manager_hh_INCLUDED
#include "keys.hh"
#include "utils.hh"
#include <unordered_map>
#include <vector>
namespace Kakoune
{
enum class KeymapMode : int
{
None,
Normal,
Insert,
Prompt,
Menu,
Goto,
View,
};
template<typename T> class memoryview;
class KeymapManager
{
public:
KeymapManager(KeymapManager& parent) : m_parent(&parent) {}
void map_key(Key key, KeymapMode mode, std::vector<Key> mapping);
void unmap_key(Key key, KeymapMode mode);
bool is_mapped(Key key, KeymapMode mode) const;
memoryview<Key> get_mapping(Key key, KeymapMode mode) const;
private:
KeymapManager()
: m_parent(nullptr) {}
// the only one allowed to construct a root map manager
friend class Scope;
KeymapManager* m_parent;
using KeyList = std::vector<Key>;
using Keymap = std::unordered_map<std::pair<Key, KeymapMode>, KeyList>;
Keymap m_mapping;
};
}
#endif // keymap_manager_hh_INCLUDED
|