649187378e2af30eebfd268f756e8d894b5aa91e
[supertux.git] / src / gui / button.hpp
1 //  $Id$
2 //
3 //  SuperTux
4 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 //
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 #ifndef SUPERTUX_BUTTON_H
21 #define SUPERTUX_BUTTON_H
22
23 #include <vector>
24 #include <string>
25
26 #include "SDL.h"
27
28 #include "math/vector.hpp"
29
30 class Surface;
31 class DrawingContext;
32 class Font;
33 class ButtonGroup;
34
35 enum {
36   BT_NONE,
37   BT_HOVER,
38   BT_SELECTED,
39   BT_SHOW_INFO
40   };
41
42 class Button
43 {
44 public:
45   Button(Surface* image_, std::string info_, SDLKey binding_);
46   ~Button();
47
48   void draw(DrawingContext& context, bool selected);
49   int event(SDL_Event& event, int x_offset = 0, int y_offset = 0);
50
51   static Font* info_font;
52
53 private:
54   friend class ButtonGroup;
55
56   Vector pos, size;
57
58   Surface* image;
59   SDLKey binding;
60
61   int id;
62   int state;
63   std::string info;
64 };
65
66 class ButtonGroup
67 {
68 public:
69   ButtonGroup(Vector pos_, Vector size_, Vector button_box_);
70   ~ButtonGroup();
71
72   void draw(DrawingContext& context);
73   bool event(SDL_Event& event);
74
75   void add_button(Button button, int id, bool select = false);
76   void add_pair_of_buttons(Button button1, int id1, Button button2, int id2);
77
78   int selected_id();
79   void set_unselected();
80   bool is_hover();
81
82 private:
83   Vector pos, buttons_size, buttons_box;
84   typedef std::vector <Button> Buttons;
85   Buttons buttons;
86
87   int button_selected, row;
88   bool mouse_hover, mouse_left_button;
89
90   int buttons_pair_nb;
91 };
92
93 #endif