bb379c137a0b4b60b8f64517fa940d24e35d56ea
[supertux.git] / src / gui / dialog.hpp
1 //  SuperTux
2 //  Copyright (C) 2014 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_GUI_DIALOG_HPP
18 #define HEADER_SUPERTUX_GUI_DIALOG_HPP
19
20 #include <SDL.h>
21 #include <functional>
22 #include <string>
23 #include <vector>
24
25 #include "math/sizef.hpp"
26
27 class Controller;
28 class DrawingContext;
29
30 class Dialog
31 {
32 private:
33   struct Button
34   {
35     std::string text;
36     std::function<void ()> callback;
37   };
38
39   std::string m_text;
40   std::vector<Button> m_buttons;
41   int m_selected_button;
42
43   Sizef m_text_size;
44
45 public:
46   Dialog();
47   virtual ~Dialog();
48
49   void set_text(const std::string& text);
50   void add_button(const std::string& text, const std::function<void ()>& callback = {},
51                   bool focus = false);
52
53   void event(const SDL_Event& event);
54   void process_input(const Controller& controller);
55   void draw(DrawingContext& context);
56   virtual void update() {}
57
58 private:
59   void on_button_click(int button) const;
60   int get_button_at(const Vector& pos) const;
61
62 private:
63   Dialog(const Dialog&) = delete;
64   Dialog& operator=(const Dialog&) = delete;
65 };
66
67 #endif
68
69 /* EOF */