aboutsummaryrefslogtreecommitdiff
path: root/include/gui/Button.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/gui/Button.hpp')
-rw-r--r--include/gui/Button.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/gui/Button.hpp b/include/gui/Button.hpp
index 84098b2..972e5c9 100644
--- a/include/gui/Button.hpp
+++ b/include/gui/Button.hpp
@@ -8,9 +8,14 @@ namespace gsr {
class Button : public Widget {
public:
Button(mgl::vec2f size);
- void on_event(mgl::Event &event, mgl::Window &window) override;
+ Button(const Button&) = delete;
+ Button& operator=(const Button&) = delete;
+
+ bool on_event(mgl::Event &event, mgl::Window &window) override;
void draw(mgl::Window &window) override;
+ mgl::vec2f get_size() const { return size; }
+
std::function<void()> on_click;
private:
mgl::vec2f size;