rev |
line source |
garbeam@0
|
1 /*
|
garbeam@0
|
2 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
garbeam@0
|
3 * See LICENSE file for license details.
|
garbeam@0
|
4 */
|
garbeam@0
|
5
|
garbeam@76
|
6 #include "dwm.h"
|
garbeam@59
|
7 #include <errno.h>
|
garbeam@0
|
8 #include <stdio.h>
|
garbeam@0
|
9 #include <stdlib.h>
|
garbeam@57
|
10 #include <string.h>
|
garbeam@59
|
11 #include <unistd.h>
|
arg@138
|
12 #include <sys/select.h>
|
garbeam@0
|
13 #include <X11/cursorfont.h>
|
arg@291
|
14 #include <X11/keysym.h>
|
garbeam@0
|
15 #include <X11/Xatom.h>
|
garbeam@0
|
16 #include <X11/Xproto.h>
|
garbeam@0
|
17
|
arg@333
|
18 /* extern */
|
arg@333
|
19
|
arg@333
|
20 char stext[1024];
|
arg@333
|
21 Bool *seltag;
|
arg@524
|
22 int bx, by, bw, bh, bmw, masterd, screen, sx, sy, sw, sh;
|
arg@524
|
23 unsigned int master, ntags, numlockmask;
|
arg@333
|
24 Atom wmatom[WMLast], netatom[NetLast];
|
arg@333
|
25 Bool running = True;
|
arg@333
|
26 Bool issel = True;
|
arg@333
|
27 Client *clients = NULL;
|
arg@333
|
28 Client *sel = NULL;
|
arg@446
|
29 Client *stack = NULL;
|
arg@333
|
30 Cursor cursor[CurLast];
|
arg@333
|
31 Display *dpy;
|
arg@333
|
32 DC dc = {0};
|
arg@333
|
33 Window root, barwin;
|
arg@333
|
34
|
garbeam@84
|
35 /* static */
|
garbeam@0
|
36
|
arg@123
|
37 static int (*xerrorxlib)(Display *, XErrorEvent *);
|
arg@302
|
38 static Bool otherwm, readin;
|
garbeam@0
|
39
|
garbeam@0
|
40 static void
|
arg@487
|
41 cleanup(void) {
|
arg@302
|
42 close(STDIN_FILENO);
|
garbeam@76
|
43 while(sel) {
|
arg@99
|
44 resize(sel, True, TopLeft);
|
garbeam@76
|
45 unmanage(sel);
|
garbeam@76
|
46 }
|
arg@295
|
47 if(dc.font.set)
|
arg@295
|
48 XFreeFontSet(dpy, dc.font.set);
|
arg@295
|
49 else
|
arg@295
|
50 XFreeFont(dpy, dc.font.xfont);
|
arg@292
|
51 XUngrabKey(dpy, AnyKey, AnyModifier, root);
|
arg@295
|
52 XFreePixmap(dpy, dc.drawable);
|
arg@295
|
53 XFreeGC(dpy, dc.gc);
|
arg@309
|
54 XDestroyWindow(dpy, barwin);
|
garbeam@76
|
55 XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
|
arg@292
|
56 XSync(dpy, False);
|
arg@433
|
57 free(seltag);
|
garbeam@76
|
58 }
|
garbeam@0
|
59
|
garbeam@0
|
60 static void
|
arg@487
|
61 scan(void) {
|
garbeam@0
|
62 unsigned int i, num;
|
arg@123
|
63 Window *wins, d1, d2;
|
garbeam@0
|
64 XWindowAttributes wa;
|
garbeam@0
|
65
|
arg@292
|
66 wins = NULL;
|
garbeam@0
|
67 if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
|
garbeam@0
|
68 for(i = 0; i < num; i++) {
|
garbeam@0
|
69 if(!XGetWindowAttributes(dpy, wins[i], &wa))
|
garbeam@0
|
70 continue;
|
garbeam@0
|
71 if(wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
|
garbeam@0
|
72 continue;
|
garbeam@0
|
73 if(wa.map_state == IsViewable)
|
garbeam@10
|
74 manage(wins[i], &wa);
|
garbeam@0
|
75 }
|
garbeam@0
|
76 }
|
garbeam@0
|
77 if(wins)
|
garbeam@0
|
78 XFree(wins);
|
garbeam@0
|
79 }
|
garbeam@0
|
80
|
arg@333
|
81 static void
|
arg@487
|
82 setup(void) {
|
arg@333
|
83 int i, j;
|
arg@333
|
84 unsigned int mask;
|
arg@333
|
85 Window w;
|
arg@333
|
86 XModifierKeymap *modmap;
|
arg@333
|
87 XSetWindowAttributes wa;
|
arg@333
|
88
|
arg@333
|
89 /* init atoms */
|
arg@333
|
90 wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
|
arg@333
|
91 wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
|
arg@333
|
92 netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
|
arg@333
|
93 netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
|
arg@333
|
94 XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
|
arg@333
|
95 PropModeReplace, (unsigned char *) netatom, NetLast);
|
arg@333
|
96
|
arg@333
|
97 /* init cursors */
|
arg@333
|
98 cursor[CurNormal] = XCreateFontCursor(dpy, XC_left_ptr);
|
arg@333
|
99 cursor[CurResize] = XCreateFontCursor(dpy, XC_sizing);
|
arg@333
|
100 cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur);
|
arg@333
|
101
|
arg@333
|
102 modmap = XGetModifierMapping(dpy);
|
arg@333
|
103 for (i = 0; i < 8; i++) {
|
arg@333
|
104 for (j = 0; j < modmap->max_keypermod; j++) {
|
arg@333
|
105 if(modmap->modifiermap[i * modmap->max_keypermod + j] == XKeysymToKeycode(dpy, XK_Num_Lock))
|
arg@333
|
106 numlockmask = (1 << i);
|
arg@333
|
107 }
|
arg@333
|
108 }
|
arg@333
|
109 XFree(modmap);
|
arg@333
|
110
|
arg@461
|
111 wa.event_mask = SubstructureRedirectMask | SubstructureNotifyMask
|
arg@461
|
112 | EnterWindowMask | LeaveWindowMask;
|
arg@333
|
113 wa.cursor = cursor[CurNormal];
|
arg@333
|
114 XChangeWindowAttributes(dpy, root, CWEventMask | CWCursor, &wa);
|
arg@333
|
115
|
arg@333
|
116 grabkeys();
|
arg@333
|
117 initrregs();
|
arg@333
|
118
|
arg@333
|
119 for(ntags = 0; tags[ntags]; ntags++);
|
arg@333
|
120 seltag = emallocz(sizeof(Bool) * ntags);
|
arg@333
|
121 seltag[0] = True;
|
arg@333
|
122
|
arg@333
|
123 /* style */
|
arg@353
|
124 dc.norm[ColBG] = getcolor(NORMBGCOLOR);
|
arg@353
|
125 dc.norm[ColFG] = getcolor(NORMFGCOLOR);
|
arg@353
|
126 dc.sel[ColBG] = getcolor(SELBGCOLOR);
|
arg@353
|
127 dc.sel[ColFG] = getcolor(SELFGCOLOR);
|
arg@353
|
128 dc.status[ColBG] = getcolor(STATUSBGCOLOR);
|
arg@353
|
129 dc.status[ColFG] = getcolor(STATUSFGCOLOR);
|
arg@333
|
130 setfont(FONT);
|
arg@516
|
131
|
arg@516
|
132 bmw = textw(VSTACKSYMBOL) > textw(BSTACKSYMBOL) ?
|
arg@516
|
133 textw(VSTACKSYMBOL) : textw(BSTACKSYMBOL);
|
arg@516
|
134 bmw = bmw > textw(FLOATSYMBOL) ?
|
arg@516
|
135 bmw : textw(FLOATSYMBOL);
|
arg@333
|
136 sx = sy = 0;
|
arg@333
|
137 sw = DisplayWidth(dpy, screen);
|
arg@333
|
138 sh = DisplayHeight(dpy, screen);
|
arg@524
|
139 master = MASTER;
|
arg@333
|
140
|
arg@333
|
141 bx = by = 0;
|
arg@333
|
142 bw = sw;
|
arg@353
|
143 dc.h = bh = dc.font.height + 2;
|
arg@333
|
144 wa.override_redirect = 1;
|
arg@333
|
145 wa.background_pixmap = ParentRelative;
|
arg@333
|
146 wa.event_mask = ButtonPressMask | ExposureMask;
|
arg@333
|
147 barwin = XCreateWindow(dpy, root, bx, by, bw, bh, 0, DefaultDepth(dpy, screen),
|
arg@333
|
148 CopyFromParent, DefaultVisual(dpy, screen),
|
arg@333
|
149 CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
|
arg@333
|
150 XDefineCursor(dpy, barwin, cursor[CurNormal]);
|
arg@333
|
151 XMapRaised(dpy, barwin);
|
arg@333
|
152
|
arg@333
|
153 dc.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen));
|
arg@333
|
154 dc.gc = XCreateGC(dpy, root, 0, 0);
|
arg@344
|
155 XSetLineAttributes(dpy, dc.gc, 1, LineSolid, CapButt, JoinMiter);
|
arg@333
|
156
|
arg@333
|
157 issel = XQueryPointer(dpy, root, &w, &w, &i, &i, &i, &i, &mask);
|
arg@333
|
158 strcpy(stext, "dwm-"VERSION);
|
arg@333
|
159 }
|
arg@333
|
160
|
garbeam@76
|
161 /*
|
garbeam@76
|
162 * Startup Error handler to check if another window manager
|
garbeam@76
|
163 * is already running.
|
garbeam@76
|
164 */
|
garbeam@76
|
165 static int
|
arg@461
|
166 xerrorstart(Display *dsply, XErrorEvent *ee) {
|
garbeam@76
|
167 otherwm = True;
|
garbeam@76
|
168 return -1;
|
garbeam@76
|
169 }
|
garbeam@76
|
170
|
garbeam@84
|
171 /* extern */
|
garbeam@84
|
172
|
garbeam@13
|
173 int
|
arg@461
|
174 getproto(Window w) {
|
arg@329
|
175 int i, format, protos, status;
|
arg@328
|
176 unsigned long extra, res;
|
arg@328
|
177 Atom *protocols, real;
|
garbeam@13
|
178
|
arg@329
|
179 protos = 0;
|
arg@329
|
180 status = XGetWindowProperty(dpy, w, wmatom[WMProtocols], 0L, 20L, False,
|
arg@329
|
181 XA_ATOM, &real, &format, &res, &extra, (unsigned char **)&protocols);
|
arg@328
|
182 if(status != Success || protocols == 0)
|
garbeam@13
|
183 return protos;
|
arg@329
|
184 for(i = 0; i < res; i++)
|
garbeam@77
|
185 if(protocols[i] == wmatom[WMDelete])
|
arg@157
|
186 protos |= PROTODELWIN;
|
arg@328
|
187 free(protocols);
|
garbeam@13
|
188 return protos;
|
garbeam@13
|
189 }
|
garbeam@13
|
190
|
garbeam@13
|
191 void
|
arg@461
|
192 sendevent(Window w, Atom a, long value) {
|
garbeam@13
|
193 XEvent e;
|
garbeam@13
|
194
|
garbeam@13
|
195 e.type = ClientMessage;
|
garbeam@13
|
196 e.xclient.window = w;
|
garbeam@13
|
197 e.xclient.message_type = a;
|
garbeam@13
|
198 e.xclient.format = 32;
|
garbeam@13
|
199 e.xclient.data.l[0] = value;
|
garbeam@13
|
200 e.xclient.data.l[1] = CurrentTime;
|
garbeam@13
|
201 XSendEvent(dpy, w, False, NoEventMask, &e);
|
garbeam@79
|
202 XSync(dpy, False);
|
garbeam@13
|
203 }
|
garbeam@13
|
204
|
garbeam@76
|
205 void
|
arg@461
|
206 quit(Arg *arg) {
|
arg@302
|
207 readin = running = False;
|
garbeam@75
|
208 }
|
garbeam@75
|
209
|
garbeam@75
|
210 /*
|
garbeam@84
|
211 * There's no way to check accesses to destroyed windows, thus those cases are
|
garbeam@84
|
212 * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
|
arg@455
|
213 * default error handler, which may call exit.
|
garbeam@0
|
214 */
|
garbeam@10
|
215 int
|
arg@461
|
216 xerror(Display *dpy, XErrorEvent *ee) {
|
garbeam@75
|
217 if(ee->error_code == BadWindow
|
arg@123
|
218 || (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
|
arg@123
|
219 || (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
|
arg@123
|
220 || (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable)
|
arg@123
|
221 || (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
|
arg@123
|
222 || (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
|
arg@458
|
223 || (ee->request_code == X_GrabKey && ee->error_code == BadAccess)
|
arg@458
|
224 || (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
|
garbeam@0
|
225 return 0;
|
garbeam@34
|
226 fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
|
arg@123
|
227 ee->request_code, ee->error_code);
|
arg@455
|
228 return xerrorxlib(dpy, ee); /* may call exit */
|
garbeam@27
|
229 }
|
garbeam@27
|
230
|
garbeam@0
|
231 int
|
arg@461
|
232 main(int argc, char *argv[]) {
|
arg@333
|
233 int r, xfd;
|
garbeam@59
|
234 fd_set rd;
|
garbeam@0
|
235
|
arg@137
|
236 if(argc == 2 && !strncmp("-v", argv[1], 3)) {
|
arg@137
|
237 fputs("dwm-"VERSION", (C)opyright MMVI Anselm R. Garbe\n", stdout);
|
arg@137
|
238 exit(EXIT_SUCCESS);
|
garbeam@0
|
239 }
|
arg@137
|
240 else if(argc != 1)
|
arg@137
|
241 eprint("usage: dwm [-v]\n");
|
garbeam@0
|
242
|
garbeam@0
|
243 dpy = XOpenDisplay(0);
|
garbeam@0
|
244 if(!dpy)
|
arg@197
|
245 eprint("dwm: cannot open display\n");
|
garbeam@0
|
246
|
arg@265
|
247 xfd = ConnectionNumber(dpy);
|
garbeam@0
|
248 screen = DefaultScreen(dpy);
|
garbeam@0
|
249 root = RootWindow(dpy, screen);
|
garbeam@0
|
250
|
garbeam@75
|
251 otherwm = False;
|
garbeam@75
|
252 XSetErrorHandler(xerrorstart);
|
arg@197
|
253 /* this causes an error if some other window manager is running */
|
garbeam@0
|
254 XSelectInput(dpy, root, SubstructureRedirectMask);
|
garbeam@78
|
255 XSync(dpy, False);
|
garbeam@0
|
256
|
garbeam@75
|
257 if(otherwm)
|
garbeam@75
|
258 eprint("dwm: another window manager is already running\n");
|
garbeam@0
|
259
|
arg@292
|
260 XSync(dpy, False);
|
garbeam@78
|
261 XSetErrorHandler(NULL);
|
garbeam@75
|
262 xerrorxlib = XSetErrorHandler(xerror);
|
arg@275
|
263 XSync(dpy, False);
|
garbeam@0
|
264
|
arg@333
|
265 setup();
|
garbeam@74
|
266 drawstatus();
|
garbeam@75
|
267 scan();
|
garbeam@3
|
268
|
arg@214
|
269 /* main event loop, also reads status text from stdin */
|
arg@242
|
270 XSync(dpy, False);
|
arg@292
|
271 procevent();
|
arg@302
|
272 readin = True;
|
garbeam@5
|
273 while(running) {
|
garbeam@59
|
274 FD_ZERO(&rd);
|
arg@164
|
275 if(readin)
|
arg@164
|
276 FD_SET(STDIN_FILENO, &rd);
|
arg@265
|
277 FD_SET(xfd, &rd);
|
arg@333
|
278 r = select(xfd + 1, &rd, NULL, NULL, NULL);
|
arg@333
|
279 if((r == -1) && (errno == EINTR))
|
garbeam@59
|
280 continue;
|
arg@333
|
281 if(r > 0) {
|
arg@164
|
282 if(readin && FD_ISSET(STDIN_FILENO, &rd)) {
|
arg@164
|
283 readin = NULL != fgets(stext, sizeof(stext), stdin);
|
arg@164
|
284 if(readin)
|
arg@164
|
285 stext[strlen(stext) - 1] = 0;
|
arg@162
|
286 else
|
arg@164
|
287 strcpy(stext, "broken pipe");
|
garbeam@74
|
288 drawstatus();
|
garbeam@59
|
289 }
|
garbeam@59
|
290 }
|
arg@333
|
291 else if(r < 0)
|
arg@316
|
292 eprint("select failed\n");
|
arg@293
|
293 procevent();
|
garbeam@5
|
294 }
|
garbeam@0
|
295 cleanup();
|
garbeam@0
|
296 XCloseDisplay(dpy);
|
garbeam@0
|
297
|
garbeam@0
|
298 return 0;
|
garbeam@0
|
299 }
|