]>
Dogcows Code - chaz/openbox/blob - render/font.c
7 #include <X11/Xft/Xft.h>
12 #define ELIPSES_LENGTH(font) \
13 (font->elipses_length + (font->shadow ? font->offset : 0))
15 #define OB_SHADOW "shadow"
16 #define OB_SHADOW_OFFSET "shadowoffset"
17 #define OB_SHADOW_ALPHA "shadowtint"
19 FcObjectType objs
[] = {
20 { OB_SHADOW
, FcTypeBool
},
21 { OB_SHADOW_OFFSET
, FcTypeInteger
},
22 { OB_SHADOW_ALPHA
, FcTypeInteger
}
25 static gboolean started
= FALSE
;
27 static void font_startup(void)
30 g_warning(_("Couldn't initialize Xft.\n"));
33 FcNameRegisterObjectTypes(objs
, (sizeof(objs
) / sizeof(objs
[0])));
36 static void measure_font(RrFont
*f
)
40 /* measure an elipses */
41 XftTextExtentsUtf8(RrDisplay(f
->inst
), f
->xftfont
,
42 (FcChar8
*)ELIPSES
, strlen(ELIPSES
), &info
);
43 f
->elipses_length
= (signed) info
.xOff
;
46 static RrFont
*openfont(const RrInstance
*inst
, char *fontstring
)
49 FcPattern
*pat
, *match
;
54 if (!(pat
= XftNameParse(fontstring
)))
57 match
= XftFontMatch(RrDisplay(inst
), RrScreen(inst
), pat
, &res
);
61 out
= g_new(RrFont
, 1);
64 if (FcPatternGetBool(match
, OB_SHADOW
, 0, &out
->shadow
) != FcResultMatch
)
67 if (FcPatternGetInteger(match
, OB_SHADOW_OFFSET
, 0, &out
->offset
) !=
71 if (FcPatternGetInteger(match
, OB_SHADOW_ALPHA
, 0, &tint
) != FcResultMatch
)
73 if (tint
> 100) tint
= 100;
74 else if (tint
< -100) tint
= -100;
77 font
= XftFontOpenPattern(RrDisplay(inst
), match
);
79 FcPatternDestroy(match
);
90 RrFont
*RrFontOpen(const RrInstance
*inst
, char *fontstring
)
99 if ((out
= openfont(inst
, fontstring
)))
101 g_warning(_("Unable to load font: %s\n"), fontstring
);
102 g_warning(_("Trying fallback font: %s\n"), "sans");
104 if ((out
= openfont(inst
, "sans")))
106 g_warning(_("Unable to load font: %s\n"), "sans");
111 void RrFontClose(RrFont
*f
)
114 XftFontClose(RrDisplay(f
->inst
), f
->xftfont
);
119 static void font_measure_full(const RrFont
*f
, const gchar
*str
,
124 XftTextExtentsUtf8(RrDisplay(f
->inst
), f
->xftfont
,
125 (const FcChar8
*)str
, strlen(str
), &info
);
127 *x
= (signed) info
.xOff
+ (f
->shadow
? ABS(f
->offset
) : 0);
128 *y
= info
.height
+ (f
->shadow
? ABS(f
->offset
) : 0);
131 int RrFontMeasureString(const RrFont
*f
, const gchar
*str
)
134 font_measure_full (f
, str
, &x
, &y
);
138 int RrFontHeight(const RrFont
*f
)
140 return f
->xftfont
->ascent
+ f
->xftfont
->descent
+
141 (f
->shadow
? f
->offset
: 0);
144 int RrFontMaxCharWidth(const RrFont
*f
)
146 return (signed) f
->xftfont
->max_advance_width
;
149 void RrFontDraw(XftDraw
*d
, RrTextureText
*t
, RrRect
*area
)
156 gboolean shortened
= FALSE
;
158 /* center vertically */
160 (area
->height
- RrFontHeight(t
->font
)) / 2;
161 /* the +2 and -4 leave a small blank edge on the sides */
166 text
= g_string_new(t
->string
);
167 l
= g_utf8_strlen(text
->str
, -1);
168 font_measure_full(t
->font
, text
->str
, &mw
, &mh
);
169 while (l
&& mw
> area
->width
) {
171 /* remove a character from the middle */
172 text
= g_string_erase(text
, l
-- / 2, 1);
173 em
= ELIPSES_LENGTH(t
->font
);
174 /* if the elipses are too large, don't show them at all */
175 if (em
> area
->width
)
177 font_measure_full(t
->font
, text
->str
, &mw
, &mh
);
181 text
= g_string_insert(text
, (l
+ 1) / 2, ELIPSES
);
186 switch (t
->justify
) {
187 case RR_JUSTIFY_LEFT
:
189 case RR_JUSTIFY_RIGHT
:
192 case RR_JUSTIFY_CENTER
:
197 l
= strlen(text
->str
); /* number of bytes */
199 if (t
->font
->shadow
) {
200 if (t
->font
->tint
>= 0) {
204 c
.color
.alpha
= 0xffff * t
->font
->tint
/ 100;
205 c
.pixel
= BlackPixel(RrDisplay(t
->font
->inst
),
206 RrScreen(t
->font
->inst
));
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
));
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
);
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
;
225 XftDrawStringUtf8(d
, &c
, t
->font
->xftfont
, x
,
226 t
->font
->xftfont
->ascent
+ y
,
227 (FcChar8
*)text
->str
, l
);
This page took 0.047982 seconds and 4 git commands to generate.