Xinqi Bao's Git
ba1fafd633daf35cd180d11b7950f8842878135c
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
, unsigned int colidx
, Bool border
)
31 unsigned int len
, olen
;
33 XRectangle r
= { dc
.x
, dc
.y
, dc
.w
, dc
.h
};
35 XSetForeground(dpy
, dc
.gc
, dc
.bg
[colidx
]);
36 XFillRectangles(dpy
, dc
.drawable
, dc
.gc
, &r
, 1);
39 XSetForeground(dpy
, dc
.gc
, dc
.fg
[colidx
]);
43 points
[1].x
= dc
.w
- 1;
46 points
[2].y
= dc
.h
- 1;
47 points
[3].x
= -(dc
.w
- 1);
50 points
[4].y
= -(dc
.h
- 1);
51 XDrawLines(dpy
, dc
.drawable
, dc
.gc
, points
, 5, CoordModePrevious
);
57 olen
= len
= strlen(text
);
58 if(len
>= sizeof(buf
))
59 len
= sizeof(buf
) - 1;
60 memcpy(buf
, text
, len
);
63 h
= dc
.font
.ascent
+ dc
.font
.descent
;
64 y
= dc
.y
+ (dc
.h
/ 2) - (h
/ 2) + dc
.font
.ascent
;
67 /* shorten text if necessary */
68 while(len
&& (w
= textnw(buf
, len
)) > dc
.w
- h
)
80 return; /* too long */
83 XmbDrawString(dpy
, dc
.drawable
, dc
.font
.set
, dc
.gc
, x
, y
, buf
, len
);
85 XSetFont(dpy
, dc
.gc
, dc
.font
.xfont
->fid
);
86 XDrawString(dpy
, dc
.drawable
, dc
.gc
, x
, y
, buf
, len
);
91 getcolor(const char *colstr
)
93 Colormap cmap
= DefaultColormap(dpy
, screen
);
96 XAllocNamedColor(dpy
, cmap
, colstr
, &color
, &color
);
101 setfont(const char *fontstr
)
103 char **missing
, *def
;
107 setlocale(LC_ALL
, "");
109 XFreeFontSet(dpy
, dc
.font
.set
);
110 dc
.font
.set
= XCreateFontSet(dpy
, fontstr
, &missing
, &n
, &def
);
112 XFreeStringList(missing
);
114 XFreeFontSet(dpy
, dc
.font
.set
);
119 XFontSetExtents
*font_extents
;
120 XFontStruct
**xfonts
;
123 dc
.font
.ascent
= dc
.font
.descent
= 0;
124 font_extents
= XExtentsOfFontSet(dc
.font
.set
);
125 n
= XFontsOfFontSet(dc
.font
.set
, &xfonts
, &font_names
);
126 for(i
= 0, dc
.font
.ascent
= 0, dc
.font
.descent
= 0; i
< n
; i
++) {
127 if(dc
.font
.ascent
< (*xfonts
)->ascent
)
128 dc
.font
.ascent
= (*xfonts
)->ascent
;
129 if(dc
.font
.descent
< (*xfonts
)->descent
)
130 dc
.font
.descent
= (*xfonts
)->descent
;
136 XFreeFont(dpy
, dc
.font
.xfont
);
137 dc
.font
.xfont
= NULL
;
138 dc
.font
.xfont
= XLoadQueryFont(dpy
, fontstr
);
140 dc
.font
.xfont
= XLoadQueryFont(dpy
, "fixed");
142 eprint("error, cannot init 'fixed' font\n");
143 dc
.font
.ascent
= dc
.font
.xfont
->ascent
;
144 dc
.font
.descent
= dc
.font
.xfont
->descent
;
146 dc
.font
.height
= dc
.font
.ascent
+ dc
.font
.descent
;
150 textw(const char *text
)
152 return textnw(text
, strlen(text
)) + dc
.font
.height
;