256c9fe84e591c7f3ab4cb975552b78a80a1914a
[supertux.git] / src / object / anchor_point.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 __ANCHOR_POINT_HPP__
21 #define __ANCHOR_POINT_HPP__
22
23 #include <string>
24 #include "math/vector.hpp"
25
26 class Rect;
27
28 enum AnchorPoint {
29   ANCHOR_H_MASK = 0x00f0,
30   ANCHOR_TOP    = 0x0010,
31   ANCHOR_BOTTOM = 0x0020,
32   ANCHOR_V_MASK = 0x000f,
33   ANCHOR_LEFT   = 0x0001,
34   ANCHOR_RIGHT  = 0x0002,
35   ANCHOR_MIDDLE = 0x0000,
36   
37   ANCHOR_TOP_LEFT = ANCHOR_TOP | ANCHOR_LEFT,
38   ANCHOR_TOP_RIGHT = ANCHOR_TOP | ANCHOR_RIGHT,
39   ANCHOR_BOTTOM_LEFT = ANCHOR_BOTTOM | ANCHOR_LEFT,
40   ANCHOR_BOTTOM_RIGHT = ANCHOR_BOTTOM | ANCHOR_RIGHT,
41 };
42
43 std::string anchor_point_to_string(AnchorPoint point);
44 AnchorPoint string_to_anchor_point(const std::string& str);
45 Vector get_anchor_pos(const Rect& rect, AnchorPoint point);
46 Vector get_anchor_pos(const Rect& destrect, float width, float height,
47                       AnchorPoint point);
48
49 #endif
50