summaryrefslogtreecommitdiff
path: root/src/input
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-12-31 21:06:01 +0300
committerAndrei Karas <akaras@inbox.ru>2015-12-31 21:06:01 +0300
commitdd22711fd400dc1d55c54b18bd37dd5d7630b966 (patch)
tree353060be7ff550d7a291f5a53953926e071a3191 /src/input
parentcd5cd6387c8a62f90a8f44c3657812f3e9a4cab9 (diff)
downloadplus-dd22711fd400dc1d55c54b18bd37dd5d7630b966.tar.gz
plus-dd22711fd400dc1d55c54b18bd37dd5d7630b966.tar.bz2
plus-dd22711fd400dc1d55c54b18bd37dd5d7630b966.tar.xz
plus-dd22711fd400dc1d55c54b18bd37dd5d7630b966.zip
Move keyvalue into enums directory.
Diffstat (limited to 'src/input')
-rw-r--r--src/input/key.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/src/input/key.h b/src/input/key.h
index 5ed721702..0a657010a 100644
--- a/src/input/key.h
+++ b/src/input/key.h
@@ -86,58 +86,6 @@ class Key final
*/
explicit Key(const int value = 0);
- enum
- {
- SPACE = ' ',
- TAB = '\t',
- ENTER = '\n',
- // Negative values, to avoid conflicts with higher character codes.
- LEFT_ALT = -1000,
- RIGHT_ALT,
- LEFT_SHIFT,
- RIGHT_SHIFT,
- LEFT_CONTROL,
- RIGHT_CONTROL,
- LEFT_META,
- RIGHT_META,
- LEFT_SUPER,
- RIGHT_SUPER,
- INSERT,
- HOME,
- PAGE_UP,
- DELETE_,
- END,
- PAGE_DOWN,
- ESCAPE,
- CAPS_LOCK,
- BACKSPACE,
- F1,
- F2,
- F3,
- F4,
- F5,
- F6,
- F7,
- F8,
- F9,
- F10,
- F11,
- F12,
- F13,
- F14,
- F15,
- PRINT_SCREEN,
- SCROLL_LOCK,
- PAUSE,
- NUM_LOCK,
- ALT_GR,
- LEFT,
- RIGHT,
- UP,
- DOWN,
- TEXTINPUT
- };
-
/**
* Checks if a key is a character.
*