aboutsummaryrefslogtreecommitdiff
path: root/include/mglpp/window/Event.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mglpp/window/Event.hpp')
-rw-r--r--include/mglpp/window/Event.hpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/include/mglpp/window/Event.hpp b/include/mglpp/window/Event.hpp
index c073251..5b7da45 100644
--- a/include/mglpp/window/Event.hpp
+++ b/include/mglpp/window/Event.hpp
@@ -15,6 +15,10 @@ namespace mgl {
int height;
};
+ struct TextEvent {
+ uint32_t codepoint;
+ };
+
struct KeyEvent {
Keyboard::Key code;
bool alt;
@@ -36,7 +40,9 @@ namespace mgl {
enum Type : int {
Unknown,
- Resized,
+ Closed, /* Window closed */
+ Resized, /* Window resized */
+ TextEntered,
KeyPressed,
KeyReleased,
MouseButtonPressed,
@@ -48,6 +54,7 @@ namespace mgl {
union {
SizeEvent size;
+ TextEvent text;
KeyEvent key;
MouseButtonEvent mouse_button;
MouseMoveEvent mouse_move;