]> Dogcows Code - chaz/openbox/blobdiff - render/font.h
put the separator back in the spit up client list menu
[chaz/openbox] / render / font.h
index 51acd216b82df8ef6c585ff8554360103bd887e6..03f960c6907dc58a83c789c567b74603d560d753 100644 (file)
@@ -1,4 +1,4 @@
-/* -*- indent-tabs-mode: t; tab-width: 4; c-basic-offset: 4; -*-
+/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
 
    font.h for the Openbox window manager
    Copyright (c) 2003        Ben Jansens
 #define __font_h
 #include "render.h"
 #include "geom.h"
+#include <pango/pango.h>
 
 struct _RrFont {
     const RrInstance *inst;
-    XftFont *xftfont;
-    gint elipses_length;
-    gint shadow;
-    gchar tint;
-    gint offset;
+    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, char *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.023451 seconds and 4 git commands to generate.