minor fix, that makes sure a time_left value is set, if you want to test a level.
[supertux.git] / src / button.h
1 //  $Id$
2 //
3 //  SuperTux
4 //  Copyright (C) 2004 Tobias Glaesser <tobi.web@gmx.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
19 //  02111-1307, USA.
20
21 #ifndef SUPERTUX_BUTTON_H
22 #define SUPERTUX_BUTTON_H
23
24 #include <vector>
25 #include "texture.h"
26
27 enum ButtonState {
28   BUTTON_NONE = -1,
29   BUTTON_CLICKED,
30   BUTTON_PRESSED,
31   BUTTON_HOVER,
32   BUTTON_WHEELUP,
33   BUTTON_WHEELDOWN
34 };
35
36 class ButtonPanel;
37
38 class Button
39 {
40   friend class ButtonPanel;
41
42 public:
43   Button(std::string icon_file, std::string info, SDLKey shortcut, int x, int y, int mw = -1, int h = -1);
44   ~Button();
45   void event(SDL_Event& event);
46   void draw();
47   int get_state();
48   void add_icon(std::string icon_file, int mw, int mh);
49   SDL_Rect get_pos() { return rect; }
50   int get_tag(){return tag; }
51   void set_game_object(GameObject* game_object_) { game_object = game_object_; }
52   GameObject* get_game_object() { return game_object; };
53
54 private:
55   static Timer popup_timer;
56   GameObject* game_object;
57   std::vector<Surface*> icon;
58   std::string info;
59   SDLKey shortcut;
60   SDL_Rect rect;
61   bool show_info;
62   ButtonState state;
63   int tag;
64 };
65
66 class ButtonPanel
67 {
68 public:
69   ButtonPanel(int x, int y, int w, int h);
70   ~ButtonPanel();
71   void draw();
72   Button* event(SDL_Event &event);
73   void additem(Button* pbutton, int tag);
74   Button* button_panel_event(SDL_Event& event);
75   void set_button_size(int w, int h);
76   Button* manipulate_button(int i);
77   void highlight_last(bool b);
78
79 private:
80   int bw, bh;
81   bool hlast;
82   bool hidden;
83   SDL_Rect rect;
84   std::vector<Button*> item;
85   std::vector<Button*>::iterator last_clicked;
86 };
87
88 #endif /*SUPERTUX_BUTTON_H*/