]> icculus.org git repositories - dana/openbox.git/blob - render/font.c
wasted variable
[dana/openbox.git] / render / font.c
1 #include "font.h"
2 #include "color.h"
3 #include "mask.h"
4 #include "theme.h"
5 #include "gettext.h"
6
7 #include <X11/Xft/Xft.h>
8 #include <glib.h>
9 #include <string.h>
10 #include <stdlib.h>
11
12 #define ELIPSES "..."
13 #define ELIPSES_LENGTH(font) \
14     (font->elipses_length + (font->shadow ? font->offset : 0))
15
16 #define OB_SHADOW "shadow"
17 #define OB_SHADOW_OFFSET "shadowoffset"
18 #define OB_SHADOW_ALPHA "shadowtint"
19
20 FcObjectType objs[] = {
21     { OB_SHADOW,        FcTypeBool    },
22     { OB_SHADOW_OFFSET, FcTypeInteger },
23     { OB_SHADOW_ALPHA,  FcTypeInteger  }
24 };
25
26 static gboolean started = FALSE;
27
28 static void font_startup(void)
29 {
30     if (!XftInit(0)) {
31         g_warning(_("Couldn't initialize Xft.\n"));
32         exit(EXIT_FAILURE);
33     }
34     FcNameRegisterObjectTypes(objs, (sizeof(objs) / sizeof(objs[0])));
35 }
36
37 static void measure_font(RrFont *f)
38 {
39     XGlyphInfo info;
40
41     /* measure an elipses */
42     XftTextExtentsUtf8(RrDisplay(f->inst), f->xftfont,
43                        (FcChar8*)ELIPSES, strlen(ELIPSES), &info);
44     f->elipses_length = (signed) info.xOff;
45 }
46
47 static RrFont *openfont(const RrInstance *inst, char *fontstring)
48 {
49     RrFont *out;
50     FcPattern *pat, *match;
51     XftFont *font;
52     FcResult res;
53     gint tint;
54
55     if (!(pat = XftNameParse(fontstring)))
56         return NULL;
57
58     match = XftFontMatch(RrDisplay(inst), RrScreen(inst), pat, &res);
59     if (!match)
60         return NULL;
61
62     out = g_new(RrFont, 1);
63     out->inst = inst;
64
65     if (FcPatternGetBool(match, OB_SHADOW, 0, &out->shadow) != FcResultMatch)
66         out->shadow = FALSE;
67
68     if (FcPatternGetInteger(match, OB_SHADOW_OFFSET, 0, &out->offset) !=
69         FcResultMatch)
70         out->offset = 1;
71
72     if (FcPatternGetInteger(match, OB_SHADOW_ALPHA, 0, &tint) != FcResultMatch)
73         tint = 25;
74     if (tint > 100) tint = 100;
75     else if (tint < -100) tint = -100;
76     out->tint = tint;
77
78     font = XftFontOpenPattern(RrDisplay(inst), match);
79     if (!font) {
80         FcPatternDestroy(match);
81         g_free(out);
82         return NULL;
83     } else
84         out->xftfont = font;
85
86     measure_font(out);
87
88     return out;
89 }
90
91 RrFont *RrFontOpen(const RrInstance *inst, char *fontstring)
92 {
93     RrFont *out;
94
95     if (!started) {
96         font_startup();
97         started = TRUE;
98     }
99
100     if ((out = openfont(inst, fontstring)))
101         return out;
102     g_warning(_("Unable to load font: %s\n"), fontstring);
103     g_warning(_("Trying fallback font: %s\n"), "sans");
104
105     if ((out = openfont(inst, "sans")))
106         return out;
107     g_warning(_("Unable to load font: %s\n"), "sans");
108
109     return NULL;
110 }
111
112 void RrFontClose(RrFont *f)
113 {
114     if (f) {
115         XftFontClose(RrDisplay(f->inst), f->xftfont);
116         g_free(f);
117     }
118 }
119
120 static void font_measure_full(const RrFont *f, const gchar *str,
121                               gint *x, gint *y)
122 {
123     XGlyphInfo info;
124
125     XftTextExtentsUtf8(RrDisplay(f->inst), f->xftfont,
126                        (const FcChar8*)str, strlen(str), &info);
127
128     *x = (signed) info.xOff + (f->shadow ? ABS(f->offset) : 0);
129     *y = info.height + (f->shadow ? ABS(f->offset) : 0);
130 }
131
132 int RrFontMeasureString(const RrFont *f, const gchar *str)
133 {
134     gint x, y;
135     font_measure_full (f, str, &x, &y);
136     return x + 4;
137 }
138
139 int RrFontHeight(const RrFont *f)
140 {
141     return f->xftfont->ascent + f->xftfont->descent +
142         (f->shadow ? f->offset : 0);
143 }
144
145 int RrFontMaxCharWidth(const RrFont *f)
146 {
147     return (signed) f->xftfont->max_advance_width;
148 }
149
150 void RrFontDraw(XftDraw *d, RrTextureText *t, RrRect *area)
151 {
152     gint x,y,w,h;
153     XftColor c;
154     GString *text;
155     gint mw, mh;
156     size_t l;
157     gboolean shortened = FALSE;
158
159     /* center vertically */
160     y = area->y +
161         (area->height - RrFontHeight(t->font)) / 2;
162     /* the +2 and -4 leave a small blank edge on the sides */
163     x = area->x + 2;
164     w = area->width - 4;
165     h = area->height;
166
167     text = g_string_new(t->string);
168     l = g_utf8_strlen(text->str, -1);
169     font_measure_full(t->font, text->str, &mw, &mh);
170     while (l && mw > area->width) {
171         shortened = TRUE;
172         /* remove a character from the middle */
173         text = g_string_erase(text, l-- / 2, 1);
174         /* if the elipses are too large, don't show them at all */
175         if (ELIPSES_LENGTH(t->font) > area->width)
176             shortened = FALSE;
177         font_measure_full(t->font, text->str, &mw, &mh);
178         mw += ELIPSES_LENGTH(t->font);
179     }
180     if (shortened) {
181         text = g_string_insert(text, (l + 1) / 2, ELIPSES);
182         l += 3;
183     }
184     if (!l) return;
185
186     switch (t->justify) {
187     case RR_JUSTIFY_LEFT:
188         break;
189     case RR_JUSTIFY_RIGHT:
190         x += (w - mw);
191         break;
192     case RR_JUSTIFY_CENTER:
193         x += (w - mw) / 2;
194         break;
195     }
196
197     l = strlen(text->str); /* number of bytes */
198
199     if (t->font->shadow) {
200         if (t->font->tint >= 0) {
201             c.color.red = 0;
202             c.color.green = 0;
203             c.color.blue = 0;
204             c.color.alpha = 0xffff * t->font->tint / 100;
205             c.pixel = BlackPixel(RrDisplay(t->font->inst),
206                                  RrScreen(t->font->inst));
207         } else {
208             c.color.red = 0xffff;
209             c.color.green = 0xffff;
210             c.color.blue = 0xffff;
211             c.color.alpha = 0xffff * -t->font->tint / 100;
212             c.pixel = WhitePixel(RrDisplay(t->font->inst),
213                                  RrScreen(t->font->inst));
214         }  
215         XftDrawStringUtf8(d, &c, t->font->xftfont, x + t->font->offset,
216                           t->font->xftfont->ascent + y + t->font->offset,
217                           (FcChar8*)text->str, l);
218     }  
219     c.color.red = t->color->r | t->color->r << 8;
220     c.color.green = t->color->g | t->color->g << 8;
221     c.color.blue = t->color->b | t->color->b << 8;
222     c.color.alpha = 0xff | 0xff << 8; /* fully opaque text */
223     c.pixel = t->color->pixel;
224
225     XftDrawStringUtf8(d, &c, t->font->xftfont, x,
226                       t->font->xftfont->ascent + y,
227                       (FcChar8*)text->str, l);
228
229     g_string_free(text, TRUE);
230     return;
231 }