X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=render%2Ffont.c;h=4e38de243cf883a282e7014ab674e6cb2fe6fc1e;hb=d42335e54d9eb70957eb3f4938b69cc3682cfec2;hp=c03ea544447f789008297e545a0e312714864cef;hpb=cb73f209c9c635866bd79f4eb2b8aa9b4fbcfa6c;p=chaz%2Fopenbox diff --git a/render/font.c b/render/font.c index c03ea544..4e38de24 100644 --- a/render/font.c +++ b/render/font.c @@ -1,11 +1,12 @@ -#include -#include #include "../kernel/openbox.h" #include "font.h" #include "../src/gettext.h" #define _(str) gettext(str) +#include +#include + void font_startup(void) { #ifdef DEBUG @@ -44,7 +45,7 @@ ObFont *font_open(char *fontstring) XftFont *xf; if ((xf = XftFontOpenName(ob_display, ob_screen, fontstring))) { - out = malloc(sizeof(ObFont)); + out = g_new(ObFont, 1); out->xftfont = xf; measure_height(out); return out; @@ -53,7 +54,7 @@ ObFont *font_open(char *fontstring) g_warning(_("Trying fallback font: %s\n"), "fixed"); if ((xf = XftFontOpenName(ob_display, ob_screen, "fixed"))) { - out = malloc(sizeof(ObFont)); + out = g_new(ObFont, 1); out->xftfont = xf; measure_height(out); return out; @@ -67,9 +68,10 @@ ObFont *font_open(char *fontstring) void font_close(ObFont *f) { XftFontClose(ob_display, f->xftfont); + g_free(f); } -int font_measure_string(ObFont *f, const char *str, int shadow, int offset) +int font_measure_string(ObFont *f, char *str, int shadow, int offset) { XGlyphInfo info; @@ -102,7 +104,7 @@ void font_draw(XftDraw *d, TextureText *t, int x, int y, int w, int h) c.color.red = 0; c.color.green = 0; c.color.blue = 0; - c.color.alpha = t->tint | t->tint << 8; // transparent shadow + c.color.alpha = t->tint | t->tint << 8; /* transparent shadow */ c.pixel = BlackPixel(ob_display, ob_screen); XftDrawStringUtf8(d, &c, t->font->xftfont, x + t->offset, @@ -112,8 +114,8 @@ void font_draw(XftDraw *d, TextureText *t, int x, int y, int w, int h) c.color.red = t->color->r | t->color->r << 8; c.color.green = t->color->g | t->color->g << 8; c.color.blue = t->color->b | t->color->b << 8; + c.color.alpha = 0xff | 0xff << 8; /* fully opaque text */ c.pixel = t->color->pixel; - c.color.alpha = 0xff | 0xff << 8; // no transparency in Color yet XftDrawStringUtf8(d, &c, t->font->xftfont, x, t->font->xftfont->ascent + y -