]> Dogcows Code - chaz/openbox/blob - render/font.c
make the pango rendering code really complicated because that is the only way to...
[chaz/openbox] / render / font.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3 font.c for the Openbox window manager
4 Copyright (c) 2003 Ben Jansens
5 Copyright (c) 2003 Derek Foreman
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "font.h"
21 #include "color.h"
22 #include "mask.h"
23 #include "theme.h"
24 #include "geom.h"
25 #include "gettext.h"
26
27 #include <X11/Xft/Xft.h>
28 #include <glib.h>
29 #include <string.h>
30 #include <stdlib.h>
31
32 #define ELIPSES "..."
33 #define ELIPSES_LENGTH(font) \
34 (font->elipses_length + (font->shadow ? font->offset : 0))
35
36 #define OB_SHADOW "shadow"
37 #define OB_SHADOW_OFFSET "shadowoffset"
38 #define OB_SHADOW_ALPHA "shadowtint"
39
40 FcObjectType objs[] = {
41 { OB_SHADOW, FcTypeBool },
42 { OB_SHADOW_OFFSET, FcTypeInteger },
43 { OB_SHADOW_ALPHA, FcTypeInteger }
44 };
45
46 PangoFontMap *pfm;
47 PangoContext *context;
48
49 static gboolean started = FALSE;
50
51 static void font_startup(void)
52 {
53 if (!XftInit(0)) {
54 g_warning(_("Couldn't initialize Xft."));
55 exit(EXIT_FAILURE);
56 }
57
58 #ifdef USE_PANGO
59 g_type_init();
60 /* these will never be freed, but we will need them until we shut down anyway */
61 pfm = pango_xft_get_font_map(RrDisplay(NULL), RrScreen(NULL));
62 context = pango_xft_get_context(RrDisplay(NULL), RrScreen(NULL));
63 #endif /* USE_PANGO */
64 /* Here we are teaching xft about the shadow, shadowoffset & shadowtint */
65 FcNameRegisterObjectTypes(objs, (sizeof(objs) / sizeof(objs[0])));
66 }
67
68 static void measure_font(RrFont *f)
69 {
70 /* xOff, yOff is the normal spacing to the next glyph. */
71 XGlyphInfo info;
72
73 /* measure an elipses */
74 XftTextExtentsUtf8(RrDisplay(f->inst), f->xftfont,
75 (FcChar8*)ELIPSES, strlen(ELIPSES), &info);
76 f->elipses_length = (signed) info.xOff;
77 }
78
79 static RrFont *openfont(const RrInstance *inst, gchar *fontstring)
80 {
81 /* This function is called for each font in the theme file. */
82 /* It returns a pointer to a RrFont struct after filling it. */
83 RrFont *out;
84 FcPattern *pat, *match;
85 XftFont *font;
86 FcResult res;
87 gint tint;
88 #ifdef USE_PANGO
89 guchar *tmp_string = NULL;
90 gint tmp_int;
91 #endif /* USE_PANGO */
92
93 if (!(pat = XftNameParse(fontstring)))
94 return NULL;
95
96 match = XftFontMatch(RrDisplay(inst), RrScreen(inst), pat, &res);
97 FcPatternDestroy(pat);
98 if (!match)
99 return NULL;
100
101 out = g_new(RrFont, 1);
102 out->inst = inst;
103 #ifdef USE_PANGO
104 /* printf("\n\n%s\n\n",fontstring);
105 FcPatternPrint(match); */
106
107 out->pango_font_description = pango_font_description_new();
108
109 if (FcPatternGetString(match, "family", 0, &tmp_string) != FcResultTypeMismatch) {
110 pango_font_description_set_family(out->pango_font_description, (gchar *)tmp_string);
111 tmp_string = NULL;
112 }
113 if (FcPatternGetString(match, "style", 0, &tmp_string) != FcResultTypeMismatch) {
114 /* Bold ? */
115 if (!strcasecmp("bold", (gchar *)tmp_string)) {
116 pango_font_description_set_weight(out->pango_font_description, PANGO_WEIGHT_BOLD);
117 }
118 /* Italic ? */
119 else if (!strcasecmp("italic", (gchar *)tmp_string)) {
120 pango_font_description_set_style(out->pango_font_description, PANGO_STYLE_ITALIC);
121 }
122 tmp_string = NULL;
123 }
124
125 if (FcPatternGetInteger(match, "pixelsize", 0, &tmp_int) != FcResultTypeMismatch) {
126 /* TODO: is PANGO_SCALE correct ?? */
127 pango_font_description_set_size(out->pango_font_description, tmp_int*PANGO_SCALE);
128 }
129
130 PangoFontset *pfs = pango_font_map_load_fontset(pfm, context, out->pango_font_description, NULL);
131 PangoFontMetrics *metrics = pango_fontset_get_metrics(pfs);
132 out->pango_ascent = pango_font_metrics_get_ascent(metrics);
133 out->pango_descent = pango_font_metrics_get_descent(metrics);
134 pango_font_metrics_unref(metrics);
135 #endif /* USE_PANGO */
136
137 if (FcPatternGetBool(match, OB_SHADOW, 0, &out->shadow) != FcResultMatch)
138 out->shadow = FALSE;
139
140 if (FcPatternGetInteger(match, OB_SHADOW_OFFSET, 0, &out->offset) !=
141 FcResultMatch)
142 out->offset = 1;
143
144 if (FcPatternGetInteger(match, OB_SHADOW_ALPHA, 0, &tint) != FcResultMatch)
145 tint = 25;
146 if (tint > 100) tint = 100;
147 else if (tint < -100) tint = -100;
148 out->tint = tint;
149
150 font = XftFontOpenPattern(RrDisplay(inst), match);
151 if (!font) {
152 FcPatternDestroy(match);
153 g_free(out);
154 return NULL;
155 } else
156 out->xftfont = font;
157
158 #ifdef USE_PANGO
159 /* FcPatternDestroy(match); */
160 #endif /* USE_PANGO */
161 measure_font(out);
162
163 return out;
164 }
165
166 RrFont *RrFontOpen(const RrInstance *inst, gchar *fontstring)
167 {
168 RrFont *out;
169
170 if (!started) {
171 font_startup();
172 started = TRUE;
173 }
174
175 if ((out = openfont(inst, fontstring)))
176 return out;
177 g_warning(_("Unable to load font: %s\n"), fontstring);
178 g_warning(_("Trying fallback font: %s\n"), "sans");
179
180 if ((out = openfont(inst, "sans")))
181 return out;
182 g_warning(_("Unable to load font: %s\n"), "sans");
183
184 return NULL;
185 }
186
187 void RrFontClose(RrFont *f)
188 {
189 if (f) {
190 XftFontClose(RrDisplay(f->inst), f->xftfont);
191 g_free(f);
192 }
193 #ifdef USE_PANGO
194 pango_font_description_free(f->pango_font_description);
195 #endif
196 }
197
198 static void font_measure_full(const RrFont *f, const gchar *str,
199 gint *x, gint *y)
200 {
201 #ifdef USE_PANGO
202 PangoLayout *pl;
203 PangoRectangle rect;
204 pl = pango_layout_new (context);
205 pango_layout_set_text(pl, str, -1);
206 pango_layout_set_font_description(pl, f->pango_font_description);
207 pango_layout_set_single_paragraph_mode(pl, TRUE);
208 pango_layout_get_pixel_extents(pl, NULL, &rect);
209 *x = rect.width + (f->shadow ? ABS(f->offset) : 0);
210 *y = rect.height + (f->shadow ? ABS(f->offset) : 0);
211 g_object_unref(pl);
212
213 #else
214 XGlyphInfo info;
215
216 XftTextExtentsUtf8(RrDisplay(f->inst), f->xftfont,
217 (const FcChar8*)str, strlen(str), &info);
218
219 *x = (signed) info.xOff + (f->shadow ? ABS(f->offset) : 0);
220 *y = info.height + (f->shadow ? ABS(f->offset) : 0);
221 #endif /* USE_PANGO */
222 }
223
224 RrSize *RrFontMeasureString(const RrFont *f, const gchar *str)
225 {
226 RrSize *size;
227 size = g_new(RrSize, 1);
228 font_measure_full (f, str, &size->width, &size->height);
229 return size;
230 }
231
232 gint RrFontHeight(const RrFont *f)
233 {
234 #ifdef USE_PANGO
235 return (f->pango_ascent
236 + f->pango_descent
237 ) / PANGO_SCALE;
238 #else
239 return f->xftfont->ascent + f->xftfont->descent +
240 (f->shadow ? f->offset : 0);
241 #endif
242 }
243
244 gint RrFontMaxCharWidth(const RrFont *f)
245 {
246 return (signed) f->xftfont->max_advance_width;
247 }
248
249 void RrFontDraw(XftDraw *d, RrTextureText *t, RrRect *area)
250 {
251 gint x,y,w,h;
252 XftColor c;
253 GString *text;
254 gint mw, mh;
255 #ifndef USE_PANGO
256 size_t l;
257 gboolean shortened = FALSE;
258 #else
259 PangoLayout *pl;
260 PangoLayoutLine *pll;
261 PangoRectangle rect;
262
263 pl = pango_layout_new (context);
264 #endif /* USE_PANGO */
265
266 /* center vertically */
267 #ifndef USE_PANGO /* We have to wait for the text string with pango */
268 y = area->y +
269 (area->height - RrFontHeight(t->font)) / 2;
270 #endif
271 /* the +2 and -4 leave a small blank edge on the sides */
272 x = area->x + 2;
273 w = area->width - 4;
274 h = area->height;
275
276 text = g_string_new(t->string);
277 #ifndef USE_PANGO
278 l = g_utf8_strlen(text->str, -1);
279 font_measure_full(t->font, text->str, &mw, &mh);
280 while (l && mw > area->width) {
281 shortened = TRUE;
282 /* remove a character from the middle */
283 text = g_string_erase(text, l-- / 2, 1);
284 /* if the elipses are too large, don't show them at all */
285 if (ELIPSES_LENGTH(t->font) > area->width)
286 shortened = FALSE;
287 font_measure_full(t->font, text->str, &mw, &mh);
288 mw += ELIPSES_LENGTH(t->font);
289 }
290 if (shortened) {
291 text = g_string_insert(text, (l + 1) / 2, ELIPSES);
292 l += 3;
293 }
294 if (!l) return;
295
296 l = strlen(text->str); /* number of bytes */
297
298 #else
299 pango_layout_set_text(pl, text->str, -1);
300 pango_layout_set_font_description(pl, t->font->pango_font_description);
301 pango_layout_set_single_paragraph_mode(pl, TRUE);
302 pango_layout_set_width(pl, w * PANGO_SCALE);
303 pango_layout_set_ellipsize(pl, PANGO_ELLIPSIZE_MIDDLE);
304 /* This doesn't work with layout_line() of course */
305 /* pango_layout_set_alignment(pl, (PangoAlignment)(t->justify)); */
306 pango_layout_get_pixel_extents(pl, NULL, &rect);
307 mw = rect.width;
308 y = area->y +
309 area->height / 2 +
310 /* go to great lengths to center the text while keeping the baseline in
311 * the same place */
312 t->font->pango_descent / PANGO_SCALE;
313
314 #endif /* USE_PANGO */
315
316 switch (t->justify) {
317 case RR_JUSTIFY_LEFT:
318 break;
319 case RR_JUSTIFY_RIGHT:
320 x += (w - mw);
321 break;
322 case RR_JUSTIFY_CENTER:
323 x += (w - mw) / 2;
324 break;
325 }
326
327 if (t->font->shadow) {
328 if (t->font->tint >= 0) {
329 c.color.red = 0;
330 c.color.green = 0;
331 c.color.blue = 0;
332 c.color.alpha = 0xffff * t->font->tint / 100;
333 c.pixel = BlackPixel(RrDisplay(t->font->inst),
334 RrScreen(t->font->inst));
335 } else {
336 c.color.red = 0xffff;
337 c.color.green = 0xffff;
338 c.color.blue = 0xffff;
339 c.color.alpha = 0xffff * -t->font->tint / 100;
340 c.pixel = WhitePixel(RrDisplay(t->font->inst),
341 RrScreen(t->font->inst));
342 }
343 #ifndef USE_PANGO
344 XftDrawStringUtf8(d, &c, t->font->xftfont, x + t->font->offset,
345 t->font->xftfont->ascent + y + t->font->offset,
346 (FcChar8*)text->str, l);
347 #else /* USE_PANGO */
348 /* see below... */
349 pango_xft_render_layout_line(d, &c, pll = pango_layout_get_line(pl, 0),
350 (x + t->font->offset) * PANGO_SCALE,
351 (y + t->font->offset) * PANGO_SCALE);
352 #endif /* USE_PANGO */
353 }
354 c.color.red = t->color->r | t->color->r << 8;
355 c.color.green = t->color->g | t->color->g << 8;
356 c.color.blue = t->color->b | t->color->b << 8;
357 c.color.alpha = 0xff | 0xff << 8; /* fully opaque text */
358 c.pixel = t->color->pixel;
359
360 #ifndef USE_PANGO
361 XftDrawStringUtf8(d, &c, t->font->xftfont, x,
362 t->font->xftfont->ascent + y,
363 (FcChar8*)text->str, l);
364 #else /* USE_PANGO */
365 /* This looks retarded, but layout_line() bases y on the baseline, while
366 * layout() bases y on the top of the ink layout shit ass fucking crap.
367 * We want the baseline to always be in the same place, thusly, we use
368 * layout_line()
369 * The actual line doesn't need to be freed */
370 pango_xft_render_layout_line(d, &c, pll = pango_layout_get_line(pl, 0),
371 x * PANGO_SCALE, y * PANGO_SCALE);
372 g_object_unref(pl);
373 #endif
374
375 g_string_free(text, TRUE);
376 return;
377 }
This page took 0.049809 seconds and 5 git commands to generate.