diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2010-09-08 18:17:21 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2010-09-08 18:17:21 (GMT) |
commit | 690d926ac444243611cd875fb84fabb4e6db2cf2 (patch) | |
tree | c8ef84056b295071f9a9207ffea5393c6cf4ad4d /src/FbTk/XftFontImp.hh | |
parent | 1e8fe2bc14856fa16508686a28a85e72cb0e422c (diff) | |
download | fluxbox_pavel-690d926ac444243611cd875fb84fabb4e6db2cf2.zip fluxbox_pavel-690d926ac444243611cd875fb84fabb4e6db2cf2.tar.bz2 |
introduced FbTk::BidiString
a 'BidiString' holds both the logical content and the visual reordered
version of the content of a string. this helps to reduce the number of
calls to reorder the string before drawing it (as introduced in the patch
from Ken Bloom) and to be more consistent in menus and textboxes (drawing
cursors and underlining text).
Diffstat (limited to 'src/FbTk/XftFontImp.hh')
-rw-r--r-- | src/FbTk/XftFontImp.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FbTk/XftFontImp.hh b/src/FbTk/XftFontImp.hh index 3d2dc55..fd24762 100644 --- a/src/FbTk/XftFontImp.hh +++ b/src/FbTk/XftFontImp.hh | |||
@@ -34,8 +34,8 @@ public: | |||
34 | XftFontImp(const char *fontname, bool utf8); | 34 | XftFontImp(const char *fontname, bool utf8); |
35 | ~XftFontImp(); | 35 | ~XftFontImp(); |
36 | bool load(const std::string &name); | 36 | bool load(const std::string &name); |
37 | void drawText(const FbDrawable &w, int screen, GC gc, const FbString &text, size_t len, int x, int y , FbTk::Orientation orient); | 37 | void drawText(const FbDrawable &w, int screen, GC gc, const char* text, size_t len, int x, int y , FbTk::Orientation orient); |
38 | unsigned int textWidth(const FbString &text, unsigned int len) const; | 38 | unsigned int textWidth(const char* text, unsigned int len) const; |
39 | unsigned int height() const; | 39 | unsigned int height() const; |
40 | int ascent() const { return m_xftfonts[0] ? m_xftfonts[0]->ascent : 0; } | 40 | int ascent() const { return m_xftfonts[0] ? m_xftfonts[0]->ascent : 0; } |
41 | int descent() const { return m_xftfonts[0] ? m_xftfonts[0]->descent : 0; } | 41 | int descent() const { return m_xftfonts[0] ? m_xftfonts[0]->descent : 0; } |