2013-10-25 01:01:17 +02:00
|
|
|
#ifndef keymap_manager_hh_INCLUDED
|
|
|
|
#define keymap_manager_hh_INCLUDED
|
|
|
|
|
|
|
|
#include "keys.hh"
|
2014-12-16 19:57:19 +01:00
|
|
|
#include "hash.hh"
|
|
|
|
#include "unordered_map.hh"
|
2015-01-12 14:45:44 +01:00
|
|
|
#include "vector.hh"
|
2013-10-25 01:01:17 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
enum class KeymapMode : int
|
|
|
|
{
|
|
|
|
None,
|
|
|
|
Normal,
|
|
|
|
Insert,
|
|
|
|
Prompt,
|
2014-09-23 14:45:18 +02:00
|
|
|
Menu,
|
|
|
|
Goto,
|
|
|
|
View,
|
2014-12-12 14:57:02 +01:00
|
|
|
User,
|
2013-10-25 01:01:17 +02:00
|
|
|
};
|
|
|
|
|
2015-01-06 14:40:56 +01:00
|
|
|
template<typename T> class ArrayView;
|
2014-11-12 22:27:07 +01:00
|
|
|
|
2013-10-25 01:01:17 +02:00
|
|
|
class KeymapManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
KeymapManager(KeymapManager& parent) : m_parent(&parent) {}
|
|
|
|
|
2015-01-12 14:45:44 +01:00
|
|
|
using KeyList = Vector<Key, MemoryDomain::Mapping>;
|
2014-12-17 14:20:48 +01:00
|
|
|
void map_key(Key key, KeymapMode mode, KeyList mapping);
|
2013-10-25 01:01:17 +02:00
|
|
|
void unmap_key(Key key, KeymapMode mode);
|
|
|
|
|
|
|
|
bool is_mapped(Key key, KeymapMode mode) const;
|
2015-01-06 14:40:56 +01:00
|
|
|
ArrayView<Key> get_mapping(Key key, KeymapMode mode) const;
|
2013-10-25 01:01:17 +02:00
|
|
|
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-12-16 19:57:19 +01:00
|
|
|
using KeyAndMode = std::pair<Key, KeymapMode>;
|
2015-01-12 14:45:44 +01:00
|
|
|
using Keymap = UnorderedMap<KeyAndMode, KeyList, MemoryDomain::Mapping>;
|
2013-10-25 01:01:17 +02:00
|
|
|
Keymap m_mapping;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // keymap_manager_hh_INCLUDED
|