Mass++ Common Libraries v2.7.5
 All Classes Namespaces Files Functions Variables Enumerations Macros
CommonTypes.h
Go to the documentation of this file.
1 
12 #ifndef __KOME_CORE__TYPES_H__
13 #define __KOME_CORE__TYPES_H__
14 
15 
16 namespace kome {
17  namespace core {
18  namespace key {
20  enum {
21  KEY_BACKSPACE = 0x0100,
22  KEY_TAB = 0x0101,
23  KEY_RETURN = 0x0102,
24  KEY_SPACE = 0x0103,
25  KEY_DELETE = 0x0104,
26  KEY_SHIFT = 0x0105,
27  KEY_ALT = 0x0106,
28  KEY_CONTROL = 0x0107,
29  KEY_PAUSE = 0x0108,
30  KEY_END = 0x0109,
31  KEY_HOME = 0x010A,
32  KEY_LEFT = 0x010B,
33  KEY_UP = 0x010C,
34  KEY_RIGHT = 0x010D,
35  KEY_DOWN = 0x010E,
36  KEY_INSERT = 0x010F,
37  KEY_F1 = 0x0110,
38  KEY_F2 = 0x0111,
39  KEY_F3 = 0x0112,
40  KEY_F4 = 0x0113,
41  KEY_F5 = 0x0114,
42  KEY_F6 = 0x0115,
43  KEY_F7 = 0x0116,
44  KEY_F8 = 0x0117,
45  KEY_F9 = 0x0118,
46  KEY_F10 = 0x0119,
47  KEY_F11 = 0x011A,
48  KEY_F12 = 0x011B,
49  KEY_F13 = 0x011C,
50  KEY_F14 = 0x011D,
51  KEY_F15 = 0x011E,
52  KEY_F16 = 0x011F,
53  KEY_NUMLOCK = 0x0120,
54  KEY_SCROLL = 0x0121,
55  KEY_PAGEUP = 0x0122,
56  KEY_PAGEDOWN = 0x0123,
57  KEY_ESCAPE = 0x0124
58  };
59  }
60  }
61 }
62 
63 
64 #endif // __KOME_CORE__TYPES_H__