JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
New
[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 <errno.h>
57 #include <fcntl.h>
58 #include <locale.h>
59 #include <unistd.h>
60 #include <time.h>
61 #include <signal.h>
62 #include <string.h>
63 #include <util.h>
64 #include <pwd.h>
65 #include <ctype.h>
66
67 #include <sys/types.h>
68 #include <sys/time.h>
69 #include <sys/stat.h>
70 #include <sys/wait.h>
71 #include <sys/queue.h>
72 #include <sys/param.h>
73 #include <sys/select.h>
74
75 #include <X11/cursorfont.h>
76 #include <X11/keysym.h>
77 #include <X11/Xatom.h>
78 #include <X11/Xlib.h>
79 #include <X11/Xproto.h>
80 #include <X11/Xutil.h>
81 #include <X11/extensions/Xrandr.h>
82
83 #if RANDR_MAJOR < 1
84 #  error XRandR versions less than 1.0 are not supported
85 #endif
86
87 #if RANDR_MAJOR >= 1
88 #if RANDR_MINOR >= 2
89 #define SWM_XRR_HAS_CRTC
90 #endif
91 #endif
92
93 /* #define SWM_DEBUG */
94 /* #define SWM_DEBUG */
95 #ifdef SWM_DEBUG
96 #define DPRINTF(x...)           do { if (swm_debug) fprintf(stderr, x); } while(0)
97 #define DNPRINTF(n,x...)        do { if (swm_debug & n) fprintf(stderr, x); } while(0)
98 #define SWM_D_MISC              0x0001
99 #define SWM_D_EVENT             0x0002
100 #define SWM_D_WS                0x0004
101 #define SWM_D_FOCUS             0x0008
102 #define SWM_D_MOVE              0x0010
103 #define SWM_D_STACK             0x0020
104 #define SWM_D_MOUSE             0x0040
105
106 u_int32_t               swm_debug = 0
107                             | SWM_D_MISC
108                             | SWM_D_EVENT
109                             | SWM_D_WS
110                             | SWM_D_FOCUS
111                             | SWM_D_MOVE
112                             | SWM_D_STACK
113                             ;
114 #else
115 #define DPRINTF(x...)
116 #define DNPRINTF(n,x...)
117 #endif
118
119 #define LENGTH(x)               (sizeof x / sizeof x[0])
120 #define MODKEY                  Mod1Mask
121 #define CLEANMASK(mask)         (mask & ~(numlockmask | LockMask))
122 #define BUTTONMASK              (ButtonPressMask|ButtonReleaseMask)
123
124 #define X(r)            (r)->g.x        
125 #define Y(r)            (r)->g.y
126 #define WIDTH(r)        (r)->g.w        
127 #define HEIGHT(r)       (r)->g.h
128
129 char                    **start_argv;
130 Atom                    astate;
131 int                     (*xerrorxlib)(Display *, XErrorEvent *);
132 int                     other_wm;
133 int                     running = 1;
134 int                     xrandr_eventbase;
135 int                     ignore_enter = 0;
136 unsigned int            numlockmask = 0;
137 Display                 *display;
138
139 int                     cycle_empty = 0;
140 int                     cycle_visible = 0;
141
142 /* dialog windows */
143 double                  dialog_ratio = .6;
144 /* status bar */
145 #define SWM_BAR_MAX     (128)
146 char                    *bar_argv[] = { NULL, NULL };
147 int                     bar_pipe[2];
148 char                    bar_ext[SWM_BAR_MAX];
149 sig_atomic_t            bar_alarm = 0;
150 int                     bar_enabled = 1;
151 int                     bar_extra = 1;
152 int                     bar_extra_running = 0;
153 int                     bar_verbose = 1;
154 int                     bar_height = 0;
155 pid_t                   bar_pid;
156 GC                      bar_gc;
157 XGCValues               bar_gcv;
158 int                     bar_fidx = 0;
159 XFontStruct             *bar_fs;
160 char                    *bar_fonts[] = {
161                             "-*-terminus-*-*-*-*-*-*-*-*-*-*-*-*",
162                             "-*-times-medium-r-*-*-*-*-*-*-*-*-*-*",
163                             NULL
164 };
165
166 /* terminal + args */
167 char                    *spawn_term[] = { "xterm", NULL };
168 char                    *spawn_menu[] = { "dmenu_run", "-fn", NULL,
169                             "-nb", NULL, "-nf", NULL, "-sb", NULL, "-sf", NULL, NULL };
170
171 #define SWM_MENU_FN     (2)
172 #define SWM_MENU_NB     (4)
173 #define SWM_MENU_NF     (6)
174 #define SWM_MENU_SB     (8)
175 #define SWM_MENU_SF     (10)
176
177 /* layout manager data */
178 struct swm_geometry {
179         int                     x;
180         int                     y;
181         int                     w;
182         int                     h;
183 };
184
185 struct swm_screen;
186 struct workspace;
187
188 /* virtual "screens" */
189 struct swm_region {
190         TAILQ_ENTRY(swm_region) entry;
191         struct swm_geometry     g;
192         Window                  bar_window;
193         struct workspace        *ws;    /* current workspace on this region */
194         struct swm_screen       *s;     /* screen idx */
195 }; 
196 TAILQ_HEAD(swm_region_list, swm_region);
197
198 struct ws_win {
199         TAILQ_ENTRY(ws_win)     entry;
200         Window                  id;
201         struct swm_geometry     g;
202         int                     got_focus;
203         int                     floating;
204         int                     transient;
205         struct workspace        *ws;    /* always valid */
206         struct swm_screen       *s;     /* always valid, never changes */
207         XWindowAttributes       wa;
208 };
209 TAILQ_HEAD(ws_win_list, ws_win);
210
211 /* layout handlers */
212 void    stack(void);
213 void    vertical_config(struct workspace *, int);
214 void    vertical_stack(struct workspace *, struct swm_geometry *);
215 void    horizontal_config(struct workspace *, int);
216 void    horizontal_stack(struct workspace *, struct swm_geometry *);
217 void    max_stack(struct workspace *, struct swm_geometry *);
218
219 void    grabbuttons(struct ws_win *, int);
220
221 struct layout {
222         void            (*l_stack)(struct workspace *, struct swm_geometry *);
223         void            (*l_config)(struct workspace *, int);
224 } layouts[] =  {
225         /* stack,               configure */
226         { vertical_stack,       vertical_config},
227         { horizontal_stack,     horizontal_config},
228         { max_stack,            NULL},
229         { NULL,                 NULL},
230 };
231
232 #define SWM_H_SLICE             (32)
233 #define SWM_V_SLICE             (32)
234
235 /* define work spaces */
236 struct workspace {
237         int                     idx;            /* workspace index */
238         int                     restack;        /* restack on switch */
239         struct layout           *cur_layout;    /* current layout handlers */
240         struct ws_win           *focus;         /* may be NULL */
241         struct swm_region       *r;             /* may be NULL */
242         struct ws_win_list      winlist;        /* list of windows in ws */
243
244         /* stacker state */
245         struct {
246                                 int horizontal_msize;
247                                 int horizontal_mwin;
248                                 int vertical_msize;
249                                 int vertical_mwin;
250         } l_state;
251 };
252
253 enum    { SWM_S_COLOR_BAR, SWM_S_COLOR_BAR_BORDER, SWM_S_COLOR_BAR_FONT,
254           SWM_S_COLOR_FOCUS, SWM_S_COLOR_UNFOCUS, SWM_S_COLOR_MAX };
255
256 /* physical screen mapping */
257 #define SWM_WS_MAX              (10)            /* XXX Too small? */
258 struct swm_screen {
259         int                     idx;            /* screen index */
260         struct swm_region_list  rl;     /* list of regions on this screen */
261         Window                  root;
262         int                     xrandr_support;
263         struct workspace        ws[SWM_WS_MAX];
264
265         /* colors */
266         struct {
267                 unsigned long   color;
268                 char            *name;
269         } c[SWM_S_COLOR_MAX];
270 };
271 struct swm_screen       *screens;
272 int                     num_screens;
273
274 struct ws_win           *cur_focus = NULL;
275
276 /* args to functions */
277 union arg {
278         int                     id;
279 #define SWM_ARG_ID_FOCUSNEXT    (0)
280 #define SWM_ARG_ID_FOCUSPREV    (1)
281 #define SWM_ARG_ID_FOCUSMAIN    (2)
282 #define SWM_ARG_ID_SWAPNEXT     (3)
283 #define SWM_ARG_ID_SWAPPREV     (4)
284 #define SWM_ARG_ID_SWAPMAIN     (5)
285 #define SWM_ARG_ID_MASTERSHRINK (6)
286 #define SWM_ARG_ID_MASTERGROW   (7)
287 #define SWM_ARG_ID_MASTERADD    (8)
288 #define SWM_ARG_ID_MASTERDEL    (9)
289 #define SWM_ARG_ID_STACKRESET   (10)
290 #define SWM_ARG_ID_STACKINIT    (11)
291 #define SWM_ARG_ID_CYCLEWS_UP   (12)
292 #define SWM_ARG_ID_CYCLEWS_DOWN (13)
293         char                    **argv;
294 };
295
296 unsigned long
297 name_to_color(char *colorname)
298 {
299         Colormap                cmap;
300         Status                  status;
301         XColor                  screen_def, exact_def;
302         unsigned long           result = 0;
303         char                    cname[32] = "#";
304
305         cmap = DefaultColormap(display, screens[0].idx);
306         status = XAllocNamedColor(display, cmap, colorname,
307             &screen_def, &exact_def);
308         if (!status) {
309                 strlcat(cname, colorname + 2, sizeof cname - 1);
310                 status = XAllocNamedColor(display, cmap, cname, &screen_def,
311                     &exact_def);
312         }
313         if (status)
314                 result = screen_def.pixel;
315         else
316                 fprintf(stderr, "color '%s' not found.\n", colorname);
317
318         return (result);
319 }
320
321 void
322 setscreencolor(char *val, int i, int c)
323 {
324         if (i > 0 && i <= ScreenCount(display)) {
325                 screens[i - 1].c[c].color = name_to_color(val);
326                 if ((screens[i - 1].c[c].name = strdup(val)) == NULL)
327                         errx(1, "strdup");
328         } else if (i == -1) {
329                 for (i = 0; i < ScreenCount(display); i++)
330                         screens[i].c[c].color = name_to_color(val);
331                         if ((screens[i - 1].c[c].name = strdup(val)) == NULL)
332                                 errx(1, "strdup");
333         } else
334                 errx(1, "invalid screen index: %d out of bounds (maximum %d)\n",
335                     i, ScreenCount(display));
336 }
337
338 int
339 varmatch(char *var, char *name, int *index)
340 {
341         char                    *p, buf[5];
342         int                     i;
343
344         i = strncmp(var, name, 255);
345         if (index == NULL)
346                 return (i);
347
348         *index = -1;
349         if (i <= 0)
350                 return (i);
351         p = var + strlen(name);
352         if (*p++ != '[')
353                 return (i);
354         bzero(buf, sizeof buf);
355         i = 0;
356         while (isdigit(*p) && i < sizeof buf)
357                 buf[i++] = *p++;
358         if (i == 0 || i >= sizeof buf || *p != ']')
359                 return (1);
360         *index = strtonum(buf, 0, 99, NULL);
361         return (0);
362 }
363
364 /* conf file stuff */
365 #define SWM_CONF_WS     "\n= \t"
366 #define SWM_CONF_FILE   "scrotwm.conf"
367 int
368 conf_load(char *filename)
369 {
370         FILE                    *config;
371         char                    *line, *cp, *var, *val;
372         size_t                  len, lineno = 0;
373         int                     i, sc;
374
375         DNPRINTF(SWM_D_MISC, "conf_load: filename %s\n", filename);
376
377         if (filename == NULL)
378                 return (1);
379
380         if ((config = fopen(filename, "r")) == NULL)
381                 return (1);
382
383         for (sc = ScreenCount(display);;) {
384                 if ((line = fparseln(config, &len, &lineno, NULL, 0)) == NULL)
385                         if (feof(config))
386                                 break;
387                 cp = line;
388                 cp += (long)strspn(cp, SWM_CONF_WS);
389                 if (cp[0] == '\0') {
390                         /* empty line */
391                         free(line);
392                         continue;
393                 }
394                 if ((var = strsep(&cp, SWM_CONF_WS)) == NULL || cp == NULL)
395                         break;
396                 cp += (long)strspn(cp, SWM_CONF_WS);
397                 if ((val = strsep(&cp, SWM_CONF_WS)) == NULL)
398                         break;
399
400                 DNPRINTF(SWM_D_MISC, "conf_load: %s=%s\n",var ,val);
401                 switch (var[0]) {
402                 case 'b':
403                         if (!strncmp(var, "bar_enabled", strlen("bar_enabled")))
404                                 bar_enabled = atoi(val);
405                         else if (!varmatch(var, "bar_border", &i))
406                                 setscreencolor(val, i, SWM_S_COLOR_BAR_BORDER);
407                         else if (!varmatch(var, "bar_color", &i))
408                                 setscreencolor(val, i, SWM_S_COLOR_BAR);
409                         else if (!varmatch(var, "bar_font_color", &i))
410                                 setscreencolor(val, i, SWM_S_COLOR_BAR_FONT);
411                         else if (!strncmp(var, "bar_font", strlen("bar_font")))
412                                 asprintf(&bar_fonts[0], "%s", val);
413                         else if (!strncmp(var, "bar_action", strlen("bar_action")))
414                                 asprintf(&bar_argv[0], "%s", val);
415                         else
416                                 goto bad;
417                         break;
418
419                 case 'c':
420                         if (!varmatch(var, "color_focus", &i))
421                                 setscreencolor(val, i, SWM_S_COLOR_FOCUS);
422                         else if (!varmatch(var, "color_unfocus", &i))
423                                 setscreencolor(val, i, SWM_S_COLOR_UNFOCUS);
424                         else if (!strncmp(var, "cycle_empty", strlen("cycle_empty")))
425                                 cycle_visible = atoi(val);
426                         else if (!strncmp(var, "cycle_visible", strlen("cycle_visible")))
427                                 cycle_visible = atoi(val);
428                         else
429                                 goto bad;
430                         break;
431
432                 case 'd':
433                         if (!strncmp(var, "dialog_ratio",
434                             strlen("dialog_ratio"))) {
435                                 dialog_ratio = atof(val);
436                                 if (dialog_ratio > 1.0 || dialog_ratio <= .3)
437                                         dialog_ratio = .6;
438                         } else
439                                 goto bad;
440                         break;
441
442                 case 's':
443                         if (!strncmp(var, "spawn_term", strlen("spawn_term")))
444                                 asprintf(&spawn_term[0], "%s", val); /* XXX args? */
445                         break;
446                 default:
447                         goto bad;
448                 }
449                 free(line);
450         }
451
452         fclose(config);
453         return (0);
454
455 bad:
456         errx(1, "invalid conf file entry: %s=%s", var, val);
457 }
458
459 void
460 socket_setnonblock(int fd)
461 {
462         int                     flags;
463
464         if ((flags = fcntl(fd, F_GETFL, 0)) == -1)
465                 err(1, "fcntl F_GETFL");
466         flags |= O_NONBLOCK;
467         if ((flags = fcntl(fd, F_SETFL, flags)) == -1)
468                 err(1, "fcntl F_SETFL");
469 }
470
471 void
472 bar_print(struct swm_region *r, char *s)
473 {
474         XClearWindow(display, r->bar_window);
475         XSetForeground(display, bar_gc, r->s->c[SWM_S_COLOR_BAR_FONT].color);
476         XDrawString(display, r->bar_window, bar_gc, 4, bar_fs->ascent, s,
477             strlen(s));
478 }
479
480 void
481 bar_extra_stop(void)
482 {
483         if (bar_pipe[0]) {
484                 close(bar_pipe[0]);
485                 bzero(bar_pipe, sizeof bar_pipe);
486         }
487         if (bar_pid) {
488                 kill(bar_pid, SIGTERM);
489                 bar_pid = 0;
490         }
491         strlcpy(bar_ext, "", sizeof bar_ext);
492         bar_extra = 0;
493 }
494
495 void
496 bar_update(void)
497 {
498         time_t                  tmt;
499         struct tm               tm;
500         struct swm_region       *r;
501         int                     i, x;
502         size_t                  len;
503         char                    s[SWM_BAR_MAX];
504         char                    loc[SWM_BAR_MAX];
505         char                    *b;
506
507         if (bar_enabled == 0)
508                 return;
509
510         if (bar_extra && bar_extra_running) {
511                 /* ignore short reads; it'll correct itself */
512                 while ((b = fgetln(stdin, &len)) != NULL)
513                         if (b && b[len - 1] == '\n') {
514                                 b[len - 1] = '\0';
515                                 strlcpy(bar_ext, b, sizeof bar_ext);
516                         }
517                 if (b == NULL && errno != EAGAIN) {
518                         fprintf(stderr, "bar_extra failed: errno: %d %s\n",
519                             errno, strerror(errno));
520                         bar_extra_stop();
521                 }
522         } else
523                 strlcpy(bar_ext, "", sizeof bar_ext);
524
525         time(&tmt);
526         localtime_r(&tmt, &tm);
527         strftime(s, sizeof s, "%a %b %d %R %Z %Y", &tm);
528         for (i = 0; i < ScreenCount(display); i++) {
529                 x = 1;
530                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
531                         snprintf(loc, sizeof loc, "%s     %d:%d    %s",
532                             s, x++, r->ws->idx + 1, bar_ext);
533                         bar_print(r, loc);
534                 }
535         }
536         XSync(display, False);
537
538         alarm(60);
539 }
540
541 void
542 bar_signal(int sig)
543 {
544         bar_alarm = 1;
545 }
546
547 void
548 bar_toggle(struct swm_region *r, union arg *args)
549 {
550         struct swm_region       *tmpr;
551         int                     i, j, sc = ScreenCount(display);
552
553         DNPRINTF(SWM_D_MISC, "bar_toggle\n");
554
555         if (bar_enabled) {
556                 for (i = 0; i < sc; i++)
557                         TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
558                                 XUnmapWindow(display, tmpr->bar_window);
559         } else {
560                 for (i = 0; i < sc; i++)
561                         TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
562                                 XMapRaised(display, tmpr->bar_window);
563         }
564         bar_enabled = !bar_enabled;
565         XSync(display, False);
566         for (i = 0; i < sc; i++)
567                 for (j = 0; j < SWM_WS_MAX; j++)
568                         screens[i].ws[j].restack = 1;
569
570         stack();
571         /* must be after stack */
572         for (i = 0; i < sc; i++)
573                 TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
574                         bar_update();
575 }
576
577 void
578 bar_refresh(void)
579 {
580         XSetWindowAttributes    wa;
581         struct swm_region       *r;
582         int                     i;
583
584         /* do this here because the conf file is in memory */
585         if (bar_extra && bar_extra_running == 0 && bar_argv[0]) {
586                 /* launch external status app */
587                 bar_extra_running = 1;
588                 if (pipe(bar_pipe) == -1)
589                         err(1, "pipe error");
590                 socket_setnonblock(bar_pipe[0]);
591                 socket_setnonblock(bar_pipe[1]); /* XXX hmmm, really? */
592                 if (dup2(bar_pipe[0], 0) == -1)
593                         errx(1, "dup2");
594                 if (dup2(bar_pipe[1], 1) == -1)
595                         errx(1, "dup2");
596                 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
597                         err(1, "could not disable SIGPIPE");
598                 switch (bar_pid = fork()) {
599                 case -1:
600                         err(1, "cannot fork");
601                         break;
602                 case 0: /* child */
603                         close(bar_pipe[0]);
604                         execvp(bar_argv[0], bar_argv);
605                         err(1, "%s external app failed", bar_argv[0]);
606                         break;
607                 default: /* parent */
608                         close(bar_pipe[1]);
609                         break;
610                 }
611         }
612
613         bzero(&wa, sizeof wa);
614         for (i = 0; i < ScreenCount(display); i++)
615                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
616                         wa.border_pixel =
617                             screens[i].c[SWM_S_COLOR_BAR_BORDER].color;
618                         wa.background_pixel =
619                             screens[i].c[SWM_S_COLOR_BAR].color;
620                         XChangeWindowAttributes(display, r->bar_window,
621                             CWBackPixel | CWBorderPixel, &wa);
622                 }
623         bar_update();
624 }
625
626 void
627 bar_setup(struct swm_region *r)
628 {
629         int                     i;
630
631         for (i = 0; bar_fonts[i] != NULL; i++) {
632                 bar_fs = XLoadQueryFont(display, bar_fonts[i]);
633                 if (bar_fs) {
634                         bar_fidx = i;
635                         break;
636                 }
637         }
638         if (bar_fonts[i] == NULL)
639                         errx(1, "couldn't load font");
640         bar_height = bar_fs->ascent + bar_fs->descent + 3;
641
642         r->bar_window = XCreateSimpleWindow(display, 
643             r->s->root, X(r), Y(r), WIDTH(r) - 2, bar_height - 2,
644             1, r->s->c[SWM_S_COLOR_BAR_BORDER].color,
645             r->s->c[SWM_S_COLOR_BAR].color);
646         bar_gc = XCreateGC(display, r->bar_window, 0, &bar_gcv);
647         XSetFont(display, bar_gc, bar_fs->fid);
648         XSelectInput(display, r->bar_window, VisibilityChangeMask);
649         if (bar_enabled)
650                 XMapRaised(display, r->bar_window);
651         DNPRINTF(SWM_D_MISC, "bar_setup: bar_window %lu\n", r->bar_window);
652
653         if (signal(SIGALRM, bar_signal) == SIG_ERR)
654                 err(1, "could not install bar_signal");
655         bar_refresh();
656 }
657
658 void
659 config_win(struct ws_win *win)
660 {
661         XConfigureEvent         ce;
662
663         DNPRINTF(SWM_D_MISC, "config_win: win %lu x %d y %d w %d h %d\n",
664             win->id, win->g.x, win->g.y, win->g.w, win->g.h);
665         ce.type = ConfigureNotify;
666         ce.display = display;
667         ce.event = win->id;
668         ce.window = win->id;
669         ce.x = win->g.x;
670         ce.y = win->g.y;
671         ce.width = win->g.w;
672         ce.height = win->g.h;
673         ce.border_width = 1; /* XXX store this! */
674         ce.above = None;
675         ce.override_redirect = False;
676         XSendEvent(display, win->id, False, StructureNotifyMask, (XEvent *)&ce);
677 }
678
679 int
680 count_win(struct workspace *ws, int count_transient)
681 {
682         struct ws_win           *win;
683         int                     count = 0;
684
685         TAILQ_FOREACH(win, &ws->winlist, entry) {
686                 if (count_transient == 0 && win->floating)
687                         continue;
688                 if (count_transient == 0 && win->transient)
689                         continue;
690                 count++;
691         }
692         DNPRINTF(SWM_D_MISC, "count_win: %d\n", count);
693
694         return (count);
695 }
696
697 void
698 quit(struct swm_region *r, union arg *args)
699 {
700         DNPRINTF(SWM_D_MISC, "quit\n");
701         running = 0;
702 }
703
704 void
705 restart(struct swm_region *r, union arg *args)
706 {
707         DNPRINTF(SWM_D_MISC, "restart: %s\n", start_argv[0]);
708
709         /* disable alarm because the following code may not be interrupted */
710         alarm(0);
711         if (signal(SIGALRM, SIG_IGN) == SIG_ERR)
712                 errx(1, "can't disable alarm");
713
714         bar_extra_stop();
715         bar_extra = 1;
716         XCloseDisplay(display);
717         execvp(start_argv[0], start_argv);
718         fprintf(stderr, "execvp failed\n");
719         perror(" failed");
720         quit(NULL, NULL);
721 }
722
723 struct swm_region *
724 root_to_region(Window root)
725 {
726         struct swm_region       *r;
727         Window                  rr, cr;
728         int                     i, x, y, wx, wy;
729         unsigned int            mask;
730
731         for (i = 0; i < ScreenCount(display); i++)
732                 if (screens[i].root == root)
733                         break;
734
735         if (XQueryPointer(display, screens[i].root, 
736             &rr, &cr, &x, &y, &wx, &wy, &mask) == False) {
737                 /* if we can't query the pointer, grab the first region */
738                 r = TAILQ_FIRST(&screens[i].rl);
739         } else {
740                 /* otherwise, choose a region based on pointer location */
741                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
742                         if (x > X(r) && x < X(r) + WIDTH(r) &&
743                             y > Y(r) && y < Y(r) + HEIGHT(r))
744                                 break;
745                 }
746
747                 if (r == NULL)
748                         r = TAILQ_FIRST(&screens[i].rl);
749         }
750         return (r);
751 }
752
753 struct ws_win *
754 find_window(Window id)
755 {
756         struct ws_win           *win;
757         int                     i, j;
758
759         for (i = 0; i < ScreenCount(display); i++)
760                 for (j = 0; j < SWM_WS_MAX; j++)
761                         TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
762                                 if (id == win->id)
763                                         return (win);
764         return (NULL);
765 }
766
767 void
768 spawn(struct swm_region *r, union arg *args)
769 {
770         DNPRINTF(SWM_D_MISC, "spawn: %s\n", args->argv[0]);
771         /*
772          * The double-fork construct avoids zombie processes and keeps the code
773          * clean from stupid signal handlers.
774          */
775         if (fork() == 0) {
776                 if (fork() == 0) {
777                         if (display)
778                                 close(ConnectionNumber(display));
779                         setsid();
780                         execvp(args->argv[0], args->argv);
781                         fprintf(stderr, "execvp failed\n");
782                         perror(" failed");
783                 }
784                 exit(0);
785         }
786         wait(0);
787 }
788
789 void
790 spawnmenu(struct swm_region *r, union arg *args)
791 {
792         DNPRINTF(SWM_D_MISC, "spawnmenu\n");
793
794         spawn_menu[SWM_MENU_FN] = bar_fonts[bar_fidx];
795         spawn_menu[SWM_MENU_NB] = r->s->c[SWM_S_COLOR_BAR].name;
796         spawn_menu[SWM_MENU_NF] = r->s->c[SWM_S_COLOR_BAR_FONT].name;
797         spawn_menu[SWM_MENU_SB] = r->s->c[SWM_S_COLOR_BAR_BORDER].name;
798         spawn_menu[SWM_MENU_SF] = r->s->c[SWM_S_COLOR_BAR].name;
799
800         spawn(r, args);
801 }
802
803 void
804 unfocus_all(void)
805 {
806         struct ws_win           *win;
807         int                     i, j;
808
809         DNPRINTF(SWM_D_FOCUS, "unfocus_all:\n");
810
811         for (i = 0; i < ScreenCount(display); i++)
812                 for (j = 0; j < SWM_WS_MAX; j++)
813                         TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry) {
814                                 if (win->ws->r == NULL)
815                                         continue;
816                                 grabbuttons(win, 0);
817                                 XSetWindowBorder(display, win->id,
818                                     win->ws->r->s->c[SWM_S_COLOR_UNFOCUS].color);
819                                 win->got_focus = 0;
820                                 win->ws->focus = NULL;
821                                 cur_focus = NULL;
822                         }
823 }
824
825 void
826 focus_win(struct ws_win *win)
827 {
828         DNPRINTF(SWM_D_FOCUS, "focus_win: id: %lu\n", win ? win->id : 0);
829
830         if (win == NULL)
831                 return;
832
833         unfocus_all();
834         win->ws->focus = win;
835         if (win->ws->r != NULL) {
836                 cur_focus = win;
837                 if (!win->got_focus) {
838                         XSetWindowBorder(display, win->id,
839                             win->ws->r->s->c[SWM_S_COLOR_FOCUS].color);
840                         grabbuttons(win, 1);
841                 }
842                 win->got_focus = 1;
843                 XSetInputFocus(display, win->id,
844                     RevertToPointerRoot, CurrentTime);
845         }
846 }
847
848 void
849 switchws(struct swm_region *r, union arg *args)
850 {
851         int                     wsid = args->id;
852         struct swm_region       *this_r, *other_r;
853         struct ws_win           *win;
854         struct workspace        *new_ws, *old_ws;
855
856         this_r = r;
857         old_ws = this_r->ws;
858         new_ws = &this_r->s->ws[wsid];
859
860         DNPRINTF(SWM_D_WS, "switchws screen %d region %dx%d+%d+%d: "
861             "%d -> %d\n", r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r),
862             old_ws->idx, wsid);
863
864         if (new_ws == old_ws)
865                 return;
866
867         other_r = new_ws->r;
868         if (!other_r) {
869                 /* if the other workspace is hidden, switch windows */
870                 /* map new window first to prevent ugly blinking */
871                 TAILQ_FOREACH(win, &new_ws->winlist, entry)
872                         XMapRaised(display, win->id);
873
874                 TAILQ_FOREACH(win, &old_ws->winlist, entry)
875                         XUnmapWindow(display, win->id);
876
877                 old_ws->r = NULL;
878                 old_ws->restack = 1;
879         } else {
880                 other_r->ws = old_ws;
881                 old_ws->r = other_r;
882         }
883         this_r->ws = new_ws;
884         new_ws->r = this_r;
885
886         ignore_enter = 1;
887         /* set focus */
888         if (new_ws->focus)
889                 focus_win(new_ws->focus);
890         stack();
891         bar_update();
892 }
893
894 void
895 cyclews(struct swm_region *r, union arg *args)
896 {
897         union                   arg a;
898         struct swm_screen       *s = r->s;
899
900         DNPRINTF(SWM_D_WS, "cyclews id %d "
901             "in screen %d region %dx%d+%d+%d ws %d\n", args->id,
902             r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
903
904         a.id = r->ws->idx;
905
906         do {
907                 switch (args->id) {
908                 case SWM_ARG_ID_CYCLEWS_UP:
909                         if (a.id < SWM_WS_MAX - 1)
910                                 a.id++;
911                         else
912                                 a.id = 0;
913                         break;
914                 case SWM_ARG_ID_CYCLEWS_DOWN:
915                         if (a.id > 0)
916                                 a.id--;
917                         else
918                                 a.id = SWM_WS_MAX - 1;
919                         break;
920                 default:
921                         return;
922                 };
923
924                 if (cycle_empty == 0 && TAILQ_EMPTY(&s->ws[a.id].winlist))
925                         continue;
926                 if (cycle_visible == 0 && s->ws[a.id].r != NULL)
927                         continue;
928
929                 switchws(r, &a);
930         } while (a.id != r->ws->idx);
931 }
932
933 void
934 swapwin(struct swm_region *r, union arg *args)
935 {
936         struct ws_win           *target;
937         struct ws_win_list      *wl;
938
939
940         DNPRINTF(SWM_D_WS, "swapwin id %d "
941             "in screen %d region %dx%d+%d+%d ws %d\n", args->id,
942             r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
943         if (cur_focus == NULL)
944                 return;
945
946         wl = &cur_focus->ws->winlist;
947
948         switch (args->id) {
949         case SWM_ARG_ID_SWAPPREV:
950                 target = TAILQ_PREV(cur_focus, ws_win_list, entry);
951                 TAILQ_REMOVE(wl, cur_focus, entry);
952                 if (target == NULL)
953                         TAILQ_INSERT_TAIL(wl, cur_focus, entry);
954                 else
955                         TAILQ_INSERT_BEFORE(target, cur_focus, entry);
956                 break;
957         case SWM_ARG_ID_SWAPNEXT: 
958                 target = TAILQ_NEXT(cur_focus, entry);
959                 TAILQ_REMOVE(wl, cur_focus, entry);
960                 if (target == NULL)
961                         TAILQ_INSERT_HEAD(wl, cur_focus, entry);
962                 else
963                         TAILQ_INSERT_AFTER(wl, target, cur_focus, entry);
964                 break;
965         case SWM_ARG_ID_SWAPMAIN:
966                 target = TAILQ_FIRST(wl);
967                 if (target == cur_focus)
968                         return;
969                 TAILQ_REMOVE(wl, target, entry);
970                 TAILQ_INSERT_BEFORE(cur_focus, target, entry);
971                 TAILQ_REMOVE(wl, cur_focus, entry);
972                 TAILQ_INSERT_HEAD(wl, cur_focus, entry);
973                 break;
974         default:
975                 DNPRINTF(SWM_D_MOVE, "invalid id: %d\n", args->id);
976                 return;
977         }
978
979         ignore_enter = 2;
980         stack();
981 }
982
983 void
984 focus(struct swm_region *r, union arg *args)
985 {
986         struct ws_win           *winfocus, *winlostfocus;
987         struct ws_win_list      *wl;
988
989         DNPRINTF(SWM_D_FOCUS, "focus: id %d\n", args->id);
990         if (cur_focus == NULL)
991                 return;
992
993         wl = &cur_focus->ws->winlist;
994
995         winlostfocus = cur_focus;
996
997         switch (args->id) {
998         case SWM_ARG_ID_FOCUSPREV:
999                 winfocus = TAILQ_PREV(cur_focus, ws_win_list, entry);
1000                 if (winfocus == NULL)
1001                         winfocus = TAILQ_LAST(wl, ws_win_list);
1002                 break;
1003
1004         case SWM_ARG_ID_FOCUSNEXT:
1005                 winfocus = TAILQ_NEXT(cur_focus, entry);
1006                 if (winfocus == NULL)
1007                         winfocus = TAILQ_FIRST(wl);
1008                 break;
1009
1010         case SWM_ARG_ID_FOCUSMAIN:
1011                 winfocus = TAILQ_FIRST(wl);
1012                 break;
1013
1014         default:
1015                 return;
1016         }
1017
1018         if (winfocus == winlostfocus)
1019                 return;
1020
1021         focus_win(winfocus);
1022         XSync(display, False);
1023 }
1024
1025 void
1026 cycle_layout(struct swm_region *r, union arg *args)
1027 {
1028         struct workspace        *ws = r->ws;
1029
1030         DNPRINTF(SWM_D_EVENT, "cycle_layout: workspace: %d\n", ws->idx);
1031
1032         ws->cur_layout++;
1033         if (ws->cur_layout->l_stack == NULL)
1034                 ws->cur_layout = &layouts[0];
1035         ignore_enter = 1;
1036
1037         stack();
1038 }
1039
1040 void
1041 stack_config(struct swm_region *r, union arg *args)
1042 {
1043         struct workspace        *ws = r->ws;
1044
1045         DNPRINTF(SWM_D_STACK, "stack_config for workspace %d (id %d\n",
1046             args->id, ws->idx);
1047
1048         if (ws->cur_layout->l_config != NULL)
1049                 ws->cur_layout->l_config(ws, args->id);
1050
1051         if (args->id != SWM_ARG_ID_STACKINIT);
1052                 stack();
1053 }
1054
1055 void
1056 stack(void) {
1057         struct swm_geometry     g;
1058         struct swm_region       *r;
1059         int                     i, j;
1060
1061         DNPRINTF(SWM_D_STACK, "stack\n");
1062
1063         for (i = 0; i < ScreenCount(display); i++) {
1064                 j = 0;
1065                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
1066                         DNPRINTF(SWM_D_STACK, "stacking workspace %d "
1067                             "(screen %d, region %d)\n", r->ws->idx, i, j++);
1068
1069                         /* start with screen geometry, adjust for bar */
1070                         g = r->g;
1071                         g.w -= 2;
1072                         g.h -= 2;
1073                         if (bar_enabled) {
1074                                 g.y += bar_height;
1075                                 g.h -= bar_height;
1076                         } 
1077
1078                         r->ws->restack = 0;
1079                         r->ws->cur_layout->l_stack(r->ws, &g);
1080                 }
1081         }
1082         XSync(display, False);
1083 }
1084
1085 void
1086 stack_floater(struct ws_win *win, struct swm_region *r)
1087 {
1088         unsigned int            mask;
1089         XWindowChanges          wc;
1090
1091         bzero(&wc, sizeof wc);
1092         mask = CWX | CWY | CWBorderWidth | CWWidth | CWHeight;
1093         wc.border_width = 1;
1094         if (win->transient) {
1095                 win->g.w = (double)WIDTH(r) * dialog_ratio;
1096                 win->g.h = (double)HEIGHT(r) * dialog_ratio;
1097         }
1098         wc.width = win->g.w;
1099         wc.height = win->g.h;
1100         wc.x = (WIDTH(r) - win->g.w) / 2;
1101         wc.y = (HEIGHT(r) - win->g.h) / 2;
1102
1103         DNPRINTF(SWM_D_STACK, "stack_floater: win %lu x %d y %d w %d h %d\n",
1104             win->id, wc.x, wc.y, wc.width, wc.height);
1105
1106         XConfigureWindow(display, win->id, mask, &wc);
1107 }
1108
1109 void
1110 vertical_config(struct workspace *ws, int id)
1111 {
1112         DNPRINTF(SWM_D_STACK, "vertical_resize: workspace: %d\n", ws->idx);
1113
1114         switch (id) {
1115         case SWM_ARG_ID_STACKRESET:
1116         case SWM_ARG_ID_STACKINIT:
1117                 ws->l_state.vertical_msize = SWM_V_SLICE / 2;
1118                 ws->l_state.vertical_mwin = 1;
1119                 break;
1120         case SWM_ARG_ID_MASTERSHRINK:
1121                 if (ws->l_state.vertical_msize > 1)
1122                         ws->l_state.vertical_msize--;
1123                 break;
1124         case SWM_ARG_ID_MASTERGROW:
1125                 if (ws->l_state.vertical_msize < SWM_V_SLICE - 1)
1126                         ws->l_state.vertical_msize++;
1127                 break;
1128         case SWM_ARG_ID_MASTERADD:
1129                 ws->l_state.vertical_mwin++;
1130                 break;
1131         case SWM_ARG_ID_MASTERDEL:
1132                 if (ws->l_state.vertical_mwin > 0)
1133                         ws->l_state.vertical_mwin--;
1134                 break;
1135         default:
1136                 return;
1137         }
1138 }
1139
1140 void
1141 vertical_stack(struct workspace *ws, struct swm_geometry *g) {
1142         XWindowChanges          wc;
1143         struct swm_geometry     gg = *g;
1144         struct ws_win           *win, *winfocus;
1145         int                     i, j, split, colno, hrh, winno, main_width;
1146         unsigned int            mask;
1147
1148         DNPRINTF(SWM_D_STACK, "vertical_stack: workspace: %d\n", ws->idx);
1149
1150         if ((winno = count_win(ws, 0)) == 0)
1151                 return;
1152
1153         if (ws->focus == NULL)
1154                 ws->focus = TAILQ_FIRST(&ws->winlist);
1155         winfocus = cur_focus ? cur_focus : ws->focus;
1156
1157         if (ws->l_state.vertical_mwin &&
1158             winno > ws->l_state.vertical_mwin) {
1159                 split = ws->l_state.vertical_mwin;
1160                 colno = split;
1161                 main_width = (g->w / SWM_V_SLICE) *
1162                    ws->l_state.vertical_msize;
1163                 gg.w = main_width;
1164         } else {
1165                 colno = winno;
1166                 split = 0;
1167         }
1168         hrh = g->h / colno;
1169         gg.h = hrh - 2;
1170
1171         i = j = 0;
1172         TAILQ_FOREACH(win, &ws->winlist, entry) {
1173                 if (split && i == split) {
1174                         colno = winno - split;
1175                         hrh = (g->h / colno);
1176                         gg.x += main_width + 2;
1177                         gg.w = g->w - (main_width + 2);
1178                         gg.h = hrh - 2;
1179                         j = 0;
1180                 }
1181                 if (j == colno - 1)
1182                         gg.h = (hrh + (g->h - (colno * hrh)));
1183                  
1184                 if (j == 0)
1185                         gg.y = g->y;
1186                 else
1187                         gg.y += hrh;
1188
1189
1190                 if (win->transient != 0 || win->floating != 0)
1191                         stack_floater(win, ws->r);
1192                 else {
1193                         bzero(&wc, sizeof wc);
1194                         wc.border_width = 1;
1195                         win->g.x = wc.x = gg.x;
1196                         win->g.y = wc.y = gg.y;
1197                         win->g.w = wc.width = gg.w;
1198                         win->g.h = wc.height = gg.h;
1199                         mask = CWX | CWY | CWWidth | CWHeight | CWBorderWidth;
1200                         XConfigureWindow(display, win->id, mask, &wc);
1201                         /*
1202                         fprintf(stderr, "vertical_stack: win %d x %d y %d w %d h %d bw %d\n", win->id, win->g.x, win->g.y, win->g.w , win->g.h, wc.border_width);
1203                         */
1204                 }
1205
1206                 XMapRaised(display, win->id);
1207                 i++;
1208                 j++;
1209         }
1210
1211         if (winfocus)
1212                 focus_win(winfocus); /* has to be done outside of the loop */
1213 }
1214
1215 void
1216 horizontal_config(struct workspace *ws, int id)
1217 {
1218         DNPRINTF(SWM_D_STACK, "horizontal_config: workspace: %d\n", ws->idx);
1219
1220         switch (id) {
1221         case SWM_ARG_ID_STACKRESET:
1222         case SWM_ARG_ID_STACKINIT:
1223                 ws->l_state.horizontal_mwin = 1;
1224                 ws->l_state.horizontal_msize = SWM_H_SLICE / 2;
1225                 break;
1226         case SWM_ARG_ID_MASTERSHRINK:
1227                 if (ws->l_state.horizontal_msize > 1)
1228                         ws->l_state.horizontal_msize--;
1229                 break;
1230         case SWM_ARG_ID_MASTERGROW:
1231                 if (ws->l_state.horizontal_msize < SWM_H_SLICE - 1)
1232                         ws->l_state.horizontal_msize++;
1233                 break;
1234         case SWM_ARG_ID_MASTERADD:
1235                 ws->l_state.horizontal_mwin++;
1236                 break;
1237         case SWM_ARG_ID_MASTERDEL:
1238                 if (ws->l_state.horizontal_mwin > 0)
1239                         ws->l_state.horizontal_mwin--;
1240                 break;
1241         default:
1242                 return;
1243         }
1244 }
1245
1246 void
1247 horizontal_stack(struct workspace *ws, struct swm_geometry *g) {
1248         XWindowChanges          wc;
1249         struct swm_geometry     gg = *g;
1250         struct ws_win           *win, *winfocus;
1251         int                     i, j, split, rowno, hrw, winno, main_height;
1252         unsigned int            mask;
1253
1254         DNPRINTF(SWM_D_STACK, "horizontal_stack: workspace: %d\n", ws->idx);
1255
1256         if ((winno = count_win(ws, 0)) == 0)
1257                 return;
1258
1259         if (ws->focus == NULL)
1260                 ws->focus = TAILQ_FIRST(&ws->winlist);
1261         winfocus = cur_focus ? cur_focus : ws->focus;
1262
1263         if (ws->l_state.horizontal_mwin &&
1264             winno > ws->l_state.horizontal_mwin) {
1265                 split = ws->l_state.horizontal_mwin;
1266                 rowno = split;
1267                 main_height = (g->h / SWM_V_SLICE) *
1268                    ws->l_state.horizontal_msize;
1269                 gg.h = main_height;
1270         } else {
1271                 rowno = winno;
1272                 split = 0;
1273         }
1274         hrw = g->w / rowno;
1275         gg.w = hrw - 2;
1276
1277         i = j = 0;
1278         TAILQ_FOREACH(win, &ws->winlist, entry) {
1279                 if (split && i == split) {
1280                         rowno = winno - split;
1281                         hrw = (g->w / rowno);
1282                         gg.y += main_height + 2;
1283                         gg.h = g->h - (main_height + 2);
1284                         gg.w = hrw - 2;
1285                         j = 0;
1286                 }
1287                 if (j == rowno - 1)
1288                         gg.w = (hrw + (g->w - (rowno * hrw)));
1289
1290                 if (j == 0)
1291                         gg.x = g->x;
1292                 else
1293                         gg.x += hrw;
1294
1295                 if (win->transient != 0 || win->floating != 0)
1296                         stack_floater(win, ws->r);
1297                 else {
1298                         bzero(&wc, sizeof wc);
1299                         wc.border_width = 1;
1300                         win->g.x = wc.x = gg.x;
1301                         win->g.y = wc.y = gg.y;
1302                         win->g.w = wc.width = gg.w;
1303                         win->g.h = wc.height = gg.h;
1304                         mask = CWX | CWY | CWWidth | CWHeight | CWBorderWidth;
1305                         XConfigureWindow(display, win->id, mask, &wc);
1306                 }
1307
1308                 XMapRaised(display, win->id);
1309                 j++;
1310                 i++;
1311         }
1312
1313         if (winfocus)
1314                 focus_win(winfocus); /* this has to be done outside of the loop */
1315 }
1316
1317 /* fullscreen view */
1318 void
1319 max_stack(struct workspace *ws, struct swm_geometry *g) {
1320         XWindowChanges          wc;
1321         struct swm_geometry     gg = *g;
1322         struct ws_win           *win, *winfocus;
1323         unsigned int            mask;
1324
1325         DNPRINTF(SWM_D_STACK, "max_stack: workspace: %d\n", ws->idx);
1326
1327         if (count_win(ws, 0) == 0)
1328                 return;
1329
1330         if (ws->focus == NULL)
1331                 ws->focus = TAILQ_FIRST(&ws->winlist);
1332         winfocus = cur_focus ? cur_focus : ws->focus;
1333
1334         TAILQ_FOREACH(win, &ws->winlist, entry) {
1335                 if (win->transient != 0 || win->floating != 0) {
1336                         if (win == ws->focus) {
1337                                 /* XXX maximize? */
1338                                 stack_floater(win, ws->r);
1339                                 XMapRaised(display, win->id);
1340                         } else
1341                                 XUnmapWindow(display, win->id);
1342                 } else {
1343                         bzero(&wc, sizeof wc);
1344                         wc.border_width = 1;
1345                         win->g.x = wc.x = gg.x;
1346                         win->g.y = wc.y = gg.y;
1347                         win->g.w = wc.width = gg.w;
1348                         win->g.h = wc.height = gg.h;
1349                         mask = CWX | CWY | CWWidth | CWHeight | CWBorderWidth;
1350                         XConfigureWindow(display, win->id, mask, &wc);
1351
1352                         if (win == ws->focus) {
1353                                 XMapRaised(display, win->id);
1354                         } else
1355                                 XUnmapWindow(display, win->id);
1356                 }
1357         }
1358
1359         if (winfocus)
1360                 focus_win(winfocus); /* has to be done outside of the loop */
1361 }
1362
1363 void
1364 send_to_ws(struct swm_region *r, union arg *args)
1365 {
1366         int                     wsid = args->id;
1367         struct ws_win           *win = cur_focus;
1368         struct workspace        *ws, *nws;
1369         Atom                    ws_idx_atom = 0;
1370         unsigned char           ws_idx_str[1];
1371
1372         DNPRINTF(SWM_D_MOVE, "send_to_ws: win: %lu\n", win->id);
1373
1374         ws = win->ws;
1375         nws = &win->s->ws[wsid];
1376
1377         XUnmapWindow(display, win->id);
1378
1379         /* find a window to focus */
1380         ws->focus = TAILQ_PREV(win, ws_win_list, entry);
1381         if (ws->focus == NULL)
1382                 ws->focus = TAILQ_FIRST(&ws->winlist);
1383         if (ws->focus == win)
1384                 ws->focus = NULL;
1385
1386         TAILQ_REMOVE(&ws->winlist, win, entry);
1387
1388         TAILQ_INSERT_TAIL(&nws->winlist, win, entry);
1389         win->ws = nws;
1390
1391         /* Try to update the window's workspace property */
1392         ws_idx_atom = XInternAtom(display, "_SWM_WS", False);
1393         ws_idx_str[0] = (unsigned char)nws->idx;
1394         XChangeProperty(display, win->id, ws_idx_atom, XA_STRING, 8,
1395             PropModeReplace, ws_idx_str, 1);
1396
1397         if (count_win(nws, 1) == 1)
1398                 nws->focus = win;
1399         ws->restack = 1;
1400         nws->restack = 1;
1401
1402         stack();
1403 }
1404
1405 void
1406 wkill(struct swm_region *r, union arg *args)
1407 {
1408         DNPRINTF(SWM_D_MISC, "wkill\n");
1409         if(r->ws->focus != NULL)
1410                 XKillClient(display, r->ws->focus->id);
1411 }
1412
1413 /* key definitions */
1414 struct key {
1415         unsigned int            mod;
1416         KeySym                  keysym;
1417         void                    (*func)(struct swm_region *r, union arg *);
1418         union arg               args;
1419 } keys[] = {
1420         /* modifier             key     function                argument */
1421         { MODKEY,               XK_space,       cycle_layout,   {0} }, 
1422         { MODKEY | ShiftMask,   XK_space,       stack_config,   {.id = SWM_ARG_ID_STACKRESET} }, 
1423         { MODKEY,               XK_h,           stack_config,   {.id = SWM_ARG_ID_MASTERSHRINK} },
1424         { MODKEY,               XK_l,           stack_config,   {.id = SWM_ARG_ID_MASTERGROW} },
1425         { MODKEY,               XK_comma,       stack_config,   {.id = SWM_ARG_ID_MASTERADD} },
1426         { MODKEY,               XK_period,      stack_config,   {.id = SWM_ARG_ID_MASTERDEL} },
1427         { MODKEY,               XK_Return,      swapwin,        {.id = SWM_ARG_ID_SWAPMAIN} },
1428         { MODKEY,               XK_j,           focus,          {.id = SWM_ARG_ID_FOCUSNEXT} },
1429         { MODKEY,               XK_k,           focus,          {.id = SWM_ARG_ID_FOCUSPREV} },
1430         { MODKEY | ShiftMask,   XK_j,           swapwin,        {.id = SWM_ARG_ID_SWAPNEXT} },
1431         { MODKEY | ShiftMask,   XK_k,           swapwin,        {.id = SWM_ARG_ID_SWAPPREV} },
1432         { MODKEY | ShiftMask,   XK_Return,      spawn,          {.argv = spawn_term} },
1433         { MODKEY,               XK_p,           spawnmenu,      {.argv = spawn_menu} },
1434         { MODKEY | ShiftMask,   XK_q,           quit,           {0} },
1435         { MODKEY,               XK_q,           restart,        {0} },
1436         { MODKEY,               XK_m,           focus,          {.id = SWM_ARG_ID_FOCUSMAIN} },
1437         { MODKEY,               XK_1,           switchws,       {.id = 0} },
1438         { MODKEY,               XK_2,           switchws,       {.id = 1} },
1439         { MODKEY,               XK_3,           switchws,       {.id = 2} },
1440         { MODKEY,               XK_4,           switchws,       {.id = 3} },
1441         { MODKEY,               XK_5,           switchws,       {.id = 4} },
1442         { MODKEY,               XK_6,           switchws,       {.id = 5} },
1443         { MODKEY,               XK_7,           switchws,       {.id = 6} },
1444         { MODKEY,               XK_8,           switchws,       {.id = 7} },
1445         { MODKEY,               XK_9,           switchws,       {.id = 8} },
1446         { MODKEY,               XK_0,           switchws,       {.id = 9} },
1447         { MODKEY,               XK_Right,       cyclews,        {.id = SWM_ARG_ID_CYCLEWS_UP} }, 
1448         { MODKEY,               XK_Left,        cyclews,        {.id = SWM_ARG_ID_CYCLEWS_DOWN} }, 
1449         { MODKEY | ShiftMask,   XK_1,           send_to_ws,     {.id = 0} },
1450         { MODKEY | ShiftMask,   XK_2,           send_to_ws,     {.id = 1} },
1451         { MODKEY | ShiftMask,   XK_3,           send_to_ws,     {.id = 2} },
1452         { MODKEY | ShiftMask,   XK_4,           send_to_ws,     {.id = 3} },
1453         { MODKEY | ShiftMask,   XK_5,           send_to_ws,     {.id = 4} },
1454         { MODKEY | ShiftMask,   XK_6,           send_to_ws,     {.id = 5} },
1455         { MODKEY | ShiftMask,   XK_7,           send_to_ws,     {.id = 6} },
1456         { MODKEY | ShiftMask,   XK_8,           send_to_ws,     {.id = 7} },
1457         { MODKEY | ShiftMask,   XK_9,           send_to_ws,     {.id = 8} },
1458         { MODKEY | ShiftMask,   XK_0,           send_to_ws,     {.id = 9} },
1459         { MODKEY,               XK_b,           bar_toggle,     {0} },
1460         { MODKEY,               XK_Tab,         focus,          {.id = SWM_ARG_ID_FOCUSNEXT} },
1461         { MODKEY | ShiftMask,   XK_Tab,         focus,          {.id = SWM_ARG_ID_FOCUSPREV} },
1462         { MODKEY | ShiftMask,   XK_x,           wkill,          {0} },
1463 };
1464
1465 void
1466 click(struct swm_region *r, union arg *args)
1467 {
1468         DNPRINTF(SWM_D_MOUSE, "click: button: %d\n", args->id);
1469
1470         switch (args->id) {
1471         case Button1:
1472                 break;
1473         case Button2:
1474                 break;
1475         case Button3:
1476                 break;
1477         default:
1478                 return;
1479         }
1480 }
1481
1482 /* mouse */
1483 enum { client_click, root_click };
1484 struct button {
1485         unsigned int            action;
1486         unsigned int            mask;
1487         unsigned int            button;
1488         void                    (*func)(struct swm_region *r, union arg *);
1489         union arg               args;
1490 } buttons[] = {
1491           /* action             key             mouse button    func            args */
1492         { client_click,         MODKEY,         Button1,        click, {.id=Button1} },
1493 };
1494
1495 void
1496 updatenumlockmask(void)
1497 {
1498         unsigned int            i, j;
1499         XModifierKeymap         *modmap;
1500
1501         DNPRINTF(SWM_D_MISC, "updatenumlockmask\n");
1502         numlockmask = 0;
1503         modmap = XGetModifierMapping(display);
1504         for (i = 0; i < 8; i++)
1505                 for (j = 0; j < modmap->max_keypermod; j++)
1506                         if (modmap->modifiermap[i * modmap->max_keypermod + j]
1507                           == XKeysymToKeycode(display, XK_Num_Lock))
1508                                 numlockmask = (1 << i);
1509
1510         XFreeModifiermap(modmap);
1511 }
1512
1513 void
1514 grabkeys(void)
1515 {
1516         unsigned int            i, j, k;
1517         KeyCode                 code;
1518         unsigned int            modifiers[] =
1519             { 0, LockMask, numlockmask, numlockmask | LockMask };
1520
1521         DNPRINTF(SWM_D_MISC, "grabkeys\n");
1522         updatenumlockmask();
1523
1524         for (k = 0; k < ScreenCount(display); k++) {
1525                 if (TAILQ_EMPTY(&screens[k].rl))
1526                         continue;
1527                 XUngrabKey(display, AnyKey, AnyModifier, screens[k].root);
1528                 for (i = 0; i < LENGTH(keys); i++) {
1529                         if ((code = XKeysymToKeycode(display, keys[i].keysym)))
1530                                 for (j = 0; j < LENGTH(modifiers); j++)
1531                                         XGrabKey(display, code,
1532                                             keys[i].mod | modifiers[j],
1533                                             screens[k].root, True,
1534                                             GrabModeAsync, GrabModeAsync);
1535                 }
1536         }
1537 }
1538
1539 void
1540 grabbuttons(struct ws_win *win, int focused)
1541 {
1542         unsigned int            i, j;
1543         unsigned int            modifiers[] =
1544             { 0, LockMask, numlockmask, numlockmask|LockMask };
1545
1546         updatenumlockmask();
1547         XUngrabButton(display, AnyButton, AnyModifier, win->id);
1548         if(focused) {
1549                 for (i = 0; i < LENGTH(buttons); i++)
1550                         if (buttons[i].action == client_click)
1551                                 for (j = 0; j < LENGTH(modifiers); j++)
1552                                         XGrabButton(display, buttons[i].button,
1553                                             buttons[i].mask | modifiers[j],
1554                                             win->id, False, BUTTONMASK,
1555                                             GrabModeAsync, GrabModeSync, None,
1556                                             None);
1557         } else
1558                 XGrabButton(display, AnyButton, AnyModifier, win->id, False,
1559                     BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
1560 }
1561
1562 void
1563 expose(XEvent *e)
1564 {
1565         DNPRINTF(SWM_D_EVENT, "expose: window: %lu\n", e->xexpose.window);
1566 }
1567
1568 void
1569 keypress(XEvent *e)
1570 {
1571         unsigned int            i;
1572         KeySym                  keysym;
1573         XKeyEvent               *ev = &e->xkey;
1574
1575         DNPRINTF(SWM_D_EVENT, "keypress: window: %lu\n", ev->window);
1576
1577         keysym = XKeycodeToKeysym(display, (KeyCode)ev->keycode, 0);
1578         for (i = 0; i < LENGTH(keys); i++)
1579                 if (keysym == keys[i].keysym
1580                    && CLEANMASK(keys[i].mod) == CLEANMASK(ev->state)
1581                    && keys[i].func)
1582                         keys[i].func(root_to_region(ev->root),
1583                             &(keys[i].args));
1584 }
1585
1586 void
1587 buttonpress(XEvent *e)
1588 {
1589         XButtonPressedEvent     *ev = &e->xbutton;
1590
1591         struct ws_win           *win;
1592         int                     i, action;
1593
1594         DNPRINTF(SWM_D_EVENT, "buttonpress: window: %lu\n", ev->window);
1595
1596         action = root_click;
1597         if ((win = find_window(ev->window)) == NULL)
1598                 return;
1599         else {
1600                 focus_win(win);
1601                 action = client_click;
1602         }
1603
1604         for (i = 0; i < LENGTH(buttons); i++)
1605                 if (action == buttons[i].action && buttons[i].func &&
1606                     buttons[i].button == ev->button &&
1607                     CLEANMASK(buttons[i].mask) == CLEANMASK(ev->state))
1608                         buttons[i].func(root_to_region(ev->root),
1609                         &buttons[i].args);
1610 }
1611
1612 void
1613 set_win_state(struct ws_win *win, long state)
1614 {
1615         long                    data[] = {state, None};
1616
1617         DNPRINTF(SWM_D_EVENT, "set_win_state: window: %lu\n", win->id);
1618
1619         XChangeProperty(display, win->id, astate, astate, 32, PropModeReplace,
1620             (unsigned char *)data, 2);
1621 }
1622
1623 struct ws_win *
1624 manage_window(Window id)
1625 {
1626         Window                  trans;
1627         struct workspace        *ws;
1628         struct ws_win           *win;
1629         XClassHint              ch;
1630         int                     format;
1631         unsigned long           nitems, bytes;
1632         Atom                    ws_idx_atom = 0, type;
1633         unsigned char           ws_idx_str[1], *prop = NULL;
1634         struct swm_region       *r;
1635
1636         if ((win = find_window(id)) != NULL)
1637                         return (win);   /* already being managed */
1638
1639         if ((win = calloc(1, sizeof(struct ws_win))) == NULL)
1640                 errx(1, "calloc: failed to allocate memory for new window");
1641
1642         ws_idx_atom = XInternAtom(display, "_SWM_WS", False);
1643         if (ws_idx_atom)
1644                 XGetWindowProperty(display, id, ws_idx_atom, 0, 1, False, XA_STRING,
1645                     &type, &format, &nitems, &bytes, &prop);
1646
1647         XGetWindowAttributes(display, id, &win->wa);
1648         r = root_to_region(win->wa.root);
1649         /* If the window was managed before, put it in the same workspace */
1650         if (prop)
1651                 ws = &r->s->ws[prop[0]];
1652         else
1653                 ws = r->ws;
1654
1655         win->id = id;
1656         win->ws = ws;
1657         win->s = r->s;  /* this never changes */
1658         TAILQ_INSERT_TAIL(&ws->winlist, win, entry);
1659
1660         /* make new win focused */
1661         focus_win(win);
1662
1663         XGetTransientForHint(display, win->id, &trans);
1664         if (trans) {
1665                 win->transient = trans;
1666                 DNPRINTF(SWM_D_MISC, "manage_window: win %u transient %u\n",
1667                     (unsigned)win->id, win->transient);
1668         }
1669         win->g.w = win->wa.width;
1670         win->g.h = win->wa.height;
1671         win->g.x = win->wa.x;
1672         win->g.y = win->wa.y;
1673
1674         if (ws_idx_atom && prop == NULL) {
1675                 /* set the window's workspace property if it wasn't there */
1676                 ws_idx_str[0] = (unsigned char)ws->idx;
1677                 XChangeProperty(display, id, ws_idx_atom, XA_STRING, 1,
1678                     PropModeReplace, ws_idx_str, 1);
1679         }
1680
1681         /*
1682         fprintf(stderr, "manage window: %d x %d y %d w %d h %d\n", win->id, win->g.x, win->g.y, win->g.w, win->g.h);
1683         */
1684
1685         /* XXX make this a table */
1686         bzero(&ch, sizeof ch);
1687         if (XGetClassHint(display, win->id, &ch)) {
1688                 /*fprintf(stderr, "class: %s name: %s\n", ch.res_class, ch.res_name); */
1689                 if (!strcmp(ch.res_class, "MPlayer") && !strcmp(ch.res_name, "xv")) {
1690                         win->floating = 1;
1691                 }
1692                 if (ch.res_class)
1693                         XFree(ch.res_class);
1694                 if (ch.res_name)
1695                         XFree(ch.res_name);
1696         }
1697
1698         XSelectInput(display, id, EnterWindowMask | FocusChangeMask |
1699             PropertyChangeMask | StructureNotifyMask);
1700
1701         set_win_state(win, NormalState);
1702
1703         return (win);
1704 }
1705
1706 void
1707 configurerequest(XEvent *e)
1708 {
1709         XConfigureRequestEvent  *ev = &e->xconfigurerequest;
1710         struct ws_win           *win;
1711         int                     new = 0;
1712         XWindowChanges          wc;
1713
1714         if ((win = find_window(ev->window)) == NULL)
1715                 new = 1;
1716
1717         if (new) {
1718                 DNPRINTF(SWM_D_EVENT, "configurerequest: new window: %lu\n",
1719                     ev->window);
1720                 /*
1721                 fprintf(stderr, "configurerequest: new window: %lu x %d y %d w %d h %d bw %d s %d sm %d\n",
1722                     ev->window, ev->x, ev->y, ev->width, ev->height, ev->border_width, ev->above, ev->detail);
1723                 */
1724                 bzero(&wc, sizeof wc);
1725                 wc.x = ev->x;
1726                 wc.y = ev->y;
1727                 wc.width = ev->width;
1728                 wc.height = ev->height;
1729                 wc.border_width = ev->border_width;
1730                 wc.sibling = ev->above;
1731                 wc.stack_mode = ev->detail;
1732                 XConfigureWindow(display, ev->window, ev->value_mask, &wc);
1733         } else {
1734                 /*
1735                 fprintf(stderr, "configurerequest: change window: %lu\n",
1736                     ev->window);
1737                 */
1738                 DNPRINTF(SWM_D_EVENT, "configurerequest: change window: %lu\n",
1739                     ev->window);
1740                 if (win->floating) {
1741                         if (ev->value_mask & CWX)
1742                                 win->g.x = ev->x;
1743                         if (ev->value_mask & CWY)
1744                                 win->g.y = ev->y;
1745                         if (ev->value_mask & CWWidth)
1746                                 win->g.w = ev->width;
1747                         if (ev->value_mask & CWHeight)
1748                                 win->g.h = ev->height;
1749                         if (win->ws->r != NULL) {
1750                                 /* this seems to be full screen */
1751                                 if (win->g.w > WIDTH(win->ws->r)) {
1752                                         /* kill border */
1753                                         win->g.x -= 1;
1754                                         win->g.w += 1;
1755                                 }
1756                                 if (win->g.h > HEIGHT(win->ws->r)) {
1757                                         /* kill border */
1758                                         win->g.y -= 1;
1759                                         win->g.h += 1;
1760                                 }
1761                         }
1762                         if ((ev->value_mask & (CWX|CWY)) &&
1763                             !(ev->value_mask & (CWWidth|CWHeight)))
1764                                 config_win(win);
1765                         XMoveResizeWindow(display, win->id,
1766                             win->g.x, win->g.y, win->g.w, win->g.h);
1767                 } else
1768                         config_win(win);
1769         }
1770 }
1771
1772 void
1773 configurenotify(XEvent *e)
1774 {
1775         DNPRINTF(SWM_D_EVENT, "configurenotify: window: %lu\n",
1776             e->xconfigure.window);
1777 }
1778
1779 void
1780 destroynotify(XEvent *e)
1781 {
1782         struct ws_win           *win;
1783         XDestroyWindowEvent     *ev = &e->xdestroywindow;
1784         struct workspace        *ws;
1785
1786         DNPRINTF(SWM_D_EVENT, "destroynotify: window %lu\n", ev->window);
1787
1788         if ((win = find_window(ev->window)) != NULL) {
1789                 ws = win->ws;
1790                 /* find a window to focus */
1791                 if (ws->focus == win)
1792                         ws->focus = TAILQ_PREV(win, ws_win_list, entry);
1793                 if (ws->focus == NULL)
1794                         ws->focus = TAILQ_FIRST(&ws->winlist);
1795                 if (ws->focus == win)
1796                         ws->focus = NULL;
1797                 if (cur_focus == win)
1798                         focus_win(ws->focus);
1799
1800                 TAILQ_REMOVE(&ws->winlist, win, entry);
1801                 set_win_state(win, WithdrawnState);
1802                 free(win);
1803         }
1804         stack();
1805 }
1806
1807 void
1808 enternotify(XEvent *e)
1809 {
1810         XCrossingEvent          *ev = &e->xcrossing;
1811         struct ws_win           *win;
1812
1813         DNPRINTF(SWM_D_EVENT, "enternotify: window: %lu\n", ev->window);
1814
1815         if (ignore_enter) {
1816                 /* eat event(r) to prevent autofocus */
1817                 ignore_enter--;
1818                 return;
1819         }
1820
1821         if ((win = find_window(ev->window)) != NULL)
1822                 focus_win(win);
1823 }
1824
1825 void
1826 focusin(XEvent *e)
1827 {
1828         DNPRINTF(SWM_D_EVENT, "focusin: window: %lu\n", e->xfocus.window);
1829 }
1830
1831 void
1832 mappingnotify(XEvent *e)
1833 {
1834         XMappingEvent           *ev = &e->xmapping;
1835
1836         DNPRINTF(SWM_D_EVENT, "mappingnotify: window: %lu\n", ev->window);
1837
1838         XRefreshKeyboardMapping(ev);
1839         if (ev->request == MappingKeyboard)
1840                 grabkeys();
1841 }
1842
1843 void
1844 maprequest(XEvent *e)
1845 {
1846         XMapRequestEvent        *ev = &e->xmaprequest;
1847         XWindowAttributes       wa;
1848
1849         DNPRINTF(SWM_D_EVENT, "maprequest: window: %lu\n",
1850             e->xmaprequest.window);
1851
1852         if (!XGetWindowAttributes(display, ev->window, &wa))
1853                 return;
1854         if (wa.override_redirect)
1855                 return;
1856         manage_window(e->xmaprequest.window);
1857         stack();
1858 }
1859
1860 void
1861 propertynotify(XEvent *e)
1862 {
1863         DNPRINTF(SWM_D_EVENT, "propertynotify: window: %lu\n",
1864             e->xproperty.window);
1865 }
1866
1867 void
1868 unmapnotify(XEvent *e)
1869 {
1870         DNPRINTF(SWM_D_EVENT, "unmapnotify: window: %lu\n", e->xunmap.window);
1871 }
1872
1873 void
1874 visibilitynotify(XEvent *e)
1875 {
1876         int                     i;
1877         struct swm_region       *r;
1878
1879         DNPRINTF(SWM_D_EVENT, "visibilitynotify: window: %lu\n",
1880             e->xvisibility.window);
1881         if (e->xvisibility.state == VisibilityUnobscured)
1882                 for (i = 0; i < ScreenCount(display); i++) 
1883                         TAILQ_FOREACH(r, &screens[i].rl, entry)
1884                                 if (e->xvisibility.window == r->bar_window)
1885                                         bar_update();
1886 }
1887
1888 void                    (*handler[LASTEvent])(XEvent *) = {
1889                                 [Expose] = expose,
1890                                 [KeyPress] = keypress,
1891                                 [ButtonPress] = buttonpress,
1892                                 [ConfigureRequest] = configurerequest,
1893                                 [ConfigureNotify] = configurenotify,
1894                                 [DestroyNotify] = destroynotify,
1895                                 [EnterNotify] = enternotify,
1896                                 [FocusIn] = focusin,
1897                                 [MappingNotify] = mappingnotify,
1898                                 [MapRequest] = maprequest,
1899                                 [PropertyNotify] = propertynotify,
1900                                 [UnmapNotify] = unmapnotify,
1901                                 [VisibilityNotify] = visibilitynotify,
1902 };
1903
1904 int
1905 xerror_start(Display *d, XErrorEvent *ee)
1906 {
1907         other_wm = 1;
1908         return (-1);
1909 }
1910
1911 int
1912 xerror(Display *d, XErrorEvent *ee)
1913 {
1914         /* fprintf(stderr, "error: %p %p\n", display, ee); */
1915         return (-1);
1916 }
1917
1918 int
1919 active_wm(void)
1920 {
1921         other_wm = 0;
1922         xerrorxlib = XSetErrorHandler(xerror_start);
1923
1924         /* this causes an error if some other window manager is running */
1925         XSelectInput(display, DefaultRootWindow(display),
1926             SubstructureRedirectMask);
1927         XSync(display, False);
1928         if (other_wm)
1929                 return (1);
1930
1931         XSetErrorHandler(xerror);
1932         XSync(display, False);
1933         return (0);
1934 }
1935
1936 long
1937 getstate(Window w)
1938 {
1939         int                     format, status;
1940         long                    result = -1;
1941         unsigned char           *p = NULL;
1942         unsigned long           n, extra;
1943         Atom                    real;
1944
1945         astate = XInternAtom(display, "WM_STATE", False);
1946         status = XGetWindowProperty(display, w, astate, 0L, 2L, False, astate,
1947             &real, &format, &n, &extra, (unsigned char **)&p);
1948         if (status != Success)
1949                 return (-1);
1950         if (n != 0)
1951                 result = *p;
1952         XFree(p);
1953         return (result);
1954 }
1955
1956 void
1957 new_region(struct swm_screen *s, struct workspace *ws,
1958     int x, int y, int w, int h)
1959 {
1960         struct swm_region       *r;
1961
1962         DNPRINTF(SWM_D_MISC, "new region on screen %d: %dx%d (%d, %d)\n",
1963              s->idx, x, y, w, h);
1964
1965         if ((r = calloc(1, sizeof(struct swm_region))) == NULL)
1966                 errx(1, "calloc: failed to allocate memory for screen");
1967
1968         X(r) = x;
1969         Y(r) = y;
1970         WIDTH(r) = w;
1971         HEIGHT(r) = h;
1972         r->s = s;
1973         r->ws = ws;
1974         ws->r = r;
1975         TAILQ_INSERT_TAIL(&s->rl, r, entry);
1976         bar_setup(r);
1977 }
1978
1979 void
1980 setup_screens(void)
1981 {
1982 #ifdef SWM_XRR_HAS_CRTC
1983         XRRCrtcInfo             *ci;
1984         XRRScreenResources      *sr;
1985         int                     c;
1986 #endif /* SWM_XRR_HAS_CRTC */
1987         Window                  d1, d2, *wins = NULL;
1988         XWindowAttributes       wa;
1989         struct swm_region       *r;
1990         unsigned int            no;
1991         int                     errorbase, major, minor;
1992         int                     ncrtc = 0, w = 0;
1993         int                     i, j, k;
1994         struct workspace        *ws;
1995         int                     ws_idx_atom;
1996
1997
1998         if ((screens = calloc(ScreenCount(display),
1999              sizeof(struct swm_screen))) == NULL)
2000                 errx(1, "calloc: screens");
2001
2002         ws_idx_atom = XInternAtom(display, "_SWM_WS", False);
2003         
2004
2005         /* map physical screens */
2006         for (i = 0; i < ScreenCount(display); i++) {
2007                 DNPRINTF(SWM_D_WS, "setup_screens: init screen %d\n", i);
2008                 screens[i].idx = i;
2009                 TAILQ_INIT(&screens[i].rl);
2010                 screens[i].root = RootWindow(display, i);
2011
2012                 /* set default colors */
2013                 setscreencolor("red", i + 1, SWM_S_COLOR_FOCUS);
2014                 setscreencolor("rgb:88/88/88", i + 1, SWM_S_COLOR_UNFOCUS);
2015                 setscreencolor("rgb:00/80/80", i + 1, SWM_S_COLOR_BAR_BORDER);
2016                 setscreencolor("black", i + 1, SWM_S_COLOR_BAR);
2017                 setscreencolor("rgb:a0/a0/a0", i + 1, SWM_S_COLOR_BAR_FONT);
2018
2019                 /* init all workspaces */
2020                 for (j = 0; j < SWM_WS_MAX; j++) {
2021                         ws = &screens[i].ws[j];
2022                         ws->idx = j;
2023                         ws->restack = 1;
2024                         ws->focus = NULL;
2025                         ws->r = NULL;
2026                         TAILQ_INIT(&ws->winlist);
2027
2028                         for (k = 0; layouts[k].l_stack != NULL; k++)
2029                                 if (layouts[k].l_config != NULL)
2030                                         layouts[k].l_config(ws,
2031                                             SWM_ARG_ID_STACKINIT);
2032                         ws->cur_layout = &layouts[0];
2033                 }
2034
2035                 /* map virtual screens onto physical screens */
2036                 screens[i].xrandr_support = XRRQueryExtension(display,
2037                     &xrandr_eventbase, &errorbase);
2038                 if (screens[i].xrandr_support)
2039                         if (XRRQueryVersion(display, &major, &minor) &&
2040                             major < 1)
2041                                 screens[i].xrandr_support = 0;
2042
2043 #if 0   /* not ready for dynamic screen changes */
2044                 if (screens[i].xrandr_support)
2045                         XRRSelectInput(display,
2046                             screens[r->s].root,
2047                             RRScreenChangeNotifyMask);
2048 #endif
2049
2050                 /* grab existing windows (before we build the bars)*/
2051                 if (!XQueryTree(display, screens[i].root, &d1, &d2, &wins, &no))
2052                         continue;
2053
2054 #ifdef SWM_XRR_HAS_CRTC
2055                 sr = XRRGetScreenResources(display, screens[i].root);
2056                 if (sr == NULL)
2057                         new_region(&screens[i], &screens[i].ws[w],
2058                             0, 0, DisplayWidth(display, i),
2059                             DisplayHeight(display, i)); 
2060                 else 
2061                         ncrtc = sr->ncrtc;
2062
2063                 for (c = 0, ci = NULL; c < ncrtc; c++) {
2064                         ci = XRRGetCrtcInfo(display, sr, sr->crtcs[c]);
2065                         if (ci->noutput == 0)
2066                                 continue;
2067
2068                         if (ci != NULL && ci->mode == None)
2069                                 new_region(&screens[i], &screens[i].ws[w], 0, 0,
2070                                     DisplayWidth(display, i),
2071                                     DisplayHeight(display, i)); 
2072                         else
2073                                 new_region(&screens[i], &screens[i].ws[w],
2074                                     ci->x, ci->y, ci->width, ci->height);
2075                         w++;
2076                 }
2077                 if (ci)
2078                         XRRFreeCrtcInfo(ci);
2079                 XRRFreeScreenResources(sr);
2080 #else
2081                 new_region(&screens[i], &screens[i].ws[w], 0, 0,
2082                     DisplayWidth(display, i),
2083                     DisplayHeight(display, i)); 
2084 #endif /* SWM_XRR_HAS_CRTC */
2085
2086                 /* attach windows to a region */
2087                 /* normal windows */
2088                 if ((r = TAILQ_FIRST(&screens[i].rl)) == NULL)
2089                         errx(1, "no regions on screen %d", i);
2090
2091                 for (i = 0; i < no; i++) {
2092                         XGetWindowAttributes(display, wins[i], &wa);
2093                         if (!XGetWindowAttributes(display, wins[i], &wa) ||
2094                             wa.override_redirect ||
2095                             XGetTransientForHint(display, wins[i], &d1))
2096                                 continue;
2097
2098                         if (wa.map_state == IsViewable ||
2099                             getstate(wins[i]) == NormalState)
2100                                 manage_window(wins[i]);
2101                 }
2102                 /* transient windows */
2103                 for (i = 0; i < no; i++) {
2104                         if (!XGetWindowAttributes(display, wins[i], &wa))
2105                                 continue;
2106
2107                         if (XGetTransientForHint(display, wins[i], &d1) &&
2108                             (wa.map_state == IsViewable || getstate(wins[i]) ==
2109                             NormalState))
2110                                 manage_window(wins[i]);
2111                 }
2112                 if (wins) {
2113                         XFree(wins);
2114                         wins = NULL;
2115                 }
2116         }
2117 }
2118
2119 int
2120 main(int argc, char *argv[])
2121 {
2122         struct passwd           *pwd;
2123         char                    conf[PATH_MAX], *cfile = NULL;
2124         struct stat             sb;
2125         XEvent                  e;
2126         int                     xfd;
2127         fd_set                  rd;
2128
2129         start_argv = argv;
2130         fprintf(stderr, "Welcome to scrotwm V%s\n", SWM_VERSION);
2131         if (!setlocale(LC_CTYPE, "") || !XSupportsLocale())
2132                 warnx("no locale support");
2133
2134         if (!(display = XOpenDisplay(0)))
2135                 errx(1, "can not open display");
2136
2137         if (active_wm())
2138                 errx(1, "other wm running");
2139
2140         astate = XInternAtom(display, "WM_STATE", False);
2141
2142         /* look for local and global conf file */
2143         pwd = getpwuid(getuid());
2144         if (pwd == NULL)
2145                 errx(1, "invalid user %d", getuid());
2146
2147         setup_screens();
2148
2149         snprintf(conf, sizeof conf, "%s/.%s", pwd->pw_dir, SWM_CONF_FILE);
2150         if (stat(conf, &sb) != -1) {
2151                 if (S_ISREG(sb.st_mode))
2152                         cfile = conf;
2153         } else {
2154                 /* try global conf file */
2155                 snprintf(conf, sizeof conf, "/etc/%s", SWM_CONF_FILE);
2156                 if (!stat(conf, &sb))
2157                         if (S_ISREG(sb.st_mode))
2158                                 cfile = conf;
2159         }
2160         if (cfile)
2161                 conf_load(cfile);
2162         bar_refresh();
2163
2164         /* ws[0].focus = TAILQ_FIRST(&ws[0].winlist); */
2165
2166         grabkeys();
2167         stack();
2168
2169         xfd = ConnectionNumber(display);
2170         while (running) {
2171                 FD_ZERO(&rd);
2172                 FD_SET(xfd, &rd);
2173                 if (select(xfd + 1, &rd, NULL, NULL, NULL) == -1)
2174                         if (errno != EINTR)
2175                                 errx(1, "select failed");
2176                 if (bar_alarm) {
2177                         bar_alarm = 0;
2178                         bar_update();
2179                 }
2180                 while(XPending(display)) {
2181                         XNextEvent(display, &e);
2182                         if (handler[e.type])
2183                                 handler[e.type](&e);
2184                 }
2185         }
2186
2187         XCloseDisplay(display);
2188
2189         return (0);
2190 }