FIFE  be64c707dea6b3250bd4355bf5c825d25920087d
gui_font.h
Go to the documentation of this file.
1 /***************************************************************************
2  * Copyright (C) 2005-2019 by the FIFE team *
3  * http://www.fifengine.net *
4  * This file is part of FIFE. *
5  * *
6  * FIFE is free software; you can redistribute it and/or *
7  * modify it under the terms of the GNU Lesser General Public *
8  * License as published by the Free Software Foundation; either *
9  * version 2.1 of the License, or (at your option) any later version. *
10  * *
11  * This library 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 GNU *
14  * Lesser General Public License for more details. *
15  * *
16  * You should have received a copy of the GNU Lesser General Public *
17  * License along with this library; if not, write to the *
18  * Free Software Foundation, Inc., *
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
20  ***************************************************************************/
21 
22 #ifndef FIFE_GUI_FONT_H
23 #define FIFE_GUI_FONT_H
24 
25 // Standard C++ library includes
26 
27 // 3rd party library includes
28 #include <fifechan/font.hpp>
29 
30 // FIFE includes
31 // These includes are split up in two parts, separated by one empty line
32 // First block: files included from the FIFE root src directory
33 // Second block: files included from the same folder
34 #include "video/fonts/ifont.h"
35 
36 
37 namespace FIFE {
38 
39  class GuiFont : public fcn::Font, public IFont {
40  public:
44  GuiFont(IFont* font);
45  virtual ~GuiFont();
46 
47  int32_t getStringIndexAt(const std::string& text, int32_t x) const;
48  void drawString(fcn::Graphics* graphics, const std::string& text, int32_t x, int32_t y);
49  void drawMultiLineString(fcn::Graphics* graphics, const std::string& text, int32_t x, int32_t y);
50  std::string splitTextToWidth (const std::string& text, int32_t render_width);
51 
52  void setRowSpacing (int32_t spacing);
53  int32_t getRowSpacing() const;
54  void setGlyphSpacing(int32_t spacing);
55  int32_t getGlyphSpacing() const;
56  void setAntiAlias(bool antiAlias);
57  bool isAntiAlias() const;
58  void setBoldStyle(bool style);
59  bool isBoldStyle() const;
60  void setItalicStyle(bool style);
61  bool isItalicStyle() const;
62  void setUnderlineStyle(bool style);
63  bool isUnderlineStyle() const;
64  void setStrikethroughStyle(bool style);
65  bool isStrikethroughStyle() const;
66  void setDynamicColoring(bool coloring);
67  bool isDynamicColoring() const;
68  Image* getAsImage(const std::string& text);
69  Image* getAsImageMultiline(const std::string& text);
70  void setColor(uint8_t r,uint8_t g,uint8_t b, uint8_t a = 255);
71  SDL_Color getColor() const;
72  int32_t getWidth(const std::string& text) const;
73  int32_t getHeight() const;
74  void invalidate();
75 
76  private:
78  };
79 }
80 
81 #endif
void invalidate()
Definition: gui_font.cpp:202
std::string splitTextToWidth(const std::string &text, int32_t render_width)
Definition: gui_font.cpp:182
bool isStrikethroughStyle() const
Checks if strikethrough style is used.
Definition: gui_font.cpp:162
void setUnderlineStyle(bool style)
Sets the use of underline style.
Definition: gui_font.cpp:150
void drawString(fcn::Graphics *graphics, const std::string &text, int32_t x, int32_t y)
Definition: gui_font.cpp:50
Base Class for Images.
Definition: image.h:48
void setDynamicColoring(bool coloring)
Definition: gui_font.cpp:166
GuiFont(IFont *font)
Constructor Takes the ownership of given font.
Definition: gui_font.cpp:38
Image * getAsImage(const std::string &text)
Gets given text as Image The rsulting image is pooled, so it&#39;s not that time critical.
Definition: gui_font.cpp:174
void setBoldStyle(bool style)
Sets the use of bold style.
Definition: gui_font.cpp:134
virtual ~GuiFont()
Definition: gui_font.cpp:42
void drawMultiLineString(fcn::Graphics *graphics, const std::string &text, int32_t x, int32_t y)
Definition: gui_font.cpp:80
SDL_Color getColor() const
Get the color the text was rendered in.
Definition: gui_font.cpp:190
void setRowSpacing(int32_t spacing)
Sets the spacing between rows in pixels.
Definition: gui_font.cpp:110
Image * getAsImageMultiline(const std::string &text)
Gets given text as Image.
Definition: gui_font.cpp:178
unsigned char uint8_t
Definition: core.h:38
IFont * m_font
Definition: gui_font.h:77
void setGlyphSpacing(int32_t spacing)
Sets the spacing between letters in pixels.
Definition: gui_font.cpp:118
bool isAntiAlias() const
Checks if anti aliasing is used.
Definition: gui_font.cpp:130
int32_t getStringIndexAt(const std::string &text, int32_t x) const
Definition: gui_font.cpp:46
bool isUnderlineStyle() const
Checks if underline style is used.
Definition: gui_font.cpp:154
Pure abstract Font interface.
Definition: ifont.h:43
int32_t getHeight() const
gets height of this font
Definition: gui_font.cpp:198
void setAntiAlias(bool antiAlias)
Sets the use of anti aliasing.
Definition: gui_font.cpp:126
bool isItalicStyle() const
Checks if italic style is used.
Definition: gui_font.cpp:146
int32_t getWidth(const std::string &text) const
gets width of given text
Definition: gui_font.cpp:194
int32_t getGlyphSpacing() const
Gets the spacing between letters in pixels.
Definition: gui_font.cpp:122
int32_t getRowSpacing() const
Gets the spacing between rows in pixels.
Definition: gui_font.cpp:114
void setItalicStyle(bool style)
Sets the use of italic style.
Definition: gui_font.cpp:142
bool isDynamicColoring() const
Definition: gui_font.cpp:170
void setStrikethroughStyle(bool style)
Sets the use of strikethrough style.
Definition: gui_font.cpp:158
void setColor(uint8_t r, uint8_t g, uint8_t b, uint8_t a=255)
Set the color the text should be rendered in.
Definition: gui_font.cpp:186
bool isBoldStyle() const
Checks if bold style is used.
Definition: gui_font.cpp:138