]> Dogcows Code - chaz/openbox/blobdiff - render/font.h
another silly bug. i rule the school.
[chaz/openbox] / render / font.h
index a068660597e0151d2b223b28e81820f5e502ef6a..03f960c6907dc58a83c789c567b74603d560d753 100644 (file)
 
 struct _RrFont {
     const RrInstance *inst;
+    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 */
-    gint elipses_length; /*!< This one is in pixels, yay */
-    gint shadow;
-    gchar tint;
-    gint offset;
 };
 
-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 */
This page took 0.020568 seconds and 4 git commands to generate.