diff options
Diffstat (limited to 'src/Font.hh')
-rw-r--r-- | src/Font.hh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Font.hh b/src/Font.hh index 0fa1b0e..9de7e7a 100644 --- a/src/Font.hh +++ b/src/Font.hh | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | //$Id: Font.hh,v 1.5 2002/10/13 22:24:14 fluxgen Exp $ | 22 | //$Id: Font.hh,v 1.6 2002/10/15 10:55:30 fluxgen Exp $ |
23 | 23 | ||
24 | #ifndef FBTK_FONT_HH | 24 | #ifndef FBTK_FONT_HH |
25 | #define FBTK_FONT_HH | 25 | #define FBTK_FONT_HH |
@@ -61,12 +61,14 @@ public: | |||
61 | unsigned int textWidth(const char *text, unsigned int size) const; | 61 | unsigned int textWidth(const char *text, unsigned int size) const; |
62 | unsigned int height() const; | 62 | unsigned int height() const; |
63 | void drawText(Drawable w, int screen, GC gc, const char *text, size_t len, int x, int y) const; | 63 | void drawText(Drawable w, int screen, GC gc, const char *text, size_t len, int x, int y) const; |
64 | bool isAntialias() const { return m_antialias; } | ||
64 | private: | 65 | private: |
65 | 66 | ||
66 | std::auto_ptr<FontImp> m_fontimp; | 67 | std::auto_ptr<FontImp> m_fontimp; |
67 | std::string m_fontstr; | 68 | std::string m_fontstr; |
68 | static bool m_multibyte; | 69 | static bool m_multibyte; |
69 | static bool m_utf8mode; | 70 | static bool m_utf8mode; |
71 | bool m_antialias; | ||
70 | }; | 72 | }; |
71 | 73 | ||
72 | }; //end namespace FbTk | 74 | }; //end namespace FbTk |