X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=render%2Ffont.h;h=03f960c6907dc58a83c789c567b74603d560d753;hb=a8a93d7d39b3cc82a25d99c9c639c97a5facbfec;hp=19417db2c1118e92c14da9a5229f715330b99537;hpb=005eb35ee810fbc1edc31a83f298866067be6ef9;p=chaz%2Fopenbox diff --git a/render/font.h b/render/font.h index 19417db2..03f960c6 100644 --- a/render/font.h +++ b/render/font.h @@ -21,26 +21,21 @@ #define __font_h #include "render.h" #include "geom.h" -#ifdef USE_PANGO #include -#include -#endif /* USE_PANGO */ struct _RrFont { const RrInstance *inst; - XftFont *xftfont; - gint elipses_length; - gint shadow; - gchar tint; - gint offset; -#ifdef USE_PANGO - PangoFontDescription *pango_font_description; - gint pango_ascent; - gint pango_descent; -#endif /* USE_PANGO */ + gint ref; + 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 */ }; -RrFont *RrFontOpen(const RrInstance *inst, gchar *fontstring); -void RrFontClose(RrFont *f); void RrFontDraw(XftDraw *d, RrTextureText *t, RrRect *position); + +/*! Increment the references for this font, RrFontClose will decrement until 0 + and then really close it */ +void RrFontRef(RrFont *f); + #endif /* __font_h */