From 5e833bba513d97c39f4e0d26b45a9095c32812a6 Mon Sep 17 00:00:00 2001 From: WBoerenkamps Date: Mon, 28 Oct 2024 17:58:53 +0100 Subject: button working --- mwe/events/include/event.h | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'mwe/events/include/event.h') diff --git a/mwe/events/include/event.h b/mwe/events/include/event.h index 65560a1..b1b6867 100644 --- a/mwe/events/include/event.h +++ b/mwe/events/include/event.h @@ -7,7 +7,6 @@ #include #include "keyCodes.h" #include "customTypes.h" - class UUIDGenerator { public: static std::uint32_t getUniqueID() { @@ -151,3 +150,22 @@ public: private: std::string text; }; +class ShutDownEvent : public Event { +public: + ShutDownEvent() : Event("ShutDownEvent"){}; + + REGISTER_EVENT_TYPE(ShutDownEvent) + +private: +}; +// class ButtonClickEvent : public Event { +// public: +// ButtonClickEvent(int x,int y,int width,int height); + +// REGISTER_EVENT_TYPE(TextSubmitEvent) + +// std::string getText() const; + +// private: +// std::string text; +// }; -- cgit v1.2.3