kakoune/src/keys.hh
2013-11-09 11:12:55 +00:00

93 lines
1.7 KiB
C++

#ifndef keys_hh_INCLUDED
#define keys_hh_INCLUDED
#include "string.hh"
#include "unicode.hh"
#include <vector>
namespace Kakoune
{
struct Key
{
enum class Modifiers
{
None = 0,
Control = 1,
Alt = 2,
ControlAlt = 3
};
enum NamedKey : Codepoint
{
// use UTF-16 surrogate pairs range
Backspace = 0xD800,
Escape,
Up,
Down,
Left,
Right,
PageUp,
PageDown,
Home,
End,
BackTab,
F1,
F2,
F3,
F4,
F5,
F6,
F7,
F8,
F9,
F10,
F11,
F12,
Invalid,
};
Modifiers modifiers;
Codepoint key;
constexpr Key(Modifiers modifiers, Codepoint key)
: modifiers(modifiers), key(key) {}
constexpr Key(Codepoint key)
: modifiers(Modifiers::None), key(key) {}
constexpr bool operator==(Key other) const
{ return modifiers == other.modifiers and key == other.key; }
constexpr bool operator!=(Key other) const
{ return modifiers != other.modifiers or key != other.key; }
};
typedef std::vector<Key> KeyList;
KeyList parse_keys(const String& str);
String key_to_str(Key key);
constexpr Key alt(Codepoint key) { return { Key::Modifiers::Alt, key }; }
constexpr Key ctrl(Codepoint key) { return { Key::Modifiers::Control, key }; }
constexpr Key ctrlalt(Codepoint key) { return { Key::Modifiers::ControlAlt, key }; }
}
namespace std
{
template<>
struct hash<Kakoune::Key> : unary_function<const Kakoune::Key&, size_t>
{
size_t operator()(Kakoune::Key key) const
{
return static_cast<size_t>(key.modifiers) * 1024 + key.key;
}
};
}
#endif // keys_hh_INCLUDED