openbox/render/font.c

252 lines
6.7 KiB
C
Raw Normal View History

2003-09-17 07:44:49 +00:00
/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
font.c for the Openbox window manager
Copyright (c) 2003 Ben Jansens
Copyright (c) 2003 Derek Foreman
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
See the COPYING file for a copy of the GNU General Public License.
*/
2003-03-16 21:11:39 +00:00
#include "font.h"
2003-06-21 02:26:50 +00:00
#include "color.h"
#include "mask.h"
#include "theme.h"
#include "gettext.h"
2003-03-16 21:11:39 +00:00
#include <X11/Xft/Xft.h>
#include <glib.h>
#include <string.h>
2003-07-31 16:30:53 +00:00
#include <stdlib.h>
#define ELIPSES "..."
#define ELIPSES_LENGTH(font) \
(font->elipses_length + (font->shadow ? font->offset : 0))
#define OB_SHADOW "shadow"
#define OB_SHADOW_OFFSET "shadowoffset"
#define OB_SHADOW_ALPHA "shadowtint"
FcObjectType objs[] = {
{ OB_SHADOW, FcTypeBool },
{ OB_SHADOW_OFFSET, FcTypeInteger },
{ OB_SHADOW_ALPHA, FcTypeInteger }
};
2003-06-21 02:15:13 +00:00
static gboolean started = FALSE;
static void font_startup(void)
2003-03-16 21:11:39 +00:00
{
if (!XftInit(0)) {
2003-09-14 06:42:04 +00:00
g_warning(_("Couldn't initialize Xft."));
exit(EXIT_FAILURE);
2003-03-16 21:11:39 +00:00
}
FcNameRegisterObjectTypes(objs, (sizeof(objs) / sizeof(objs[0])));
2003-03-16 22:34:05 +00:00
}
2003-03-16 21:11:39 +00:00
2003-06-21 02:15:13 +00:00
static void measure_font(RrFont *f)
{
XGlyphInfo info;
/* measure an elipses */
2003-06-21 01:53:26 +00:00
XftTextExtentsUtf8(RrDisplay(f->inst), f->xftfont,
(FcChar8*)ELIPSES, strlen(ELIPSES), &info);
f->elipses_length = (signed) info.xOff;
}
static RrFont *openfont(const RrInstance *inst, char *fontstring)
{
RrFont *out;
FcPattern *pat, *match;
XftFont *font;
FcResult res;
gint tint;
if (!(pat = XftNameParse(fontstring)))
return NULL;
match = XftFontMatch(RrDisplay(inst), RrScreen(inst), pat, &res);
2003-09-14 06:42:04 +00:00
FcPatternDestroy(pat);
if (!match)
return NULL;
out = g_new(RrFont, 1);
out->inst = inst;
if (FcPatternGetBool(match, OB_SHADOW, 0, &out->shadow) != FcResultMatch)
out->shadow = FALSE;
if (FcPatternGetInteger(match, OB_SHADOW_OFFSET, 0, &out->offset) !=
FcResultMatch)
out->offset = 1;
if (FcPatternGetInteger(match, OB_SHADOW_ALPHA, 0, &tint) != FcResultMatch)
tint = 25;
if (tint > 100) tint = 100;
else if (tint < -100) tint = -100;
out->tint = tint;
font = XftFontOpenPattern(RrDisplay(inst), match);
if (!font) {
2003-06-28 19:06:03 +00:00
FcPatternDestroy(match);
g_free(out);
return NULL;
} else
out->xftfont = font;
measure_font(out);
return out;
}
2003-06-21 02:15:13 +00:00
RrFont *RrFontOpen(const RrInstance *inst, char *fontstring)
2003-03-16 22:34:05 +00:00
{
RrFont *out;
2003-06-21 02:15:13 +00:00
if (!started) {
font_startup();
started = TRUE;
}
if ((out = openfont(inst, fontstring)))
2003-03-16 22:34:05 +00:00
return out;
g_warning(_("Unable to load font: %s\n"), fontstring);
g_warning(_("Trying fallback font: %s\n"), "sans");
2003-03-16 21:11:39 +00:00
if ((out = openfont(inst, "sans")))
2003-03-16 22:34:05 +00:00
return out;
g_warning(_("Unable to load font: %s\n"), "sans");
2003-03-16 21:11:39 +00:00
return NULL;
2003-03-16 21:11:39 +00:00
}
2003-06-21 02:15:13 +00:00
void RrFontClose(RrFont *f)
2003-03-16 21:11:39 +00:00
{
2003-04-13 02:29:09 +00:00
if (f) {
2003-06-21 01:53:26 +00:00
XftFontClose(RrDisplay(f->inst), f->xftfont);
2003-04-13 02:29:09 +00:00
g_free(f);
}
2003-03-16 21:11:39 +00:00
}
2003-06-21 02:15:13 +00:00
static void font_measure_full(const RrFont *f, const gchar *str,
gint *x, gint *y)
2003-03-16 21:11:39 +00:00
{
2003-03-16 22:34:05 +00:00
XGlyphInfo info;
2003-03-16 21:11:39 +00:00
2003-06-21 01:53:26 +00:00
XftTextExtentsUtf8(RrDisplay(f->inst), f->xftfont,
2003-06-21 02:15:13 +00:00
(const FcChar8*)str, strlen(str), &info);
2003-03-16 21:11:39 +00:00
*x = (signed) info.xOff + (f->shadow ? ABS(f->offset) : 0);
*y = info.height + (f->shadow ? ABS(f->offset) : 0);
}
int RrFontMeasureString(const RrFont *f, const gchar *str)
{
2003-06-21 02:15:13 +00:00
gint x, y;
font_measure_full (f, str, &x, &y);
return x + 4;
2003-03-16 21:11:39 +00:00
}
int RrFontHeight(const RrFont *f)
2003-03-16 21:11:39 +00:00
{
return f->xftfont->ascent + f->xftfont->descent +
(f->shadow ? f->offset : 0);
2003-03-16 21:11:39 +00:00
}
2003-06-21 02:15:13 +00:00
int RrFontMaxCharWidth(const RrFont *f)
2003-03-16 21:11:39 +00:00
{
2003-03-16 23:35:00 +00:00
return (signed) f->xftfont->max_advance_width;
}
void RrFontDraw(XftDraw *d, RrTextureText *t, RrRect *area)
2003-03-16 23:35:00 +00:00
{
2003-06-21 02:15:13 +00:00
gint x,y,w,h;
2003-03-16 23:35:00 +00:00
XftColor c;
GString *text;
2003-09-12 05:56:02 +00:00
gint mw, mh;
2003-04-14 22:12:26 +00:00
size_t l;
gboolean shortened = FALSE;
/* center vertically */
y = area->y +
(area->height - RrFontHeight(t->font)) / 2;
/* the +2 and -4 leave a small blank edge on the sides */
2003-06-25 21:18:16 +00:00
x = area->x + 2;
w = area->width - 4;
h = area->height;
text = g_string_new(t->string);
l = g_utf8_strlen(text->str, -1);
font_measure_full(t->font, text->str, &mw, &mh);
while (l && mw > area->width) {
shortened = TRUE;
/* remove a character from the middle */
text = g_string_erase(text, l-- / 2, 1);
/* if the elipses are too large, don't show them at all */
2003-09-12 05:56:02 +00:00
if (ELIPSES_LENGTH(t->font) > area->width)
shortened = FALSE;
font_measure_full(t->font, text->str, &mw, &mh);
2003-09-12 05:56:02 +00:00
mw += ELIPSES_LENGTH(t->font);
}
if (shortened) {
text = g_string_insert(text, (l + 1) / 2, ELIPSES);
l += 3;
2003-04-14 22:12:26 +00:00
}
if (!l) return;
switch (t->justify) {
case RR_JUSTIFY_LEFT:
2003-04-14 22:12:26 +00:00
break;
case RR_JUSTIFY_RIGHT:
2003-06-25 21:18:16 +00:00
x += (w - mw);
2003-04-14 22:12:26 +00:00
break;
case RR_JUSTIFY_CENTER:
2003-06-25 21:18:16 +00:00
x += (w - mw) / 2;
2003-04-14 22:12:26 +00:00
break;
}
2003-05-21 22:19:01 +00:00
l = strlen(text->str); /* number of bytes */
if (t->font->shadow) {
if (t->font->tint >= 0) {
2003-04-02 06:37:52 +00:00
c.color.red = 0;
c.color.green = 0;
c.color.blue = 0;
c.color.alpha = 0xffff * t->font->tint / 100;
2003-06-21 01:53:26 +00:00
c.pixel = BlackPixel(RrDisplay(t->font->inst),
RrScreen(t->font->inst));
2003-04-02 06:37:52 +00:00
} else {
c.color.red = 0xffff;
c.color.green = 0xffff;
c.color.blue = 0xffff;
c.color.alpha = 0xffff * -t->font->tint / 100;
2003-06-21 01:53:26 +00:00
c.pixel = WhitePixel(RrDisplay(t->font->inst),
RrScreen(t->font->inst));
2003-04-02 06:37:52 +00:00
}
XftDrawStringUtf8(d, &c, t->font->xftfont, x + t->font->offset,
t->font->xftfont->ascent + y + t->font->offset,
2003-05-21 22:19:01 +00:00
(FcChar8*)text->str, l);
2003-03-16 23:35:00 +00:00
}
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;
2003-03-19 07:20:45 +00:00
c.color.alpha = 0xff | 0xff << 8; /* fully opaque text */
2003-03-16 23:35:00 +00:00
c.pixel = t->color->pixel;
XftDrawStringUtf8(d, &c, t->font->xftfont, x,
t->font->xftfont->ascent + y,
2003-05-21 22:19:01 +00:00
(FcChar8*)text->str, l);
g_string_free(text, TRUE);
2003-03-16 23:35:00 +00:00
return;
2003-03-16 21:11:39 +00:00
}