kakoune/src/keys.hh

69 lines
1.2 KiB
C++
Raw Normal View History

2011-12-20 20:21:11 +01:00
#ifndef keys_hh_INCLUDED
#define keys_hh_INCLUDED
#include <vector>
#include "unicode.hh"
#include "string.hh"
2011-12-20 20:21:11 +01:00
namespace Kakoune
{
struct Key
{
enum class Modifiers
{
None = 0,
Control = 1,
Alt = 2,
ControlAlt = 3
};
enum NamedKey : Codepoint
{
2012-10-08 19:33:53 +02:00
// use UTF-16 surrogate pairs range
Backspace = 0xD800,
Escape,
Up,
Down,
Left,
Right,
2012-09-07 21:09:23 +02:00
PageUp,
PageDown,
BackTab,
};
2011-12-20 20:21:11 +01:00
Modifiers modifiers;
Codepoint key;
2011-12-20 20:21:11 +01:00
constexpr Key(Modifiers modifiers, Codepoint key)
2011-12-20 20:21:11 +01:00
: modifiers(modifiers), key(key) {}
2011-12-21 15:29:28 +01:00
constexpr Key(Codepoint key)
: modifiers(Modifiers::None), key(key) {}
2012-09-04 23:54:10 +02:00
constexpr bool operator==(const Key& other) const
2011-12-21 15:29:28 +01:00
{ return modifiers == other.modifiers and key == other.key; }
2011-12-20 20:21:11 +01:00
};
typedef std::vector<Key> KeyList;
KeyList parse_keys(const String& str);
2011-12-20 20:21:11 +01:00
}
2011-12-21 15:29:28 +01:00
namespace std
{
template<>
struct hash<Kakoune::Key> : unary_function<const Kakoune::Key&, size_t>
{
size_t operator()(const Kakoune::Key& key) const
{
return static_cast<size_t>(key.modifiers) * 1024 + key.key;
}
};
}
2011-12-20 20:21:11 +01:00
#endif // keys_hh_INCLUDED