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