summaryrefslogtreecommitdiff
path: root/render/font.h
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2004-11-07 13:20:54 +0000
committerMikael Magnusson <mikachu@comhem.se>2004-11-07 13:20:54 +0000
commite7d1ba6ae343ae3e3f2d97a1fc853422c5b8c3e5 (patch)
treeb87b1af22838d71942017e9beb246abb77f51007 /render/font.h
parentd19abac7043700ead6824270453f44971ccb1aba (diff)
Pango! yay. Patch mostly by Mohammed Sameer, fixed some memleaks and ifdeffed by me. May still have some bugs.
Diffstat (limited to 'render/font.h')
-rw-r--r--render/font.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/render/font.h b/render/font.h
index 6f8d511c..1ddeb047 100644
--- a/render/font.h
+++ b/render/font.h
@@ -21,9 +21,15 @@
#define __font_h
#include "render.h"
#include "geom.h"
+#ifdef USE_PANGO
+#include <pango/pango.h>
+#endif /* USE_PANGO */
struct _RrFont {
const RrInstance *inst;
+#ifdef USE_PANGO
+ PangoFontDescription *pango_font_description;
+#endif /* USE_PANGO */
XftFont *xftfont;
gint elipses_length;
gint shadow;