]>
Dogcows Code - chaz/openbox/blob - otk/font.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
4 # include "../config.h"
5 #endif // HAVE_CONFIG_H
10 #endif // HAVE_STDLIB_H
24 #include "screeninfo.hh"
29 #endif // HAVE_STDIO_H
32 #define _(str) gettext(str)
37 string
Font::_fallback_font
= "fixed";
38 bool Font::_xft_init
= false;
40 Font::Font(int screen_num
, const string
&fontstring
,
41 bool shadow
, unsigned char offset
, unsigned char tint
)
42 : _screen_num(screen_num
),
43 _fontstring(fontstring
),
49 assert(screen_num
>= 0);
50 assert(tint
<= CHAR_MAX
);
54 printf(_("Couldn't initialize Xft.\n\n"));
57 int version
= XftGetVersion();
58 printf(_("Using Xft %d.%d.%d.\n"),
59 version
/ 10000 % 100, version
/ 100 % 100, version
% 100);
63 if ((_xftfont
= XftFontOpenName(Display::display
, _screen_num
,
64 _fontstring
.c_str())))
67 printf(_("Unable to load font: %s\n"), _fontstring
.c_str());
68 printf(_("Trying fallback font: %s\n"), _fallback_font
.c_str());
70 if ((_xftfont
= XftFontOpenName(Display::display
, _screen_num
,
71 _fallback_font
.c_str())))
74 printf(_("Unable to load font: %s\n"), _fallback_font
.c_str());
75 printf(_("Aborting!.\n"));
77 ::exit(3); // can't continue without a font
84 XftFontClose(Display::display
, _xftfont
);
88 void Font::drawString(XftDraw
*d
, int x
, int y
, const Color
&color
,
89 const string
&string
, bool utf8
) const
98 c
.color
.alpha
= _tint
| _tint
<< 8; // transparent shadow
99 c
.pixel
= BlackPixel(Display::display
, _screen_num
);
102 XftDrawStringUtf8(d
, &c
, _xftfont
, x
+ _offset
,
103 _xftfont
->ascent
+ y
+ _offset
,
104 (FcChar8
*)string
.c_str(), string
.size());
106 XftDrawString8(d
, &c
, _xftfont
, x
+ _offset
,
107 _xftfont
->ascent
+ y
+ _offset
,
108 (FcChar8
*)string
.c_str(), string
.size());
112 c
.color
.red
= color
.red() | color
.red() << 8;
113 c
.color
.green
= color
.green() | color
.green() << 8;
114 c
.color
.blue
= color
.blue() | color
.blue() << 8;
115 c
.pixel
= color
.pixel();
116 c
.color
.alpha
= 0xff | 0xff << 8; // no transparency in Color yet
119 XftDrawStringUtf8(d
, &c
, _xftfont
, x
, _xftfont
->ascent
+ y
,
120 (FcChar8
*)string
.c_str(), string
.size());
122 XftDrawString8(d
, &c
, _xftfont
, x
, _xftfont
->ascent
+ y
,
123 (FcChar8
*)string
.c_str(), string
.size());
129 unsigned int Font::measureString(const string
&string
, bool utf8
) const
134 XftTextExtentsUtf8(Display::display
, _xftfont
,
135 (FcChar8
*)string
.c_str(), string
.size(), &info
);
137 XftTextExtents8(Display::display
, _xftfont
,
138 (FcChar8
*)string
.c_str(), string
.size(), &info
);
140 return info
.xOff
+ (_shadow
? _offset
: 0);
144 unsigned int Font::height(void) const
146 return _xftfont
->height
+ (_shadow
? _offset
: 0);
150 unsigned int Font::maxCharWidth(void) const
152 return _xftfont
->max_advance_width
;
This page took 0.049431 seconds and 5 git commands to generate.