Xinqi Bao's Git
2 * (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
3 * See LICENSE file for license details.
8 #include <X11/Xlocale.h>
13 textnw(const char *text
, unsigned int len
)
18 XmbTextExtents(dc
.font
.set
, text
, len
, NULL
, &r
);
21 return XTextWidth(dc
.font
.xfont
, text
, len
);
27 drawtext(const char *text
, Bool invert
, Bool border
)
31 unsigned int len
, olen
;
34 XRectangle r
= { dc
.x
, dc
.y
, dc
.w
, dc
.h
};
36 XSetForeground(dpy
, dc
.gc
, invert
? dc
.fg
: dc
.bg
);
37 XFillRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
41 XSetLineAttributes(dpy
, dc
.gc
, 1, LineSolid
, CapButt
, JoinMiter
);
42 XSetForeground(dpy
, dc
.gc
, dc
.border
);
45 points
[1].x
= dc
.w
- 1;
48 points
[2].y
= dc
.h
- 1;
49 points
[3].x
= -(dc
.w
- 1);
52 points
[4].y
= -(dc
.h
- 1);
53 XDrawLines(dpy
, dc
.drawable
, dc
.gc
, points
, 5, CoordModePrevious
);
59 olen
= len
= strlen(text
);
60 if(len
>= sizeof(buf
))
61 len
= sizeof(buf
) - 1;
62 memcpy(buf
, text
, len
);
65 h
= dc
.font
.ascent
+ dc
.font
.descent
;
66 y
= dc
.y
+ (dc
.h
/ 2) - (h
/ 2) + dc
.font
.ascent
;
69 /* shorten text if necessary */
70 while(len
&& (w
= textnw(buf
, len
)) > dc
.w
- h
)
82 return; /* too long */
84 gcv
.foreground
= invert
? dc
.bg
: dc
.fg
;
85 gcv
.background
= invert
? dc
.fg
: dc
.bg
;
87 XChangeGC(dpy
, dc
.gc
, GCForeground
| GCBackground
, &gcv
);
88 XmbDrawImageString(dpy
, dc
.drawable
, dc
.font
.set
, dc
.gc
,
92 gcv
.font
= dc
.font
.xfont
->fid
;
93 XChangeGC(dpy
, dc
.gc
, GCForeground
| GCBackground
| GCFont
, &gcv
);
94 XDrawImageString(dpy
, dc
.drawable
, dc
.gc
, x
, y
, buf
, len
);
99 getcolor(const char *colstr
)
101 Colormap cmap
= DefaultColormap(dpy
, screen
);
104 XAllocNamedColor(dpy
, cmap
, colstr
, &color
, &color
);
109 setfont(const char *fontstr
)
111 char **missing
, *def
;
115 setlocale(LC_ALL
, "");
117 XFreeFontSet(dpy
, dc
.font
.set
);
118 dc
.font
.set
= XCreateFontSet(dpy
, fontstr
, &missing
, &n
, &def
);
120 XFreeStringList(missing
);
122 XFreeFontSet(dpy
, dc
.font
.set
);
127 XFontSetExtents
*font_extents
;
128 XFontStruct
**xfonts
;
131 dc
.font
.ascent
= dc
.font
.descent
= 0;
132 font_extents
= XExtentsOfFontSet(dc
.font
.set
);
133 n
= XFontsOfFontSet(dc
.font
.set
, &xfonts
, &font_names
);
134 for(i
= 0, dc
.font
.ascent
= 0, dc
.font
.descent
= 0; i
< n
; i
++) {
135 if(dc
.font
.ascent
< (*xfonts
)->ascent
)
136 dc
.font
.ascent
= (*xfonts
)->ascent
;
137 if(dc
.font
.descent
< (*xfonts
)->descent
)
138 dc
.font
.descent
= (*xfonts
)->descent
;
144 XFreeFont(dpy
, dc
.font
.xfont
);
145 dc
.font
.xfont
= NULL
;
146 dc
.font
.xfont
= XLoadQueryFont(dpy
, fontstr
);
148 dc
.font
.xfont
= XLoadQueryFont(dpy
, "fixed");
150 eprint("error, cannot init 'fixed' font\n");
151 dc
.font
.ascent
= dc
.font
.xfont
->ascent
;
152 dc
.font
.descent
= dc
.font
.xfont
->descent
;
154 dc
.font
.height
= dc
.font
.ascent
+ dc
.font
.descent
;
158 textw(const char *text
)
160 return textnw(text
, strlen(text
)) + dc
.font
.height
;