X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=render%2Ffont.h;h=07d648d145a0b2cccf3f13bf5a96d33f1ad0013d;hb=1169118e60050ee361e22111ffce842ff393d8bf;hp=a068660597e0151d2b223b28e81820f5e502ef6a;hpb=037fc862b0dd4535accf7b69a8c0112355bd04b1;p=chaz%2Fopenbox diff --git a/render/font.h b/render/font.h index a0686605..07d648d1 100644 --- a/render/font.h +++ b/render/font.h @@ -1,7 +1,7 @@ /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- font.h for the Openbox window manager - Copyright (c) 2003 Ben Jansens + Copyright (c) 2003-2007 Dana Jansens Copyright (c) 2003 Derek Foreman This program is free software; you can redistribute it and/or modify @@ -25,18 +25,18 @@ struct _RrFont { const RrInstance *inst; - PangoFontDescription *font_desc; + gint ref; + PangoFontDescription *font_desc; PangoLayout *layout; /*!< Used for measuring and rendering strings */ + PangoAttribute *shortcut_underline; /*< For underlining the shortcut key */ 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 */