GUI
events.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 by Maciej Wiecierzewski
3  */
4 
9 #ifndef EVENTS_H
10 #define EVENTS_H
11 
12 #include <functional>
13 
14 namespace gui
15 {
16 
17 enum class EventType : char {
18  NONE = 0,
21  MOUSE_MOVE,
22  KEY_DOWN,
23  KEY_UP,
24  KEY_PRESS,
25  RESIZE,
28 };
29 
30 }
31 
32 #endif // EVENTS_H