diff options
Diffstat (limited to 'src/XftFontImp.hh')
-rw-r--r-- | src/XftFontImp.hh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/XftFontImp.hh b/src/XftFontImp.hh index d03e65a..78f4080 100644 --- a/src/XftFontImp.hh +++ b/src/XftFontImp.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: XftFontImp.hh,v 1.3 2002/10/16 23:13:54 fluxgen Exp $ | 22 | //$Id: XftFontImp.hh,v 1.4 2002/10/19 13:58:21 fluxgen Exp $ |
23 | 23 | ||
24 | #ifndef XFTFONTIMP_HH | 24 | #ifndef XFTFONTIMP_HH |
25 | #define XFTFONTIMP_HH | 25 | #define XFTFONTIMP_HH |
@@ -35,6 +35,8 @@ public: | |||
35 | void drawText(Drawable w, int screen, GC gc, const char *text, size_t len, int x, int y) const; | 35 | void drawText(Drawable w, int screen, GC gc, const char *text, size_t len, int x, int y) const; |
36 | unsigned int textWidth(const char * const text, unsigned int len) const; | 36 | unsigned int textWidth(const char * const text, unsigned int len) const; |
37 | unsigned int height() const; | 37 | unsigned int height() const; |
38 | int ascent() const { return m_xftfont ? m_xftfont->ascent : 0; } | ||
39 | int descent() const { return m_xftfont ? m_xftfont->descent : 0; } | ||
38 | bool loaded() const { return m_xftfont != 0; } | 40 | bool loaded() const { return m_xftfont != 0; } |
39 | private: | 41 | private: |
40 | XftFont *m_xftfont; | 42 | XftFont *m_xftfont; |