]> Dogcows Code - chaz/openbox/blob - render/font.c
RrFontHeight is meaningless with pango, it will be different for every string drawn...
[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 "gettext.h"
25
26 #include <X11/Xft/Xft.h>
27 #include <glib.h>
28 #include <string.h>
29 #include <stdlib.h>
30
31 #define ELIPSES "..."
32 #define ELIPSES_LENGTH(font) \
33 (font->elipses_length + (font->shadow ? font->offset : 0))
34
35 #define OB_SHADOW "shadow"
36 #define OB_SHADOW_OFFSET "shadowoffset"
37 #define OB_SHADOW_ALPHA "shadowtint"
38
39 FcObjectType objs[] = {
40 { OB_SHADOW, FcTypeBool },
41 { OB_SHADOW_OFFSET, FcTypeInteger },
42 { OB_SHADOW_ALPHA, FcTypeInteger }
43 };
44
45 static gboolean started = FALSE;
46
47 static void font_startup(void)
48 {
49 if (!XftInit(0)) {
50 g_warning(_("Couldn't initialize Xft."));
51 exit(EXIT_FAILURE);
52 }
53
54 #ifdef USE_PANGO
55 g_type_init();
56 #endif /* USE_PANGO */
57 /* Here we are teaching xft about the shadow, shadowoffset & shadowtint */
58 FcNameRegisterObjectTypes(objs, (sizeof(objs) / sizeof(objs[0])));
59 }
60
61 static void measure_font(RrFont *f)
62 {
63 /* xOff, yOff is the normal spacing to the next glyph. */
64 XGlyphInfo info;
65
66 /* measure an elipses */
67 XftTextExtentsUtf8(RrDisplay(f->inst), f->xftfont,
68 (FcChar8*)ELIPSES, strlen(ELIPSES), &info);
69 f->elipses_length = (signed) info.xOff;
70 }
71
72 static RrFont *openfont(const RrInstance *inst, gchar *fontstring)
73 {
74 /* This function is called for each font in the theme file. */
75 /* It returns a pointer to a RrFont struct after filling it. */
76 RrFont *out;
77 FcPattern *pat, *match;
78 XftFont *font;
79 FcResult res;
80 gint tint;
81 #ifdef USE_PANGO
82 guchar *tmp_string = NULL;
83 gint tmp_int;
84 #endif /* USE_PANGO */
85
86 if (!(pat = XftNameParse(fontstring)))
87 return NULL;
88
89 match = XftFontMatch(RrDisplay(inst), RrScreen(inst), pat, &res);
90 FcPatternDestroy(pat);
91 if (!match)
92 return NULL;
93
94 out = g_new(RrFont, 1);
95 out->inst = inst;
96 #ifdef USE_PANGO
97 /* printf("\n\n%s\n\n",fontstring);
98 FcPatternPrint(match); */
99
100 out->pango_font_description = pango_font_description_new();
101
102 if (FcPatternGetString(match, "family", 0, &tmp_string) != FcResultTypeMismatch) {
103 pango_font_description_set_family(out->pango_font_description, (gchar *)tmp_string);
104 tmp_string = NULL;
105 }
106 if (FcPatternGetString(match, "style", 0, &tmp_string) != FcResultTypeMismatch) {
107 /* Bold ? */
108 if (!strcasecmp("bold", (gchar *)tmp_string)) {
109 pango_font_description_set_weight(out->pango_font_description, PANGO_WEIGHT_BOLD);
110 }
111 /* Italic ? */
112 else if (!strcasecmp("italic", (gchar *)tmp_string)) {
113 pango_font_description_set_style(out->pango_font_description, PANGO_STYLE_ITALIC);
114 }
115 tmp_string = NULL;
116 }
117
118 if (FcPatternGetInteger(match, "pixelsize", 0, &tmp_int) != FcResultTypeMismatch) {
119 /* TODO: is PANGO_SCALE correct ?? */
120 pango_font_description_set_size(out->pango_font_description, tmp_int*PANGO_SCALE);
121 }
122 #endif /* USE_PANGO */
123
124 if (FcPatternGetBool(match, OB_SHADOW, 0, &out->shadow) != FcResultMatch)
125 out->shadow = FALSE;
126
127 if (FcPatternGetInteger(match, OB_SHADOW_OFFSET, 0, &out->offset) !=
128 FcResultMatch)
129 out->offset = 1;
130
131 if (FcPatternGetInteger(match, OB_SHADOW_ALPHA, 0, &tint) != FcResultMatch)
132 tint = 25;
133 if (tint > 100) tint = 100;
134 else if (tint < -100) tint = -100;
135 out->tint = tint;
136
137 font = XftFontOpenPattern(RrDisplay(inst), match);
138 if (!font) {
139 FcPatternDestroy(match);
140 g_free(out);
141 return NULL;
142 } else
143 out->xftfont = font;
144
145 #ifdef USE_PANGO
146 /* FcPatternDestroy(match); */
147 #endif /* USE_PANGO */
148 measure_font(out);
149
150 return out;
151 }
152
153 RrFont *RrFontOpen(const RrInstance *inst, gchar *fontstring)
154 {
155 RrFont *out;
156
157 if (!started) {
158 font_startup();
159 started = TRUE;
160 }
161
162 if ((out = openfont(inst, fontstring)))
163 return out;
164 g_warning(_("Unable to load font: %s\n"), fontstring);
165 g_warning(_("Trying fallback font: %s\n"), "sans");
166
167 if ((out = openfont(inst, "sans")))
168 return out;
169 g_warning(_("Unable to load font: %s\n"), "sans");
170
171 return NULL;
172 }
173
174 void RrFontClose(RrFont *f)
175 {
176 if (f) {
177 XftFontClose(RrDisplay(f->inst), f->xftfont);
178 g_free(f);
179 }
180 }
181
182 static void font_measure_full(const RrFont *f, const gchar *str,
183 gint *x, gint *y)
184 {
185 #ifdef USE_PANGO
186 PangoContext *context;
187 PangoLayout *pl;
188 PangoRectangle rect;
189 context = pango_xft_get_context (RrDisplay(f->inst), RrScreen(f->inst));
190 pl = pango_layout_new (context);
191 pango_layout_set_text(pl, str, -1);
192 pango_layout_set_font_description(pl, f->pango_font_description);
193 pango_layout_set_single_paragraph_mode(pl, TRUE);
194 pango_layout_get_pixel_extents(pl, NULL, &rect);
195 *x = rect.width + (f->shadow ? ABS(f->offset) : 0);
196 *y = rect.height + (f->shadow ? ABS(f->offset) : 0);
197 g_object_unref(pl);
198 g_object_unref(context);
199
200 #else
201 XGlyphInfo info;
202
203 XftTextExtentsUtf8(RrDisplay(f->inst), f->xftfont,
204 (const FcChar8*)str, strlen(str), &info);
205
206 *x = (signed) info.xOff + (f->shadow ? ABS(f->offset) : 0);
207 *y = info.height + (f->shadow ? ABS(f->offset) : 0);
208 #endif /* USE_PANGO */
209 }
210
211 gint RrFontMeasureString(const RrFont *f, const gchar *str)
212 {
213 gint x, y;
214 font_measure_full (f, str, &x, &y);
215 return x + 4;
216 }
217
218 gint RrFontHeight(const RrFont *f)
219 {
220 return f->xftfont->ascent + f->xftfont->descent +
221 (f->shadow ? f->offset : 0);
222 }
223
224 gint RrFontMaxCharWidth(const RrFont *f)
225 {
226 return (signed) f->xftfont->max_advance_width;
227 }
228
229 void RrFontDraw(XftDraw *d, RrTextureText *t, RrRect *area)
230 {
231 gint x,y,w,h;
232 XftColor c;
233 GString *text;
234 gint mw, mh;
235 #ifndef USE_PANGO
236 size_t l;
237 gboolean shortened = FALSE;
238 #else
239 PangoLayout *pl;
240 PangoContext *context;
241 PangoRectangle rect;
242
243 context = pango_xft_get_context (RrDisplay(t->font->inst), RrScreen(t->font->inst));
244 pl = pango_layout_new (context);
245 #endif /* USE_PANGO */
246
247 /* center vertically */
248 #ifndef USE_PANGO /* We have to wait for the text string with pango */
249 y = area->y +
250 (area->height - RrFontHeight(t->font)) / 2;
251 #endif
252 /* the +2 and -4 leave a small blank edge on the sides */
253 x = area->x + 2;
254 w = area->width - 4;
255 h = area->height;
256
257 text = g_string_new(t->string);
258 #ifndef USE_PANGO
259 l = g_utf8_strlen(text->str, -1);
260 font_measure_full(t->font, text->str, &mw, &mh);
261 while (l && mw > area->width) {
262 shortened = TRUE;
263 /* remove a character from the middle */
264 text = g_string_erase(text, l-- / 2, 1);
265 /* if the elipses are too large, don't show them at all */
266 if (ELIPSES_LENGTH(t->font) > area->width)
267 shortened = FALSE;
268 font_measure_full(t->font, text->str, &mw, &mh);
269 mw += ELIPSES_LENGTH(t->font);
270 }
271 if (shortened) {
272 text = g_string_insert(text, (l + 1) / 2, ELIPSES);
273 l += 3;
274 }
275 if (!l) return;
276
277 switch (t->justify) {
278 case RR_JUSTIFY_LEFT:
279 break;
280 case RR_JUSTIFY_RIGHT:
281 x += (w - mw);
282 break;
283 case RR_JUSTIFY_CENTER:
284 x += (w - mw) / 2;
285 break;
286 }
287
288 l = strlen(text->str); /* number of bytes */
289
290 #else
291 pango_layout_set_text(pl, text->str, -1);
292 pango_layout_set_font_description(pl, t->font->pango_font_description);
293 pango_layout_set_single_paragraph_mode(pl, TRUE);
294 pango_layout_set_width(pl, w * PANGO_SCALE);
295 pango_layout_set_ellipsize(pl, PANGO_ELLIPSIZE_MIDDLE);
296 pango_layout_set_alignment(pl, (PangoAlignment)(t->justify));
297 pango_layout_get_pixel_extents(pl, NULL, &rect);
298 y = area->y +
299 (area->height - rect.height) / 2;
300
301 #endif /* USE_PANGO */
302
303 if (t->font->shadow) {
304 if (t->font->tint >= 0) {
305 c.color.red = 0;
306 c.color.green = 0;
307 c.color.blue = 0;
308 c.color.alpha = 0xffff * t->font->tint / 100;
309 c.pixel = BlackPixel(RrDisplay(t->font->inst),
310 RrScreen(t->font->inst));
311 } else {
312 c.color.red = 0xffff;
313 c.color.green = 0xffff;
314 c.color.blue = 0xffff;
315 c.color.alpha = 0xffff * -t->font->tint / 100;
316 c.pixel = WhitePixel(RrDisplay(t->font->inst),
317 RrScreen(t->font->inst));
318 }
319 #ifndef USE_PANGO
320 XftDrawStringUtf8(d, &c, t->font->xftfont, x + t->font->offset,
321 t->font->xftfont->ascent + y + t->font->offset,
322 (FcChar8*)text->str, l);
323 #else /* USE_PANGO */
324 pango_xft_render_layout(d, &c, pl, (x + t->font->offset) * PANGO_SCALE,
325 (y + t->font->offset) * PANGO_SCALE);
326 #endif /* USE_PANGO */
327 }
328 c.color.red = t->color->r | t->color->r << 8;
329 c.color.green = t->color->g | t->color->g << 8;
330 c.color.blue = t->color->b | t->color->b << 8;
331 c.color.alpha = 0xff | 0xff << 8; /* fully opaque text */
332 c.pixel = t->color->pixel;
333
334 #ifndef USE_PANGO
335 XftDrawStringUtf8(d, &c, t->font->xftfont, x,
336 t->font->xftfont->ascent + y,
337 (FcChar8*)text->str, l);
338 #else /* USE_PANGO */
339 pango_xft_render_layout(d, &c, pl, x * PANGO_SCALE, y * PANGO_SCALE);
340 g_object_unref(pl);
341 g_object_unref(context);
342 #endif
343
344 g_string_free(text, TRUE);
345 return;
346 }
This page took 0.048792 seconds and 5 git commands to generate.