2013-10-25 01:01:17 +02:00
|
|
|
#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,
|
2014-09-23 14:45:18 +02:00
|
|
|
Menu,
|
|
|
|
Goto,
|
|
|
|
View,
|
2013-10-25 01:01:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
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
|
2014-10-30 15:00:42 +01:00
|
|
|
friend class Scope;
|
2013-10-25 01:01:17 +02:00
|
|
|
|
|
|
|
KeymapManager* m_parent;
|
|
|
|
|
2014-05-04 12:48:39 +02:00
|
|
|
using KeyList = std::vector<Key>;
|
|
|
|
using Keymap = std::unordered_map<std::pair<Key, KeymapMode>, KeyList>;
|
2013-10-25 01:01:17 +02:00
|
|
|
Keymap m_mapping;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // keymap_manager_hh_INCLUDED
|
|
|
|
|