about summary refs log tree commit diff stats
path: root/drw.c
diff options
context:
space:
mode:
Diffstat (limited to 'drw.c')
-rw-r--r--drw.c202
1 files changed, 202 insertions, 0 deletions
diff --git a/drw.c b/drw.c
new file mode 100644
index 0000000..65fd870
--- /dev/null
+++ b/drw.c
@@ -0,0 +1,202 @@
+/* See LICENSE file for copyright and license details. */
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <X11/Xlib.h>
+
+#include "drw.h"
+#include "util.h"
+
+Drw *
+drw_create(Display *dpy, int screen, Window win, unsigned int w, unsigned int h) {
+	Drw *drw = (Drw *)calloc(1, sizeof(Drw));
+	drw->dpy = dpy;
+	drw->screen = screen;
+	drw->win = win;
+	drw->w = w;
+	drw->h = h;
+	drw->drwable = XCreatePixmap(dpy, win, w, h, DefaultDepth(dpy, screen));
+	drw->gc = XCreateGC(dpy, win, 0, NULL);
+	XSetLineAttributes(dpy, drw->gc, 1, LineSolid, CapButt, JoinMiter);
+	return drw;
+}
+
+void
+drw_resize(Drw *drw, unsigned int w, unsigned int h) {
+	if(!drw)
+		return;
+	drw->w = w;
+	drw->h = h;
+	XFreePixmap(drw->dpy, drw->drwable);
+	drw->drwable = XCreatePixmap(drw->dpy, drw->win, w, h, DefaultDepth(drw->dpy, drw->screen));
+}
+
+void
+drw_free(Drw *drw) {
+	XFreePixmap(drw->dpy, drw->drwable);
+	XFreeGC(drw->dpy, drw->gc);
+	free(drw);
+}
+
+Fnt *
+drw_font_create(Drw *drw, const char *fontname) {
+	Fnt *font;
+	char *def, **missing;
+	int n;
+
+	if(!drw)
+		return NULL;
+	font = (Fnt *)calloc(1, sizeof(Fnt));
+	font->set = XCreateFontSet(drw->dpy, fontname, &missing, &n, &def);
+	if(missing) {
+		while(n--)
+			fprintf(stderr, "drw: missing fontset: %s\n", missing[n]);
+		XFreeStringList(missing);
+	}
+	if(font->set) {
+		XFontStruct **xfonts;
+		char **font_names;
+		XExtentsOfFontSet(font->set);
+		n = XFontsOfFontSet(font->set, &xfonts, &font_names);
+		while(n--) {
+			font->ascent = MAX(font->ascent, (*xfonts)->ascent);
+			font->descent = MAX(font->descent,(*xfonts)->descent);
+			xfonts++;
+		}
+	}
+	else {
+		if(!(font->xfont = XLoadQueryFont(drw->dpy, fontname))
+		&& !(font->xfont = XLoadQueryFont(drw->dpy, "fixed")))
+			die("error, cannot load font: '%s'\n", fontname);
+		font->ascent = font->xfont->ascent;
+		font->descent = font->xfont->descent;
+	}
+	font->h = font->ascent + font->descent;
+	return font;
+}
+
+void
+drw_font_free(Drw *drw, Fnt *font) {
+	if(!drw || !font)
+		return;
+	if(font->set)
+		XFreeFontSet(drw->dpy, font->set);
+	else
+		XFreeFont(drw->dpy, font->xfont);
+	free(font);
+}
+
+Clr *
+drw_clr_create(Drw *drw, const char *clrname) {
+	Clr *clr = (Clr *)calloc(1, sizeof(Clr));
+	Colormap cmap = DefaultColormap(drw->dpy, drw->screen);
+	XColor color;
+
+	if(!XAllocNamedColor(drw->dpy, cmap, clrname, &color, &color))
+		die("error, cannot allocate color '%s'\n", clrname);
+	clr->rgb = color.pixel;
+	return clr;
+}
+
+void
+drw_clr_free(Drw *drw, Clr *clr) {
+	if(!clr)
+		return;
+	free(clr);
+}
+
+void
+drw_setfont(Drw *drw, Fnt *font) {
+	if(!drw)
+		return;
+	drw->font = font;
+}
+
+void
+drw_setfg(Drw *drw, Clr *clr) {
+	if(!drw) 
+		return;
+	drw->fg = clr;
+}
+
+void
+drw_setbg(Drw *drw, Clr *clr) {
+	if(!drw)
+		return;
+	drw->bg = clr;
+}
+
+void
+drw_rect(Drw *drw, int x, int y, unsigned int w, unsigned int h, Bool filled, Bool empty, Bool invert) {
+	int dx;
+
+	if(!drw || !drw->font || !drw->fg || !drw->bg)
+		return;
+	XSetForeground(drw->dpy, drw->gc, invert ? drw->bg->rgb : drw->fg->rgb);
+	dx = (drw->font->ascent + drw->font->descent + 2) / 4;
+	if(filled)
+		XFillRectangle(drw->dpy, drw->drwable, drw->gc, x+1, y+1, dx+1, dx+1);
+	else if(empty)
+		XDrawRectangle(drw->dpy, drw->drwable, drw->gc, x+1, y+1, dx, dx);
+}
+
+void
+drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, const char *text, Bool invert) {
+	char buf[256];
+	int i, tx, ty, len, olen;
+	Extnts tex;
+
+	if(!drw || !drw->fg || !drw->bg)
+		return;
+	XSetForeground(drw->dpy, drw->gc, invert ? drw->fg->rgb : drw->bg->rgb);
+	XFillRectangle(drw->dpy, drw->drwable, drw->gc, x, y, w, h);
+	if(!text || !drw->font)
+		return;
+	olen = strlen(text);
+	drw_getexts(drw, text, olen, &tex);
+	ty = y + (h / 2) - tex.yOff;
+	tx = x + tex.xOff;
+	/* shorten text if necessary */
+	for(len = MIN(olen, sizeof buf); len && tex.w > w - tex.h; len--)
+		drw_getexts(drw, text, len, &tex);
+	if(!len)
+		return;
+	memcpy(buf, text, len);
+	if(len < olen)
+		for(i = len; i && i > len - 3; buf[--i] = '.');
+	XSetForeground(drw->dpy, drw->gc, invert ? drw->bg->rgb : drw->fg->rgb);
+	if(drw->font->set)
+		XmbDrawString(drw->dpy, drw->drwable, drw->font->set, drw->gc, tx, ty, buf, len);
+	else
+		XDrawString(drw->dpy, drw->drwable, drw->gc, tx, ty, buf, len);
+}
+
+void
+drw_map(Drw *drw, int x, int y, unsigned int w, unsigned int h) {
+	if(!drw)
+		return;
+	XCopyArea(drw->dpy, drw->drwable, drw->win, drw->gc, x, y, w, h, x, y);
+	XSync(drw->dpy, False);
+}
+
+
+void
+drw_getexts(Drw *drw, const char *text, unsigned int len, Extnts *tex) {
+	XRectangle r;
+
+	if(!drw || !drw->font || !text)
+		return;
+	if(drw->font->set) {
+		XmbTextExtents(drw->font->set, text, len, NULL, &r);
+		tex->xOff = r.x;
+		tex->yOff = r.y;
+		tex->w = r.width;
+		tex->h = r.height;
+	}
+	else {
+		tex->h = drw->font->ascent + drw->font->descent;
+		tex->w = XTextWidth(drw->font->xfont, text, len);
+		tex->xOff = tex->h / 2;
+		tex->yOff = (tex->h / 2) + drw->font->ascent;
+	}
+}
thor Kartik K. Agaram <vc@akkartik.com> 2016-12-26 11:44:14 -0800 committer Kartik K. Agaram <vc@akkartik.com> 2016-12-26 11:44:14 -0800 3710' href='/akkartik/mu/commit/html/000organization.cc.html?h=main&id=204dae921abff0c70e017215bb3c91fa6ca11aff'>204dae92 ^
201458e3 ^

204dae92 ^


















201458e3 ^
204dae92 ^


201458e3 ^
204dae92 ^

672e3e50 ^


a654e4ec ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202