summaryrefslogtreecommitdiff
path: root/src/keymap_manager.hh
blob: caf4174ab842bc4d03b7422ba08d94244ad256c1 (plain)
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
#ifndef keymap_manager_hh_INCLUDED
#define keymap_manager_hh_INCLUDED

#include "keys.hh"
#include "utils.hh"

#include <unordered_map>

namespace Kakoune
{

enum class KeymapMode : int
{
    None,
    Normal,
    Insert,
    Prompt,
    Menu
};

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 GlobalKeymaps;

    KeymapManager* m_parent;

    using Keymap = std::unordered_map<std::pair<Key, KeymapMode>, std::vector<Key>>;
    Keymap m_mapping;
};

class GlobalKeymaps : public KeymapManager,
                      public Singleton<GlobalKeymaps>
{
};

}

#endif // keymap_manager_hh_INCLUDED