Xinqi Bao's Git
1 /* See LICENSE file for copyright and license details. */
10 #define MAX(a, b) ((a) > (b) ? (a) : (b))
11 #define MIN(a, b) ((a) < (b) ? (a) : (b))
12 #define DEFFONT "fixed"
14 static Bool
loadfont(DC
*dc
, const char *fontstr
);
17 drawrect(DC
*dc
, int x
, int y
, unsigned int w
, unsigned int h
, Bool fill
, unsigned long color
) {
18 XRectangle r
= { dc
->x
+ x
, dc
->y
+ y
, w
, h
};
24 XSetForeground(dc
->dpy
, dc
->gc
, color
);
25 (fill
? XFillRectangles
: XDrawRectangles
)(dc
->dpy
, dc
->canvas
, dc
->gc
, &r
, 1);
30 drawtext(DC
*dc
, const char *text
, unsigned long col
[ColLast
]) {
34 /* shorten text if necessary */
36 for(mn
= MIN(n
, sizeof buf
); textnw(dc
, text
, mn
) > dc
->w
- dc
->font
.height
/2; mn
--)
39 memcpy(buf
, text
, mn
);
41 for(n
= MAX(mn
-3, 0); n
< mn
; buf
[n
++] = '.');
43 drawrect(dc
, 0, 0, dc
->w
, dc
->h
, True
, BG(dc
, col
));
44 drawtextn(dc
, buf
, mn
, col
);
48 drawtextn(DC
*dc
, const char *text
, size_t n
, unsigned long col
[ColLast
]) {
51 x
= dc
->x
+ dc
->font
.height
/2;
52 y
= dc
->y
+ dc
->font
.ascent
+1;
54 XSetForeground(dc
->dpy
, dc
->gc
, FG(dc
, col
));
56 XmbDrawString(dc
->dpy
, dc
->canvas
, dc
->font
.set
, dc
->gc
, x
, y
, text
, n
);
58 XSetFont(dc
->dpy
, dc
->gc
, dc
->font
.xfont
->fid
);
59 XDrawString(dc
->dpy
, dc
->canvas
, dc
->gc
, x
, y
, text
, n
);
64 eprintf(const char *fmt
, ...) {
67 fprintf(stderr
, "%s: ", progname
);
69 vfprintf(stderr
, fmt
, ap
);
77 XFreeFontSet(dc
->dpy
, dc
->font
.set
);
79 XFreeFont(dc
->dpy
, dc
->font
.xfont
);
81 XFreePixmap(dc
->dpy
, dc
->canvas
);
82 XFreeGC(dc
->dpy
, dc
->gc
);
83 XCloseDisplay(dc
->dpy
);
88 getcolor(DC
*dc
, const char *colstr
) {
89 Colormap cmap
= DefaultColormap(dc
->dpy
, DefaultScreen(dc
->dpy
));
92 if(!XAllocNamedColor(dc
->dpy
, cmap
, colstr
, &color
, &color
))
93 eprintf("cannot allocate color '%s'\n", colstr
);
101 if(!setlocale(LC_CTYPE
, "") || !XSupportsLocale())
102 weprintf("no locale support\n");
103 if(!(dc
= malloc(sizeof *dc
)))
104 eprintf("cannot malloc %u bytes\n", sizeof *dc
);
105 if(!(dc
->dpy
= XOpenDisplay(NULL
)))
106 eprintf("cannot open display\n");
108 dc
->gc
= XCreateGC(dc
->dpy
, DefaultRootWindow(dc
->dpy
), 0, NULL
);
109 XSetLineAttributes(dc
->dpy
, dc
->gc
, 1, LineSolid
, CapButt
, JoinMiter
);
110 dc
->font
.xfont
= NULL
;
117 initfont(DC
*dc
, const char *fontstr
) {
118 if(!loadfont(dc
, fontstr
? fontstr
: DEFFONT
)) {
120 weprintf("cannot load font '%s'\n", fontstr
);
121 if(fontstr
== NULL
|| !loadfont(dc
, DEFFONT
))
122 eprintf("cannot load font '%s'\n", DEFFONT
);
124 dc
->font
.height
= dc
->font
.ascent
+ dc
->font
.descent
;
128 loadfont(DC
*dc
, const char *fontstr
) {
129 char *def
, **missing
;
134 if((dc
->font
.set
= XCreateFontSet(dc
->dpy
, fontstr
, &missing
, &n
, &def
))) {
136 XFontStruct
**xfonts
;
138 n
= XFontsOfFontSet(dc
->font
.set
, &xfonts
, &names
);
139 for(i
= dc
->font
.ascent
= dc
->font
.descent
= 0; i
< n
; i
++) {
140 dc
->font
.ascent
= MAX(dc
->font
.ascent
, xfonts
[i
]->ascent
);
141 dc
->font
.descent
= MAX(dc
->font
.descent
, xfonts
[i
]->descent
);
144 else if((dc
->font
.xfont
= XLoadQueryFont(dc
->dpy
, fontstr
))) {
145 dc
->font
.ascent
= dc
->font
.xfont
->ascent
;
146 dc
->font
.descent
= dc
->font
.xfont
->descent
;
149 XFreeStringList(missing
);
150 return (dc
->font
.set
|| dc
->font
.xfont
);
154 mapdc(DC
*dc
, Window win
, unsigned int w
, unsigned int h
) {
155 XCopyArea(dc
->dpy
, dc
->canvas
, win
, dc
->gc
, 0, 0, w
, h
, 0, 0);
159 resizedc(DC
*dc
, unsigned int w
, unsigned int h
) {
161 XFreePixmap(dc
->dpy
, dc
->canvas
);
162 dc
->canvas
= XCreatePixmap(dc
->dpy
, DefaultRootWindow(dc
->dpy
), w
, h
,
163 DefaultDepth(dc
->dpy
, DefaultScreen(dc
->dpy
)));
171 textnw(DC
*dc
, const char *text
, size_t len
) {
175 XmbTextExtents(dc
->font
.set
, text
, len
, NULL
, &r
);
178 return XTextWidth(dc
->font
.xfont
, text
, len
);
182 textw(DC
*dc
, const char *text
) {
183 return textnw(dc
, text
, strlen(text
)) + dc
->font
.height
;
187 weprintf(const char *fmt
, ...) {
190 fprintf(stderr
, "%s: warning: ", progname
);
192 vfprintf(stderr
, fmt
, ap
);