]> Dogcows Code - chaz/openbox/blob - otk/font.cc
xft2 works. and works good.
[chaz/openbox] / otk / font.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2
3 #ifdef HAVE_CONFIG_H
4 # include "../config.h"
5 #endif // HAVE_CONFIG_H
6
7 extern "C" {
8 #ifdef HAVE_STDLIB_H
9 # include <stdlib.h>
10 #endif // HAVE_STDLIB_H
11 }
12
13 #include <iostream>
14 #include <algorithm>
15
16 using std::string;
17 using std::cerr;
18 using std::endl;
19
20 #include "font.hh"
21 #include "util.hh"
22 #include "display.hh"
23 #include "color.hh"
24 #include "screeninfo.hh"
25
26 extern "C" {
27 #ifdef HAVE_STDIO_H
28 # include <stdio.h>
29 #endif // HAVE_STDIO_H
30
31 #include "gettext.h"
32 #define _(str) gettext(str)
33 }
34
35 namespace otk {
36
37 string BFont::_fallback_font = "fixed";
38 bool BFont::_xft_init = false;
39
40 BFont::BFont(int screen_num, const string &fontstring,
41 bool shadow, unsigned char offset, unsigned char tint)
42 : _screen_num(screen_num),
43 _fontstring(fontstring),
44 _shadow(shadow),
45 _offset(offset),
46 _tint(tint),
47 _xftfont(0)
48 {
49 assert(screen_num >= 0);
50 assert(tint <= CHAR_MAX);
51
52 if (!_xft_init) {
53 if (!XftInit(0)) {
54 printf(_("Couldn't initialize Xft version %d.\n\n"), XftVersion);
55 ::exit(3);
56 }
57 printf(_("Using Xft %d.\n"), XftVersion);
58 _xft_init = true;
59 }
60
61 if ((_xftfont = XftFontOpenName(OBDisplay::display, _screen_num,
62 _fontstring.c_str())))
63 return;
64
65 printf(_("Unable to load font: %s"), _fontstring.c_str());
66 printf(_("Trying fallback font: %s\n"), _fallback_font.c_str());
67
68 if ((_xftfont = XftFontOpenName(OBDisplay::display, _screen_num,
69 _fallback_font.c_str())))
70 return;
71
72 printf(_("Unable to load font: %s"), _fallback_font.c_str());
73 printf(_("Aborting!.\n"));
74
75 ::exit(3); // can't continue without a font
76 }
77
78
79 BFont::~BFont(void)
80 {
81 if (_xftfont)
82 XftFontClose(OBDisplay::display, _xftfont);
83 }
84
85
86 void BFont::drawString(XftDraw *d, int x, int y, const BColor &color,
87 const string &string, bool utf8) const
88 {
89 assert(d);
90
91 if (_shadow) {
92 XftColor c;
93 c.color.red = 0;
94 c.color.green = 0;
95 c.color.blue = 0;
96 c.color.alpha = _tint | _tint << 8; // transparent shadow
97 c.pixel = BlackPixel(OBDisplay::display, _screen_num);
98
99 if (utf8)
100 XftDrawStringUtf8(d, &c, _xftfont, x + _offset,
101 _xftfont->ascent + y + _offset,
102 (const FcChar8*)string.c_str(), string.size());
103 else
104 XftDrawString8(d, &c, _xftfont, x + _offset,
105 _xftfont->ascent + y + _offset,
106 (const FcChar8*)string.c_str(), string.size());
107 }
108
109 XftColor c;
110 c.color.red = color.red() | color.red() << 8;
111 c.color.green = color.green() | color.green() << 8;
112 c.color.blue = color.blue() | color.blue() << 8;
113 c.pixel = color.pixel();
114 c.color.alpha = 0xff | 0xff << 8; // no transparency in BColor yet
115
116 if (utf8)
117 XftDrawStringUtf8(d, &c, _xftfont, x, _xftfont->ascent + y,
118 (const FcChar8*)string.c_str(), string.size());
119 else
120 XftDrawString8(d, &c, _xftfont, x, _xftfont->ascent + y,
121 (const FcChar8*)string.c_str(), string.size());
122
123 return;
124 }
125
126
127 unsigned int BFont::measureString(const string &string, bool utf8) const
128 {
129 XGlyphInfo info;
130
131 if (utf8)
132 XftTextExtentsUtf8(OBDisplay::display, _xftfont,
133 (const FcChar8*)string.c_str(), string.size(), &info);
134 else
135 XftTextExtents8(OBDisplay::display, _xftfont,
136 (const FcChar8*)string.c_str(), string.size(), &info);
137
138 return info.xOff + (_shadow ? _offset : 0);
139 }
140
141
142 unsigned int BFont::height(void) const
143 {
144 return _xftfont->height + (_shadow ? _offset : 0);
145 }
146
147
148 unsigned int BFont::maxCharWidth(void) const
149 {
150 return _xftfont->max_advance_width;
151 }
152
153 }
This page took 0.043552 seconds and 5 git commands to generate.