JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
997e6be15438facf6f8ba9e787478358e274cd6c
[spectrwm.git] / scrotwm.c
1 /* $scrotwm$ */
2 /*
3  * Copyright (c) 2009 Marco Peereboom <marco@peereboom.us>
4  * Copyright (c) 2009 Ryan McBride <mcbride@countersiege.com>
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18 /*
19  * Much code and ideas taken from dwm under the following license:
20  * MIT/X Consortium License
21  * 
22  * 2006-2008 Anselm R Garbe <garbeam at gmail dot com>
23  * 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
24  * 2006-2007 Jukka Salmi <jukka at salmi dot ch>
25  * 2007 Premysl Hruby <dfenze at gmail dot com>
26  * 2007 Szabolcs Nagy <nszabolcs at gmail dot com>
27  * 2007 Christof Musik <christof at sendfax dot de>
28  * 2007-2008 Enno Gottox Boland <gottox at s01 dot de>
29  * 2007-2008 Peter Hartlich <sgkkr at hartlich dot com>
30  * 2008 Martin Hurton <martin dot hurton at gmail dot com>
31  * 
32  * Permission is hereby granted, free of charge, to any person obtaining a
33  * copy of this software and associated documentation files (the "Software"),
34  * to deal in the Software without restriction, including without limitation
35  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
36  * and/or sell copies of the Software, and to permit persons to whom the
37  * Software is furnished to do so, subject to the following conditions:
38  * 
39  * The above copyright notice and this permission notice shall be included in
40  * all copies or substantial portions of the Software.
41  * 
42  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
44  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
45  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
46  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
47  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
48  * DEALINGS IN THE SOFTWARE.
49  */
50
51 #define SWM_VERSION     "0.5"
52
53 #include <stdio.h>
54 #include <stdlib.h>
55 #include <err.h>
56 #include <locale.h>
57 #include <unistd.h>
58 #include <time.h>
59 #include <signal.h>
60 #include <string.h>
61 #include <util.h>
62 #include <pwd.h>
63
64 #include <sys/types.h>
65 #include <sys/stat.h>
66 #include <sys/wait.h>
67 #include <sys/queue.h>
68 #include <sys/param.h>
69
70 #include <X11/cursorfont.h>
71 #include <X11/keysym.h>
72 #include <X11/Xatom.h>
73 #include <X11/Xlib.h>
74 #include <X11/Xproto.h>
75 #include <X11/Xutil.h>
76
77 /* #define SWM_DEBUG */
78 #ifdef SWM_DEBUG
79 #define DPRINTF(x...)           do { if (swm_debug) fprintf(stderr, x); } while(0)
80 #define DNPRINTF(n,x...)        do { if (swm_debug & n) fprintf(stderr, x); } while(0)
81 #define SWM_D_MISC              0x0001
82 #define SWM_D_EVENT             0x0002
83 #define SWM_D_WS                0x0004
84 #define SWM_D_FOCUS             0x0008
85 #define SWM_D_MOVE              0x0010
86
87 u_int32_t               swm_debug = 0
88                             | SWM_D_MISC
89                             | SWM_D_EVENT
90                             | SWM_D_WS
91                             | SWM_D_FOCUS
92                             | SWM_D_MOVE
93                             ;
94 #else
95 #define DPRINTF(x...)
96 #define DNPRINTF(n,x...)
97 #endif
98
99 #define LENGTH(x)               (sizeof x / sizeof x[0])
100 #define MODKEY                  Mod1Mask
101 #define CLEANMASK(mask)         (mask & ~(numlockmask | LockMask))
102
103 int                     (*xerrorxlib)(Display *, XErrorEvent *);
104 int                     other_wm;
105 int                     screen;
106 int                     running = 1;
107 int                     ignore_enter = 0;
108 unsigned int            numlockmask = 0;
109 unsigned long           color_focus = 0xff0000; /* XXX should this be per ws? */
110 unsigned long           color_unfocus = 0x888888;
111 Display                 *display;
112 Window                  root;
113
114 /* status bar */
115 int                     bar_enabled = 1;
116 int                     bar_height = 0;
117 unsigned long           bar_border = 0x008080;
118 unsigned long           bar_color = 0x000000;
119 unsigned long           bar_font_color = 0xa0a0a0;
120 Window                  bar_window;
121 GC                      bar_gc;
122 XGCValues               bar_gcv;
123 XFontStruct             *bar_fs;
124 char                    bar_text[128];
125 char                    *bar_fonts[] = {
126                             "-*-terminus-*-*-*-*-*-*-*-*-*-*-*-*",
127                             "-*-times-medium-r-*-*-*-*-*-*-*-*-*-*",
128                             NULL
129 };
130
131 /* terminal + args */
132 char                            *spawn_term[] = { "xterm", NULL };
133 char                            *spawn_menu[] = { "dmenu_run", NULL };
134 char                            *spawn_scrotwm[] = { "scrotwm", NULL };
135
136 /* layout manager data */
137 struct swm_geometry {
138         int                     x;
139         int                     y;
140         int                     w;
141         int                     h;
142 };
143
144
145 struct ws_win {
146         TAILQ_ENTRY(ws_win)     entry;
147         Window                  id;
148         struct swm_geometry     g;
149         int                     floating;
150         int                     transient;
151         XWindowAttributes       wa;
152         XSizeHints              sh;
153 };
154 TAILQ_HEAD(ws_win_list, ws_win);
155
156 /* layout handlers */
157 void    stack(void);
158 void    vertical_init(int);
159 void    vertical_resize(int);
160 void    vertical_stack(struct swm_geometry *);
161 void    horizontal_init(int);
162 void    horizontal_resize(int);
163 void    horizontal_stack(struct swm_geometry *);
164 void    max_init(int);
165 void    max_focus(struct ws_win *);
166 void    max_stack(struct swm_geometry *);
167
168 struct layout {
169         void                    (*l_init)(int); /* init/reset */
170         void                    (*l_stack)(struct swm_geometry *);
171         void                    (*l_resize)(int);
172         void                    (*l_focus)(struct ws_win *);
173 } layouts[] =  {
174         /* init                 stack,                  resize */
175         { vertical_init,        vertical_stack,         vertical_resize,        NULL},
176         { horizontal_init,      horizontal_stack,       horizontal_resize,      NULL},
177         { NULL,                 max_stack,              NULL,                   max_focus},
178         { NULL,                 NULL,                   NULL,                   NULL},
179 };
180
181
182 /* define work spaces */
183 #define SWM_WS_MAX              (10)
184 struct workspace {
185         int                     visible;        /* workspace visible */
186         int                     restack;        /* restack on switch */
187         struct swm_geometry     g;
188         struct layout           *cur_layout;    /* current layout handlers */
189         struct ws_win           *focus;         /* which win has focus */
190         struct ws_win_list      winlist;        /* list of windows in ws */
191 } ws[SWM_WS_MAX];
192 int                     current_ws = 0;
193
194 /* args to functions */
195 union arg {
196         int                     id;
197 #define SWM_ARG_ID_FOCUSNEXT    (0)
198 #define SWM_ARG_ID_FOCUSPREV    (1)
199 #define SWM_ARG_ID_FOCUSMAIN    (2)
200 #define SWM_ARG_ID_SWAPNEXT     (3)
201 #define SWM_ARG_ID_SWAPPREV     (4)
202 #define SWM_ARG_ID_SWAPMAIN     (5)
203 #define SWM_ARG_ID_MASTERSHRINK (6)
204 #define SWM_ARG_ID_MASTERGROW   (7)
205         char                    **argv;
206 };
207
208 /* conf file stuff */
209 #define SWM_CONF_WS     "\n= \t"
210 #define SWM_CONF_FILE   "scrotwm.conf"
211 int
212 conf_load(char *filename)
213 {
214         FILE                    *config;
215         char                    *line, *cp, *var, *val;
216         size_t                   len, lineno = 0;
217
218         DNPRINTF(SWM_D_MISC, "conf_load: filename %s\n", filename);
219
220         if (filename == NULL)
221                 return (1);
222
223         if ((config = fopen(filename, "r")) == NULL)
224                 return (1);
225
226         for (;;) {
227                 if ((line = fparseln(config, &len, &lineno, NULL, 0)) == NULL)
228                         if (feof(config))
229                                 break;
230                 cp = line;
231                 cp += (long)strspn(cp, SWM_CONF_WS);
232                 if (cp[0] == '\0') {
233                         /* empty line */
234                         free(line);
235                         continue;
236                 }
237                 if ((var = strsep(&cp, SWM_CONF_WS)) == NULL || cp == NULL)
238                         break;
239                 cp += (long)strspn(cp, SWM_CONF_WS);
240                 if ((val = strsep(&cp, SWM_CONF_WS)) == NULL)
241                         break;
242
243                 DNPRINTF(SWM_D_MISC, "conf_load: %s=%s\n",var ,val);
244                 switch (var[0]) {
245                 case 'b':
246                         if (!strncmp(var, "bar_enabled", strlen("bar_enabled")))
247                                 bar_enabled = atoi(val);
248                         else if (!strncmp(var, "bar_border",
249                             strlen("bar_border")))
250                                 bar_border = strtol(val, NULL, 16);
251                         else if (!strncmp(var, "bar_color",
252                             strlen("bar_color")))
253                                 bar_color = strtol(val, NULL, 16);
254                         else if (!strncmp(var, "bar_font_color",
255                             strlen("bar_font_color")))
256                                 bar_font_color = strtol(val, NULL, 16);
257                         else if (!strncmp(var, "bar_font", strlen("bar_font")))
258                                 asprintf(&bar_fonts[0], "%s", val);
259                         else
260                                 goto bad;
261                         break;
262
263                 case 'c':
264                         if (!strncmp(var, "color_focus", strlen("color_focus")))
265                                 color_focus = strtol(val, NULL, 16);
266                         else if (!strncmp(var, "color_unfocus",
267                             strlen("color_unfocus")))
268                                 color_unfocus = strtol(val, NULL, 16);
269                         else
270                                 goto bad;
271                         break;
272
273                 case 's':
274                         if (!strncmp(var, "spawn_term", strlen("spawn_term")))
275                                 asprintf(&spawn_term[0], "%s", val); /* XXX args? */
276                         break;
277                 default:
278                         goto bad;
279                 }
280                 free(line);
281         }
282
283         fclose(config);
284         return (0);
285 bad:
286         errx(1, "invalid conf file entry: %s=%s", var, val);
287 }
288
289 void
290 bar_print(void)
291 {
292         time_t                  tmt;
293         struct tm               tm;
294
295         if (bar_enabled == 0)
296                 return;
297
298         /* clear old text */
299         XSetForeground(display, bar_gc, bar_color);
300         XDrawString(display, bar_window, bar_gc, 4, bar_fs->ascent, bar_text,
301             strlen(bar_text));
302
303         /* draw new text */
304         time(&tmt);
305         localtime_r(&tmt, &tm);
306         strftime(bar_text, sizeof bar_text, "%a %b %d %R %Z %Y", &tm);
307         XSetForeground(display, bar_gc, bar_font_color);
308         XDrawString(display, bar_window, bar_gc, 4, bar_fs->ascent, bar_text,
309             strlen(bar_text));
310         XSync(display, False);
311
312         alarm(60);
313 }
314
315 void
316 bar_signal(int sig)
317 {
318         /* XXX yeah yeah byte me */
319         bar_print();
320 }
321
322 void
323 bar_toggle(union arg *args)
324 {
325         int i;
326
327         DNPRINTF(SWM_D_MISC, "bar_toggle\n");
328
329         if (bar_enabled) {
330                 bar_enabled = 0;
331                 XUnmapWindow(display, bar_window);
332         } else {
333                 bar_enabled = 1;
334                 XMapRaised(display, bar_window);
335         }
336         XSync(display, False);
337         for (i = 0; i < SWM_WS_MAX; i++)
338                 ws[i].restack = 1;
339
340         stack();
341         bar_print(); /* must be after stack */
342 }
343
344 void
345 bar_setup(void)
346 {
347         int                     i;
348
349         for (i = 0; bar_fonts[i] != NULL; i++) {
350                 bar_fs = XLoadQueryFont(display, bar_fonts[i]);
351                 if (bar_fs)
352                         break;
353         }
354         if (bar_fonts[i] == NULL)
355                         errx(1, "couldn't load font");
356         bar_height = bar_fs->ascent + bar_fs->descent + 3;
357
358         bar_window = XCreateSimpleWindow(display, root, 0, 0,
359             ws[current_ws].g.w, bar_height - 2, 1, bar_border, bar_color);
360         bar_gc = XCreateGC(display, bar_window, 0, &bar_gcv);
361         XSetFont(display, bar_gc, bar_fs->fid);
362         XSelectInput(display, bar_window, VisibilityChangeMask);
363         if (bar_enabled) {
364                 XMapRaised(display, bar_window);
365         }
366         DNPRINTF(SWM_D_MISC, "bar_setup: bar_window %d\n", (int)bar_window);
367
368         if (signal(SIGALRM, bar_signal) == SIG_ERR)
369                 err(1, "could not install bar_signal");
370         bar_print();
371 }
372
373 void
374 config_win(struct ws_win *win)
375 {
376         XConfigureEvent         ce;
377
378         DNPRINTF(SWM_D_MISC, "config_win: win %lu x %d y %d w %d h %d\n",
379             win->id, win->g.x, win->g.y, win->g.w, win->g.h);
380         ce.type = ConfigureNotify;
381         ce.display = display;
382         ce.event = win->id;
383         ce.window = win->id;
384         ce.x = win->g.x;
385         ce.y = win->g.y;
386         ce.width = win->g.w;
387         ce.height = win->g.h;
388         ce.border_width = 1; /* XXX store this! */
389         ce.above = None;
390         ce.override_redirect = False;
391         XSendEvent(display, win->id, False, StructureNotifyMask, (XEvent *)&ce);
392 }
393
394 int
395 count_win(int wsid, int count_transient)
396 {
397         struct ws_win           *win;
398         int                     count = 0;
399
400         TAILQ_FOREACH (win, &ws[wsid].winlist, entry) {
401                 if (count_transient == 0 && win->floating)
402                         continue;
403                 if (count_transient == 0 && win->transient)
404                         continue;
405                 count++;
406         }
407         DNPRINTF(SWM_D_MISC, "count_win: %d\n", count);
408
409         return (count);
410 }
411 void
412 quit(union arg *args)
413 {
414         DNPRINTF(SWM_D_MISC, "quit\n");
415         running = 0;
416 }
417
418
419 void
420 restart(union arg *args)
421 {
422         XCloseDisplay(display);
423         execvp(args->argv[0], args->argv);
424         fprintf(stderr, "execvp failed\n");
425         perror(" failed");
426         quit(NULL);
427 }
428
429 void
430 spawn(union arg *args)
431 {
432         DNPRINTF(SWM_D_MISC, "spawn: %s\n", args->argv[0]);
433         /*
434          * The double-fork construct avoids zombie processes and keeps the code
435          * clean from stupid signal handlers.
436          */
437         if(fork() == 0) {
438                 if(fork() == 0) {
439                         if(display)
440                                 close(ConnectionNumber(display));
441                         setsid();
442                         execvp(args->argv[0], args->argv);
443                         fprintf(stderr, "execvp failed\n");
444                         perror(" failed");
445                 }
446                 exit(0);
447         }
448         wait(0);
449 }
450
451 void
452 focus_win(struct ws_win *win)
453 {
454         DNPRINTF(SWM_D_FOCUS, "focus_win: id: %lu\n", win->id);
455         XSetWindowBorder(display, win->id, color_focus);
456         XSetInputFocus(display, win->id, RevertToPointerRoot, CurrentTime);
457         ws[current_ws].focus = win;
458 }
459
460 void
461 unfocus_win(struct ws_win *win)
462 {
463         DNPRINTF(SWM_D_FOCUS, "unfocus_win: id: %lu\n", win->id);
464         XSetWindowBorder(display, win->id, color_unfocus);
465         if (ws[current_ws].focus == win)
466                 ws[current_ws].focus = NULL;
467 }
468
469 void
470 switchws(union arg *args)
471 {
472         int                     wsid = args->id;
473         struct ws_win           *win;
474
475         DNPRINTF(SWM_D_WS, "switchws: %d\n", wsid + 1);
476
477         if (wsid == current_ws)
478                 return;
479
480         /* map new window first to prevent ugly blinking */
481         TAILQ_FOREACH (win, &ws[wsid].winlist, entry)
482                 XMapRaised(display, win->id);
483         ws[wsid].visible = 1;
484
485         TAILQ_FOREACH (win, &ws[current_ws].winlist, entry)
486                 XUnmapWindow(display, win->id);
487         ws[current_ws].visible = 0;
488
489         current_ws = wsid;
490
491         ignore_enter = 1;
492         if (ws[wsid].restack) {
493                 stack();
494                 bar_print();
495         } else {
496                 if (ws[wsid].focus != NULL)
497                         focus_win(ws[wsid].focus);
498                 XSync(display, False);
499         }
500 }
501
502 void
503 swapwin(union arg *args)
504 {
505         struct ws_win           *target;
506
507         DNPRINTF(SWM_D_MOVE, "swapwin: id %d\n", args->id);
508         if (ws[current_ws].focus == NULL)
509                 return;
510
511         switch (args->id) {
512         case SWM_ARG_ID_SWAPPREV:
513                 target = TAILQ_PREV(ws[current_ws].focus, ws_win_list, entry);
514                 TAILQ_REMOVE(&ws[current_ws].winlist,
515                     ws[current_ws].focus, entry);
516                 if (target == NULL)
517                         TAILQ_INSERT_TAIL(&ws[current_ws].winlist,
518                             ws[current_ws].focus, entry);
519                 else
520                         TAILQ_INSERT_BEFORE(target, ws[current_ws].focus,
521                             entry);
522                 break;
523         case SWM_ARG_ID_SWAPNEXT: 
524                 target = TAILQ_NEXT(ws[current_ws].focus, entry);
525                 TAILQ_REMOVE(&ws[current_ws].winlist,
526                     ws[current_ws].focus, entry);
527                 if (target == NULL)
528                         TAILQ_INSERT_HEAD(&ws[current_ws].winlist,
529                             ws[current_ws].focus, entry);
530                 else
531                         TAILQ_INSERT_AFTER(&ws[current_ws].winlist, target,
532                             ws[current_ws].focus, entry);
533                 break;
534         case SWM_ARG_ID_SWAPMAIN:
535                 target = TAILQ_FIRST(&ws[current_ws].winlist);
536                 if (target == ws[current_ws].focus)
537                         return;
538                 TAILQ_REMOVE(&ws[current_ws].winlist, target, entry);
539                 TAILQ_INSERT_BEFORE(ws[current_ws].focus, target, entry);
540                 TAILQ_REMOVE(&ws[current_ws].winlist,
541                     ws[current_ws].focus, entry);
542                 TAILQ_INSERT_HEAD(&ws[current_ws].winlist,
543                     ws[current_ws].focus, entry);
544                 break;
545         default:
546                 DNPRINTF(SWM_D_MOVE, "invalid id: %d\n", args->id);
547                 return;
548         }
549
550         ignore_enter = 2;
551         stack();
552 }
553
554 void
555 focus(union arg *args)
556 {
557         struct ws_win           *winfocus, *winlostfocus;
558
559         DNPRINTF(SWM_D_FOCUS, "focus: id %d\n", args->id);
560         if (ws[current_ws].focus == NULL)
561                 return;
562
563         winlostfocus = ws[current_ws].focus;
564
565         switch (args->id) {
566         case SWM_ARG_ID_FOCUSPREV:
567                 winfocus = TAILQ_PREV(ws[current_ws].focus, ws_win_list, entry);
568                 if (winfocus == NULL)
569                         winfocus =
570                             TAILQ_LAST(&ws[current_ws].winlist, ws_win_list);
571                 break;
572
573         case SWM_ARG_ID_FOCUSNEXT:
574                 winfocus = TAILQ_NEXT(ws[current_ws].focus, entry);
575                 if (winfocus == NULL)
576                         winfocus = TAILQ_FIRST(&ws[current_ws].winlist);
577                 break;
578
579         case SWM_ARG_ID_FOCUSMAIN:
580                 winfocus = TAILQ_FIRST(&ws[current_ws].winlist);
581                 break;
582
583         default:
584                 return;
585         }
586
587         if (winfocus == winlostfocus)
588                 return;
589
590         unfocus_win(winlostfocus);
591         focus_win(winfocus);
592         /* XXX if we hook in focus_win(), we get a nasty cycle */
593         if (ws[current_ws].cur_layout->l_focus != NULL)
594                 ws[current_ws].cur_layout->l_focus(winfocus);
595         XSync(display, False);
596 }
597
598 void
599 cycle_layout(union arg *args)
600 {
601         DNPRINTF(SWM_D_EVENT, "cycle_layout: workspace: %d\n", current_ws);
602
603         ws[current_ws].cur_layout++;
604         if (ws[current_ws].cur_layout->l_stack == NULL)
605                 ws[current_ws].cur_layout = &layouts[0];
606         ignore_enter = 1;
607
608         stack();
609 }
610
611 void
612 resize_master(union arg *args)
613 {
614         DNPRINTF(SWM_D_EVENT, "resize_master: id %d\n", args->id);
615
616         if (ws[current_ws].cur_layout->l_resize != NULL)
617                 ws[current_ws].cur_layout->l_resize(args->id);
618 }
619
620 void
621 stack_reset(union arg *args)
622 {
623         DNPRINTF(SWM_D_EVENT, "stack_reset: ws %d\n", current_ws);
624
625         if (ws[current_ws].cur_layout->l_init != NULL) {
626                 ws[current_ws].cur_layout->l_init(current_ws);
627                 stack();
628         }
629 }
630
631 void
632 stack(void) {
633         struct swm_geometry g;
634         DNPRINTF(SWM_D_EVENT, "stack: workspace: %d\n", current_ws);
635
636         /* start with workspace geometry, adjust for bar */
637         g = ws[current_ws].g;
638         if (bar_enabled) {
639                 g.y += bar_height;
640                 g.h -= bar_height;
641         } 
642
643         ws[current_ws].restack = 0;
644         ws[current_ws].cur_layout->l_stack(&g);
645         XSync(display, False);
646 }
647
648 void
649 stack_floater(struct ws_win *win)
650 {
651         unsigned int            mask;
652         XWindowChanges          wc;
653
654 #if 0
655         bzero(&wc, sizeof wc);
656         wc.border_width = 1;
657         mask = CWX | CWY | CWBorderWidth;
658
659         win->g.w = wc.width = win->wa.width;
660         win->g.h = wc.height = win->wa.height;
661         win->g.x = wc.x = (ws[current_ws].g.w - win->wa.width) / 2;
662         win->g.y = wc.y = (ws[current_ws].g.h - win->wa.height) / 2;
663
664         DNPRINTF(SWM_D_EVENT, "stack_floater: win %d x %d y %d w %d h %d\n",
665             win, wc.x, wc.y, wc.width, wc.height);
666
667         XConfigureWindow(display, win->id, mask, &wc);
668 return;
669 #endif
670         bzero(&wc, sizeof wc);
671         wc.border_width = 1;
672         mask = CWX | CWY | CWBorderWidth;
673
674         /* use obsolete width height */
675         if (win->sh.flags & USPosition) {
676                 win->g.w = wc.width = win->sh.width;
677                 win->g.h = wc.height = win->sh.height;
678                 mask |= CWWidth | CWHeight;
679         }
680
681         /* try min max */
682         if (win->sh.flags & PMinSize) {
683                 /* some hints are retarded */
684                 if (win->sh.min_width < ws[current_ws].g.w / 10)
685                         win->sh.min_width = ws[current_ws].g.w / 3;
686                 if (win->sh.min_height < ws[current_ws].g.h / 10)
687                         win->sh.height = ws[current_ws].g.h / 3;
688
689                 win->g.w = wc.width = win->sh.min_width * 2;
690                 win->g.h = wc.height = win->sh.min_height * 2;
691                 mask |= CWWidth | CWHeight;
692         }
693         if (win->sh.flags & PMaxSize) {
694                 /* potentially override min values */
695                 if (win->sh.max_width < ws[current_ws].g.w) {
696                         win->g.w = wc.width = win->sh.max_width;
697                         mask |= CWWidth;
698                 }
699                 if (win->sh.max_height < ws[current_ws].g.h) {
700                         win->g.h = wc.height = win->sh.max_height;
701                         mask |= CWHeight;
702                 }
703         }
704
705         /* make sure we don't clobber the screen */
706         if ((mask & CWWidth) && win->wa.width > ws[current_ws].g.w)
707                 win->wa.width = ws[current_ws].g.w - 4;
708         if ((mask & CWHeight) && win->wa.height > ws[current_ws].g.h)
709                 win->wa.height = ws[current_ws].g.h - 4;
710
711         /* supposed to be obsolete */
712         if (win->sh.flags & USPosition) {
713                 win->g.x = wc.x = win->sh.x;
714                 win->g.y = wc.y = win->sh.y;
715         } else {
716                 win->g.x = wc.x = (ws[current_ws].g.w - win->wa.width) / 2;
717                 win->g.y = wc.y = (ws[current_ws].g.h - win->wa.height) / 2;
718         }
719         DNPRINTF(SWM_D_EVENT, "stack_floater: win %d x %d y %d w %d h %d\n",
720             win, wc.x, wc.y, wc.width, wc.height);
721
722         XConfigureWindow(display, win->id, mask, &wc);
723 }
724
725
726 int vertical_msize[SWM_WS_MAX];
727
728 void
729 vertical_init(int ws_idx)
730 {
731         DNPRINTF(SWM_D_MISC, "vertical_init: workspace: %d\n", current_ws);
732
733         vertical_msize[ws_idx] = ws[ws_idx].g.w / 2;
734 }
735
736 void
737 vertical_resize(int id)
738 {
739         DNPRINTF(SWM_D_MISC, "vertical_resize: workspace: %d\n", current_ws);
740
741         switch (id) {
742         case SWM_ARG_ID_MASTERSHRINK:
743                 vertical_msize[current_ws] -= ws[current_ws].g.w / 32;
744                 if ( vertical_msize[current_ws] < ws[current_ws].g.w / 16)
745                         vertical_msize[current_ws] = ws[current_ws].g.w / 16;
746                 break;
747         case SWM_ARG_ID_MASTERGROW:
748                 vertical_msize[current_ws] += ws[current_ws].g.w / 32;
749                 if ( vertical_msize[current_ws] >
750                    (ws[current_ws].g.w - (ws[current_ws].g.w / 16)))
751                         vertical_msize[current_ws] =
752                             ws[current_ws].g.w - ws[current_ws].g.w / 16;
753                 break;
754         default:
755                 return;
756         }
757         stack();
758 }
759
760 void
761 vertical_stack(struct swm_geometry *g) {
762         XWindowChanges          wc;
763         struct swm_geometry     gg = *g;
764         struct ws_win           wf, *win, *winfocus = &wf;
765         int                     i, hrh, winno;
766         unsigned int            mask;
767
768         DNPRINTF(SWM_D_EVENT, "vertical_stack: workspace: %d\n", current_ws);
769
770         winno = count_win(current_ws, 0);
771         if (winno == 0)
772                 return;
773         winfocus->id = root;
774
775         if (winno > 1)
776                 gg.w = vertical_msize[current_ws];
777
778         if (winno > 2)
779                 hrh = g->h / (winno - 1);
780         else
781                 hrh = 0;
782
783         i = 0;
784         TAILQ_FOREACH (win, &ws[current_ws].winlist, entry) {
785                 if (i == 1) {
786                         gg.x += vertical_msize[current_ws] + 2;
787                         gg.w = g->w - (vertical_msize[current_ws] + 2);
788                 }
789                 if (i != 0 && hrh != 0) {
790                         /* correct the last window for lost pixels */
791                         if (win == TAILQ_LAST(&ws[current_ws].winlist,
792                             ws_win_list)) {
793                                 gg.h = hrh + (g->h - (i * hrh));
794                                 gg.y += hrh;
795                         } else {
796                                 gg.h = hrh - 2;
797                                 /* leave first right hand window at y = 0 */
798                                 if (i > 1)
799                                         gg.y += gg.h + 2;
800                         }
801                 }
802
803                 if (win->transient != 0 || win->floating != 0)
804                         stack_floater(win);
805                 else {
806                         bzero(&wc, sizeof wc);
807                         wc.border_width = 1;
808                         win->g.x = wc.x = gg.x;
809                         win->g.y = wc.y = gg.y;
810                         win->g.w = wc.width = gg.w;
811                         win->g.h = wc.height = gg.h;
812                         mask = CWX | CWY | CWWidth | CWHeight | CWBorderWidth;
813                         XConfigureWindow(display, win->id, mask, &wc);
814                 }
815
816                 if (win == ws[current_ws].focus)
817                         winfocus = win;
818                 else
819                         unfocus_win(win);
820                 XMapRaised(display, win->id);
821                 i++;
822         }
823
824         focus_win(winfocus); /* this has to be done outside of the loop */
825 }
826
827 int horizontal_msize[SWM_WS_MAX];
828
829 void
830 horizontal_init(int ws_idx)
831 {
832         DNPRINTF(SWM_D_MISC, "horizontal_init: workspace: %d\n", current_ws);
833
834         horizontal_msize[ws_idx] = ws[ws_idx].g.h / 2;
835 }
836
837 void
838 horizontal_resize(int id)
839 {
840         DNPRINTF(SWM_D_MISC, "horizontal_resize: workspace: %d\n", current_ws);
841
842         switch (id) {
843         case SWM_ARG_ID_MASTERSHRINK:
844                 horizontal_msize[current_ws] -= ws[current_ws].g.h / 32;
845                 if ( horizontal_msize[current_ws] < ws[current_ws].g.h / 16)
846                         horizontal_msize[current_ws] = ws[current_ws].g.h / 16;
847                 break;
848         case SWM_ARG_ID_MASTERGROW:
849                 horizontal_msize[current_ws] += ws[current_ws].g.h / 32;
850                 if ( horizontal_msize[current_ws] >
851                    (ws[current_ws].g.h - (ws[current_ws].g.h / 16)))
852                         horizontal_msize[current_ws] =
853                             ws[current_ws].g.h - ws[current_ws].g.h / 16;
854                 break;
855         default:
856                 return;
857         }
858         stack();
859 }
860
861 void
862 horizontal_stack(struct swm_geometry *g) {
863         XWindowChanges          wc;
864         struct swm_geometry     gg = *g;
865         struct ws_win           wf, *win, *winfocus = &wf;
866         int                     i, hrw, winno;
867         unsigned int            mask;
868
869         DNPRINTF(SWM_D_EVENT, "horizontal_stack: workspace: %d\n", current_ws);
870
871         winno = count_win(current_ws, 0);
872         if (winno == 0)
873                 return;
874         winfocus->id = root;
875
876         if (winno > 1)
877                 gg.h = horizontal_msize[current_ws];
878
879         if (winno > 2)
880                 hrw = g->w / (winno - 1);
881         else
882                 hrw = 0;
883
884         i = 0;
885         TAILQ_FOREACH (win, &ws[current_ws].winlist, entry) {
886                 if (i == 1) {
887                         gg.y += horizontal_msize[current_ws] + 2;
888                         gg.h = g->h - (horizontal_msize[current_ws] + 2);
889                 }
890                 if (i != 0 && hrw != 0) {
891                         /* correct the last window for lost pixels */
892                         if (win == TAILQ_LAST(&ws[current_ws].winlist,
893                             ws_win_list)) {
894                                 gg.w = hrw + (g->w - (i * hrw));
895                                 gg.x += hrw;
896                         } else {
897                                 gg.w = hrw - 2;
898                                 /* leave first bottom window at x = 0 */
899                                 if (i > 1)
900                                         gg.x += gg.w + 2;
901                         }
902                 }
903
904                 if (win->transient != 0 || win->floating != 0)
905                         stack_floater(win);
906                 else {
907                         bzero(&wc, sizeof wc);
908                         wc.border_width = 1;
909                         win->g.x = wc.x = gg.x;
910                         win->g.y = wc.y = gg.y;
911                         win->g.w = wc.width = gg.w;
912                         win->g.h = wc.height = gg.h;
913                         mask = CWX | CWY | CWWidth | CWHeight | CWBorderWidth;
914                         XConfigureWindow(display, win->id, mask, &wc);
915                 }
916
917                 if (win == ws[current_ws].focus)
918                         winfocus = win;
919                 else
920                         unfocus_win(win);
921                 XMapRaised(display, win->id);
922                 i++;
923         }
924
925         focus_win(winfocus); /* this has to be done outside of the loop */
926 }
927
928 void
929 max_focus(struct ws_win *fwin)
930 {
931         struct ws_win *win;
932
933         TAILQ_FOREACH (win, &ws[current_ws].winlist, entry) {
934                 if (win->transient == 0 && win->floating == 0 && win == fwin)
935                         XMapRaised(display, win->id);
936                 else
937                         XUnmapWindow(display, win->id);
938         }
939 }
940
941 /* fullscreen view */
942 void
943 max_stack(struct swm_geometry *g) {
944         XWindowChanges          wc;
945         struct swm_geometry     gg = *g;
946         struct ws_win           *win, *winfocus;
947         unsigned int            mask;
948
949         DNPRINTF(SWM_D_EVENT, "max_stack: workspace: %d\n", current_ws);
950
951         if (count_win(current_ws, 0) == 0)
952                 return;
953
954         winfocus = ws[current_ws].focus;
955         if (!winfocus)
956                 winfocus = TAILQ_FIRST(&ws[current_ws].winlist);
957
958         TAILQ_FOREACH (win, &ws[current_ws].winlist, entry) {
959                 if (win->transient != 0 || win->floating != 0) {
960                         if (win == winfocus)
961                                 stack_floater(win); /* XXX maximize? */
962                         else
963                                 XUnmapWindow(display, win->id);
964                 } else {
965                         bzero(&wc, sizeof wc);
966                         wc.border_width = 1;
967                         win->g.x = wc.x = gg.x;
968                         win->g.y = wc.y = gg.y;
969                         win->g.w = wc.width = gg.w;
970                         win->g.h = wc.height = gg.h;
971                         mask = CWX | CWY | CWWidth | CWHeight | CWBorderWidth;
972                         XConfigureWindow(display, win->id, mask, &wc);
973
974                         if (winfocus == win)
975                                 XMapRaised(display, win->id);
976                         else
977                                 XUnmapWindow(display, win->id);
978                 }
979         }
980
981         focus_win(winfocus); /* this has to be done outside of the loop */
982 }
983
984 void
985 send_to_ws(union arg *args)
986 {
987         int                     wsid = args->id;
988         struct ws_win           *win = ws[current_ws].focus;
989
990         DNPRINTF(SWM_D_MOVE, "send_to_ws: win: %lu\n", win->id);
991
992         XUnmapWindow(display, win->id);
993
994         /* find a window to focus */
995         ws[current_ws].focus = TAILQ_PREV(win, ws_win_list, entry);
996         if (ws[current_ws].focus == NULL)
997                 ws[current_ws].focus = TAILQ_FIRST(&ws[current_ws].winlist);
998         if (ws[current_ws].focus == win)
999                 ws[current_ws].focus = NULL;
1000
1001         TAILQ_REMOVE(&ws[current_ws].winlist, win, entry);
1002
1003         TAILQ_INSERT_TAIL(&ws[wsid].winlist, win, entry);
1004         if (count_win(wsid, 1) == 1)
1005                 ws[wsid].focus = win;
1006         ws[wsid].restack = 1;
1007
1008         stack();
1009 }
1010
1011 /* key definitions */
1012 struct key {
1013         unsigned int            mod;
1014         KeySym                  keysym;
1015         void                    (*func)(union arg *);
1016         union arg               args;
1017 } keys[] = {
1018         /* modifier             key     function                argument */
1019         { MODKEY,               XK_space,       cycle_layout,   {0} }, 
1020         { MODKEY | ShiftMask,   XK_space,       stack_reset,    {0} }, 
1021         { MODKEY,               XK_h,           resize_master,  {.id = SWM_ARG_ID_MASTERSHRINK} },
1022         { MODKEY,               XK_l,           resize_master,  {.id = SWM_ARG_ID_MASTERGROW} },
1023         { MODKEY,               XK_Return,      swapwin,        {.id = SWM_ARG_ID_SWAPMAIN} },
1024         { MODKEY,               XK_j,           focus,          {.id = SWM_ARG_ID_FOCUSNEXT} },
1025         { MODKEY,               XK_k,           focus,          {.id = SWM_ARG_ID_FOCUSPREV} },
1026         { MODKEY | ShiftMask,   XK_j,           swapwin,        {.id = SWM_ARG_ID_SWAPNEXT} },
1027         { MODKEY | ShiftMask,   XK_k,           swapwin,        {.id = SWM_ARG_ID_SWAPPREV} },
1028         { MODKEY | ShiftMask,   XK_Return,      spawn,          {.argv = spawn_term} },
1029         { MODKEY,               XK_p,           spawn,          {.argv = spawn_menu} },
1030         { MODKEY | ShiftMask,   XK_q,           quit,           {0} },
1031         { MODKEY,               XK_q,           restart,        {.argv = spawn_scrotwm } },
1032         { MODKEY,               XK_m,           focus,          {.id = SWM_ARG_ID_FOCUSMAIN} },
1033         { MODKEY,               XK_1,           switchws,       {.id = 0} },
1034         { MODKEY,               XK_2,           switchws,       {.id = 1} },
1035         { MODKEY,               XK_3,           switchws,       {.id = 2} },
1036         { MODKEY,               XK_4,           switchws,       {.id = 3} },
1037         { MODKEY,               XK_5,           switchws,       {.id = 4} },
1038         { MODKEY,               XK_6,           switchws,       {.id = 5} },
1039         { MODKEY,               XK_7,           switchws,       {.id = 6} },
1040         { MODKEY,               XK_8,           switchws,       {.id = 7} },
1041         { MODKEY,               XK_9,           switchws,       {.id = 8} },
1042         { MODKEY,               XK_0,           switchws,       {.id = 9} },
1043         { MODKEY | ShiftMask,   XK_1,           send_to_ws,     {.id = 0} },
1044         { MODKEY | ShiftMask,   XK_2,           send_to_ws,     {.id = 1} },
1045         { MODKEY | ShiftMask,   XK_3,           send_to_ws,     {.id = 2} },
1046         { MODKEY | ShiftMask,   XK_4,           send_to_ws,     {.id = 3} },
1047         { MODKEY | ShiftMask,   XK_5,           send_to_ws,     {.id = 4} },
1048         { MODKEY | ShiftMask,   XK_6,           send_to_ws,     {.id = 5} },
1049         { MODKEY | ShiftMask,   XK_7,           send_to_ws,     {.id = 6} },
1050         { MODKEY | ShiftMask,   XK_8,           send_to_ws,     {.id = 7} },
1051         { MODKEY | ShiftMask,   XK_9,           send_to_ws,     {.id = 8} },
1052         { MODKEY | ShiftMask,   XK_0,           send_to_ws,     {.id = 9} },
1053         { MODKEY,               XK_b,           bar_toggle,     {0} },
1054         { MODKEY,               XK_Tab,         focus,          {.id = SWM_ARG_ID_FOCUSNEXT} },
1055         { MODKEY | ShiftMask,   XK_Tab,         focus,          {.id = SWM_ARG_ID_FOCUSPREV} },
1056 };
1057
1058 void
1059 updatenumlockmask(void)
1060 {
1061         unsigned int            i, j;
1062         XModifierKeymap         *modmap;
1063
1064         DNPRINTF(SWM_D_MISC, "updatenumlockmask\n");
1065         numlockmask = 0;
1066         modmap = XGetModifierMapping(display);
1067         for (i = 0; i < 8; i++)
1068                 for (j = 0; j < modmap->max_keypermod; j++)
1069                         if (modmap->modifiermap[i * modmap->max_keypermod + j]
1070                           == XKeysymToKeycode(display, XK_Num_Lock))
1071                                 numlockmask = (1 << i);
1072
1073         XFreeModifiermap(modmap);
1074 }
1075
1076 void
1077 grabkeys(void)
1078 {
1079         unsigned int            i, j;
1080         KeyCode                 code;
1081         unsigned int            modifiers[] =
1082             { 0, LockMask, numlockmask, numlockmask | LockMask };
1083
1084         DNPRINTF(SWM_D_MISC, "grabkeys\n");
1085         updatenumlockmask();
1086
1087         XUngrabKey(display, AnyKey, AnyModifier, root);
1088         for(i = 0; i < LENGTH(keys); i++) {
1089                 if((code = XKeysymToKeycode(display, keys[i].keysym)))
1090                         for(j = 0; j < LENGTH(modifiers); j++)
1091                                 XGrabKey(display, code,
1092                                     keys[i].mod | modifiers[j], root,
1093                                     True, GrabModeAsync, GrabModeAsync);
1094         }
1095 }
1096 void
1097 expose(XEvent *e)
1098 {
1099         DNPRINTF(SWM_D_EVENT, "expose: window: %lu\n", e->xexpose.window);
1100 }
1101
1102 void
1103 keypress(XEvent *e)
1104 {
1105         unsigned int            i;
1106         KeySym                  keysym;
1107         XKeyEvent               *ev = &e->xkey;
1108
1109         DNPRINTF(SWM_D_EVENT, "keypress: window: %lu\n", ev->window);
1110
1111         keysym = XKeycodeToKeysym(display, (KeyCode)ev->keycode, 0);
1112         for(i = 0; i < LENGTH(keys); i++)
1113                 if(keysym == keys[i].keysym
1114                    && CLEANMASK(keys[i].mod) == CLEANMASK(ev->state)
1115                    && keys[i].func)
1116                         keys[i].func(&(keys[i].args));
1117 }
1118
1119 void
1120 buttonpress(XEvent *e)
1121 {
1122         XButtonPressedEvent     *ev = &e->xbutton;
1123 #ifdef SWM_CLICKTOFOCUS
1124         struct ws_win           *win;
1125 #endif
1126
1127
1128         DNPRINTF(SWM_D_EVENT, "buttonpress: window: %lu\n", ev->window);
1129
1130         if (ev->window == root)
1131                 return;
1132         if (ev->window == ws[current_ws].focus->id)
1133                 return;
1134 #ifdef SWM_CLICKTOFOCUS
1135         TAILQ_FOREACH(win, &ws[current_ws].winlist, entry)
1136                 if (win->id == ev->window) {
1137                         /* focus in the clicked window */
1138                         XSetWindowBorder(display, ev->window, 0xff0000);
1139                         XSetWindowBorder(display,
1140                             ws[current_ws].focus->id, 0x888888);
1141                         XSetInputFocus(display, ev->window, RevertToPointerRoot,
1142                             CurrentTime);
1143                         ws[current_ws].focus = win;
1144                         XSync(display, False);
1145                         break;
1146         }
1147 #endif
1148 }
1149
1150 struct ws_win *
1151 manage_window(Window id)
1152 {
1153         Window                  trans;
1154         struct ws_win           *win;
1155         XClassHint              ch;
1156
1157         TAILQ_FOREACH (win, &ws[current_ws].winlist, entry) {
1158                 if (win->id == id)
1159                         return (win);   /* already being managed */
1160         }
1161
1162         if ((win = calloc(1, sizeof(struct ws_win))) == NULL)
1163                 errx(1, "calloc: failed to allocate memory for new window");
1164
1165         win->id = id;
1166         TAILQ_INSERT_TAIL(&ws[current_ws].winlist, win, entry);
1167         ws[current_ws].focus = win; /* make new win focused */
1168
1169         XGetTransientForHint(display, win->id, &trans);
1170         if (trans) {
1171                 win->transient = trans;
1172                 DNPRINTF(SWM_D_MISC, "manage_window: win %u transient %u\n",
1173                     (unsigned)win->id, win->transient);
1174         }
1175         XGetWindowAttributes(display, win->id, &win->wa);
1176         XGetNormalHints(display, win->id, &win->sh);
1177
1178         /* XXX */
1179         bzero(&ch, sizeof ch);
1180         if(XGetClassHint(display, win->id, &ch)) {
1181                 /*fprintf(stderr, "class: %s name: %s\n", ch.res_class, ch.res_name); */
1182                 if (!strcmp(ch.res_class, "MPlayer") && !strcmp(ch.res_name, "xv")) {
1183                         win->floating = 1;
1184                 }
1185                 if(ch.res_class)
1186                         XFree(ch.res_class);
1187                 if(ch.res_name)
1188                         XFree(ch.res_name);
1189         }
1190
1191         XSelectInput(display, id, ButtonPressMask | EnterWindowMask |
1192             FocusChangeMask | ExposureMask);
1193
1194         return (win);
1195 }
1196
1197 void
1198 configurerequest(XEvent *e)
1199 {
1200         XConfigureRequestEvent  *ev = &e->xconfigurerequest;
1201         struct ws_win           *win;
1202         int                     new = 1;
1203         XWindowChanges          wc;
1204
1205         TAILQ_FOREACH (win, &ws[current_ws].winlist, entry) {
1206                 if (win->id == ev->window) {
1207                         new = 0;
1208                         break;
1209                 }
1210         }
1211
1212         if (new) {
1213                 DNPRINTF(SWM_D_EVENT, "configurerequest: new window: %lu\n",
1214                     ev->window);
1215                 bzero(&wc, sizeof wc);
1216                 wc.x = ev->x;
1217                 wc.y = ev->y;
1218                 wc.width = ev->width;
1219                 wc.height = ev->height;
1220                 wc.border_width = ev->border_width;
1221                 wc.sibling = ev->above;
1222                 wc.stack_mode = ev->detail;
1223                 XConfigureWindow(display, ev->window, ev->value_mask, &wc);
1224         } else {
1225                 DNPRINTF(SWM_D_EVENT, "configurerequest: change window: %lu\n",
1226                     ev->window);
1227                 config_win(win);
1228         }
1229 }
1230
1231 void
1232 configurenotify(XEvent *e)
1233 {
1234         DNPRINTF(SWM_D_EVENT, "configurenotify: window: %lu\n",
1235             e->xconfigure.window);
1236 }
1237
1238 void
1239 destroynotify(XEvent *e)
1240 {
1241         struct ws_win           *win;
1242         XDestroyWindowEvent     *ev = &e->xdestroywindow;
1243
1244         DNPRINTF(SWM_D_EVENT, "destroynotify: window %lu\n", ev->window);
1245
1246         TAILQ_FOREACH (win, &ws[current_ws].winlist, entry) {
1247                 if (ev->window == win->id) {
1248                         /* find a window to focus */
1249                         ws[current_ws].focus = TAILQ_PREV(win,
1250                             ws_win_list, entry);
1251                         if (ws[current_ws].focus == NULL)
1252                                 ws[current_ws].focus =
1253                                     TAILQ_FIRST(&ws[current_ws].winlist);
1254                         if (win == ws[current_ws].focus)
1255                                 ws[current_ws].focus = NULL;
1256         
1257                         TAILQ_REMOVE(&ws[current_ws].winlist, win, entry);
1258                         free(win);
1259                         break;
1260                 }
1261         }
1262
1263         stack();
1264 }
1265
1266 void
1267 enternotify(XEvent *e)
1268 {
1269         XCrossingEvent          *ev = &e->xcrossing;
1270         struct ws_win           *win;
1271
1272         DNPRINTF(SWM_D_EVENT, "enternotify: window: %lu\n", ev->window);
1273
1274         if((ev->mode != NotifyNormal || ev->detail == NotifyInferior) &&
1275             ev->window != root)
1276                 return;
1277         if (ignore_enter) {
1278                 /* eat event(s) to prevent autofocus */
1279                 ignore_enter--;
1280                 return;
1281         }
1282         TAILQ_FOREACH (win, &ws[current_ws].winlist, entry) {
1283                 if (win->id == ev->window)
1284                         focus_win(win);
1285                 else
1286                         unfocus_win(win);
1287         }
1288 }
1289
1290 void
1291 focusin(XEvent *e)
1292 {
1293         XFocusChangeEvent       *ev = &e->xfocus;
1294
1295         DNPRINTF(SWM_D_EVENT, "focusin: window: %lu\n", ev->window);
1296
1297         if (ev->window == root)
1298                 return;
1299         /*
1300          * kill grab for now so that we can cut and paste , this screws up
1301          * click to focus
1302          */
1303         /*
1304         DNPRINTF(SWM_D_EVENT, "focusin: window: %lu grabbing\n", ev->window);
1305         XGrabButton(display, Button1, AnyModifier, ev->window, False,
1306             ButtonPress, GrabModeAsync, GrabModeSync, None, None);
1307         */
1308 }
1309
1310 void
1311 mappingnotify(XEvent *e)
1312 {
1313         XMappingEvent           *ev = &e->xmapping;
1314
1315         DNPRINTF(SWM_D_EVENT, "mappingnotify: window: %lu\n", ev->window);
1316
1317         XRefreshKeyboardMapping(ev);
1318         if(ev->request == MappingKeyboard)
1319                 grabkeys();
1320 }
1321
1322 void
1323 maprequest(XEvent *e)
1324 {
1325         DNPRINTF(SWM_D_EVENT, "maprequest: window: %lu\n",
1326             e->xmaprequest.window);
1327
1328         manage_window(e->xmaprequest.window);
1329         stack();
1330 }
1331
1332 void
1333 propertynotify(XEvent *e)
1334 {
1335         DNPRINTF(SWM_D_EVENT, "propertynotify: window: %lu\n",
1336             e->xproperty.window);
1337 }
1338
1339 void
1340 unmapnotify(XEvent *e)
1341 {
1342         DNPRINTF(SWM_D_EVENT, "unmapnotify: window: %lu\n", e->xunmap.window);
1343 }
1344
1345 void
1346 visibilitynotify(XEvent *e)
1347 {
1348         DNPRINTF(SWM_D_EVENT, "visibilitynotify: window: %lu\n", e->xvisibility.window);
1349
1350         if (e->xvisibility.window == bar_window &&
1351             e->xvisibility.state == VisibilityUnobscured)
1352                 bar_print();
1353 }
1354
1355 void                    (*handler[LASTEvent])(XEvent *) = {
1356                                 [Expose] = expose,
1357                                 [KeyPress] = keypress,
1358                                 [ButtonPress] = buttonpress,
1359                                 [ConfigureRequest] = configurerequest,
1360                                 [ConfigureNotify] = configurenotify,
1361                                 [DestroyNotify] = destroynotify,
1362                                 [EnterNotify] = enternotify,
1363                                 [FocusIn] = focusin,
1364                                 [MappingNotify] = mappingnotify,
1365                                 [MapRequest] = maprequest,
1366                                 [PropertyNotify] = propertynotify,
1367                                 [UnmapNotify] = unmapnotify,
1368                                 [VisibilityNotify] = visibilitynotify,
1369 };
1370
1371 int
1372 xerror_start(Display *d, XErrorEvent *ee)
1373 {
1374         other_wm = 1;
1375         return (-1);
1376 }
1377
1378 int
1379 xerror(Display *d, XErrorEvent *ee)
1380 {
1381         fprintf(stderr, "error: %p %p\n", display, ee);
1382
1383         return (-1);
1384 }
1385
1386 int
1387 active_wm(void)
1388 {
1389         other_wm = 0;
1390         xerrorxlib = XSetErrorHandler(xerror_start);
1391
1392         /* this causes an error if some other window manager is running */
1393         XSelectInput(display, DefaultRootWindow(display),
1394             SubstructureRedirectMask);
1395         XSync(display, False);
1396         if(other_wm)
1397                 return (1);
1398
1399         XSetErrorHandler(xerror);
1400         XSync(display, False);
1401         return (0);
1402 }
1403
1404 int
1405 main(int argc, char *argv[])
1406 {
1407         struct passwd           *pwd;
1408         char                    conf[PATH_MAX], *cfile = NULL;
1409         struct stat             sb;
1410         XEvent                  e;
1411         unsigned int            i, j, num;
1412         Window                  d1, d2, *wins = NULL;
1413         XWindowAttributes       wa;
1414
1415         fprintf(stderr, "Welcome to scrotwm V%s\n", SWM_VERSION);
1416         if(!setlocale(LC_CTYPE, "") || !XSupportsLocale())
1417                 warnx("no locale support");
1418
1419         if(!(display = XOpenDisplay(0)))
1420                 errx(1, "can not open display");
1421
1422         if (active_wm())
1423                 errx(1, "other wm running");
1424
1425         screen = DefaultScreen(display);
1426         root = RootWindow(display, screen);
1427
1428         /* look for local and global conf file */
1429         pwd = getpwuid(getuid());
1430         if (pwd == NULL)
1431                 errx(1, "invalid user %d", getuid());
1432
1433         snprintf(conf, sizeof conf, "%s/.%s", pwd->pw_dir, SWM_CONF_FILE);
1434         if (stat(conf, &sb) != -1) {
1435                 if (S_ISREG(sb.st_mode))
1436                         cfile = conf;
1437         } else {
1438                 /* try global conf file */
1439                 snprintf(conf, sizeof conf, "/etc/%s", SWM_CONF_FILE);
1440                 if (!stat(conf, &sb))
1441                         if (S_ISREG(sb.st_mode))
1442                                 cfile = conf;
1443         }
1444         if (cfile)
1445                 conf_load(cfile);
1446
1447         /* init all workspaces */
1448         for (i = 0; i < SWM_WS_MAX; i++) {
1449                 ws[i].visible = 0;
1450                 ws[i].restack = 1;
1451                 ws[i].focus = NULL;
1452                 ws[i].g.x = 0;
1453                 ws[i].g.y = 0;
1454                 ws[i].g.w = DisplayWidth(display, screen) - 2;
1455                 ws[i].g.h = DisplayHeight(display, screen) - 2;
1456                 TAILQ_INIT(&ws[i].winlist);
1457
1458                 for (j = 0; layouts[j].l_stack != NULL; j++) {
1459                         if (layouts[j].l_init != NULL)
1460                                 layouts[j].l_init(i);
1461                 }
1462                 ws[i].cur_layout = &layouts[0];
1463         }
1464         /* make work space 1 active */
1465         ws[0].visible = 1;
1466
1467         /* grab existing windows */
1468         if (XQueryTree(display, root, &d1, &d2, &wins, &num)) {
1469                 for (i = 0; i < num; i++) {
1470                         if (!XGetWindowAttributes(display, wins[i], &wa)
1471                             || wa.override_redirect ||
1472                             XGetTransientForHint(display, wins[i], &d1))
1473                                 continue;
1474                         manage_window(wins[i]);
1475                 }
1476                 if(wins)
1477                         XFree(wins);
1478         }
1479         ws[0].focus = TAILQ_FIRST(&ws[0].winlist);
1480
1481         /* setup status bar */
1482         bar_setup();
1483
1484         XSelectInput(display, root, SubstructureRedirectMask |
1485             SubstructureNotifyMask | ButtonPressMask | KeyPressMask |
1486             EnterWindowMask | LeaveWindowMask | StructureNotifyMask |
1487             FocusChangeMask | PropertyChangeMask | ExposureMask);
1488
1489         grabkeys();
1490         stack();
1491
1492         while (running) {
1493                 XNextEvent(display, &e);
1494                 if (handler[e.type])
1495                         handler[e.type](&e);
1496         }
1497
1498         XCloseDisplay(display);
1499
1500         return (0);
1501 }