Xinqi Bao's Git

applied something similiar to Jukkas patch
[dmenu.git] / draw.c
1 /*
2 * (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
3 * See LICENSE file for license details.
4 */
5 #include "dmenu.h"
6 #include <stdio.h>
7 #include <string.h>
8 #include <X11/Xlocale.h>
9
10 /* static */
11
12 static unsigned int
13 textnw(const char *text, unsigned int len) {
14 XRectangle r;
15
16 if(dc.font.set) {
17 XmbTextExtents(dc.font.set, text, len, NULL, &r);
18 return r.width;
19 }
20 return XTextWidth(dc.font.xfont, text, len);
21 }
22
23 /* extern */
24
25 void
26 drawtext(const char *text, unsigned long col[ColLast]) {
27 int x, y, w, h;
28 static char buf[256];
29 unsigned int len, olen;
30 XGCValues gcv;
31 XRectangle r = { dc.x, dc.y, dc.w, dc.h };
32
33 XSetForeground(dpy, dc.gc, col[ColBG]);
34 XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
35
36 if(!text)
37 return;
38
39 w = 0;
40 olen = len = strlen(text);
41 if(len >= sizeof(buf))
42 len = sizeof(buf) - 1;
43 memcpy(buf, text, len);
44 buf[len] = 0;
45
46 h = dc.font.ascent + dc.font.descent;
47 y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent;
48 x = dc.x + (h / 2);
49
50 /* shorten text if necessary */
51 while(len && (w = textnw(buf, len)) > dc.w - h)
52 buf[--len] = 0;
53 if(len < olen) {
54 if(len > 1)
55 buf[len - 1] = '.';
56 if(len > 2)
57 buf[len - 2] = '.';
58 if(len > 3)
59 buf[len - 3] = '.';
60 }
61
62 if(w > dc.w)
63 return; /* too long */
64
65 gcv.foreground = col[ColFG];
66 if(dc.font.set) {
67 XChangeGC(dpy, dc.gc, GCForeground, &gcv);
68 XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc,
69 x, y, buf, len);
70 }
71 else {
72 gcv.font = dc.font.xfont->fid;
73 XChangeGC(dpy, dc.gc, GCForeground | GCFont, &gcv);
74 XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
75 }
76 }
77
78 unsigned long
79 getcolor(const char *colstr) {
80 Colormap cmap = DefaultColormap(dpy, screen);
81 XColor color;
82
83 XAllocNamedColor(dpy, cmap, colstr, &color, &color);
84 return color.pixel;
85 }
86
87 void
88 setfont(const char *fontstr) {
89 char **missing, *def;
90 int i, n;
91
92 missing = NULL;
93 setlocale(LC_ALL, "");
94 if(dc.font.set)
95 XFreeFontSet(dpy, dc.font.set);
96 dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def);
97 if(missing) {
98 XFreeStringList(missing);
99 if(dc.font.set) {
100 XFreeFontSet(dpy, dc.font.set);
101 dc.font.set = NULL;
102 }
103 }
104 if(dc.font.set) {
105 XFontSetExtents *font_extents;
106 XFontStruct **xfonts;
107 char **font_names;
108
109 dc.font.ascent = dc.font.descent = 0;
110 font_extents = XExtentsOfFontSet(dc.font.set);
111 n = XFontsOfFontSet(dc.font.set, &xfonts, &font_names);
112 for(i = 0, dc.font.ascent = 0, dc.font.descent = 0; i < n; i++) {
113 if(dc.font.ascent < (*xfonts)->ascent)
114 dc.font.ascent = (*xfonts)->ascent;
115 if(dc.font.descent < (*xfonts)->descent)
116 dc.font.descent = (*xfonts)->descent;
117 xfonts++;
118 }
119 }
120 else {
121 if(dc.font.xfont)
122 XFreeFont(dpy, dc.font.xfont);
123 dc.font.xfont = NULL;
124 dc.font.xfont = XLoadQueryFont(dpy, fontstr);
125 if (!dc.font.xfont)
126 dc.font.xfont = XLoadQueryFont(dpy, "fixed");
127 if (!dc.font.xfont)
128 eprint("error, cannot init 'fixed' font\n");
129 dc.font.ascent = dc.font.xfont->ascent;
130 dc.font.descent = dc.font.xfont->descent;
131 }
132 dc.font.height = dc.font.ascent + dc.font.descent;
133 }
134
135 unsigned int
136 textw(const char *text) {
137 return textnw(text, strlen(text)) + dc.font.height;
138 }