1// SuperTux
2// Copyright (C) 2018 Ingo Ruhnke <grumbel@gmail.com>
3//
4// This program is free software: you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.
8//
9// This program is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17#ifndef HEADER_SUPERTUX_EDITOR_BUTTON_WIDGET_HPP
18#define HEADER_SUPERTUX_EDITOR_BUTTON_WIDGET_HPP
19
20#include "editor/widget.hpp"
21
22#include <functional>
23
24#include "math/rectf.hpp"
25#include "sprite/sprite.hpp"
26
27class ButtonWidget : public Widget
28{
29private:
30public:
31 ButtonWidget(SpritePtr sprite, const Vector& pos, std::function<void()> m_sig_click = {});
32
33 virtual void draw(DrawingContext& context) override;
34 virtual void update(float dt_sec) override;
35
36 virtual void setup() override;
37 virtual void resize() override;
38
39 virtual bool on_mouse_button_up(const SDL_MouseButtonEvent& button) override;
40 virtual bool on_mouse_button_down(const SDL_MouseButtonEvent& button) override;
41 virtual bool on_mouse_motion(const SDL_MouseMotionEvent& motion) override;
42
43private:
44 SpritePtr m_sprite;
45 Rectf m_rect;
46 bool m_grab;
47 bool m_hover;
48 std::function<void()> m_sig_click;
49
50private:
51 ButtonWidget(const ButtonWidget&) = delete;
52 ButtonWidget& operator=(const ButtonWidget&) = delete;
53};
54
55#endif
56
57/* EOF */
58