89ff0f3a9b7e96dc428fdead41b33ca341d86e0c
[supertux.git] / src / scripting / text.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 __TEXT_H__
21 #define __TEXT_H__
22
23 namespace Scripting
24 {
25
26 class Text
27 {
28 public:
29 #ifndef SCRIPTING_API
30   virtual ~Text()
31   { }
32 #endif
33
34   virtual void set_text(const std::string& text) = 0;
35   virtual void set_font(const std::string& fontname) = 0;
36   virtual void fade_in(float fadetime) = 0;
37   virtual void fade_out(float fadetime) = 0;
38   virtual void set_visible(bool visible) = 0;
39   virtual void set_centered(bool centered) = 0;
40   virtual void set_pos(float x, float y) = 0;
41   virtual float get_pos_x() = 0;
42   virtual float get_pos_y() = 0;
43   virtual void set_anchor_point(int anchor) = 0;
44   virtual int  get_anchor_point() = 0;
45 };
46
47 }
48
49 #endif