diff options
Diffstat (limited to 'main/floormat-app.hpp')
| -rw-r--r-- | main/floormat-app.hpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/main/floormat-app.hpp b/main/floormat-app.hpp index f4f7cc25..e4bf2cae 100644 --- a/main/floormat-app.hpp +++ b/main/floormat-app.hpp @@ -25,12 +25,12 @@ struct floormat_app virtual void draw_msaa(); virtual void draw() = 0; - virtual bool on_mouse_move(const mouse_move_event& event) noexcept = 0; - virtual bool on_mouse_up_down(const mouse_button_event& event, bool is_down) noexcept = 0; - virtual bool on_mouse_scroll(const mouse_scroll_event& event) noexcept = 0; - virtual bool on_key_up_down(const key_event& event, bool is_down) noexcept = 0; - virtual bool on_text_input_event(const text_input_event& event) noexcept = 0; - virtual bool on_text_editing_event(const text_editing_event& event) noexcept = 0; + virtual void on_mouse_move(const mouse_move_event& event) noexcept = 0; + virtual void on_mouse_up_down(const mouse_button_event& event, bool is_down) noexcept = 0; + virtual void on_mouse_scroll(const mouse_scroll_event& event) noexcept = 0; + virtual void on_key_up_down(const key_event& event, bool is_down) noexcept = 0; + virtual void on_text_input_event(const text_input_event& event) noexcept = 0; + //virtual bool on_text_editing_event(const text_editing_event& event) noexcept = 0; virtual void on_viewport_event(const Magnum::Math::Vector2<int>& size) noexcept = 0; virtual void on_any_event(const any_event& event) noexcept = 0; virtual void on_focus_in() noexcept = 0; |
