X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=render%2Ffont.c;h=64f1da16c6c621b7b721b514a85c2d2794c4811a;hb=b1f5555218ecaa3827450125dc47b4bf0d404ee4;hp=2360735443ee74c2d83a90c3a8519e0d08a822a6;hpb=62240d2b0ffc75d2a87117e2e0e282674a965495;p=chaz%2Fopenbox diff --git a/render/font.c b/render/font.c index 23607354..64f1da16 100644 --- a/render/font.c +++ b/render/font.c @@ -1,6 +1,5 @@ #include "font.h" #include "theme.h" -#include "kernel/openbox.h" #include "kernel/geom.h" #include "kernel/gettext.h" #define _(str) gettext(str) @@ -30,23 +29,24 @@ void font_startup(void) #endif } -static void measure_height(ObFont *f) +static void measure_height(RrFont *f) { XGlyphInfo info; /* measure an elipses */ - XftTextExtentsUtf8(ob_display, f->xftfont, + XftTextExtentsUtf8(RrDisplay(f->inst), f->xftfont, (FcChar8*)ELIPSES, strlen(ELIPSES), &info); f->elipses_length = (signed) info.xOff; } -ObFont *font_open(char *fontstring) +RrFont *font_open(const RrInstance *inst, char *fontstring) { - ObFont *out; + RrFont *out; XftFont *xf; - if ((xf = XftFontOpenName(ob_display, ob_screen, fontstring))) { - out = g_new(ObFont, 1); + if ((xf = XftFontOpenName(RrDisplay(inst), RrScreen(inst), fontstring))) { + out = g_new(RrFont, 1); + out->inst = inst; out->xftfont = xf; measure_height(out); return out; @@ -54,8 +54,9 @@ ObFont *font_open(char *fontstring) g_warning(_("Unable to load font: %s\n"), fontstring); g_warning(_("Trying fallback font: %s\n"), "sans"); - if ((xf = XftFontOpenName(ob_display, ob_screen, "sans"))) { - out = g_new(ObFont, 1); + if ((xf = XftFontOpenName(RrDisplay(inst), RrScreen(inst), "sans"))) { + out = g_new(RrFont, 1); + out->inst = inst; out->xftfont = xf; measure_height(out); return out; @@ -66,44 +67,44 @@ ObFont *font_open(char *fontstring) exit(3); /* can't continue without a font */ } -void font_close(ObFont *f) +void font_close(RrFont *f) { if (f) { - XftFontClose(ob_display, f->xftfont); + XftFontClose(RrDisplay(f->inst), f->xftfont); g_free(f); } } -void font_measure_full(ObFont *f, char *str, int shadow, int offset, +void font_measure_full(RrFont *f, char *str, int shadow, int offset, int *x, int *y) { XGlyphInfo info; - XftTextExtentsUtf8(ob_display, f->xftfont, + XftTextExtentsUtf8(RrDisplay(f->inst), f->xftfont, (FcChar8*)str, strlen(str), &info); *x = (signed) info.xOff + (shadow ? ABS(offset) : 0); *y = info.height + (shadow ? ABS(offset) : 0); } -int font_measure_string(ObFont *f, char *str, int shadow, int offset) +int font_measure_string(RrFont *f, char *str, int shadow, int offset) { int x, y; font_measure_full (f, str, shadow, offset, &x, &y); return x; } -int font_height(ObFont *f, int shadow, int offset) +int font_height(RrFont *f, int shadow, int offset) { return f->xftfont->ascent + f->xftfont->descent + (shadow ? offset : 0); } -int font_max_char_width(ObFont *f) +int font_max_char_width(RrFont *f) { return (signed) f->xftfont->max_advance_width; } -void font_draw(XftDraw *d, TextureText *t, Rect *area) +void font_draw(XftDraw *d, RrTextureText *t, Rect *area) { int x,y,w,h; XftColor c; @@ -115,7 +116,7 @@ void font_draw(XftDraw *d, TextureText *t, Rect *area) /* center vertically */ y = area->y + (area->height - font_height(t->font, t->shadow, t->offset)) / 2; - w = area->width - theme-bevel * 2; + w = area->width; h = area->height; text = g_string_new(t->string); @@ -139,13 +140,13 @@ void font_draw(XftDraw *d, TextureText *t, Rect *area) if (!l) return; switch (t->justify) { - case Justify_Left: - x = area->x + theme_bevel; + case RR_JUSTIFY_LEFT: + x = area->x; break; - case Justify_Right: - x = area->x + (w - mw) - theme_bevel; + case RR_JUSTIFY_RIGHT: + x = area->x + (w - mw); break; - case Justify_Center: + case RR_JUSTIFY_CENTER: x = area->x + (w - mw) / 2; break; } @@ -158,13 +159,15 @@ void font_draw(XftDraw *d, TextureText *t, Rect *area) c.color.green = 0; c.color.blue = 0; c.color.alpha = 0xffff * t->tint / 100; /* transparent shadow */ - c.pixel = BlackPixel(ob_display, ob_screen); + c.pixel = BlackPixel(RrDisplay(t->font->inst), + RrScreen(t->font->inst)); } else { c.color.red = 0xffff * -t->tint / 100; c.color.green = 0xffff * -t->tint / 100; c.color.blue = 0xffff * -t->tint / 100; c.color.alpha = 0xffff * -t->tint / 100; /* transparent shadow */ - c.pixel = WhitePixel(ob_display, ob_screen); + c.pixel = WhitePixel(RrDisplay(t->font->inst), + RrScreen(t->font->inst)); } XftDrawStringUtf8(d, &c, t->font->xftfont, x + t->offset, t->font->xftfont->ascent + y + t->offset,