]> icculus.org git repositories - mikachu/openbox.git/blob - render/font.c
move the openbox engine into librender and the kernel. the theme is loaded and stored...
[mikachu/openbox.git] / render / font.c
1 #include "../kernel/openbox.h"
2 #include "font.h"
3
4 #include "../kernel/gettext.h"
5 #define _(str) gettext(str)
6
7 #include <X11/Xft/Xft.h>
8 #include <glib.h>
9 #include "../kernel/geom.h"
10
11 void font_startup(void)
12 {
13 #ifdef DEBUG
14     int version;
15 #endif /* DEBUG */
16     if (!XftInit(0)) {
17         g_warning(_("Couldn't initialize Xft.\n"));
18         exit(3);
19     }
20 #ifdef DEBUG
21     version = XftGetVersion();
22     g_message("Using Xft %d.%d.%d (Built against %d.%d.%d).",
23               version / 10000 % 100, version / 100 % 100, version % 100,
24               XFT_MAJOR, XFT_MINOR, XFT_REVISION);
25 #endif
26 }
27
28 static void measure_height(ObFont *f)
29 {
30     XGlyphInfo info;
31     char *str;
32
33     /* XXX add some extended UTF8 characters in here? */
34     str = "12345678900-qwertyuiopasdfghjklzxcvbnm"
35         "!@#$%^&*()_+QWERTYUIOPASDFGHJKLZXCVBNM"
36         "`~[]\\;',./{}|:\"<>?";
37
38     XftTextExtentsUtf8(ob_display, f->xftfont,
39                        (FcChar8*)str, strlen(str), &info);
40     f->height = (signed) info.height;
41 }
42
43 ObFont *font_open(char *fontstring)
44 {
45     ObFont *out;
46     XftFont *xf;
47     
48     if ((xf = XftFontOpenName(ob_display, ob_screen, fontstring))) {
49         out = g_new(ObFont, 1);
50         out->xftfont = xf;
51         measure_height(out);
52         return out;
53     }
54     g_warning(_("Unable to load font: %s\n"), fontstring);
55     g_warning(_("Trying fallback font: %s\n"), "sans");
56
57     if ((xf = XftFontOpenName(ob_display, ob_screen, "sans"))) {
58         out = g_new(ObFont, 1);
59         out->xftfont = xf;
60         measure_height(out);
61         return out;
62     }
63     g_warning(_("Unable to load font: %s\n"), "sans");
64     g_warning(_("Aborting!.\n"));
65
66     exit(3); /* can't continue without a font */
67 }
68
69 void font_close(ObFont *f)
70 {
71     if (f) {
72         XftFontClose(ob_display, f->xftfont);
73         g_free(f);
74     }
75 }
76
77 int font_measure_string(ObFont *f, char *str, int shadow, int offset)
78 {
79     XGlyphInfo info;
80
81     XftTextExtentsUtf8(ob_display, f->xftfont,
82                        (FcChar8*)str, strlen(str), &info);
83
84     return (signed) info.xOff + (shadow ? offset : 0);
85 }
86
87 int font_height(ObFont *f, int shadow, int offset)
88 {
89     return f->height + (shadow ? offset : 0);
90 }
91
92 int font_max_char_width(ObFont *f)
93 {
94     return (signed) f->xftfont->max_advance_width;
95 }
96
97 void font_draw(XftDraw *d, TextureText *t, Rect *position)
98 {
99     int x,y,w,h;
100     XftColor c;
101
102     x = position->x;
103     y = position->y;
104     w = position->width;
105     h = position->height;
106
107     /* accomidate for areas bigger/smaller than Xft thinks the font is tall */
108     y -= (2 * (t->font->xftfont->ascent + t->font->xftfont->descent) -
109           (t->font->height + h) - 1) / 2;
110
111     x += 3; /* XXX figure out X with justification */
112
113     if (t->shadow) {
114         if (t->tint >= 0) {
115             c.color.red = 0;
116             c.color.green = 0;
117             c.color.blue = 0;
118             c.color.alpha = 0xffff * t->tint / 100; /* transparent shadow */
119             c.pixel = BlackPixel(ob_display, ob_screen);
120         } else {
121             c.color.red = 0xffff * -t->tint / 100;
122             c.color.green = 0xffff * -t->tint / 100;
123             c.color.blue = 0xffff * -t->tint / 100;
124             c.color.alpha = 0xffff * -t->tint / 100; /* transparent shadow */
125             c.pixel = WhitePixel(ob_display, ob_screen);
126         }  
127         XftDrawStringUtf8(d, &c, t->font->xftfont, x + t->offset,
128                           t->font->xftfont->ascent + y + t->offset,
129                           (FcChar8*)t->string, strlen(t->string));
130     }  
131     c.color.red = t->color->r | t->color->r << 8;
132     c.color.green = t->color->g | t->color->g << 8;
133     c.color.blue = t->color->b | t->color->b << 8;
134     c.color.alpha = 0xff | 0xff << 8; /* fully opaque text */
135     c.pixel = t->color->pixel;
136                      
137     XftDrawStringUtf8(d, &c, t->font->xftfont, x,
138                       t->font->xftfont->ascent + y,
139                       (FcChar8*)t->string, strlen(t->string));
140     return;
141 }