Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / gui / mousecursor.hpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
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_MOUSECURSOR_HPP
18 #define HEADER_SUPERTUX_GUI_MOUSECURSOR_HPP
19
20 #include <string>
21
22 class Surface;
23
24 #define MC_STATES_NB 3
25
26 enum {
27   MC_NORMAL = 0,
28   MC_CLICK,
29   MC_LINK,
30   MC_HIDE
31 };
32
33 class DrawingContext;
34
35 /// Mouse cursor.
36 /** Used to create mouse cursors.
37     The mouse cursors can be animated
38     and can be used in four different states.
39     (MC_NORMAL, MC_CLICK, MC_LINK or MC_HIDE) */
40 class MouseCursor
41 {
42 public:
43   /// Constructor of MouseCursor.
44   /** Expects an imagefile for the cursor and  the number of animation frames it contains. */
45   MouseCursor(std::string cursor_file);
46   ~MouseCursor();
47   /// Get MouseCursor state.
48   /** (MC_NORMAL, MC_CLICK, MC_LINK or MC_HIDE) */
49   int state();
50   /// Set MouseCursor state.
51   /** (MC_NORMAL, MC_CLICK, MC_LINK or MC_HIDE) */
52   void set_state(int nstate);
53   /// Define the middle of a MouseCursor.
54   /** Useful for cross mouse cursor images in example. */
55   void set_mid(int x, int y);
56
57   /// Draw MouseCursor on screen.
58   void draw(DrawingContext& context);
59
60   /// Return the current cursor.
61   static MouseCursor* current()
62   {        return current_;      };
63   /// Set current cursor.
64   static void set_current(MouseCursor* pcursor)
65   {        current_ = pcursor;      };
66
67 private:
68   int mid_x, mid_y;
69   static MouseCursor* current_;
70   int state_before_click;
71   int cur_state;
72   Surface* cursor;
73
74 private:
75   MouseCursor(const MouseCursor&);
76   MouseCursor& operator=(const MouseCursor&);
77 };
78
79 #endif /*SUPERTUX_MOUSECURSOR_H*/
80
81 /* EOF */