1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-12-20 18:11:36 +03:00
kakoune/src/keymap_manager.hh

54 lines
1.0 KiB
C++
Raw Normal View History

2013-10-25 03:01:17 +04:00
#ifndef keymap_manager_hh_INCLUDED
#define keymap_manager_hh_INCLUDED
#include "keys.hh"
#include "hash.hh"
#include "unordered_map.hh"
2013-10-25 03:01:17 +04:00
2014-11-13 00:27:07 +03:00
#include <vector>
2013-10-25 03:01:17 +04:00
namespace Kakoune
{
enum class KeymapMode : int
{
None,
Normal,
Insert,
Prompt,
Menu,
Goto,
View,
User,
2013-10-25 03:01:17 +04:00
};
2015-01-06 16:40:56 +03:00
template<typename T> class ArrayView;
2014-11-13 00:27:07 +03:00
2013-10-25 03:01:17 +04:00
class KeymapManager
{
public:
KeymapManager(KeymapManager& parent) : m_parent(&parent) {}
using KeyList = std::vector<Key>;
void map_key(Key key, KeymapMode mode, KeyList mapping);
2013-10-25 03:01:17 +04:00
void unmap_key(Key key, KeymapMode mode);
bool is_mapped(Key key, KeymapMode mode) const;
2015-01-06 16:40:56 +03:00
ArrayView<Key> get_mapping(Key key, KeymapMode mode) const;
2013-10-25 03:01:17 +04:00
private:
KeymapManager()
: m_parent(nullptr) {}
// the only one allowed to construct a root map manager
friend class Scope;
2013-10-25 03:01:17 +04:00
KeymapManager* m_parent;
using KeyAndMode = std::pair<Key, KeymapMode>;
using Keymap = UnorderedMap<KeyAndMode, KeyList>;
2013-10-25 03:01:17 +04:00
Keymap m_mapping;
};
}
#endif // keymap_manager_hh_INCLUDED