summaryrefslogtreecommitdiff
path: root/src/keys.hh
blob: 19a835757b7f33f6cc856aa9bc071517f7d4c5a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#ifndef keys_hh_INCLUDED
#define keys_hh_INCLUDED

#include <vector>
#include "unicode.hh"
#include "string.hh"

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,
        BackTab,
        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==(const Key& other) const
    { return modifiers == other.modifiers and key == other.key; }

    constexpr bool operator!=(const Key& other) const
    { return modifiers != other.modifiers or key != other.key; }
};

typedef std::vector<Key> KeyList;

KeyList parse_keys(const String& str);

}

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;
    }
};

}


#endif // keys_hh_INCLUDED