5 #include <X11/Xft/Xft.h>
12 Display
* display
, int screen
,
13 double font_size_override
= 0.0, bool skip_italics
= false);
16 XftFont
* xft_font_for(const Style
& style
) {
17 return xft_fonts
[style
.italic
<< 1 | style
.bold
];
19 XftFont
* plain_xft_font() { return xft_fonts
[0]; }
20 int ascent() { return xft_fonts
[0]->ascent
; }
21 int height() { return xft_fonts
[0]->height
; }
23 double used_font_size
;
27 XftFont
* xft_fonts
[4];