2 This file is part of fxwt, the window system toolkit of 3dengfx.
4 Copyright (c) 2004, 2005 John Tsiombikas <nuclear@siggraph.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
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.
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
21 /* True type text rendering and management.
23 * Author: John Tsiombikas 2005
29 #include "3dengfx/textures.hpp"
30 #include "n3dmath2/n3dmath2.hpp"
31 #include "gfx/color.hpp"
48 FONT_MS_SANS = FONT_VERDANA,
49 FONT_MS_SERIF = FONT_TIMES_NEW_ROMAN,
50 FONT_MS_MONO = FONT_COURIER_NEW,
52 FONT_NULL /* keep this last */
61 enum TextRenderMode {TEXT_TRANSPARENT, TEXT_OPAQUE};
66 void set_text_render_mode(TextRenderMode mode);
68 void set_font_size(int sz);
71 bool set_font(Font fnt);
72 bool set_font(FontStyle fstyle);
74 const char *get_font_name(Font fnt);
76 Texture *get_text(const char *text_str);
78 void print_text(const char *text_str, const Vector2 &pos, scalar_t size, const Color &col = Color(1,1,1));
81 #endif /* _TEXT_HPP_ */