diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-03-04 07:12:34 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-03-04 07:12:34 +0000 |
| commit | 43d0f79057c1c4dfa1999db8fd6d9f48e5b47951 (patch) | |
| tree | 13eb74852b3c8ee64a1f545eb881fa94c3e85f4b /render/font.h | |
| parent | aeda86f46056a10126f85ad43fb51a92075bcefd (diff) | |
fonts are no longer loaded from the theme file. instead, they are created by the application and passed in while creating/loading a theme
Diffstat (limited to 'render/font.h')
| -rw-r--r-- | render/font.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/render/font.h b/render/font.h index a0686605..17894b8b 100644 --- a/render/font.h +++ b/render/font.h @@ -25,18 +25,20 @@ 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 */ |
