diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-03-03 02:53:41 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-03-03 02:53:41 +0000 |
| commit | 037fc862b0dd4535accf7b69a8c0112355bd04b1 (patch) | |
| tree | 768c502ef4cd3fb826d2d9466eac672fd614688a /render/font.h | |
| parent | c5b551b25a1d89a3f20599adeec6c6c6a31946e5 (diff) | |
pango is now mandatory..
lots of cleanups to the pango code, which was a very nice base to start from. thanks to whomever wrote that for us.. put some of the pango variables into the various render structs so that they don't need to be created all the time. put the pango context inside our RrInstance so that it can be properly freed at shutdown. removed xft dependencies all through the code and the build system also. who knows if this will break compiling for some poor souls. i guess we'll find out, won't we!
Diffstat (limited to 'render/font.h')
| -rw-r--r-- | render/font.h | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/render/font.h b/render/font.h index 19417db2..a0686605 100644 --- a/render/font.h +++ b/render/font.h @@ -21,26 +21,22 @@ #define __font_h #include "render.h" #include "geom.h" -#ifdef USE_PANGO #include <pango/pango.h> -#include <pango/pangoxft.h> -#endif /* USE_PANGO */ struct _RrFont { const RrInstance *inst; - XftFont *xftfont; - gint elipses_length; + PangoFontDescription *font_desc; + PangoLayout *layout; /*!< Used for measuring and rendering strings */ + gint ascent; /*!< The font's ascent in pango-units */ + gint descent; /*!< The font's descent in pango-units */ + gint elipses_length; /*!< This one is in pixels, yay */ gint shadow; gchar tint; gint offset; -#ifdef USE_PANGO - PangoFontDescription *pango_font_description; - gint pango_ascent; - gint pango_descent; -#endif /* USE_PANGO */ }; RrFont *RrFontOpen(const RrInstance *inst, gchar *fontstring); void RrFontClose(RrFont *f); void RrFontDraw(XftDraw *d, RrTextureText *t, RrRect *position); + #endif /* __font_h */ |
