JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Fix max_stack again and some autofocus nits.
[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  * Copyright (c) 2009 Darrin Chandler <dwchandler@stilyagin.com>
6  * Copyright (c) 2009 Pierre-Yves Ritschard <pyr@spootnik.org>
7  *
8  * Permission to use, copy, modify, and distribute this software for any
9  * purpose with or without fee is hereby granted, provided that the above
10  * copyright notice and this permission notice appear in all copies.
11  *
12  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19  */
20 /*
21  * Much code and ideas taken from dwm under the following license:
22  * MIT/X Consortium License
23  *
24  * 2006-2008 Anselm R Garbe <garbeam at gmail dot com>
25  * 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
26  * 2006-2007 Jukka Salmi <jukka at salmi dot ch>
27  * 2007 Premysl Hruby <dfenze at gmail dot com>
28  * 2007 Szabolcs Nagy <nszabolcs at gmail dot com>
29  * 2007 Christof Musik <christof at sendfax dot de>
30  * 2007-2008 Enno Gottox Boland <gottox at s01 dot de>
31  * 2007-2008 Peter Hartlich <sgkkr at hartlich dot com>
32  * 2008 Martin Hurton <martin dot hurton at gmail dot com>
33  *
34  * Permission is hereby granted, free of charge, to any person obtaining a
35  * copy of this software and associated documentation files (the "Software"),
36  * to deal in the Software without restriction, including without limitation
37  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
38  * and/or sell copies of the Software, and to permit persons to whom the
39  * Software is furnished to do so, subject to the following conditions:
40  *
41  * The above copyright notice and this permission notice shall be included in
42  * all copies or substantial portions of the Software.
43  *
44  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
45  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
46  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
47  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
48  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
49  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
50  * DEALINGS IN THE SOFTWARE.
51  */
52
53 static const char       *cvstag = "$scrotwm$";
54
55 #define SWM_VERSION     "0.9.9"
56
57 #include <stdio.h>
58 #include <stdlib.h>
59 #include <err.h>
60 #include <errno.h>
61 #include <fcntl.h>
62 #include <locale.h>
63 #include <unistd.h>
64 #include <time.h>
65 #include <signal.h>
66 #include <string.h>
67 #include <util.h>
68 #include <pwd.h>
69 #include <ctype.h>
70
71 #include <sys/types.h>
72 #include <sys/time.h>
73 #include <sys/stat.h>
74 #include <sys/wait.h>
75 #include <sys/queue.h>
76 #include <sys/param.h>
77 #include <sys/select.h>
78
79 #include <X11/cursorfont.h>
80 #include <X11/keysym.h>
81 #include <X11/Xatom.h>
82 #include <X11/Xlib.h>
83 #include <X11/Xproto.h>
84 #include <X11/Xutil.h>
85 #include <X11/extensions/Xrandr.h>
86
87 #if RANDR_MAJOR < 1
88 #  error XRandR versions less than 1.0 are not supported
89 #endif
90
91 #if RANDR_MAJOR >= 1
92 #if RANDR_MINOR >= 2
93 #define SWM_XRR_HAS_CRTC
94 #endif
95 #endif
96
97 /* #define SWM_DEBUG */
98 #ifdef SWM_DEBUG
99 #define DPRINTF(x...)           do { if (swm_debug) fprintf(stderr, x); } while (0)
100 #define DNPRINTF(n,x...)        do { if (swm_debug & n) fprintf(stderr, x); } while (0)
101 #define SWM_D_MISC              0x0001
102 #define SWM_D_EVENT             0x0002
103 #define SWM_D_WS                0x0004
104 #define SWM_D_FOCUS             0x0008
105 #define SWM_D_MOVE              0x0010
106 #define SWM_D_STACK             0x0020
107 #define SWM_D_MOUSE             0x0040
108 #define SWM_D_PROP              0x0080
109 #define SWM_D_CLASS             0x0100
110 #define SWM_D_KEY               0x0200
111 #define SWM_D_QUIRK             0x0400
112 #define SWM_D_SPAWN             0x0800
113 #define SWM_D_EVENTQ            0x1000
114 #define SWM_D_CONF              0x2000
115
116 u_int32_t               swm_debug = 0
117                             | SWM_D_MISC
118                             | SWM_D_EVENT
119                             | SWM_D_WS
120                             | SWM_D_FOCUS
121                             | SWM_D_MOVE
122                             | SWM_D_STACK
123                             | SWM_D_MOUSE
124                             | SWM_D_PROP
125                             | SWM_D_CLASS
126                             | SWM_D_KEY
127                             | SWM_D_QUIRK
128                             | SWM_D_SPAWN
129                             | SWM_D_EVENTQ
130                             | SWM_D_CONF
131                             ;
132 #else
133 #define DPRINTF(x...)
134 #define DNPRINTF(n,x...)
135 #endif
136
137 #define LENGTH(x)               (sizeof x / sizeof x[0])
138 #define MODKEY                  Mod1Mask
139 #define CLEANMASK(mask)         (mask & ~(numlockmask | LockMask))
140 #define BUTTONMASK              (ButtonPressMask|ButtonReleaseMask)
141 #define MOUSEMASK               (BUTTONMASK|PointerMotionMask)
142 #define SWM_PROPLEN             (16)
143 #define SWM_FUNCNAME_LEN        (32)
144 #define SWM_KEYS_LEN            (255)
145 #define SWM_QUIRK_LEN           (64)
146 #define X(r)                    (r)->g.x
147 #define Y(r)                    (r)->g.y
148 #define WIDTH(r)                (r)->g.w
149 #define HEIGHT(r)               (r)->g.h
150 #define SWM_MAX_FONT_STEPS      (3)
151 #define SWM_EV_PROLOGUE(x)      do { XGrabServer(x); } while (0)
152 #define SWM_EV_EPILOGUE(x)      do { XUngrabServer(x); XFlush(x); } while (0)
153
154 #ifndef SWM_LIB
155 #define SWM_LIB                 "/usr/local/lib/libswmhack.so"
156 #endif
157
158 char                    **start_argv;
159 Atom                    astate;
160 Atom                    aprot;
161 Atom                    adelete;
162 volatile sig_atomic_t   running = 1;
163 int                     outputs = 0;
164 int                     (*xerrorxlib)(Display *, XErrorEvent *);
165 int                     other_wm;
166 int                     ss_enabled = 0;
167 int                     xrandr_support;
168 int                     xrandr_eventbase;
169 int                     ignore_enter = 0;
170 unsigned int            numlockmask = 0;
171 Display                 *display;
172
173 int                     cycle_empty = 0;
174 int                     cycle_visible = 0;
175 int                     term_width = 0;
176 int                     font_adjusted = 0;
177 unsigned int            mod_key = MODKEY;
178
179 /* dialog windows */
180 double                  dialog_ratio = .6;
181 /* status bar */
182 #define SWM_BAR_MAX     (256)
183 char                    *bar_argv[] = { NULL, NULL };
184 int                     bar_pipe[2];
185 char                    bar_ext[SWM_BAR_MAX];
186 char                    bar_vertext[SWM_BAR_MAX];
187 int                     bar_version = 0;
188 sig_atomic_t            bar_alarm = 0;
189 int                     bar_delay = 30;
190 int                     bar_enabled = 1;
191 int                     bar_extra = 1;
192 int                     bar_extra_running = 0;
193 int                     bar_verbose = 1;
194 int                     bar_height = 0;
195 int                     clock_enabled = 1;
196 int                     title_name_enabled = 0;
197 int                     title_class_enabled = 0;
198 pid_t                   bar_pid;
199 GC                      bar_gc;
200 XGCValues               bar_gcv;
201 int                     bar_fidx = 0;
202 XFontStruct             *bar_fs;
203 char                    *bar_fonts[] = { NULL, NULL, NULL, NULL };/* XXX Make fully dynamic */
204 char                    *spawn_term[] = { NULL, NULL };         /* XXX Make fully dynamic */
205
206 #define SWM_MENU_FN     (2)
207 #define SWM_MENU_NB     (4)
208 #define SWM_MENU_NF     (6)
209 #define SWM_MENU_SB     (8)
210 #define SWM_MENU_SF     (10)
211
212 /* layout manager data */
213 struct swm_geometry {
214         int                     x;
215         int                     y;
216         int                     w;
217         int                     h;
218 };
219
220 struct swm_screen;
221 struct workspace;
222
223 /* virtual "screens" */
224 struct swm_region {
225         TAILQ_ENTRY(swm_region) entry;
226         struct swm_geometry     g;
227         struct workspace        *ws;    /* current workspace on this region */
228         struct swm_screen       *s;     /* screen idx */
229         Window                  bar_window;
230 };
231 TAILQ_HEAD(swm_region_list, swm_region);
232
233 struct ws_win {
234         TAILQ_ENTRY(ws_win)     entry;
235         Window                  id;
236         struct swm_geometry     g;
237         int                     floating;
238         int                     transient;
239         int                     manual;
240         int                     font_size_boundary[SWM_MAX_FONT_STEPS];
241         int                     font_steps;
242         int                     last_inc;
243         int                     can_delete;
244         unsigned long           quirks;
245         struct workspace        *ws;    /* always valid */
246         struct swm_screen       *s;     /* always valid, never changes */
247         XWindowAttributes       wa;
248         XSizeHints              sh;
249         XClassHint              ch;
250 };
251 TAILQ_HEAD(ws_win_list, ws_win);
252
253 /* user/key callable function IDs */
254 enum keyfuncid {
255         kf_cycle_layout,
256         kf_stack_reset,
257         kf_master_shrink,
258         kf_master_grow,
259         kf_master_add,
260         kf_master_del,
261         kf_stack_inc,
262         kf_stack_dec,
263         kf_swap_main,
264         kf_focus_next,
265         kf_focus_prev,
266         kf_swap_next,
267         kf_swap_prev,
268         kf_spawn_term,
269         kf_spawn_menu,
270         kf_quit,
271         kf_restart,
272         kf_focus_main,
273         kf_ws_1,
274         kf_ws_2,
275         kf_ws_3,
276         kf_ws_4,
277         kf_ws_5,
278         kf_ws_6,
279         kf_ws_7,
280         kf_ws_8,
281         kf_ws_9,
282         kf_ws_10,
283         kf_ws_next,
284         kf_ws_prev,
285         kf_screen_next,
286         kf_screen_prev,
287         kf_mvws_1,
288         kf_mvws_2,
289         kf_mvws_3,
290         kf_mvws_4,
291         kf_mvws_5,
292         kf_mvws_6,
293         kf_mvws_7,
294         kf_mvws_8,
295         kf_mvws_9,
296         kf_mvws_10,
297         kf_bar_toggle,
298         kf_wind_kill,
299         kf_wind_del,
300         kf_screenshot_all,
301         kf_screenshot_wind,
302         kf_float_toggle,
303         kf_version,
304         kf_spawn_lock,
305         kf_spawn_initscr,
306         kf_spawn_custom,
307         kf_invalid
308 };
309
310 /* layout handlers */
311 void    stack(void);
312 void    vertical_config(struct workspace *, int);
313 void    vertical_stack(struct workspace *, struct swm_geometry *);
314 void    horizontal_config(struct workspace *, int);
315 void    horizontal_stack(struct workspace *, struct swm_geometry *);
316 void    max_stack(struct workspace *, struct swm_geometry *);
317
318 void    grabbuttons(struct ws_win *, int);
319 void    new_region(struct swm_screen *, int, int, int, int);
320
321 struct layout {
322         void            (*l_stack)(struct workspace *, struct swm_geometry *);
323         void            (*l_config)(struct workspace *, int);
324         u_int32_t       flags;
325 #define SWM_L_FOCUSPREV         (1<<0)
326 #define SWM_L_MAPONFOCUS        (1<<1)
327 } layouts[] =  {
328         /* stack,               configure */
329         { vertical_stack,       vertical_config,        0},
330         { horizontal_stack,     horizontal_config,      0},
331         { max_stack,            NULL,
332           SWM_L_FOCUSPREV | SWM_L_MAPONFOCUS},
333         { NULL,                 NULL,                   0},
334 };
335
336 #define SWM_H_SLICE             (32)
337 #define SWM_V_SLICE             (32)
338
339 /* define work spaces */
340 struct workspace {
341         int                     idx;            /* workspace index */
342         int                     restack;        /* restack on switch */
343         struct layout           *cur_layout;    /* current layout handlers */
344         struct ws_win           *focus;         /* may be NULL */
345         struct ws_win           *focus_prev;    /* may be NULL */
346         struct swm_region       *r;             /* may be NULL */
347         struct swm_region       *old_r;         /* may be NULL */
348         struct ws_win_list      winlist;        /* list of windows in ws */
349
350         /* stacker state */
351         struct {
352                                 int horizontal_msize;
353                                 int horizontal_mwin;
354                                 int horizontal_stacks;
355                                 int vertical_msize;
356                                 int vertical_mwin;
357                                 int vertical_stacks;
358         } l_state;
359 };
360
361 enum    { SWM_S_COLOR_BAR, SWM_S_COLOR_BAR_BORDER, SWM_S_COLOR_BAR_FONT,
362           SWM_S_COLOR_FOCUS, SWM_S_COLOR_UNFOCUS, SWM_S_COLOR_MAX };
363
364 /* physical screen mapping */
365 #define SWM_WS_MAX              (10)            /* XXX Too small? */
366 struct swm_screen {
367         int                     idx;            /* screen index */
368         struct swm_region_list  rl;     /* list of regions on this screen */
369         struct swm_region_list  orl;    /* list of old regions */
370         Window                  root;
371         struct workspace        ws[SWM_WS_MAX];
372
373         /* colors */
374         struct {
375                 unsigned long   color;
376                 char            *name;
377         } c[SWM_S_COLOR_MAX];
378 };
379 struct swm_screen       *screens;
380 int                     num_screens;
381
382 /* args to functions */
383 union arg {
384         int                     id;
385 #define SWM_ARG_ID_FOCUSNEXT    (0)
386 #define SWM_ARG_ID_FOCUSPREV    (1)
387 #define SWM_ARG_ID_FOCUSMAIN    (2)
388 #define SWM_ARG_ID_SWAPNEXT     (3)
389 #define SWM_ARG_ID_SWAPPREV     (4)
390 #define SWM_ARG_ID_SWAPMAIN     (5)
391 #define SWM_ARG_ID_MASTERSHRINK (6)
392 #define SWM_ARG_ID_MASTERGROW   (7)
393 #define SWM_ARG_ID_MASTERADD    (8)
394 #define SWM_ARG_ID_MASTERDEL    (9)
395 #define SWM_ARG_ID_STACKRESET   (10)
396 #define SWM_ARG_ID_STACKINIT    (11)
397 #define SWM_ARG_ID_CYCLEWS_UP   (12)
398 #define SWM_ARG_ID_CYCLEWS_DOWN (13)
399 #define SWM_ARG_ID_CYCLESC_UP   (14)
400 #define SWM_ARG_ID_CYCLESC_DOWN (15)
401 #define SWM_ARG_ID_STACKINC     (16)
402 #define SWM_ARG_ID_STACKDEC     (17)
403 #define SWM_ARG_ID_SS_ALL       (0)
404 #define SWM_ARG_ID_SS_WINDOW    (1)
405 #define SWM_ARG_ID_DONTCENTER   (0)
406 #define SWM_ARG_ID_CENTER       (1)
407 #define SWM_ARG_ID_KILLWINDOW   (0)
408 #define SWM_ARG_ID_DELETEWINDOW (1)
409         char                    **argv;
410 };
411
412 /* quirks */
413 struct quirk {
414         char                    *class;
415         char                    *name;
416         unsigned long           quirk;
417 #define SWM_Q_FLOAT             (1<<0)  /* float this window */
418 #define SWM_Q_TRANSSZ           (1<<1)  /* transiend window size too small */
419 #define SWM_Q_ANYWHERE          (1<<2)  /* don't position this window */
420 #define SWM_Q_XTERM_FONTADJ     (1<<3)  /* adjust xterm fonts when resizing */
421 #define SWM_Q_FULLSCREEN        (1<<4)  /* remove border */
422 };
423 int                             quirks_size = 0, quirks_length = 0;
424 struct quirk                    *quirks = NULL;
425
426 /* events */
427 #ifdef SWM_DEBUG
428 void
429 dumpevent(XEvent *e)
430 {
431         char                    *name = NULL;
432
433         switch (e->type) {
434         case KeyPress:
435                 name = "KeyPress";
436                 break;
437         case KeyRelease:
438                 name = "KeyRelease";
439                 break;
440         case ButtonPress:
441                 name = "ButtonPress";
442                 break;
443         case ButtonRelease:
444                 name = "ButtonRelease";
445                 break;
446         case MotionNotify:
447                 name = "MotionNotify";
448                 break;
449         case EnterNotify:
450                 name = "EnterNotify";
451                 break;
452         case LeaveNotify:
453                 name = "LeaveNotify";
454                 break;
455         case FocusIn:
456                 name = "FocusIn";
457                 break;
458         case FocusOut:
459                 name = "FocusOut";
460                 break;
461         case KeymapNotify:
462                 name = "KeymapNotify";
463                 break;
464         case Expose:
465                 name = "Expose";
466                 break;
467         case GraphicsExpose:
468                 name = "GraphicsExpose";
469                 break;
470         case NoExpose:
471                 name = "NoExpose";
472                 break;
473         case VisibilityNotify:
474                 name = "VisibilityNotify";
475                 break;
476         case CreateNotify:
477                 name = "CreateNotify";
478                 break;
479         case DestroyNotify:
480                 name = "DestroyNotify";
481                 break;
482         case UnmapNotify:
483                 name = "UnmapNotify";
484                 break;
485         case MapNotify:
486                 name = "MapNotify";
487                 break;
488         case MapRequest:
489                 name = "MapRequest";
490                 break;
491         case ReparentNotify:
492                 name = "ReparentNotify";
493                 break;
494         case ConfigureNotify:
495                 name = "ConfigureNotify";
496                 break;
497         case ConfigureRequest:
498                 name = "ConfigureRequest";
499                 break;
500         case GravityNotify:
501                 name = "GravityNotify";
502                 break;
503         case ResizeRequest:
504                 name = "ResizeRequest";
505                 break;
506         case CirculateNotify:
507                 name = "CirculateNotify";
508                 break;
509         case CirculateRequest:
510                 name = "CirculateRequest";
511                 break;
512         case PropertyNotify:
513                 name = "PropertyNotify";
514                 break;
515         case SelectionClear:
516                 name = "SelectionClear";
517                 break;
518         case SelectionRequest:
519                 name = "SelectionRequest";
520                 break;
521         case SelectionNotify:
522                 name = "SelectionNotify";
523                 break;
524         case ColormapNotify:
525                 name = "ColormapNotify";
526                 break;
527         case ClientMessage:
528                 name = "ClientMessage";
529                 break;
530         case MappingNotify:
531                 name = "MappingNotify";
532                 break;
533         }
534
535         if (name)
536                 DNPRINTF(SWM_D_EVENTQ ,"window: %lu event: %s (%d), %d "
537                     "remaining\n",
538                     e->xany.window, name, e->type, QLength(display));
539         else
540                 DNPRINTF(SWM_D_EVENTQ, "window: %lu unknown event %d, %d "
541                     "remaining\n",
542                     e->xany.window, e->type, QLength(display));
543 }
544 #else
545 #define dumpevent(e)
546 #endif /* SWM_DEBUG */
547
548 void                    expose(XEvent *);
549 void                    keypress(XEvent *);
550 void                    buttonpress(XEvent *);
551 void                    configurerequest(XEvent *);
552 void                    configurenotify(XEvent *);
553 void                    destroynotify(XEvent *);
554 void                    enternotify(XEvent *);
555 void                    focusin(XEvent *);
556 void                    focusout(XEvent *);
557 void                    mapnotify(XEvent *);
558 void                    maprequest(XEvent *);
559 void                    propertynotify(XEvent *);
560 void                    unmapnotify(XEvent *);
561 void                    visibilitynotify(XEvent *);
562
563 void                    (*handler[LASTEvent])(XEvent *) = {
564                                 [Expose] = expose,
565                                 [KeyPress] = keypress,
566                                 [ButtonPress] = buttonpress,
567                                 [ConfigureRequest] = configurerequest,
568                                 [ConfigureNotify] = configurenotify,
569                                 [DestroyNotify] = destroynotify,
570                                 [EnterNotify] = enternotify,
571                                 [FocusIn] = focusin,
572                                 [FocusOut] = focusout,
573                                 [MapNotify] = mapnotify,
574                                 [MapRequest] = maprequest,
575                                 [PropertyNotify] = propertynotify,
576                                 [UnmapNotify] = unmapnotify,
577                                 [VisibilityNotify] = visibilitynotify,
578 };
579
580 void
581 sighdlr(int sig)
582 {
583         pid_t                   pid;
584
585         switch (sig) {
586         case SIGCHLD:
587                 while ((pid = waitpid(WAIT_ANY, NULL, WNOHANG)) != -1) {
588                         DNPRINTF(SWM_D_MISC, "reaping: %d\n", pid);
589                         if (pid <= 0)
590                                 break;
591                 }
592                 break;
593         case SIGINT:
594         case SIGTERM:
595         case SIGHUP:
596         case SIGQUIT:
597                 running = 0;
598                 break;
599         }
600 }
601
602 void
603 installsignal(int sig, char *name)
604 {
605         struct sigaction        sa;
606
607         sa.sa_handler = sighdlr;
608         sigemptyset(&sa.sa_mask);
609         sa.sa_flags = 0;
610         if (sigaction(sig, &sa, NULL) == -1)
611                 err(1, "could not install %s handler", name);
612 }
613
614 unsigned long
615 name_to_color(char *colorname)
616 {
617         Colormap                cmap;
618         Status                  status;
619         XColor                  screen_def, exact_def;
620         unsigned long           result = 0;
621         char                    cname[32] = "#";
622
623         cmap = DefaultColormap(display, screens[0].idx);
624         status = XAllocNamedColor(display, cmap, colorname,
625             &screen_def, &exact_def);
626         if (!status) {
627                 strlcat(cname, colorname + 2, sizeof cname - 1);
628                 status = XAllocNamedColor(display, cmap, cname, &screen_def,
629                     &exact_def);
630         }
631         if (status)
632                 result = screen_def.pixel;
633         else
634                 fprintf(stderr, "color '%s' not found.\n", colorname);
635
636         return (result);
637 }
638
639 void
640 setscreencolor(char *val, int i, int c)
641 {
642         if (i > 0 && i <= ScreenCount(display)) {
643                 screens[i - 1].c[c].color = name_to_color(val);
644                 free(screens[i - 1].c[c].name);
645                 if ((screens[i - 1].c[c].name = strdup(val)) == NULL)
646                         errx(1, "strdup");
647         } else if (i == -1) {
648                 for (i = 0; i < ScreenCount(display); i++) {
649                         screens[i].c[c].color = name_to_color(val);
650                         free(screens[i].c[c].name);
651                         if ((screens[i].c[c].name = strdup(val)) == NULL)
652                                 errx(1, "strdup");
653                 }
654         } else
655                 errx(1, "invalid screen index: %d out of bounds (maximum %d)\n",
656                     i, ScreenCount(display));
657 }
658
659 void
660 custom_region(char *val)
661 {
662         unsigned int                    sidx, x, y, w, h;
663
664         if (sscanf(val, "screen[%u]:%ux%u+%u+%u", &sidx, &w, &h, &x, &y) != 5)
665                 errx(1, "invalid custom region, "
666                     "should be 'screen[<n>]:<n>x<n>+<n>+<n>\n");
667         if (sidx < 1 || sidx > ScreenCount(display))
668                 errx(1, "invalid screen index: %d out of bounds (maximum %d)\n",
669                     sidx, ScreenCount(display));
670         sidx--;
671
672         if (w < 1 || h < 1)
673                 errx(1, "region %ux%u+%u+%u too small\n", w, h, x, y);
674
675         if (x  < 0 || x > DisplayWidth(display, sidx) ||
676             y < 0 || y > DisplayHeight(display, sidx) ||
677             w + x > DisplayWidth(display, sidx) ||
678             h + y > DisplayHeight(display, sidx))
679                 errx(1, "region %ux%u+%u+%u not within screen boundaries "
680                     "(%ux%u)\n", w, h, x, y,
681                     DisplayWidth(display, sidx), DisplayHeight(display, sidx));
682
683         new_region(&screens[sidx], x, y, w, h);
684 }
685
686 void
687 socket_setnonblock(int fd)
688 {
689         int                     flags;
690
691         if ((flags = fcntl(fd, F_GETFL, 0)) == -1)
692                 err(1, "fcntl F_GETFL");
693         flags |= O_NONBLOCK;
694         if ((flags = fcntl(fd, F_SETFL, flags)) == -1)
695                 err(1, "fcntl F_SETFL");
696 }
697
698 void
699 bar_print(struct swm_region *r, char *s)
700 {
701         XClearWindow(display, r->bar_window);
702         XSetForeground(display, bar_gc, r->s->c[SWM_S_COLOR_BAR_FONT].color);
703         XDrawString(display, r->bar_window, bar_gc, 4, bar_fs->ascent, s,
704             strlen(s));
705 }
706
707 void
708 bar_extra_stop(void)
709 {
710         if (bar_pipe[0]) {
711                 close(bar_pipe[0]);
712                 bzero(bar_pipe, sizeof bar_pipe);
713         }
714         if (bar_pid) {
715                 kill(bar_pid, SIGTERM);
716                 bar_pid = 0;
717         }
718         strlcpy(bar_ext, "", sizeof bar_ext);
719         bar_extra = 0;
720 }
721
722 void
723 bar_class_name(char *s, ssize_t sz, struct ws_win *cur_focus)
724 {
725         int                     do_class, do_name;
726         Status                  status;
727         XClassHint              *xch = NULL;
728
729         if ((title_name_enabled == 1 || title_class_enabled == 1) &&
730             cur_focus != NULL) {
731                 if ((xch = XAllocClassHint()) == NULL)
732                         goto out;
733                 status = XGetClassHint(display, cur_focus->id, xch);
734                 if (status == BadWindow || status == BadAlloc)
735                         goto out;
736                 do_class = (title_class_enabled && xch->res_class != NULL);
737                 do_name = (title_name_enabled && xch->res_name != NULL);
738                 if (do_class)
739                         strlcat(s, xch->res_class, sz);
740                 if (do_class && do_name)
741                         strlcat(s, ":", sz);
742                 if (do_name)
743                         strlcat(s, xch->res_name, sz);
744                 strlcat(s, "    ", sz);
745         }
746 out:
747         if (xch)
748                 XFree(xch);
749 }
750
751 void
752 bar_update(void)
753 {
754         time_t                  tmt;
755         struct tm               tm;
756         struct swm_region       *r;
757         int                     i, x;
758         size_t                  len;
759         char                    s[SWM_BAR_MAX];
760         char                    loc[SWM_BAR_MAX];
761         char                    *b;
762
763         if (bar_enabled == 0)
764                 return;
765         if (bar_extra && bar_extra_running) {
766                 /* ignore short reads; it'll correct itself */
767                 while ((b = fgetln(stdin, &len)) != NULL)
768                         if (b && b[len - 1] == '\n') {
769                                 b[len - 1] = '\0';
770                                 strlcpy(bar_ext, b, sizeof bar_ext);
771                         }
772                 if (b == NULL && errno != EAGAIN) {
773                         fprintf(stderr, "bar_extra failed: errno: %d %s\n",
774                             errno, strerror(errno));
775                         bar_extra_stop();
776                 }
777         } else
778                 strlcpy(bar_ext, "", sizeof bar_ext);
779
780         if (clock_enabled == 0)
781                 strlcpy(s, "", sizeof s);
782         else {
783                 time(&tmt);
784                 localtime_r(&tmt, &tm);
785                 strftime(s, sizeof s, "%a %b %d %R %Z %Y    ", &tm);
786         }
787
788         for (i = 0; i < ScreenCount(display); i++) {
789                 x = 1;
790                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
791                         if (r && r->ws)
792                                 bar_class_name(s, sizeof s, r->ws->focus);
793
794                         snprintf(loc, sizeof loc, "%d:%d    %s %s    %s",
795                             x++, r->ws->idx + 1, s, bar_ext, bar_vertext);
796                         bar_print(r, loc);
797                 }
798         }
799         alarm(bar_delay);
800 }
801
802 void
803 bar_signal(int sig)
804 {
805         bar_alarm = 1;
806 }
807
808 void
809 bar_toggle(struct swm_region *r, union arg *args)
810 {
811         struct swm_region       *tmpr;
812         int                     i, j, sc = ScreenCount(display);
813
814         DNPRINTF(SWM_D_MISC, "bar_toggle\n");
815
816         if (bar_enabled)
817                 for (i = 0; i < sc; i++)
818                         TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
819                                 XUnmapWindow(display, tmpr->bar_window);
820         else
821                 for (i = 0; i < sc; i++)
822                         TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
823                                 XMapRaised(display, tmpr->bar_window);
824
825         bar_enabled = !bar_enabled;
826         for (i = 0; i < sc; i++)
827                 for (j = 0; j < SWM_WS_MAX; j++)
828                         screens[i].ws[j].restack = 1;
829
830         stack();
831         /* must be after stack */
832         bar_update();
833 }
834
835 void
836 bar_refresh(void)
837 {
838         XSetWindowAttributes    wa;
839         struct swm_region       *r;
840         int                     i;
841
842         /* do this here because the conf file is in memory */
843         if (bar_extra && bar_extra_running == 0 && bar_argv[0]) {
844                 /* launch external status app */
845                 bar_extra_running = 1;
846                 if (pipe(bar_pipe) == -1)
847                         err(1, "pipe error");
848                 socket_setnonblock(bar_pipe[0]);
849                 socket_setnonblock(bar_pipe[1]); /* XXX hmmm, really? */
850                 if (dup2(bar_pipe[0], 0) == -1)
851                         errx(1, "dup2");
852                 if (dup2(bar_pipe[1], 1) == -1)
853                         errx(1, "dup2");
854                 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
855                         err(1, "could not disable SIGPIPE");
856                 switch (bar_pid = fork()) {
857                 case -1:
858                         err(1, "cannot fork");
859                         break;
860                 case 0: /* child */
861                         close(bar_pipe[0]);
862                         execvp(bar_argv[0], bar_argv);
863                         err(1, "%s external app failed", bar_argv[0]);
864                         break;
865                 default: /* parent */
866                         close(bar_pipe[1]);
867                         break;
868                 }
869         }
870
871         bzero(&wa, sizeof wa);
872         for (i = 0; i < ScreenCount(display); i++)
873                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
874                         wa.border_pixel =
875                             screens[i].c[SWM_S_COLOR_BAR_BORDER].color;
876                         wa.background_pixel =
877                             screens[i].c[SWM_S_COLOR_BAR].color;
878                         XChangeWindowAttributes(display, r->bar_window,
879                             CWBackPixel | CWBorderPixel, &wa);
880                 }
881         bar_update();
882 }
883
884 void
885 bar_setup(struct swm_region *r)
886 {
887         int                     i;
888
889         for (i = 0; bar_fonts[i] != NULL; i++) {
890                 bar_fs = XLoadQueryFont(display, bar_fonts[i]);
891                 if (bar_fs) {
892                         bar_fidx = i;
893                         break;
894                 }
895         }
896         if (bar_fonts[i] == NULL)
897                         errx(1, "couldn't load font");
898         bar_height = bar_fs->ascent + bar_fs->descent + 3;
899
900         r->bar_window = XCreateSimpleWindow(display,
901             r->s->root, X(r), Y(r), WIDTH(r) - 2, bar_height - 2,
902             1, r->s->c[SWM_S_COLOR_BAR_BORDER].color,
903             r->s->c[SWM_S_COLOR_BAR].color);
904         bar_gc = XCreateGC(display, r->bar_window, 0, &bar_gcv);
905         XSetFont(display, bar_gc, bar_fs->fid);
906         XSelectInput(display, r->bar_window, VisibilityChangeMask);
907         if (bar_enabled)
908                 XMapRaised(display, r->bar_window);
909         DNPRINTF(SWM_D_MISC, "bar_setup: bar_window %lu\n", r->bar_window);
910
911         if (signal(SIGALRM, bar_signal) == SIG_ERR)
912                 err(1, "could not install bar_signal");
913         bar_refresh();
914 }
915
916 void
917 set_win_state(struct ws_win *win, long state)
918 {
919         long                    data[] = {state, None};
920
921         DNPRINTF(SWM_D_EVENT, "set_win_state: window: %lu\n", win->id);
922
923         XChangeProperty(display, win->id, astate, astate, 32, PropModeReplace,
924             (unsigned char *)data, 2);
925 }
926
927 long
928 getstate(Window w)
929 {
930         int                     format, status;
931         long                    result = -1;
932         unsigned char           *p = NULL;
933         unsigned long           n, extra;
934         Atom                    real;
935
936         status = XGetWindowProperty(display, w, astate, 0L, 2L, False, astate,
937             &real, &format, &n, &extra, (unsigned char **)&p);
938         if (status != Success)
939                 return (-1);
940         if (n != 0)
941                 result = *((long *)p);
942         XFree(p);
943         return (result);
944 }
945
946 void
947 version(struct swm_region *r, union arg *args)
948 {
949         bar_version = !bar_version;
950         if (bar_version)
951                 snprintf(bar_vertext, sizeof bar_vertext, "Version: %s CVS: %s",
952                     SWM_VERSION, cvstag);
953         else
954                 strlcpy(bar_vertext, "", sizeof bar_vertext);
955         bar_update();
956 }
957
958 void
959 client_msg(struct ws_win *win, Atom a)
960 {
961         XClientMessageEvent     cm;
962
963         bzero(&cm, sizeof cm);
964         cm.type = ClientMessage;
965         cm.window = win->id;
966         cm.message_type = aprot;
967         cm.format = 32;
968         cm.data.l[0] = a;
969         cm.data.l[1] = CurrentTime;
970         XSendEvent(display, win->id, False, 0L, (XEvent *)&cm);
971 }
972
973 void
974 config_win(struct ws_win *win)
975 {
976         XConfigureEvent         ce;
977
978         DNPRINTF(SWM_D_MISC, "config_win: win %lu x %d y %d w %d h %d\n",
979             win->id, win->g.x, win->g.y, win->g.w, win->g.h);
980         ce.type = ConfigureNotify;
981         ce.display = display;
982         ce.event = win->id;
983         ce.window = win->id;
984         ce.x = win->g.x;
985         ce.y = win->g.y;
986         ce.width = win->g.w;
987         ce.height = win->g.h;
988         ce.border_width = 1; /* XXX store this! */
989         ce.above = None;
990         ce.override_redirect = False;
991         XSendEvent(display, win->id, False, StructureNotifyMask, (XEvent *)&ce);
992 }
993
994 int
995 count_win(struct workspace *ws, int count_transient)
996 {
997         struct ws_win           *win;
998         int                     count = 0;
999
1000         TAILQ_FOREACH(win, &ws->winlist, entry) {
1001                 if (count_transient == 0 && win->floating)
1002                         continue;
1003                 if (count_transient == 0 && win->transient)
1004                         continue;
1005                 count++;
1006         }
1007         DNPRINTF(SWM_D_MISC, "count_win: %d\n", count);
1008
1009         return (count);
1010 }
1011
1012 void
1013 quit(struct swm_region *r, union arg *args)
1014 {
1015         DNPRINTF(SWM_D_MISC, "quit\n");
1016         running = 0;
1017 }
1018
1019 void
1020 unmap_window(struct ws_win *win)
1021 {
1022         if (win == NULL)
1023                 return;
1024
1025         set_win_state(win, IconicState);
1026         XUnmapWindow(display, win->id);
1027 }
1028
1029 void
1030 unmap_all(void)
1031 {
1032         struct ws_win           *win;
1033         int                     i, j;
1034
1035         for (i = 0; i < ScreenCount(display); i++)
1036                 for (j = 0; j < SWM_WS_MAX; j++)
1037                         TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
1038                                 unmap_window(win);
1039 }
1040
1041 void
1042 fake_keypress(struct ws_win *win, int keysym, int modifiers)
1043 {
1044         XKeyEvent event;
1045
1046         event.display = display;        /* Ignored, but what the hell */
1047         event.window = win->id;
1048         event.root = win->s->root;
1049         event.subwindow = None;
1050         event.time = CurrentTime;
1051         event.x = win->g.x;
1052         event.y = win->g.y;
1053         event.x_root = 1;
1054         event.y_root = 1;
1055         event.same_screen = True;
1056         event.keycode = XKeysymToKeycode(display, keysym);
1057         event.state = modifiers;
1058
1059         event.type = KeyPress;
1060         XSendEvent(event.display, event.window, True,
1061             KeyPressMask, (XEvent *)&event);
1062
1063         event.type = KeyRelease;
1064         XSendEvent(event.display, event.window, True,
1065             KeyPressMask, (XEvent *)&event);
1066
1067 }
1068
1069 void
1070 restart(struct swm_region *r, union arg *args)
1071 {
1072         DNPRINTF(SWM_D_MISC, "restart: %s\n", start_argv[0]);
1073
1074         /* disable alarm because the following code may not be interrupted */
1075         alarm(0);
1076         if (signal(SIGALRM, SIG_IGN) == SIG_ERR)
1077                 errx(1, "can't disable alarm");
1078
1079         bar_extra_stop();
1080         bar_extra = 1;
1081         unmap_all();
1082         XCloseDisplay(display);
1083         execvp(start_argv[0], start_argv);
1084         fprintf(stderr, "execvp failed\n");
1085         perror(" failed");
1086         quit(NULL, NULL);
1087 }
1088
1089 struct swm_region *
1090 root_to_region(Window root)
1091 {
1092         struct swm_region       *r = NULL;
1093         Window                  rr, cr;
1094         int                     i, x, y, wx, wy;
1095         unsigned int            mask;
1096
1097         for (i = 0; i < ScreenCount(display); i++)
1098                 if (screens[i].root == root)
1099                         break;
1100
1101         if (XQueryPointer(display, screens[i].root,
1102             &rr, &cr, &x, &y, &wx, &wy, &mask) != False) {
1103                 /* choose a region based on pointer location */
1104                 TAILQ_FOREACH(r, &screens[i].rl, entry)
1105                         if (x >= X(r) && x <= X(r) + WIDTH(r) &&
1106                             y >= Y(r) && y <= Y(r) + HEIGHT(r))
1107                                 break;
1108         }
1109
1110         if (r == NULL)
1111                 r = TAILQ_FIRST(&screens[i].rl);
1112
1113         return (r);
1114 }
1115
1116 struct ws_win *
1117 find_window(Window id)
1118 {
1119         struct ws_win           *win;
1120         int                     i, j;
1121
1122         for (i = 0; i < ScreenCount(display); i++)
1123                 for (j = 0; j < SWM_WS_MAX; j++)
1124                         TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
1125                                 if (id == win->id)
1126                                         return (win);
1127         return (NULL);
1128 }
1129
1130 void
1131 spawn(struct swm_region *r, union arg *args)
1132 {
1133         char                    *ret;
1134         int                     si;
1135
1136         DNPRINTF(SWM_D_MISC, "spawn: %s\n", args->argv[0]);
1137         /*
1138          * The double-fork construct avoids zombie processes and keeps the code
1139          * clean from stupid signal handlers.
1140          */
1141         if (fork() == 0) {
1142                 if (fork() == 0) {
1143                         if (display)
1144                                 close(ConnectionNumber(display));
1145                         setenv("LD_PRELOAD", SWM_LIB, 1);
1146                         if (asprintf(&ret, "%d", r->ws->idx)) {
1147                                 setenv("_SWM_WS", ret, 1);
1148                                 free(ret);
1149                         }
1150                         if (asprintf(&ret, "%d", getpid())) {
1151                                 setenv("_SWM_PID", ret, 1);
1152                                 free(ret);
1153                         }
1154                         setsid();
1155                         /* kill stdin, mplayer, ssh-add etc. need that */
1156                         si = open("/dev/null", O_RDONLY, 0);
1157                         if (si == -1)
1158                                 err(1, "open /dev/null");
1159                         if (dup2(si, 0) == -1)
1160                                 err(1, "dup2 /dev/null");
1161                         execvp(args->argv[0], args->argv);
1162                         fprintf(stderr, "execvp failed\n");
1163                         perror(" failed");
1164                 }
1165                 exit(0);
1166         }
1167         wait(0);
1168 }
1169
1170 void
1171 spawnterm(struct swm_region *r, union arg *args)
1172 {
1173         DNPRINTF(SWM_D_MISC, "spawnterm\n");
1174
1175         if (term_width)
1176                 setenv("_SWM_XTERM_FONTADJ", "", 1);
1177         spawn(r, args);
1178 }
1179
1180 void
1181 unfocus_win(struct ws_win *win)
1182 {
1183         if (win == NULL)
1184                 return;
1185
1186         if (win->ws->r == NULL)
1187                 return;
1188
1189         grabbuttons(win, 0);
1190         XSetWindowBorder(display, win->id,
1191             win->ws->r->s->c[SWM_S_COLOR_UNFOCUS].color);
1192
1193         if (win->ws->focus == win) {
1194                 win->ws->focus = NULL;
1195                 win->ws->focus_prev = win;
1196         }
1197 }
1198
1199 void
1200 unfocus_all(void)
1201 {
1202         struct ws_win           *win;
1203         int                     i, j;
1204
1205         DNPRINTF(SWM_D_FOCUS, "unfocus_all:\n");
1206
1207         for (i = 0; i < ScreenCount(display); i++)
1208                 for (j = 0; j < SWM_WS_MAX; j++)
1209                         TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
1210                                 unfocus_win(win);
1211         XSync(display, False);
1212 }
1213
1214 void
1215 focus_win(struct ws_win *win)
1216 {
1217         DNPRINTF(SWM_D_FOCUS, "focus_win: id: %lu\n", win ? win->id : 0);
1218
1219         if (win == NULL)
1220                 return;
1221
1222         /* use big hammer to make sure it works under all use cases */
1223         unfocus_all();
1224         win->ws->focus = win;
1225
1226         if (win->ws->r != NULL) {
1227                 XSetWindowBorder(display, win->id,
1228                     win->ws->r->s->c[SWM_S_COLOR_FOCUS].color);
1229                 grabbuttons(win, 1);
1230                 if (win->ws->cur_layout->flags & SWM_L_MAPONFOCUS)
1231                         XMapRaised(display, win->id);
1232                 XSetInputFocus(display, win->id,
1233                     RevertToPointerRoot, CurrentTime);
1234                 XSync(display, False);
1235         }
1236 }
1237
1238 void
1239 switchws(struct swm_region *r, union arg *args)
1240 {
1241         int                     wsid = args->id;
1242         struct swm_region       *this_r, *other_r;
1243         struct ws_win           *win, *winfocus = NULL;
1244         struct workspace        *new_ws, *old_ws;
1245
1246         this_r = r;
1247         old_ws = this_r->ws;
1248         new_ws = &this_r->s->ws[wsid];
1249
1250         DNPRINTF(SWM_D_WS, "switchws screen[%d]:%dx%d+%d+%d: "
1251             "%d -> %d\n", r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r),
1252             old_ws->idx, wsid);
1253
1254         if (new_ws == old_ws)
1255                 return;
1256
1257         /* get focus window */
1258         if (new_ws->focus)
1259                 winfocus = new_ws->focus;
1260         else if (new_ws->focus_prev)
1261                 winfocus = new_ws->focus_prev;
1262         else
1263                 winfocus = TAILQ_FIRST(&new_ws->winlist);
1264
1265         other_r = new_ws->r;
1266         if (other_r == NULL) {
1267                 /* if the other workspace is hidden, switch windows */
1268                 if (old_ws->r != NULL)
1269                         old_ws->old_r = old_ws->r;
1270                 old_ws->r = NULL;
1271                 old_ws->restack = 1;
1272
1273                 /*
1274                  * Map new windows first if they were here before
1275                  * to minimize ugly blinking.
1276                  */
1277                 if (new_ws->old_r == this_r)
1278                         TAILQ_FOREACH(win, &new_ws->winlist, entry)
1279                                 XMapRaised(display, win->id);
1280
1281                 TAILQ_FOREACH(win, &old_ws->winlist, entry)
1282                         unmap_window(win);
1283         } else {
1284                 other_r->ws = old_ws;
1285                 old_ws->r = other_r;
1286         }
1287         this_r->ws = new_ws;
1288         new_ws->r = this_r;
1289
1290         ignore_enter = 1;
1291         stack();
1292         focus_win(winfocus);
1293         bar_update();
1294 }
1295
1296 void
1297 cyclews(struct swm_region *r, union arg *args)
1298 {
1299         union                   arg a;
1300         struct swm_screen       *s = r->s;
1301
1302         DNPRINTF(SWM_D_WS, "cyclews id %d "
1303             "in screen[%d]:%dx%d+%d+%d ws %d\n", args->id,
1304             r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
1305
1306         a.id = r->ws->idx;
1307         do {
1308                 switch (args->id) {
1309                 case SWM_ARG_ID_CYCLEWS_UP:
1310                         if (a.id < SWM_WS_MAX - 1)
1311                                 a.id++;
1312                         else
1313                                 a.id = 0;
1314                         break;
1315                 case SWM_ARG_ID_CYCLEWS_DOWN:
1316                         if (a.id > 0)
1317                                 a.id--;
1318                         else
1319                                 a.id = SWM_WS_MAX - 1;
1320                         break;
1321                 default:
1322                         return;
1323                 };
1324
1325                 if (cycle_empty == 0 && TAILQ_EMPTY(&s->ws[a.id].winlist))
1326                         continue;
1327                 if (cycle_visible == 0 && s->ws[a.id].r != NULL)
1328                         continue;
1329
1330                 switchws(r, &a);
1331         } while (a.id != r->ws->idx);
1332 }
1333
1334 void
1335 cyclescr(struct swm_region *r, union arg *args)
1336 {
1337         struct swm_region       *rr;
1338         int                     i;
1339
1340         /* do nothing if we don't have more than one screen */
1341         if (!(ScreenCount(display) > 1 || outputs > 1))
1342                 return;
1343
1344         i = r->s->idx;
1345         switch (args->id) {
1346         case SWM_ARG_ID_CYCLESC_UP:
1347                 rr = TAILQ_NEXT(r, entry);
1348                 if (rr == NULL)
1349                         rr = TAILQ_FIRST(&screens[i].rl);
1350                 break;
1351         case SWM_ARG_ID_CYCLESC_DOWN:
1352                 rr = TAILQ_PREV(r, swm_region_list, entry);
1353                 if (rr == NULL)
1354                         rr = TAILQ_LAST(&screens[i].rl, swm_region_list);
1355                 break;
1356         default:
1357                 return;
1358         };
1359         unfocus_all();
1360         XSetInputFocus(display, PointerRoot, RevertToPointerRoot, CurrentTime);
1361         XWarpPointer(display, None, rr->s[i].root, 0, 0, 0, 0, rr->g.x,
1362             rr->g.y + bar_enabled ? bar_height : 0);
1363 }
1364
1365 void
1366 swapwin(struct swm_region *r, union arg *args)
1367 {
1368         struct ws_win           *target, *source;
1369         struct ws_win           *cur_focus;
1370         struct ws_win_list      *wl;
1371
1372
1373         DNPRINTF(SWM_D_WS, "swapwin id %d "
1374             "in screen %d region %dx%d+%d+%d ws %d\n", args->id,
1375             r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
1376
1377         cur_focus = r->ws->focus;
1378         if (cur_focus == NULL)
1379                 return;
1380
1381         source = cur_focus;
1382         wl = &source->ws->winlist;
1383
1384         switch (args->id) {
1385         case SWM_ARG_ID_SWAPPREV:
1386                 target = TAILQ_PREV(source, ws_win_list, entry);
1387                 TAILQ_REMOVE(wl, cur_focus, entry);
1388                 if (target == NULL)
1389                         TAILQ_INSERT_TAIL(wl, source, entry);
1390                 else
1391                         TAILQ_INSERT_BEFORE(target, source, entry);
1392                 break;
1393         case SWM_ARG_ID_SWAPNEXT:
1394                 target = TAILQ_NEXT(source, entry);
1395                 TAILQ_REMOVE(wl, source, entry);
1396                 if (target == NULL)
1397                         TAILQ_INSERT_HEAD(wl, source, entry);
1398                 else
1399                         TAILQ_INSERT_AFTER(wl, target, source, entry);
1400                 break;
1401         case SWM_ARG_ID_SWAPMAIN:
1402                 target = TAILQ_FIRST(wl);
1403                 if (target == source) {
1404                         if (source->ws->focus_prev != NULL &&
1405                             source->ws->focus_prev != target)
1406
1407                                 source = source->ws->focus_prev;
1408                         else
1409                                 return;
1410                 }
1411                 source->ws->focus_prev = target;
1412                 TAILQ_REMOVE(wl, target, entry);
1413                 TAILQ_INSERT_BEFORE(source, target, entry);
1414                 TAILQ_REMOVE(wl, source, entry);
1415                 TAILQ_INSERT_HEAD(wl, source, entry);
1416                 break;
1417         default:
1418                 DNPRINTF(SWM_D_MOVE, "invalid id: %d\n", args->id);
1419                 return;
1420         }
1421
1422         ignore_enter = 1;
1423         stack();
1424 }
1425
1426 void
1427 focus(struct swm_region *r, union arg *args)
1428 {
1429         struct ws_win           *winfocus, *winlostfocus;
1430         struct ws_win_list      *wl;
1431         struct ws_win           *cur_focus;
1432
1433         DNPRINTF(SWM_D_FOCUS, "focus: id %d\n", args->id);
1434
1435         cur_focus = r->ws->focus;
1436         if (cur_focus == NULL)
1437                 return;
1438
1439         wl = &cur_focus->ws->winlist;
1440
1441         winlostfocus = cur_focus;
1442
1443         switch (args->id) {
1444         case SWM_ARG_ID_FOCUSPREV:
1445                 winfocus = TAILQ_PREV(cur_focus, ws_win_list, entry);
1446                 if (winfocus == NULL)
1447                         winfocus = TAILQ_LAST(wl, ws_win_list);
1448                 break;
1449
1450         case SWM_ARG_ID_FOCUSNEXT:
1451                 winfocus = TAILQ_NEXT(cur_focus, entry);
1452                 if (winfocus == NULL)
1453                         winfocus = TAILQ_FIRST(wl);
1454                 break;
1455
1456         case SWM_ARG_ID_FOCUSMAIN:
1457                 winfocus = TAILQ_FIRST(wl);
1458                 if (winfocus == cur_focus)
1459                         winfocus = cur_focus->ws->focus_prev;
1460                 if (winfocus == NULL)
1461                         return;
1462                 break;
1463
1464         default:
1465                 return;
1466         }
1467
1468         if (winfocus == winlostfocus || winfocus == NULL)
1469                 return;
1470
1471         focus_win(winfocus);
1472 }
1473
1474 void
1475 cycle_layout(struct swm_region *r, union arg *args)
1476 {
1477         struct workspace        *ws = r->ws;
1478         struct ws_win           *winfocus;
1479
1480         DNPRINTF(SWM_D_EVENT, "cycle_layout: workspace: %d\n", ws->idx);
1481
1482         winfocus = ws->focus;
1483
1484         ws->cur_layout++;
1485         if (ws->cur_layout->l_stack == NULL)
1486                 ws->cur_layout = &layouts[0];
1487
1488         ignore_enter = 1;
1489         stack();
1490         focus_win(winfocus);
1491         ignore_enter = 0;
1492 }
1493
1494 void
1495 stack_config(struct swm_region *r, union arg *args)
1496 {
1497         struct workspace        *ws = r->ws;
1498
1499         DNPRINTF(SWM_D_STACK, "stack_config for workspace %d (id %d\n",
1500             args->id, ws->idx);
1501
1502         if (ws->cur_layout->l_config != NULL)
1503                 ws->cur_layout->l_config(ws, args->id);
1504
1505         if (args->id != SWM_ARG_ID_STACKINIT);
1506                 stack();
1507 }
1508
1509 void
1510 stack(void) {
1511         struct swm_geometry     g;
1512         struct swm_region       *r;
1513         int                     i, j;
1514
1515         DNPRINTF(SWM_D_STACK, "stack\n");
1516
1517         for (i = 0; i < ScreenCount(display); i++) {
1518                 j = 0;
1519                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
1520                         DNPRINTF(SWM_D_STACK, "stacking workspace %d "
1521                             "(screen %d, region %d)\n", r->ws->idx, i, j++);
1522
1523                         /* start with screen geometry, adjust for bar */
1524                         g = r->g;
1525                         g.w -= 2;
1526                         g.h -= 2;
1527                         if (bar_enabled) {
1528                                 g.y += bar_height;
1529                                 g.h -= bar_height;
1530                         }
1531
1532                         r->ws->restack = 0;
1533                         r->ws->cur_layout->l_stack(r->ws, &g);
1534                 }
1535         }
1536         if (font_adjusted)
1537                 font_adjusted--;
1538         XSync(display, False);
1539 }
1540
1541 void
1542 stack_floater(struct ws_win *win, struct swm_region *r)
1543 {
1544         unsigned int            mask;
1545         XWindowChanges          wc;
1546
1547         if (win == NULL)
1548                 return;
1549
1550         bzero(&wc, sizeof wc);
1551         mask = CWX | CWY | CWBorderWidth | CWWidth | CWHeight;
1552         if ((win->quirks & SWM_Q_FULLSCREEN) && (win->g.w == WIDTH(r)) &&
1553             (win->g.h == HEIGHT(r)))
1554                 wc.border_width = 0;
1555         else
1556                 wc.border_width = 1;
1557         if (win->transient && (win->quirks & SWM_Q_TRANSSZ)) {
1558                 win->g.w = (double)WIDTH(r) * dialog_ratio;
1559                 win->g.h = (double)HEIGHT(r) * dialog_ratio;
1560         }
1561         wc.width = win->g.w;
1562         wc.height = win->g.h;
1563         if (win->manual) {
1564                 wc.x = win->g.x;
1565                 wc.y = win->g.y;
1566         } else {
1567                 wc.x = (WIDTH(r) - win->g.w) / 2;
1568                 wc.y = (HEIGHT(r) - win->g.h) / 2;
1569         }
1570
1571         /* adjust for region */
1572         wc.x += r->g.x;
1573         wc.y += r->g.y;
1574
1575         DNPRINTF(SWM_D_STACK, "stack_floater: win %lu x %d y %d w %d h %d\n",
1576             win->id, wc.x, wc.y, wc.width, wc.height);
1577
1578         XConfigureWindow(display, win->id, mask, &wc);
1579 }
1580
1581 /*
1582  * Send keystrokes to terminal to decrease/increase the font size as the
1583  * window size changes.
1584  */
1585 void
1586 adjust_font(struct ws_win *win)
1587 {
1588         if (!(win->quirks & SWM_Q_XTERM_FONTADJ) ||
1589             win->floating || win->transient)
1590                 return;
1591
1592         if (win->sh.width_inc && win->last_inc != win->sh.width_inc &&
1593             win->g.w / win->sh.width_inc < term_width &&
1594             win->font_steps < SWM_MAX_FONT_STEPS) {
1595                 win->font_size_boundary[win->font_steps] =
1596                     (win->sh.width_inc * term_width) + win->sh.base_width;
1597                 win->font_steps++;
1598                 font_adjusted++;
1599                 win->last_inc = win->sh.width_inc;
1600                 fake_keypress(win, XK_KP_Subtract, ShiftMask);
1601         } else if (win->font_steps && win->last_inc != win->sh.width_inc &&
1602             win->g.w > win->font_size_boundary[win->font_steps - 1]) {
1603                 win->font_steps--;
1604                 font_adjusted++;
1605                 win->last_inc = win->sh.width_inc;
1606                 fake_keypress(win, XK_KP_Add, ShiftMask);
1607         }
1608 }
1609
1610 #define SWAPXY(g)       do {                            \
1611         int tmp;                                        \
1612         tmp = (g)->y; (g)->y = (g)->x; (g)->x = tmp;    \
1613         tmp = (g)->h; (g)->h = (g)->w; (g)->w = tmp;    \
1614 } while (0)
1615 void
1616 stack_master(struct workspace *ws, struct swm_geometry *g, int rot, int flip)
1617 {
1618         XWindowChanges          wc;
1619         struct swm_geometry     win_g, r_g = *g;
1620         struct ws_win           *win;
1621         int                     i, j, s, stacks;
1622         int                     w_inc = 1, h_inc, w_base = 1, h_base;
1623         int                     hrh, extra = 0, h_slice, last_h = 0;
1624         int                     split, colno, winno, mwin, msize, mscale;
1625         int                     remain, missing, v_slice;
1626         unsigned int            mask;
1627
1628         DNPRINTF(SWM_D_STACK, "stack_master: workspace: %d\n rot=%s flip=%s",
1629             ws->idx, rot ? "yes" : "no", flip ? "yes" : "no");
1630
1631         winno = count_win(ws, 0);
1632         if (winno == 0 && count_win(ws, 1) == 0)
1633                 return;
1634
1635         TAILQ_FOREACH(win, &ws->winlist, entry)
1636                 if (win->transient == 0 && win->floating == 0)
1637                         break;
1638
1639         if (win == NULL)
1640                 goto notiles;
1641
1642         if (rot) {
1643                 w_inc = win->sh.width_inc;
1644                 w_base = win->sh.base_width;
1645                 mwin = ws->l_state.horizontal_mwin;
1646                 mscale = ws->l_state.horizontal_msize;
1647                 stacks = ws->l_state.horizontal_stacks;
1648                 SWAPXY(&r_g);
1649         } else {
1650                 w_inc = win->sh.height_inc;
1651                 w_base = win->sh.base_height;
1652                 mwin = ws->l_state.vertical_mwin;
1653                 mscale = ws->l_state.vertical_msize;
1654                 stacks = ws->l_state.vertical_stacks;
1655         }
1656         win_g = r_g;
1657
1658         if (stacks > winno - mwin)
1659                 stacks = winno - mwin;
1660         if (stacks < 1)
1661                 stacks = 1;
1662
1663         h_slice = r_g.h / SWM_H_SLICE;
1664         if (mwin && winno > mwin) {
1665                 v_slice = r_g.w / SWM_V_SLICE;
1666
1667                 split = mwin;
1668                 colno = split;
1669                 win_g.w = v_slice * mscale;
1670
1671                 if (w_inc > 1 && w_inc < v_slice) {
1672                         /* adjust for window's requested size increment */
1673                         remain = (win_g.w - w_base) % w_inc;
1674                         missing = w_inc - remain;
1675                         win_g.w -= remain;
1676                         extra += remain;
1677                 }
1678
1679                 msize = win_g.w;
1680                 if (flip)
1681                         win_g.x += r_g.w - msize;
1682         } else {
1683                 msize = -2;
1684                 colno = split = winno / stacks;
1685                 win_g.w = ((r_g.w - (stacks * 2) + 2) / stacks);
1686         }
1687         hrh = r_g.h / colno;
1688         extra = r_g.h - (colno * hrh);
1689         win_g.h = hrh - 2;
1690
1691         /*  stack all the tiled windows */
1692         i = j = 0, s = stacks;
1693         TAILQ_FOREACH(win, &ws->winlist, entry) {
1694                 if (win->transient != 0 || win->floating != 0)
1695                         continue;
1696
1697                 if (split && i == split) {
1698                         colno = (winno - mwin) / stacks;
1699                         if (s <= (winno - mwin) % stacks)
1700                                 colno++;
1701                         split = split + colno;
1702                         hrh = (r_g.h / colno);
1703                         extra = r_g.h - (colno * hrh);
1704                         if (flip)
1705                                 win_g.x = r_g.x;
1706                         else
1707                                 win_g.x += win_g.w + 2;
1708                         win_g.w = (r_g.w - msize - (stacks * 2)) / stacks;
1709                         if (s == 1)
1710                                 win_g.w += (r_g.w - msize - (stacks * 2)) %
1711                                     stacks;
1712                         s--;
1713                         j = 0;
1714                 }
1715                 win_g.h = hrh - 2;
1716                 if (rot) {
1717                         h_inc = win->sh.width_inc;
1718                         h_base = win->sh.base_width;
1719                 } else {
1720                         h_inc = win->sh.height_inc;
1721                         h_base = win->sh.base_height;
1722                 }
1723                 if (j == colno - 1) {
1724                         win_g.h = hrh + extra;
1725                 } else if (h_inc > 1 && h_inc < h_slice) {
1726                         /* adjust for window's requested size increment */
1727                         remain = (win_g.h - h_base) % h_inc;
1728                         missing = h_inc - remain;
1729
1730                         if (missing <= extra || j == 0) {
1731                                 extra -= missing;
1732                                 win_g.h += missing;
1733                         } else {
1734                                 win_g.h -= remain;
1735                                 extra += remain;
1736                         }
1737                 }
1738
1739                 if (j == 0)
1740                         win_g.y = r_g.y;
1741                 else
1742                         win_g.y += last_h + 2;
1743
1744                 bzero(&wc, sizeof wc);
1745                 wc.border_width = 1;
1746                 if (rot) {
1747                         win->g.x = wc.x = win_g.y;
1748                         win->g.y = wc.y = win_g.x;
1749                         win->g.w = wc.width = win_g.h;
1750                         win->g.h = wc.height = win_g.w;
1751                 } else {
1752                         win->g.x = wc.x = win_g.x;
1753                         win->g.y = wc.y = win_g.y;
1754                         win->g.w = wc.width = win_g.w;
1755                         win->g.h = wc.height = win_g.h;
1756                 }
1757                 adjust_font(win);
1758                 mask = CWX | CWY | CWWidth | CWHeight | CWBorderWidth;
1759                 XConfigureWindow(display, win->id, mask, &wc);
1760                 XMapRaised(display, win->id);
1761
1762                 last_h = win_g.h;
1763                 i++;
1764                 j++;
1765         }
1766
1767  notiles:
1768         /* now, stack all the floaters and transients */
1769         TAILQ_FOREACH(win, &ws->winlist, entry) {
1770                 if (win->transient == 0 && win->floating == 0)
1771                         continue;
1772
1773                 stack_floater(win, ws->r);
1774                 XMapRaised(display, win->id);
1775         }
1776 }
1777
1778 void
1779 vertical_config(struct workspace *ws, int id)
1780 {
1781         DNPRINTF(SWM_D_STACK, "vertical_resize: workspace: %d\n", ws->idx);
1782
1783         switch (id) {
1784         case SWM_ARG_ID_STACKRESET:
1785         case SWM_ARG_ID_STACKINIT:
1786                 ws->l_state.vertical_msize = SWM_V_SLICE / 2;
1787                 ws->l_state.vertical_mwin = 1;
1788                 ws->l_state.vertical_stacks = 1;
1789                 break;
1790         case SWM_ARG_ID_MASTERSHRINK:
1791                 if (ws->l_state.vertical_msize > 1)
1792                         ws->l_state.vertical_msize--;
1793                 break;
1794         case SWM_ARG_ID_MASTERGROW:
1795                 if (ws->l_state.vertical_msize < SWM_V_SLICE - 1)
1796                         ws->l_state.vertical_msize++;
1797                 break;
1798         case SWM_ARG_ID_MASTERADD:
1799                 ws->l_state.vertical_mwin++;
1800                 break;
1801         case SWM_ARG_ID_MASTERDEL:
1802                 if (ws->l_state.vertical_mwin > 0)
1803                         ws->l_state.vertical_mwin--;
1804                 break;
1805         case SWM_ARG_ID_STACKINC:
1806                 ws->l_state.vertical_stacks++;
1807                 break;
1808         case SWM_ARG_ID_STACKDEC:
1809                 if (ws->l_state.vertical_stacks > 1)
1810                         ws->l_state.vertical_stacks--;
1811                 break;
1812         default:
1813                 return;
1814         }
1815 }
1816
1817 void
1818 vertical_stack(struct workspace *ws, struct swm_geometry *g)
1819 {
1820         DNPRINTF(SWM_D_STACK, "vertical_stack: workspace: %d\n", ws->idx);
1821
1822         stack_master(ws, g, 0, 0);
1823 }
1824
1825 void
1826 horizontal_config(struct workspace *ws, int id)
1827 {
1828         DNPRINTF(SWM_D_STACK, "horizontal_config: workspace: %d\n", ws->idx);
1829
1830         switch (id) {
1831         case SWM_ARG_ID_STACKRESET:
1832         case SWM_ARG_ID_STACKINIT:
1833                 ws->l_state.horizontal_mwin = 1;
1834                 ws->l_state.horizontal_msize = SWM_H_SLICE / 2;
1835                 ws->l_state.horizontal_stacks = 1;
1836                 break;
1837         case SWM_ARG_ID_MASTERSHRINK:
1838                 if (ws->l_state.horizontal_msize > 1)
1839                         ws->l_state.horizontal_msize--;
1840                 break;
1841         case SWM_ARG_ID_MASTERGROW:
1842                 if (ws->l_state.horizontal_msize < SWM_H_SLICE - 1)
1843                         ws->l_state.horizontal_msize++;
1844                 break;
1845         case SWM_ARG_ID_MASTERADD:
1846                 ws->l_state.horizontal_mwin++;
1847                 break;
1848         case SWM_ARG_ID_MASTERDEL:
1849                 if (ws->l_state.horizontal_mwin > 0)
1850                         ws->l_state.horizontal_mwin--;
1851                 break;
1852         case SWM_ARG_ID_STACKINC:
1853                 ws->l_state.horizontal_stacks++;
1854                 break;
1855         case SWM_ARG_ID_STACKDEC:
1856                 if (ws->l_state.horizontal_stacks > 1)
1857                         ws->l_state.horizontal_stacks--;
1858                 break;
1859         default:
1860                 return;
1861         }
1862 }
1863
1864 void
1865 horizontal_stack(struct workspace *ws, struct swm_geometry *g)
1866 {
1867         DNPRINTF(SWM_D_STACK, "vertical_stack: workspace: %d\n", ws->idx);
1868
1869         stack_master(ws, g, 1, 0);
1870 }
1871
1872 /* fullscreen view */
1873 void
1874 max_stack(struct workspace *ws, struct swm_geometry *g)
1875 {
1876         XWindowChanges          wc;
1877         struct swm_geometry     gg = *g;
1878         struct ws_win           *win, *wintrans = NULL;
1879         unsigned int            mask;
1880         int                     winno;
1881
1882         DNPRINTF(SWM_D_STACK, "max_stack: workspace: %d\n", ws->idx);
1883
1884         if (ws == NULL)
1885                 return;
1886
1887         winno = count_win(ws, 0);
1888         if (winno == 0 && count_win(ws, 1) == 0)
1889                 return;
1890
1891         TAILQ_FOREACH(win, &ws->winlist, entry) {
1892                 if (win->transient != 0) {
1893                         wintrans = win;
1894                 } else {
1895                         bzero(&wc, sizeof wc);
1896                         wc.border_width = 1;
1897                         win->g.x = wc.x = gg.x;
1898                         win->g.y = wc.y = gg.y;
1899                         win->g.w = wc.width = gg.w;
1900                         win->g.h = wc.height = gg.h;
1901                         mask = CWX | CWY | CWWidth | CWHeight | CWBorderWidth;
1902                         XConfigureWindow(display, win->id, mask, &wc);
1903                         if (win != ws->focus)
1904                                 unmap_window(win);
1905                 }
1906         }
1907
1908         /* put the last transient on top */
1909         if (wintrans) {
1910                 stack_floater(wintrans, ws->r);
1911                 focus_win(wintrans); /* override */
1912         }
1913 }
1914
1915 void
1916 send_to_ws(struct swm_region *r, union arg *args)
1917 {
1918         int                     wsid = args->id;
1919         struct ws_win           *win = win, *winfocus = NULL;
1920         struct workspace        *ws, *nws;
1921         Atom                    ws_idx_atom = 0;
1922         unsigned char           ws_idx_str[SWM_PROPLEN];
1923
1924         if (r && r->ws)
1925                 win = r->ws->focus;
1926         else
1927                 return;
1928         if (win == NULL)
1929                 return;
1930
1931         DNPRINTF(SWM_D_MOVE, "send_to_ws: win: %lu\n", win->id);
1932
1933         ws = win->ws;
1934         nws = &win->s->ws[wsid];
1935
1936         /* find a window to focus */
1937         winfocus = TAILQ_PREV(win, ws_win_list, entry);
1938         if (TAILQ_FIRST(&ws->winlist) == win)
1939                 winfocus = TAILQ_NEXT(win, entry);
1940         else {
1941                 winfocus = TAILQ_PREV(win, ws_win_list, entry);
1942                 if (winfocus == NULL)
1943                         winfocus = TAILQ_LAST(&ws->winlist, ws_win_list);
1944         }
1945         /* out of windows in ws so focus on nws instead if we multi screen */
1946         if (winfocus == NULL)
1947                 if (ScreenCount(display) > 1 || outputs > 1)
1948                         winfocus = win;
1949
1950
1951         unmap_window(win);
1952         TAILQ_REMOVE(&ws->winlist, win, entry);
1953         TAILQ_INSERT_TAIL(&nws->winlist, win, entry);
1954         win->ws = nws;
1955
1956         /* Try to update the window's workspace property */
1957         ws_idx_atom = XInternAtom(display, "_SWM_WS", False);
1958         if (ws_idx_atom &&
1959             snprintf(ws_idx_str, SWM_PROPLEN, "%d", nws->idx) < SWM_PROPLEN) {
1960                 DNPRINTF(SWM_D_PROP, "setting property _SWM_WS to %s\n",
1961                     ws_idx_str);
1962                 XChangeProperty(display, win->id, ws_idx_atom, XA_STRING, 8,
1963                     PropModeReplace, ws_idx_str, SWM_PROPLEN);
1964         }
1965
1966         if (count_win(nws, 1) == 1)
1967                 nws->focus = win;
1968         ws->restack = 1;
1969         nws->restack = 1;
1970
1971         stack();
1972         if (winfocus)
1973                 focus_win(winfocus);
1974 }
1975
1976 void
1977 wkill(struct swm_region *r, union arg *args)
1978 {
1979         DNPRINTF(SWM_D_MISC, "wkill %d\n", args->id);
1980
1981         if(r->ws->focus == NULL)
1982                 return;
1983
1984         if (args->id == SWM_ARG_ID_KILLWINDOW)
1985                 XKillClient(display, r->ws->focus->id);
1986         else
1987                 if (r->ws->focus->can_delete)
1988                         client_msg(r->ws->focus, adelete);
1989 }
1990
1991 void
1992 floating_toggle(struct swm_region *r, union arg *args)
1993 {
1994         struct ws_win   *win = r->ws->focus;
1995
1996         if (win == NULL)
1997                 return;
1998
1999         win->floating = !win->floating;
2000         win->manual = 0;
2001         stack();
2002         focus_win(win);
2003 }
2004
2005 void
2006 resize_window(struct ws_win *win, int center)
2007 {
2008         unsigned int            mask;
2009         XWindowChanges          wc;
2010         struct swm_region       *r;
2011
2012         r = root_to_region(win->wa.root);
2013         bzero(&wc, sizeof wc);
2014         mask = CWBorderWidth | CWWidth | CWHeight;
2015         wc.border_width = 1;
2016         wc.width = win->g.w;
2017         wc.height = win->g.h;
2018         if (center == SWM_ARG_ID_CENTER) {
2019                 wc.x = (WIDTH(r) - win->g.w) / 2;
2020                 wc.y = (HEIGHT(r) - win->g.h) / 2;
2021                 mask |= CWX | CWY;
2022         }
2023
2024         DNPRINTF(SWM_D_STACK, "resize_window: win %lu x %d y %d w %d h %d\n",
2025             win->id, wc.x, wc.y, wc.width, wc.height);
2026
2027         XConfigureWindow(display, win->id, mask, &wc);
2028         config_win(win);
2029 }
2030
2031 void
2032 resize(struct ws_win *win, union arg *args)
2033 {
2034         XEvent                  ev;
2035         Time                    time = 0;
2036
2037         DNPRINTF(SWM_D_MOUSE, "resize: win %lu floating %d trans %d\n",
2038             win->id, win->floating, win->transient);
2039
2040         if (!(win->transient != 0 || win->floating != 0))
2041                 return;
2042
2043         if (XGrabPointer(display, win->id, False, MOUSEMASK, GrabModeAsync,
2044             GrabModeAsync, None, None /* cursor */, CurrentTime) != GrabSuccess)
2045                 return;
2046         XWarpPointer(display, None, win->id, 0, 0, 0, 0, win->g.w, win->g.h);
2047         do {
2048                 XMaskEvent(display, MOUSEMASK | ExposureMask |
2049                     SubstructureRedirectMask, &ev);
2050                 switch(ev.type) {
2051                 case ConfigureRequest:
2052                 case Expose:
2053                 case MapRequest:
2054                         handler[ev.type](&ev);
2055                         break;
2056                 case MotionNotify:
2057                         if (ev.xmotion.x <= 1)
2058                                 ev.xmotion.x = 1;
2059                         if (ev.xmotion.y <= 1)
2060                                 ev.xmotion.y = 1;
2061                         win->g.w = ev.xmotion.x;
2062                         win->g.h = ev.xmotion.y;
2063
2064                         /* not free, don't sync more than 60 times / second */
2065                         if ((ev.xmotion.time - time) > (1000 / 60) ) {
2066                                 time = ev.xmotion.time;
2067                                 XSync(display, False);
2068                                 resize_window(win, args->id);
2069                         }
2070                         break;
2071                 }
2072         } while (ev.type != ButtonRelease);
2073         if (time) {
2074                 XSync(display, False);
2075                 resize_window(win, args->id);
2076         }
2077         XWarpPointer(display, None, win->id, 0, 0, 0, 0, win->g.w - 1,
2078             win->g.h - 1);
2079         XUngrabPointer(display, CurrentTime);
2080
2081         /* drain events */
2082         while (XCheckMaskEvent(display, EnterWindowMask, &ev));
2083 }
2084
2085 void
2086 move_window(struct ws_win *win)
2087 {
2088         unsigned int            mask;
2089         XWindowChanges          wc;
2090         struct swm_region       *r;
2091
2092         r = root_to_region(win->wa.root);
2093         bzero(&wc, sizeof wc);
2094         mask = CWX | CWY;
2095         wc.x = win->g.x;
2096         wc.y = win->g.y;
2097
2098         DNPRINTF(SWM_D_STACK, "move_window: win %lu x %d y %d w %d h %d\n",
2099             win->id, wc.x, wc.y, wc.width, wc.height);
2100
2101         XConfigureWindow(display, win->id, mask, &wc);
2102         config_win(win);
2103 }
2104
2105 void
2106 move(struct ws_win *win, union arg *args)
2107 {
2108         XEvent                  ev;
2109         Time                    time = 0;
2110         int                     restack = 0;
2111
2112         DNPRINTF(SWM_D_MOUSE, "move: win %lu floating %d trans %d\n",
2113             win->id, win->floating, win->transient);
2114
2115         if (win->floating == 0) {
2116                 win->floating = 1;
2117                 win->manual = 1;
2118                 restack = 1;
2119         }
2120
2121         if (XGrabPointer(display, win->id, False, MOUSEMASK, GrabModeAsync,
2122             GrabModeAsync, None, None /* cursor */, CurrentTime) != GrabSuccess)
2123                 return;
2124         XWarpPointer(display, None, win->id, 0, 0, 0, 0, 0, 0);
2125         do {
2126                 XMaskEvent(display, MOUSEMASK | ExposureMask |
2127                     SubstructureRedirectMask, &ev);
2128                 switch(ev.type) {
2129                 case ConfigureRequest:
2130                 case Expose:
2131                 case MapRequest:
2132                         handler[ev.type](&ev);
2133                         break;
2134                 case MotionNotify:
2135                         win->g.x = ev.xmotion.x_root;
2136                         win->g.y = ev.xmotion.y_root;
2137
2138                         /* not free, don't sync more than 60 times / second */
2139                         if ((ev.xmotion.time - time) > (1000 / 60) ) {
2140                                 time = ev.xmotion.time;
2141                                 XSync(display, False);
2142                                 move_window(win);
2143                         }
2144                         break;
2145                 }
2146         } while (ev.type != ButtonRelease);
2147         if (time) {
2148                 XSync(display, False);
2149                 move_window(win);
2150         }
2151         XWarpPointer(display, None, win->id, 0, 0, 0, 0, 0, 0);
2152         XUngrabPointer(display, CurrentTime);
2153         if (restack)
2154                 stack();
2155
2156         /* drain events */
2157         while (XCheckMaskEvent(display, EnterWindowMask, &ev));
2158 }
2159
2160 /* key definitions */
2161 void
2162 dummykeyfunc(struct swm_region *r, union arg *args)
2163 {
2164 };
2165
2166 void
2167 legacyfunc(struct swm_region *r, union arg *args)
2168 {
2169 };
2170
2171 struct keyfunc {
2172         char                    name[SWM_FUNCNAME_LEN];
2173         void                    (*func)(struct swm_region *r, union arg *);
2174         union arg               args;
2175 } keyfuncs[kf_invalid + 1] = {
2176         /* name                 function        argument */
2177         { "cycle_layout",       cycle_layout,   {0} },
2178         { "stack_reset",        stack_config,   {.id = SWM_ARG_ID_STACKRESET} },
2179         { "master_shrink",      stack_config,   {.id = SWM_ARG_ID_MASTERSHRINK} },
2180         { "master_grow",        stack_config,   {.id = SWM_ARG_ID_MASTERGROW} },
2181         { "master_add",         stack_config,   {.id = SWM_ARG_ID_MASTERADD} },
2182         { "master_del",         stack_config,   {.id = SWM_ARG_ID_MASTERDEL} },
2183         { "stack_inc",          stack_config,   {.id = SWM_ARG_ID_STACKINC} },
2184         { "stack_dec",          stack_config,   {.id = SWM_ARG_ID_STACKDEC} },
2185         { "swap_main",          swapwin,        {.id = SWM_ARG_ID_SWAPMAIN} },
2186         { "focus_next",         focus,          {.id = SWM_ARG_ID_FOCUSNEXT} },
2187         { "focus_prev",         focus,          {.id = SWM_ARG_ID_FOCUSPREV} },
2188         { "swap_next",          swapwin,        {.id = SWM_ARG_ID_SWAPNEXT} },
2189         { "swap_prev",          swapwin,        {.id = SWM_ARG_ID_SWAPPREV} },
2190         { "spawn_term",         spawnterm,      {.argv = spawn_term} },
2191         { "spawn_menu",         legacyfunc,     {0} },
2192         { "quit",               quit,           {0} },
2193         { "restart",            restart,        {0} },
2194         { "focus_main",         focus,          {.id = SWM_ARG_ID_FOCUSMAIN} },
2195         { "ws_1",               switchws,       {.id = 0} },
2196         { "ws_2",               switchws,       {.id = 1} },
2197         { "ws_3",               switchws,       {.id = 2} },
2198         { "ws_4",               switchws,       {.id = 3} },
2199         { "ws_5",               switchws,       {.id = 4} },
2200         { "ws_6",               switchws,       {.id = 5} },
2201         { "ws_7",               switchws,       {.id = 6} },
2202         { "ws_8",               switchws,       {.id = 7} },
2203         { "ws_9",               switchws,       {.id = 8} },
2204         { "ws_10",              switchws,       {.id = 9} },
2205         { "ws_next",            cyclews,        {.id = SWM_ARG_ID_CYCLEWS_UP} },
2206         { "ws_prev",            cyclews,        {.id = SWM_ARG_ID_CYCLEWS_DOWN} },
2207         { "screen_next",        cyclescr,       {.id = SWM_ARG_ID_CYCLESC_UP} },
2208         { "screen_prev",        cyclescr,       {.id = SWM_ARG_ID_CYCLESC_DOWN} },
2209         { "mvws_1",             send_to_ws,     {.id = 0} },
2210         { "mvws_2",             send_to_ws,     {.id = 1} },
2211         { "mvws_3",             send_to_ws,     {.id = 2} },
2212         { "mvws_4",             send_to_ws,     {.id = 3} },
2213         { "mvws_5",             send_to_ws,     {.id = 4} },
2214         { "mvws_6",             send_to_ws,     {.id = 5} },
2215         { "mvws_7",             send_to_ws,     {.id = 6} },
2216         { "mvws_8",             send_to_ws,     {.id = 7} },
2217         { "mvws_9",             send_to_ws,     {.id = 8} },
2218         { "mvws_10",            send_to_ws,     {.id = 9} },
2219         { "bar_toggle",         bar_toggle,     {0} },
2220         { "wind_kill",          wkill,          {.id = SWM_ARG_ID_KILLWINDOW} },
2221         { "wind_del",           wkill,          {.id = SWM_ARG_ID_DELETEWINDOW} },
2222         { "screenshot_all",     legacyfunc,     {0} },
2223         { "screenshot_wind",    legacyfunc,     {0} },
2224         { "float_toggle",       floating_toggle,{0} },
2225         { "version",            version,        {0} },
2226         { "spawn_lock",         legacyfunc,     {0} },
2227         { "spawn_initscr",      legacyfunc,     {0} },
2228         { "spawn_custom",       dummykeyfunc,   {0} },
2229         { "invalid key func",   NULL,           {0} },
2230 };
2231 struct key {
2232         unsigned int            mod;
2233         KeySym                  keysym;
2234         enum keyfuncid          funcid;
2235         char                    *spawn_name;
2236 };
2237 int                             keys_size = 0, keys_length = 0;
2238 struct key                      *keys = NULL;
2239
2240 /* mouse */
2241 enum { client_click, root_click };
2242 struct button {
2243         unsigned int            action;
2244         unsigned int            mask;
2245         unsigned int            button;
2246         void                    (*func)(struct ws_win *, union arg *);
2247         union arg               args;
2248 } buttons[] = {
2249           /* action     key             mouse button    func    args */
2250         { client_click, MODKEY,         Button3,        resize, {.id = SWM_ARG_ID_DONTCENTER} },
2251         { client_click, MODKEY | ShiftMask, Button3,    resize, {.id = SWM_ARG_ID_CENTER} },
2252         { client_click, MODKEY,         Button1,        move,   {0} },
2253 };
2254
2255 void
2256 update_modkey(unsigned int mod)
2257 {
2258         int                     i;
2259
2260         mod_key = mod;
2261         for (i = 0; i < keys_length; i++)
2262                 if (keys[i].mod & ShiftMask)
2263                         keys[i].mod = mod | ShiftMask;
2264                 else
2265                         keys[i].mod = mod;
2266
2267         for (i = 0; i < LENGTH(buttons); i++)
2268                 if (buttons[i].mask & ShiftMask)
2269                         buttons[i].mask = mod | ShiftMask;
2270                 else
2271                         buttons[i].mask = mod;
2272 }
2273
2274 /* spawn */
2275 struct spawn_prog {
2276         char                    *name;
2277         int                     argc;
2278         char                    **argv;
2279 };
2280
2281 int                             spawns_size = 0, spawns_length = 0;
2282 struct spawn_prog               *spawns = NULL;
2283
2284 void
2285 spawn_custom(struct swm_region *r, union arg *args, char *spawn_name)
2286 {
2287         union arg               a;
2288         struct spawn_prog       *prog = NULL;
2289         int                     i;
2290         char                    *ap, **real_args;
2291
2292         DNPRINTF(SWM_D_SPAWN, "spawn_custom %s\n", spawn_name);
2293
2294         /* find program */
2295         for (i = 0; i < spawns_length; i++) {
2296                 if (!strcasecmp(spawn_name, spawns[i].name))
2297                         prog = &spawns[i];
2298         }
2299         if (prog == NULL) {
2300                 fprintf(stderr, "spawn_custom: program %s not found\n",
2301                     spawn_name);
2302                 return;
2303         }
2304
2305         /* make room for expanded args */
2306         if ((real_args = calloc(prog->argc + 1, sizeof(char *))) == NULL)
2307                 err(1, "spawn_custom: calloc real_args");
2308
2309         /* expand spawn_args into real_args */
2310         for (i = 0; i < prog->argc; i++) {
2311                 ap = prog->argv[i];
2312                 DNPRINTF(SWM_D_SPAWN, "spawn_custom: raw arg = %s\n", ap);
2313                 if (!strcasecmp(ap, "$bar_border")) {
2314                         if ((real_args[i] =
2315                             strdup(r->s->c[SWM_S_COLOR_BAR_BORDER].name))
2316                             == NULL)
2317                                 err(1,  "spawn_custom border color");
2318                 } else if (!strcasecmp(ap, "$bar_color")) {
2319                         if ((real_args[i] =
2320                             strdup(r->s->c[SWM_S_COLOR_BAR].name))
2321                             == NULL)
2322                                 err(1, "spawn_custom bar color");
2323                 } else if (!strcasecmp(ap, "$bar_font")) {
2324                         if ((real_args[i] = strdup(bar_fonts[bar_fidx]))
2325                             == NULL)
2326                                 err(1, "spawn_custom bar fonts");
2327                 } else if (!strcasecmp(ap, "$bar_font_color")) {
2328                         if ((real_args[i] =
2329                             strdup(r->s->c[SWM_S_COLOR_BAR_FONT].name))
2330                             == NULL)
2331                                 err(1, "spawn_custom color font");
2332                 } else if (!strcasecmp(ap, "$color_focus")) {
2333                         if ((real_args[i] =
2334                             strdup(r->s->c[SWM_S_COLOR_FOCUS].name))
2335                             == NULL)
2336                                 err(1, "spawn_custom color focus");
2337                 } else if (!strcasecmp(ap, "$color_unfocus")) {
2338                         if ((real_args[i] =
2339                             strdup(r->s->c[SWM_S_COLOR_UNFOCUS].name))
2340                             == NULL)
2341                                 err(1, "spawn_custom color unfocus");
2342                 } else {
2343                         /* no match --> copy as is */
2344                         if ((real_args[i] = strdup(ap)) == NULL)
2345                                 err(1, "spawn_custom strdup(ap)");
2346                 }
2347                 DNPRINTF(SWM_D_SPAWN, "spawn_custom: cooked arg = %s\n",
2348                     real_args[i]);
2349         }
2350
2351 #ifdef SWM_DEBUG
2352         if ((swm_debug & SWM_D_SPAWN) != 0) {
2353                 fprintf(stderr, "spawn_custom: result = ");
2354                 for (i = 0; i < prog->argc; i++)
2355                         fprintf(stderr, "\"%s\" ", real_args[i]);
2356                 fprintf(stderr, "\n");
2357         }
2358 #endif
2359
2360         a.argv = real_args;
2361         spawn(r, &a);
2362         for (i = 0; i < prog->argc; i++)
2363                 free(real_args[i]);
2364         free(real_args);
2365 }
2366
2367 void
2368 setspawn(struct spawn_prog *prog)
2369 {
2370         int                     i, j;
2371
2372         if (prog == NULL || prog->name == NULL)
2373                 return;
2374
2375         /* find existing */
2376         for (i = 0; i < spawns_length; i++) {
2377                 if (!strcmp(spawns[i].name, prog->name)) {
2378                         /* found */
2379                         if (prog->argv == NULL) {
2380                                 /* delete */
2381                                 DNPRINTF(SWM_D_SPAWN,
2382                                     "setspawn: delete #%d %s\n",
2383                                     i, spawns[i].name);
2384                                 free(spawns[i].name);
2385                                 for (j = 0; j < spawns[i].argc; j++)
2386                                         free(spawns[i].argv[j]);
2387                                 free(spawns[i].argv);
2388                                 j = spawns_length - 1;
2389                                 if (i < j)
2390                                         spawns[i] = spawns[j];
2391                                 spawns_length--;
2392                                 free(prog->name);
2393                         } else {
2394                                 /* replace */
2395                                 DNPRINTF(SWM_D_SPAWN,
2396                                     "setspawn: replace #%d %s\n",
2397                                     i, spawns[i].name);
2398                                 free(spawns[i].name);
2399                                 for (j = 0; j < spawns[i].argc; j++)
2400                                         free(spawns[i].argv[j]);
2401                                 free(spawns[i].argv);
2402                                 spawns[i] = *prog;
2403                         }
2404                         /* found case handled */
2405                         free(prog);
2406                         return;
2407                 }
2408         }
2409
2410         if (prog->argv == NULL) {
2411                 fprintf(stderr,
2412                     "error: setspawn: cannot find program %s", prog->name);
2413                 free(prog);
2414                 return;
2415         }
2416
2417         /* not found: add */
2418         if (spawns_size == 0 || spawns == NULL) {
2419                 spawns_size = 4;
2420                 DNPRINTF(SWM_D_SPAWN, "setspawn: init list %d\n", spawns_size);
2421                 spawns = malloc((size_t)spawns_size *
2422                     sizeof(struct spawn_prog));
2423                 if (spawns == NULL) {
2424                         fprintf(stderr, "setspawn: malloc failed\n");
2425                         perror(" failed");
2426                         quit(NULL, NULL);
2427                 }
2428         } else if (spawns_length == spawns_size) {
2429                 spawns_size *= 2;
2430                 DNPRINTF(SWM_D_SPAWN, "setspawn: grow list %d\n", spawns_size);
2431                 spawns = realloc(spawns, (size_t)spawns_size *
2432                     sizeof(struct spawn_prog));
2433                 if (spawns == NULL) {
2434                         fprintf(stderr, "setspawn: realloc failed\n");
2435                         perror(" failed");
2436                         quit(NULL, NULL);
2437                 }
2438         }
2439
2440         if (spawns_length < spawns_size) {
2441                 DNPRINTF(SWM_D_SPAWN, "setspawn: add #%d %s\n",
2442                     spawns_length, prog->name);
2443                 i = spawns_length++;
2444                 spawns[i] = *prog;
2445         } else {
2446                 fprintf(stderr, "spawns array problem?\n");
2447                 if (spawns == NULL) {
2448                         fprintf(stderr, "spawns array is NULL!\n");
2449                         quit(NULL, NULL);
2450                 }
2451         }
2452         free(prog);
2453 }
2454
2455 int
2456 setconfspawn(char *selector, char *value, int flags)
2457 {
2458         struct spawn_prog       *prog;
2459         char                    *vp, *cp, *word;
2460
2461         DNPRINTF(SWM_D_SPAWN, "setconfspawn: [%s] [%s]\n", selector, value);
2462         if ((prog = calloc(1, sizeof *prog)) == NULL)
2463                 err(1, "setconfspawn: calloc prog");
2464         prog->name = strdup(selector);
2465         if (prog->name == NULL)
2466                 err(1, "setconfspawn prog->name");
2467         if ((cp = vp = strdup(value)) == NULL)
2468                 err(1, "setconfspawn: strdup(value) ");
2469         while ((word = strsep(&cp, " \t")) != NULL) {
2470                 DNPRINTF(SWM_D_SPAWN, "setconfspawn: arg [%s]\n", word);
2471                 if (cp)
2472                         cp += (long)strspn(cp, " \t");
2473                 if (strlen(word) > 0) {
2474                         prog->argc++;
2475                         prog->argv = realloc(prog->argv,
2476                             prog->argc * sizeof(char *));
2477                         if ((prog->argv[prog->argc - 1] = strdup(word)) == NULL)
2478                                 err(1, "setconfspawn: strdup");
2479                 }
2480         }
2481         free(vp);
2482
2483         setspawn(prog);
2484
2485         DNPRINTF(SWM_D_SPAWN, "setconfspawn: done\n");
2486         return (0);
2487 }
2488
2489 void
2490 setup_spawn(void)
2491 {
2492         setconfspawn("term",            "xterm",                0);
2493         setconfspawn("screenshot_all",  "screenshot.sh full",   0);
2494         setconfspawn("screenshot_wind", "screenshot.sh window", 0);
2495         setconfspawn("lock",            "xlock",                0);
2496         setconfspawn("initscr",         "initscreen.sh",        0);
2497         setconfspawn("menu",            "dmenu_run"
2498                                         " -fn $bar_font"
2499                                         " -nb $bar_color"
2500                                         " -nf $bar_font_color"
2501                                         " -sb $bar_border"
2502                                         " -sf $bar_color",      0);
2503 }
2504
2505 /* key bindings */
2506 #define SWM_MODNAME_SIZE        32
2507 #define SWM_KEY_WS              "\n+ \t"
2508 int
2509 parsekeys(char *keystr, unsigned int currmod, unsigned int *mod, KeySym *ks)
2510 {
2511         char                    *cp, *name;
2512         KeySym                  uks;
2513         DNPRINTF(SWM_D_KEY, "parsekeys: enter [%s]\n", keystr);
2514         if (mod == NULL || ks == NULL) {
2515                 DNPRINTF(SWM_D_KEY, "parsekeys: no mod or key vars\n");
2516                 return (1);
2517         }
2518         if (keystr == NULL || strlen(keystr) == 0) {
2519                 DNPRINTF(SWM_D_KEY, "parsekeys: no keystr\n");
2520                 return (1);
2521         }
2522         cp = keystr;
2523         *ks = NoSymbol;
2524         *mod = 0;
2525         while ((name = strsep(&cp, SWM_KEY_WS)) != NULL) {
2526                 DNPRINTF(SWM_D_KEY, "parsekeys: key [%s]\n", name);
2527                 if (cp)
2528                         cp += (long)strspn(cp, SWM_KEY_WS);
2529                 if (strncasecmp(name, "MOD", SWM_MODNAME_SIZE) == 0)
2530                         *mod |= currmod;
2531                 else if (!strncasecmp(name, "Mod1", SWM_MODNAME_SIZE))
2532                         *mod |= Mod1Mask;
2533                 else if (!strncasecmp(name, "Mod2", SWM_MODNAME_SIZE))
2534                         *mod += Mod2Mask;
2535                 else if (!strncmp(name, "Mod3", SWM_MODNAME_SIZE))
2536                         *mod |= Mod3Mask;
2537                 else if (!strncmp(name, "Mod4", SWM_MODNAME_SIZE))
2538                         *mod |= Mod4Mask;
2539                 else if (strncasecmp(name, "SHIFT", SWM_MODNAME_SIZE) == 0)
2540                         *mod |= ShiftMask;
2541                 else if (strncasecmp(name, "CONTROL", SWM_MODNAME_SIZE) == 0)
2542                         *mod |= ControlMask;
2543                 else {
2544                         *ks = XStringToKeysym(name);
2545                         XConvertCase(*ks, ks, &uks);
2546                         if (ks == NoSymbol) {
2547                                 DNPRINTF(SWM_D_KEY,
2548                                     "parsekeys: invalid key %s\n",
2549                                     name);
2550                                 return (1);
2551                         }
2552                 }
2553         }
2554         DNPRINTF(SWM_D_KEY, "parsekeys: leave ok\n");
2555         return (0);
2556 }
2557 char *
2558 strdupsafe(char *str)
2559 {
2560         if (str == NULL)
2561                 return (NULL);
2562         else
2563                 return (strdup(str));
2564 }
2565 void
2566 setkeybinding(unsigned int mod, KeySym ks, enum keyfuncid kfid, char *spawn_name)
2567 {
2568         int                     i, j;
2569         DNPRINTF(SWM_D_KEY, "setkeybinding: enter %s [%s]\n",
2570             keyfuncs[kfid].name, spawn_name);
2571         /* find existing */
2572         for (i = 0; i < keys_length; i++) {
2573                 if (keys[i].mod == mod && keys[i].keysym == ks) {
2574                         if (kfid == kf_invalid) {
2575                                 /* found: delete */
2576                                 DNPRINTF(SWM_D_KEY,
2577                                     "setkeybinding: delete #%d %s\n",
2578                                     i, keyfuncs[keys[i].funcid].name);
2579                                 free(keys[i].spawn_name);
2580                                 j = keys_length - 1;
2581                                 if (i < j)
2582                                         keys[i] = keys[j];
2583                                 keys_length--;
2584                                 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
2585                                 return;
2586                         } else {
2587                                 /* found: replace */
2588                                 DNPRINTF(SWM_D_KEY,
2589                                     "setkeybinding: replace #%d %s %s\n",
2590                                     i, keyfuncs[keys[i].funcid].name,
2591                                     spawn_name);
2592                                 free(keys[i].spawn_name);
2593                                 keys[i].mod = mod;
2594                                 keys[i].keysym = ks;
2595                                 keys[i].funcid = kfid;
2596                                 keys[i].spawn_name = strdupsafe(spawn_name);
2597                                 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
2598                                 return;
2599                         }
2600                 }
2601         }
2602         if (kfid == kf_invalid) {
2603                 fprintf(stderr,
2604                     "error: setkeybinding: cannot find mod/key combination");
2605                 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
2606                 return;
2607         }
2608         /* not found: add */
2609         if (keys_size == 0 || keys == NULL) {
2610                 keys_size = 4;
2611                 DNPRINTF(SWM_D_KEY, "setkeybinding: init list %d\n", keys_size);
2612                 keys = malloc((size_t)keys_size * sizeof(struct key));
2613                 if (!keys) {
2614                         fprintf(stderr, "malloc failed\n");
2615                         perror(" failed");
2616                         quit(NULL, NULL);
2617                 }
2618         } else if (keys_length == keys_size) {
2619                 keys_size *= 2;
2620                 DNPRINTF(SWM_D_KEY, "setkeybinding: grow list %d\n", keys_size);
2621                 keys = realloc(keys, (size_t)keys_size * sizeof(struct key));
2622                 if (!keys) {
2623                         fprintf(stderr, "realloc failed\n");
2624                         perror(" failed");
2625                         quit(NULL, NULL);
2626                 }
2627         }
2628         if (keys_length < keys_size) {
2629                 j = keys_length++;
2630                 DNPRINTF(SWM_D_KEY, "setkeybinding: add #%d %s %s\n",
2631                     j, keyfuncs[kfid].name, spawn_name);
2632                 keys[j].mod = mod;
2633                 keys[j].keysym = ks;
2634                 keys[j].funcid = kfid;
2635                 keys[j].spawn_name = strdupsafe(spawn_name);
2636         } else {
2637                 fprintf(stderr, "keys array problem?\n");
2638                 if (!keys) {
2639                         fprintf(stderr, "keys array problem\n");
2640                         quit(NULL, NULL);
2641                 }
2642         }
2643         DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
2644 }
2645 int
2646 setconfbinding(char *selector, char *value, int flags)
2647 {
2648         enum keyfuncid          kfid;
2649         unsigned int            mod;
2650         KeySym                  ks;
2651         int                     i;
2652         DNPRINTF(SWM_D_KEY, "setconfbinding: enter\n");
2653         if (selector == NULL) {
2654                 DNPRINTF(SWM_D_KEY, "setconfbinding: unbind %s\n", value);
2655                 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
2656                         kfid = kf_invalid;
2657                         setkeybinding(mod, ks, kfid, NULL);
2658                         return (0);
2659                 } else
2660                         return (1);
2661         }
2662         /* search by key function name */
2663         for (kfid = 0; kfid < kf_invalid; (kfid)++) {
2664                 if (strncasecmp(selector, keyfuncs[kfid].name,
2665                     SWM_FUNCNAME_LEN) == 0) {
2666                         DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match\n",
2667                             selector);
2668                         if (parsekeys(value, mod_key, &mod, &ks) == 0) {
2669                                 setkeybinding(mod, ks, kfid, NULL);
2670                                 return (0);
2671                         } else
2672                                 return (1);
2673                 }
2674         }
2675         /* search by custom spawn name */
2676         for (i = 0; i < spawns_length; i++) {
2677                 if (strcasecmp(selector, spawns[i].name) == 0) {
2678                         DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match\n",
2679                             selector);
2680                         if (parsekeys(value, mod_key, &mod, &ks) == 0) {
2681                                 setkeybinding(mod, ks, kf_spawn_custom,
2682                                     spawns[i].name);
2683                                 return (0);
2684                         } else
2685                                 return (1);
2686                 }
2687         }
2688         DNPRINTF(SWM_D_KEY, "setconfbinding: no match\n");
2689         return (1);
2690 }
2691 void
2692 setup_keys(void)
2693 {
2694         setkeybinding(MODKEY,           XK_space,       kf_cycle_layout,NULL);
2695         setkeybinding(MODKEY|ShiftMask, XK_space,       kf_stack_reset, NULL);
2696         setkeybinding(MODKEY,           XK_h,           kf_master_shrink,NULL);
2697         setkeybinding(MODKEY,           XK_l,           kf_master_grow, NULL);
2698         setkeybinding(MODKEY,           XK_comma,       kf_master_add,  NULL);
2699         setkeybinding(MODKEY,           XK_period,      kf_master_del,  NULL);
2700         setkeybinding(MODKEY|ShiftMask, XK_comma,       kf_stack_inc,   NULL);
2701         setkeybinding(MODKEY|ShiftMask, XK_period,      kf_stack_dec,   NULL);
2702         setkeybinding(MODKEY,           XK_Return,      kf_swap_main,   NULL);
2703         setkeybinding(MODKEY,           XK_j,           kf_focus_next,  NULL);
2704         setkeybinding(MODKEY,           XK_k,           kf_focus_prev,  NULL);
2705         setkeybinding(MODKEY|ShiftMask, XK_j,           kf_swap_next,   NULL);
2706         setkeybinding(MODKEY|ShiftMask, XK_k,           kf_swap_prev,   NULL);
2707         setkeybinding(MODKEY|ShiftMask, XK_Return,      kf_spawn_term,  NULL);
2708         setkeybinding(MODKEY,           XK_p,           kf_spawn_custom,        "menu");
2709         setkeybinding(MODKEY|ShiftMask, XK_q,           kf_quit,        NULL);
2710         setkeybinding(MODKEY,           XK_q,           kf_restart,     NULL);
2711         setkeybinding(MODKEY,           XK_m,           kf_focus_main,  NULL);
2712         setkeybinding(MODKEY,           XK_1,           kf_ws_1,        NULL);
2713         setkeybinding(MODKEY,           XK_2,           kf_ws_2,        NULL);
2714         setkeybinding(MODKEY,           XK_3,           kf_ws_3,        NULL);
2715         setkeybinding(MODKEY,           XK_4,           kf_ws_4,        NULL);
2716         setkeybinding(MODKEY,           XK_5,           kf_ws_5,        NULL);
2717         setkeybinding(MODKEY,           XK_6,           kf_ws_6,        NULL);
2718         setkeybinding(MODKEY,           XK_7,           kf_ws_7,        NULL);
2719         setkeybinding(MODKEY,           XK_8,           kf_ws_8,        NULL);
2720         setkeybinding(MODKEY,           XK_9,           kf_ws_9,        NULL);
2721         setkeybinding(MODKEY,           XK_0,           kf_ws_10,       NULL);
2722         setkeybinding(MODKEY,           XK_Right,       kf_ws_next,     NULL);
2723         setkeybinding(MODKEY,           XK_Left,        kf_ws_prev,     NULL);
2724         setkeybinding(MODKEY|ShiftMask, XK_Right,       kf_screen_next, NULL);
2725         setkeybinding(MODKEY|ShiftMask, XK_Left,        kf_screen_prev, NULL);
2726         setkeybinding(MODKEY|ShiftMask, XK_1,           kf_mvws_1,      NULL);
2727         setkeybinding(MODKEY|ShiftMask, XK_2,           kf_mvws_2,      NULL);
2728         setkeybinding(MODKEY|ShiftMask, XK_3,           kf_mvws_3,      NULL);
2729         setkeybinding(MODKEY|ShiftMask, XK_4,           kf_mvws_4,      NULL);
2730         setkeybinding(MODKEY|ShiftMask, XK_5,           kf_mvws_5,      NULL);
2731         setkeybinding(MODKEY|ShiftMask, XK_6,           kf_mvws_6,      NULL);
2732         setkeybinding(MODKEY|ShiftMask, XK_7,           kf_mvws_7,      NULL);
2733         setkeybinding(MODKEY|ShiftMask, XK_8,           kf_mvws_8,      NULL);
2734         setkeybinding(MODKEY|ShiftMask, XK_9,           kf_mvws_9,      NULL);
2735         setkeybinding(MODKEY|ShiftMask, XK_0,           kf_mvws_10,     NULL);
2736         setkeybinding(MODKEY,           XK_b,           kf_bar_toggle,  NULL);
2737         setkeybinding(MODKEY,           XK_Tab,         kf_focus_next,  NULL);
2738         setkeybinding(MODKEY|ShiftMask, XK_Tab,         kf_focus_prev,  NULL);
2739         setkeybinding(MODKEY|ShiftMask, XK_x,           kf_wind_kill,   NULL);
2740         setkeybinding(MODKEY,           XK_x,           kf_wind_del,    NULL);
2741         setkeybinding(MODKEY,           XK_s,           kf_spawn_custom,        "screenshot_all");
2742         setkeybinding(MODKEY|ShiftMask, XK_s,           kf_spawn_custom,        "screenshot_wind");
2743         setkeybinding(MODKEY,           XK_t,           kf_float_toggle,NULL);
2744         setkeybinding(MODKEY|ShiftMask, XK_v,           kf_version,     NULL);
2745         setkeybinding(MODKEY|ShiftMask, XK_Delete,      kf_spawn_custom,        "lock");
2746         setkeybinding(MODKEY|ShiftMask, XK_i,           kf_spawn_custom,        "initscr");
2747 }
2748 void
2749 updatenumlockmask(void)
2750 {
2751         unsigned int            i, j;
2752         XModifierKeymap         *modmap;
2753
2754         DNPRINTF(SWM_D_MISC, "updatenumlockmask\n");
2755         numlockmask = 0;
2756         modmap = XGetModifierMapping(display);
2757         for (i = 0; i < 8; i++)
2758                 for (j = 0; j < modmap->max_keypermod; j++)
2759                         if (modmap->modifiermap[i * modmap->max_keypermod + j]
2760                           == XKeysymToKeycode(display, XK_Num_Lock))
2761                                 numlockmask = (1 << i);
2762
2763         XFreeModifiermap(modmap);
2764 }
2765
2766 void
2767 grabkeys(void)
2768 {
2769         unsigned int            i, j, k;
2770         KeyCode                 code;
2771         unsigned int            modifiers[] =
2772             { 0, LockMask, numlockmask, numlockmask | LockMask };
2773
2774         DNPRINTF(SWM_D_MISC, "grabkeys\n");
2775         updatenumlockmask();
2776
2777         for (k = 0; k < ScreenCount(display); k++) {
2778                 if (TAILQ_EMPTY(&screens[k].rl))
2779                         continue;
2780                 XUngrabKey(display, AnyKey, AnyModifier, screens[k].root);
2781                 for (i = 0; i < keys_length; i++) {
2782                         if ((code = XKeysymToKeycode(display, keys[i].keysym)))
2783                                 for (j = 0; j < LENGTH(modifiers); j++)
2784                                         XGrabKey(display, code,
2785                                             keys[i].mod | modifiers[j],
2786                                             screens[k].root, True,
2787                                             GrabModeAsync, GrabModeAsync);
2788                 }
2789         }
2790 }
2791
2792 void
2793 grabbuttons(struct ws_win *win, int focused)
2794 {
2795         unsigned int            i, j;
2796         unsigned int            modifiers[] =
2797             { 0, LockMask, numlockmask, numlockmask|LockMask };
2798
2799         updatenumlockmask();
2800         XUngrabButton(display, AnyButton, AnyModifier, win->id);
2801         if(focused) {
2802                 for (i = 0; i < LENGTH(buttons); i++)
2803                         if (buttons[i].action == client_click)
2804                                 for (j = 0; j < LENGTH(modifiers); j++)
2805                                         XGrabButton(display, buttons[i].button,
2806                                             buttons[i].mask | modifiers[j],
2807                                             win->id, False, BUTTONMASK,
2808                                             GrabModeAsync, GrabModeSync, None,
2809                                             None);
2810         } else
2811                 XGrabButton(display, AnyButton, AnyModifier, win->id, False,
2812                     BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
2813 }
2814
2815 const char *quirkname[] = {
2816         "NONE",         /* config string for "no value" */
2817         "FLOAT",
2818         "TRANSSZ",
2819         "ANYWHERE",
2820         "XTERM_FONTADJ",
2821         "FULLSCREEN",
2822 };
2823
2824 /* SWM_Q_WS: retain '|' for back compat for now (2009-08-11) */
2825 #define SWM_Q_WS                "\n|+ \t"
2826 int
2827 parsequirks(char *qstr, unsigned long *quirk)
2828 {
2829         char                    *cp, *name;
2830         int                     i;
2831
2832         if (quirk == NULL)
2833                 return (1);
2834
2835         cp = qstr;
2836         *quirk = 0;
2837         while ((name = strsep(&cp, SWM_Q_WS)) != NULL) {
2838                 if (cp)
2839                         cp += (long)strspn(cp, SWM_Q_WS);
2840                 for (i = 0; i < LENGTH(quirkname); i++) {
2841                         if (!strncasecmp(name, quirkname[i], SWM_QUIRK_LEN)) {
2842                                 DNPRINTF(SWM_D_QUIRK, "parsequirks: %s\n", name);
2843                                 if (i == 0) {
2844                                         *quirk = 0;
2845                                         return (0);
2846                                 }
2847                                 *quirk |= 1 << (i-1);
2848                                 break;
2849                         }
2850                 }
2851                 if (i >= LENGTH(quirkname)) {
2852                         DNPRINTF(SWM_D_QUIRK,
2853                             "parsequirks: invalid quirk [%s]\n", name);
2854                         return (1);
2855                 }
2856         }
2857         return (0);
2858 }
2859 void
2860 setquirk(const char *class, const char *name, const int quirk)
2861 {
2862         int                     i, j;
2863
2864         /* find existing */
2865         for (i = 0; i < quirks_length; i++) {
2866                 if (!strcmp(quirks[i].class, class) &&
2867                     !strcmp(quirks[i].name, name)) {
2868                         if (!quirk) {
2869                                 /* found: delete */
2870                                 DNPRINTF(SWM_D_QUIRK,
2871                                     "setquirk: delete #%d %s:%s\n",
2872                                     i, quirks[i].class, quirks[i].name);
2873                                 free(quirks[i].class);
2874                                 free(quirks[i].name);
2875                                 j = quirks_length - 1;
2876                                 if (i < j)
2877                                         quirks[i] = quirks[j];
2878                                 quirks_length--;
2879                                 return;
2880                         } else {
2881                                 /* found: replace */
2882                                 DNPRINTF(SWM_D_QUIRK,
2883                                     "setquirk: replace #%d %s:%s\n",
2884                                     i, quirks[i].class, quirks[i].name);
2885                                 free(quirks[i].class);
2886                                 free(quirks[i].name);
2887                                 quirks[i].class = strdup(class);
2888                                 quirks[i].name = strdup(name);
2889                                 quirks[i].quirk = quirk;
2890                                 return;
2891                         }
2892                 }
2893         }
2894         if (!quirk) {
2895                 fprintf(stderr,
2896                     "error: setquirk: cannot find class/name combination");
2897                 return;
2898         }
2899         /* not found: add */
2900         if (quirks_size == 0 || quirks == NULL) {
2901                 quirks_size = 4;
2902                 DNPRINTF(SWM_D_QUIRK, "setquirk: init list %d\n", quirks_size);
2903                 quirks = malloc((size_t)quirks_size * sizeof(struct quirk));
2904                 if (!quirks) {
2905                         fprintf(stderr, "setquirk: malloc failed\n");
2906                         perror(" failed");
2907                         quit(NULL, NULL);
2908                 }
2909         } else if (quirks_length == quirks_size) {
2910                 quirks_size *= 2;
2911                 DNPRINTF(SWM_D_QUIRK, "setquirk: grow list %d\n", quirks_size);
2912                 quirks = realloc(quirks, (size_t)quirks_size * sizeof(struct quirk));
2913                 if (!quirks) {
2914                         fprintf(stderr, "setquirk: realloc failed\n");
2915                         perror(" failed");
2916                         quit(NULL, NULL);
2917                 }
2918         }
2919         if (quirks_length < quirks_size) {
2920                 DNPRINTF(SWM_D_QUIRK, "setquirk: add %d\n", quirks_length);
2921                 j = quirks_length++;
2922                 quirks[j].class = strdup(class);
2923                 quirks[j].name = strdup(name);
2924                 quirks[j].quirk = quirk;
2925         } else {
2926                 fprintf(stderr, "quirks array problem?\n");
2927                 if (!quirks) {
2928                         fprintf(stderr, "quirks array problem!\n");
2929                         quit(NULL, NULL);
2930                 }
2931         }
2932 }
2933 int
2934 setconfquirk(char *selector, char *value, int flags)
2935 {
2936         char                    *cp, *class, *name;
2937         int                     retval;
2938         unsigned long           quirks;
2939         if (selector == NULL)
2940                 return (0);
2941         if ((cp = strchr(selector, ':')) == NULL)
2942                 return (0);
2943         *cp = '\0';
2944         class = selector;
2945         name = cp + 1;
2946         if ((retval = parsequirks(value, &quirks)) == 0)
2947                 setquirk(class, name, quirks);
2948         return (retval);
2949 }
2950
2951 void
2952 setup_quirks(void)
2953 {
2954         setquirk("MPlayer",             "xv",           SWM_Q_FLOAT | SWM_Q_FULLSCREEN);
2955         setquirk("OpenOffice.org 2.4",  "VCLSalFrame",  SWM_Q_FLOAT);
2956         setquirk("OpenOffice.org 3.0",  "VCLSalFrame",  SWM_Q_FLOAT);
2957         setquirk("Firefox-bin",         "firefox-bin",  SWM_Q_TRANSSZ);
2958         setquirk("Firefox",             "Dialog",       SWM_Q_FLOAT);
2959         setquirk("Gimp",                "gimp",         SWM_Q_FLOAT | SWM_Q_ANYWHERE);
2960         setquirk("XTerm",               "xterm",        SWM_Q_XTERM_FONTADJ);
2961         setquirk("xine",                "Xine Window",  SWM_Q_FLOAT | SWM_Q_ANYWHERE);
2962         setquirk("Xitk",                "Xitk Combo",   SWM_Q_FLOAT | SWM_Q_ANYWHERE);
2963         setquirk("xine",                "xine Panel",   SWM_Q_FLOAT | SWM_Q_ANYWHERE);
2964         setquirk("Xitk",                "Xine Window",  SWM_Q_FLOAT | SWM_Q_ANYWHERE);
2965         setquirk("xine",                "xine Video Fullscreen Window", SWM_Q_FULLSCREEN | SWM_Q_FLOAT);
2966         setquirk("pcb",                 "pcb",          SWM_Q_FLOAT);
2967 }
2968
2969 /* conf file stuff */
2970 #define SWM_CONF_FILE   "scrotwm.conf"
2971
2972 enum    { SWM_S_BAR_DELAY, SWM_S_BAR_ENABLED, SWM_S_CLOCK_ENABLED,
2973           SWM_S_CYCLE_EMPTY, SWM_S_CYCLE_VISIBLE, SWM_S_SS_ENABLED,
2974           SWM_S_TERM_WIDTH, SWM_S_TITLE_CLASS_ENABLED, SWM_S_TITLE_NAME_ENABLED,
2975           SWM_S_BAR_FONT, SWM_S_BAR_ACTION, SWM_S_SPAWN_TERM, SWM_S_SS_APP,
2976           SWM_S_DIALOG_RATIO };
2977
2978 int
2979 setconfvalue(char *selector, char *value, int flags)
2980 {
2981         switch (flags) {
2982         case SWM_S_BAR_DELAY:
2983                 bar_delay = atoi(value);
2984                 break;
2985         case SWM_S_BAR_ENABLED:
2986                 bar_enabled = atoi(value);
2987                 break;
2988         case SWM_S_CLOCK_ENABLED:
2989                 clock_enabled = atoi(value);
2990                 break;
2991         case SWM_S_CYCLE_EMPTY:
2992                 cycle_empty = atoi(value);
2993                 break;
2994         case SWM_S_CYCLE_VISIBLE:
2995                 cycle_visible = atoi(value);
2996                 break;
2997         case SWM_S_SS_ENABLED:
2998                 ss_enabled = atoi(value);
2999                 break;
3000         case SWM_S_TERM_WIDTH:
3001                 term_width = atoi(value);
3002                 break;
3003         case SWM_S_TITLE_CLASS_ENABLED:
3004                 title_class_enabled = atoi(value);
3005                 break;
3006         case SWM_S_TITLE_NAME_ENABLED:
3007                 title_name_enabled = atoi(value);
3008                 break;
3009         case SWM_S_BAR_FONT:
3010                 free(bar_fonts[0]);
3011                 if ((bar_fonts[0] = strdup(value)) == NULL)
3012                         err(1, "setconfvalue: bar_font");
3013                 break;
3014         case SWM_S_BAR_ACTION:
3015                 free(bar_argv[0]);
3016                 if ((bar_argv[0] = strdup(value)) == NULL)
3017                         err(1, "setconfvalue: bar_action");
3018                 break;
3019         case SWM_S_SPAWN_TERM:
3020                 free(spawn_term[0]);
3021                 if ((spawn_term[0] = strdup(value)) == NULL)
3022                         err(1, "setconfvalue: spawn_term");
3023                 break;
3024         case SWM_S_SS_APP:
3025                 break;
3026         case SWM_S_DIALOG_RATIO:
3027                 dialog_ratio = atof(value);
3028                 if (dialog_ratio > 1.0 || dialog_ratio <= .3)
3029                         dialog_ratio = .6;
3030                 break;
3031         default:
3032                 return (1);
3033         }
3034         return (0);
3035 }
3036
3037 int
3038 setconfmodkey(char *selector, char *value, int flags)
3039 {
3040         if (!strncasecmp(value, "Mod1", strlen("Mod1")))
3041                 update_modkey(Mod1Mask);
3042         else if (!strncasecmp(value, "Mod2", strlen("Mod2")))
3043                 update_modkey(Mod2Mask);
3044         else if (!strncasecmp(value, "Mod3", strlen("Mod3")))
3045                 update_modkey(Mod3Mask);
3046         else if (!strncasecmp(value, "Mod4", strlen("Mod4")))
3047                 update_modkey(Mod4Mask);
3048         else
3049                 return (1);
3050         return (0);
3051 }
3052
3053 int
3054 setconfcolor(char *selector, char *value, int flags)
3055 {
3056         setscreencolor(value, ((selector == NULL)?-1:atoi(selector)), flags);
3057         return (0);
3058 }
3059
3060 int
3061 setconfregion(char *selector, char *value, int flags)
3062 {
3063         custom_region(value);
3064         return (0);
3065 }
3066
3067 /* config options */
3068 struct config_option {
3069         char                    *optname;
3070         int (*func)(char*, char*, int);
3071         int funcflags;
3072 };
3073 struct config_option configopt[] = {
3074         { "bar_enabled",                setconfvalue,   SWM_S_BAR_ENABLED },
3075         { "bar_border",                 setconfcolor,   SWM_S_COLOR_BAR_BORDER },
3076         { "bar_color",                  setconfcolor,   SWM_S_COLOR_BAR },
3077         { "bar_font_color",             setconfcolor,   SWM_S_COLOR_BAR_FONT },
3078         { "bar_font",                   setconfvalue,   SWM_S_BAR_FONT },
3079         { "bar_action",                 setconfvalue,   SWM_S_BAR_ACTION },
3080         { "bar_delay",                  setconfvalue,   SWM_S_BAR_DELAY },
3081         { "bind",                       setconfbinding, 0 },
3082         { "clock_enabled",              setconfvalue,   SWM_S_CLOCK_ENABLED },
3083         { "color_focus",                setconfcolor,   SWM_S_COLOR_FOCUS },
3084         { "color_unfocus",              setconfcolor,   SWM_S_COLOR_UNFOCUS },
3085         { "cycle_empty",                setconfvalue,   SWM_S_CYCLE_EMPTY },
3086         { "cycle_visible",              setconfvalue,   SWM_S_CYCLE_VISIBLE },
3087         { "dialog_ratio",               setconfvalue,   SWM_S_DIALOG_RATIO },
3088         { "modkey",                     setconfmodkey,  0 },
3089         { "program",                    setconfspawn,   0 },
3090         { "quirk",                      setconfquirk,   0 },
3091         { "region",                     setconfregion,  0 },
3092         { "spawn_term",                 setconfvalue,   SWM_S_SPAWN_TERM },
3093         { "screenshot_enabled",         setconfvalue,   SWM_S_SS_ENABLED },
3094         { "screenshot_app",             setconfvalue,   SWM_S_SS_APP },
3095         { "term_width",                 setconfvalue,   SWM_S_TERM_WIDTH },
3096         { "title_class_enabled",        setconfvalue,   SWM_S_TITLE_CLASS_ENABLED },
3097         { "title_name_enabled",         setconfvalue,   SWM_S_TITLE_NAME_ENABLED }
3098 };
3099
3100
3101 int
3102 conf_load(char *filename)
3103 {
3104         FILE                    *config;
3105         char                    *line, *cp, *optsub, *optval;
3106         size_t                  linelen, lineno = 0;
3107         int                     wordlen, i, optind;
3108         struct config_option    *opt;
3109
3110         DNPRINTF(SWM_D_CONF, "conf_load begin\n");
3111
3112         if (filename == NULL) {
3113                 fprintf(stderr, "conf_load: no filename\n");
3114                 return (1);
3115         }
3116         if ((config = fopen(filename, "r")) == NULL) {
3117                 warn("conf_load: fopen");
3118                 return (1);
3119         }
3120
3121         while (!feof(config)) {
3122                 if ((line = fparseln(config, &linelen, &lineno, NULL, 0))
3123                     == NULL) {
3124                         if (ferror(config))
3125                                 err(1, "%s", filename);
3126                         else
3127                                 continue;
3128                 }
3129                 cp = line;
3130                 cp += strspn(cp, " \t\n"); /* eat whitespace */
3131                 if (cp[0] == '\0') {
3132                         /* empty line */
3133                         free(line);
3134                         continue;
3135                 }
3136                 /* get config option */
3137                 wordlen = strcspn(cp, "=[ \t\n");
3138                 if (wordlen == 0) {
3139                         warnx("%s: line %zd: no option found",
3140                             filename, lineno);
3141                         return (1);
3142                 }
3143                 optind = -1;
3144                 for (i = 0; i < LENGTH(configopt); i++) {
3145                         opt = &configopt[i];
3146                         if (!strncasecmp(cp, opt->optname, wordlen) &&
3147                             strlen(opt->optname) == wordlen) {
3148                                 optind = i;
3149                                 break;
3150                         }
3151                 }
3152                 if (optind == -1) {
3153                         warnx("%s: line %zd: unknown option %.*s",
3154                             filename, lineno, wordlen, cp);
3155                         return (1);
3156                 }
3157                 cp += wordlen;
3158                 cp += strspn(cp, " \t\n"); /* eat whitespace */
3159                 /* get [selector] if any */
3160                 optsub = NULL;
3161                 if (*cp == '[') {
3162                         cp++;
3163                         wordlen = strcspn(cp, "]");
3164                         if (*cp != ']') {
3165                                 if (wordlen == 0) {
3166                                         warnx("%s: line %zd: syntax error",
3167                                             filename, lineno);
3168                                         return (1);
3169                                 }
3170                                 asprintf(&optsub, "%.*s", wordlen, cp);
3171                         }
3172                         cp += wordlen;
3173                         cp += strspn(cp, "] \t\n"); /* eat trailing */
3174                 }
3175                 cp += strspn(cp, "= \t\n"); /* eat trailing */
3176                 /* get RHS value */
3177                 optval = strdup(cp);
3178                 /* call function to deal with it all */
3179                 if (configopt[optind].func(optsub, optval,
3180                     configopt[optind].funcflags) != 0) {
3181                         fprintf(stderr, "%s line %zd: %s\n",
3182                             filename, lineno, line);
3183                         errx(1, "%s: line %zd: invalid data for %s",
3184                             filename, lineno, configopt[optind].optname);
3185                 }
3186                 free(optval);
3187                 free(optsub);
3188                 free(line);
3189         }
3190
3191         fclose(config);
3192         DNPRINTF(SWM_D_CONF, "conf_load end\n");
3193
3194         return (0);
3195 }
3196
3197 struct ws_win *
3198 manage_window(Window id)
3199 {
3200         Window                  trans = 0;
3201         struct workspace        *ws;
3202         struct ws_win           *win, *ww;
3203         int                     format, i, ws_idx, n, border_me = 0;
3204         unsigned long           nitems, bytes;
3205         Atom                    ws_idx_atom = 0, type;
3206         Atom                    *prot = NULL, *pp;
3207         unsigned char           ws_idx_str[SWM_PROPLEN], *prop = NULL;
3208         struct swm_region       *r;
3209         long                    mask;
3210         const char              *errstr;
3211         XWindowChanges          wc;
3212
3213         if ((win = find_window(id)) != NULL)
3214                         return (win);   /* already being managed */
3215
3216         if ((win = calloc(1, sizeof(struct ws_win))) == NULL)
3217                 errx(1, "calloc: failed to allocate memory for new window");
3218
3219         /* Get all the window data in one shot */
3220         ws_idx_atom = XInternAtom(display, "_SWM_WS", False);
3221         if (ws_idx_atom)
3222                 XGetWindowProperty(display, id, ws_idx_atom, 0, SWM_PROPLEN,
3223                     False, XA_STRING, &type, &format, &nitems, &bytes, &prop);
3224         XGetWindowAttributes(display, id, &win->wa);
3225         XGetWMNormalHints(display, id, &win->sh, &mask);
3226         XGetTransientForHint(display, id, &trans);
3227         if (trans) {
3228                 win->transient = trans;
3229                 DNPRINTF(SWM_D_MISC, "manage_window: win %u transient %u\n",
3230                     (unsigned)win->id, win->transient);
3231         }
3232         /* get supported protocols */
3233         if (XGetWMProtocols(display, id, &prot, &n)) {
3234                 for (i = 0, pp = prot; i < n; i++, pp++)
3235                         if (*pp == adelete)
3236                                 win->can_delete = 1;
3237                 if (prot)
3238                         XFree(prot);
3239         }
3240
3241         /*
3242          * Figure out where to put the window. If it was previously assigned to
3243          * a workspace (either by spawn() or manually moving), and isn't
3244          * transient, * put it in the same workspace
3245          */
3246         r = root_to_region(win->wa.root);
3247         if (prop && win->transient == 0) {
3248                 DNPRINTF(SWM_D_PROP, "got property _SWM_WS=%s\n", prop);
3249                 ws_idx = strtonum(prop, 0, 9, &errstr);
3250                 if (errstr) {
3251                         DNPRINTF(SWM_D_EVENT, "window idx is %s: %s",
3252                             errstr, prop);
3253                 }
3254                 ws = &r->s->ws[ws_idx];
3255         } else {
3256                 ws = r->ws;
3257                 /* this should launch transients in the same ws as parent */
3258                 if (id && trans)
3259                         if ((ww = find_window(trans)) != NULL)
3260                                 if (ws->r) {
3261                                         ws = ww->ws;
3262                                         if (ww->ws->r)
3263                                                 r = ww->ws->r;
3264                                         else
3265                                                 fprintf(stderr,
3266                                                     "fix this bug mcbride\n");
3267                                         border_me = 1;
3268                                 }
3269         }
3270
3271         /* set up the window layout */
3272         win->id = id;
3273         win->ws = ws;
3274         win->s = r->s;  /* this never changes */
3275         TAILQ_INSERT_TAIL(&ws->winlist, win, entry);
3276
3277         win->g.w = win->wa.width;
3278         win->g.h = win->wa.height;
3279         win->g.x = win->wa.x;
3280         win->g.y = win->wa.y;
3281
3282         /* Set window properties so we can remember this after reincarnation */
3283         if (ws_idx_atom && prop == NULL &&
3284             snprintf(ws_idx_str, SWM_PROPLEN, "%d", ws->idx) < SWM_PROPLEN) {
3285                 DNPRINTF(SWM_D_PROP, "setting property _SWM_WS to %s\n",
3286                     ws_idx_str);
3287                 XChangeProperty(display, win->id, ws_idx_atom, XA_STRING, 8,
3288                     PropModeReplace, ws_idx_str, SWM_PROPLEN);
3289         }
3290         XFree(prop);
3291
3292         if (XGetClassHint(display, win->id, &win->ch)) {
3293                 DNPRINTF(SWM_D_CLASS, "class: %s name: %s\n",
3294                     win->ch.res_class, win->ch.res_name);
3295                 for (i = 0; i < quirks_length; i++){
3296                         if (!strcmp(win->ch.res_class, quirks[i].class) &&
3297                             !strcmp(win->ch.res_name, quirks[i].name)) {
3298                                 DNPRINTF(SWM_D_CLASS, "found: %s name: %s\n",
3299                                     win->ch.res_class, win->ch.res_name);
3300                                 if (quirks[i].quirk & SWM_Q_FLOAT)
3301                                         win->floating = 1;
3302                                 win->quirks = quirks[i].quirk;
3303                         }
3304                 }
3305         }
3306
3307         /* alter window position if quirky */
3308         if (win->quirks & SWM_Q_ANYWHERE) {
3309                 win->manual = 1; /* don't center the quirky windows */
3310                 bzero(&wc, sizeof wc);
3311                 mask = 0;
3312                 if (win->g.y < bar_height) {
3313                         win->g.y = wc.y = bar_height;
3314                         mask |= CWY;
3315                 }
3316                 if (win->g.w + win->g.x > WIDTH(r)) {
3317                         win->g.x = wc.x = WIDTH(r) - win->g.w - 2;
3318                         mask |= CWX;
3319                 }
3320                 border_me = 1;
3321         }
3322
3323         /* Reset font sizes (the bruteforce way; no default keybinding). */
3324         if (win->quirks & SWM_Q_XTERM_FONTADJ) {
3325                 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
3326                         fake_keypress(win, XK_KP_Subtract, ShiftMask);
3327                 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
3328                         fake_keypress(win, XK_KP_Add, ShiftMask);
3329         }
3330
3331         /* border me */
3332         if (border_me) {
3333                 bzero(&wc, sizeof wc);
3334                 wc.border_width = 1;
3335                 mask = CWBorderWidth;
3336                 XConfigureWindow(display, win->id, mask, &wc);
3337         }
3338
3339         XSelectInput(display, id, EnterWindowMask | FocusChangeMask |
3340             PropertyChangeMask | StructureNotifyMask);
3341
3342         set_win_state(win, NormalState);
3343
3344         /* floaters need to be mapped if they are in the current workspace */
3345         if ((win->floating || win->transient) && (ws->idx == r->ws->idx))
3346                 XMapRaised(display, win->id);
3347
3348         return (win);
3349 }
3350
3351 void
3352 unmanage_window(struct ws_win *win)
3353 {
3354         struct workspace        *ws;
3355
3356         if (win == NULL)
3357                 return;
3358
3359         DNPRINTF(SWM_D_MISC, "unmanage_window:  %lu\n", win->id);
3360
3361         ws = win->ws;
3362         TAILQ_REMOVE(&win->ws->winlist, win, entry);
3363         set_win_state(win, WithdrawnState);
3364         if (win->ch.res_class)
3365                 XFree(win->ch.res_class);
3366         if (win->ch.res_name)
3367                 XFree(win->ch.res_name);
3368         free(win);
3369 }
3370
3371 void
3372 expose(XEvent *e)
3373 {
3374         DNPRINTF(SWM_D_EVENT, "expose: window: %lu\n", e->xexpose.window);
3375 }
3376
3377 void
3378 keypress(XEvent *e)
3379 {
3380         unsigned int            i;
3381         KeySym                  keysym;
3382         XKeyEvent               *ev = &e->xkey;
3383
3384         DNPRINTF(SWM_D_EVENT, "keypress: window: %lu\n", ev->window);
3385
3386         keysym = XKeycodeToKeysym(display, (KeyCode)ev->keycode, 0);
3387         for (i = 0; i < keys_length; i++)
3388                 if (keysym == keys[i].keysym
3389                    && CLEANMASK(keys[i].mod) == CLEANMASK(ev->state)
3390                    && keyfuncs[keys[i].funcid].func) {
3391                         if (keys[i].funcid == kf_spawn_custom)
3392                                 spawn_custom(
3393                                     root_to_region(ev->root),
3394                                     &(keyfuncs[keys[i].funcid].args),
3395                                     keys[i].spawn_name
3396                                     );
3397                         else
3398                                 keyfuncs[keys[i].funcid].func(
3399                                     root_to_region(ev->root),
3400                                     &(keyfuncs[keys[i].funcid].args)
3401                                     );
3402                 }
3403 }
3404
3405 void
3406 buttonpress(XEvent *e)
3407 {
3408         XButtonPressedEvent     *ev = &e->xbutton;
3409
3410         struct ws_win           *win;
3411         int                     i, action;
3412
3413         DNPRINTF(SWM_D_EVENT, "buttonpress: window: %lu\n", ev->window);
3414
3415         action = root_click;
3416         if ((win = find_window(ev->window)) == NULL)
3417                 return;
3418         else {
3419                 focus_win(win);
3420                 action = client_click;
3421         }
3422
3423         for (i = 0; i < LENGTH(buttons); i++)
3424                 if (action == buttons[i].action && buttons[i].func &&
3425                     buttons[i].button == ev->button &&
3426                     CLEANMASK(buttons[i].mask) == CLEANMASK(ev->state))
3427                         buttons[i].func(win, &buttons[i].args);
3428 }
3429
3430 void
3431 configurerequest(XEvent *e)
3432 {
3433         XConfigureRequestEvent  *ev = &e->xconfigurerequest;
3434         struct ws_win           *win;
3435         int                     new = 0;
3436         XWindowChanges          wc;
3437
3438         if ((win = find_window(ev->window)) == NULL)
3439                 new = 1;
3440
3441         if (new) {
3442                 DNPRINTF(SWM_D_EVENT, "configurerequest: new window: %lu\n",
3443                     ev->window);
3444                 bzero(&wc, sizeof wc);
3445                 wc.x = ev->x;
3446                 wc.y = ev->y;
3447                 wc.width = ev->width;
3448                 wc.height = ev->height;
3449                 wc.border_width = ev->border_width;
3450                 wc.sibling = ev->above;
3451                 wc.stack_mode = ev->detail;
3452                 XConfigureWindow(display, ev->window, ev->value_mask, &wc);
3453         } else {
3454                 DNPRINTF(SWM_D_EVENT, "configurerequest: change window: %lu\n",
3455                     ev->window);
3456                 if (win->floating) {
3457                         if (ev->value_mask & CWX)
3458                                 win->g.x = ev->x;
3459                         if (ev->value_mask & CWY)
3460                                 win->g.y = ev->y;
3461                         if (ev->value_mask & CWWidth)
3462                                 win->g.w = ev->width;
3463                         if (ev->value_mask & CWHeight)
3464                                 win->g.h = ev->height;
3465                         if (win->ws->r != NULL) {
3466                                 /* this seems to be full screen */
3467                                 if (win->g.w >= WIDTH(win->ws->r)) {
3468                                         win->g.x = 0;
3469                                         win->g.w = WIDTH(win->ws->r);
3470                                         ev->value_mask |= CWX | CWWidth;
3471                                 }
3472                                 if (win->g.h >= HEIGHT(win->ws->r)) {
3473                                         /* kill border */
3474                                         win->g.y = 0;
3475                                         win->g.h = HEIGHT(win->ws->r);
3476                                         ev->value_mask |= CWY | CWHeight;
3477                                 }
3478                         }
3479                         if ((ev->value_mask & (CWX | CWY)) &&
3480                             !(ev->value_mask & (CWWidth | CWHeight)))
3481                                 config_win(win);
3482                         XMoveResizeWindow(display, win->id,
3483                             win->g.x, win->g.y, win->g.w, win->g.h);
3484                 } else
3485                         config_win(win);
3486         }
3487 }
3488
3489 void
3490 configurenotify(XEvent *e)
3491 {
3492         struct ws_win           *win;
3493         long                    mask;
3494
3495         DNPRINTF(SWM_D_EVENT, "configurenotify: window: %lu\n",
3496             e->xconfigure.window);
3497
3498         XMapWindow(display, e->xconfigure.window);
3499         win = find_window(e->xconfigure.window);
3500         if (win) {
3501                 XGetWMNormalHints(display, win->id, &win->sh, &mask);
3502                 adjust_font(win);
3503                 XMapWindow(display, win->id);
3504                 if (font_adjusted)
3505                         stack();
3506         }
3507 }
3508
3509 void
3510 destroynotify(XEvent *e)
3511 {
3512         struct ws_win           *win, *winfocus = NULL;
3513         struct workspace        *ws;
3514         struct ws_win_list      *wl;
3515
3516         XDestroyWindowEvent     *ev = &e->xdestroywindow;
3517
3518         DNPRINTF(SWM_D_EVENT, "destroynotify: window %lu\n", ev->window);
3519
3520         SWM_EV_PROLOGUE(display);
3521
3522         if ((win = find_window(ev->window)) != NULL) {
3523                 /* find a window to focus */
3524                 ws = win->ws;
3525                 wl = &ws->winlist;
3526
3527                 /* if we are transient give focus to parent */
3528                 if (win->transient)
3529                         winfocus = find_window(win->transient);
3530                 else if (ws->focus == win) {
3531                         if ((ws->cur_layout->flags & SWM_L_FOCUSPREV) &&
3532                             ws->focus_prev)
3533                                 winfocus = ws->focus_prev;
3534                         else if (TAILQ_FIRST(wl) == win)
3535                                 winfocus = TAILQ_NEXT(win, entry);
3536                         else {
3537                                 winfocus = TAILQ_PREV(ws->focus, ws_win_list,
3538                                     entry);
3539                                 if (winfocus == NULL)
3540                                         winfocus = TAILQ_LAST(wl, ws_win_list);
3541                         }
3542                 }
3543
3544                 unmanage_window(win);
3545                 stack();
3546                 if (winfocus)
3547                         focus_win(winfocus);
3548         }
3549
3550         SWM_EV_EPILOGUE(display);
3551 }
3552
3553 void
3554 enternotify(XEvent *e)
3555 {
3556         XCrossingEvent          *ev = &e->xcrossing;
3557         struct ws_win           *win;
3558
3559         DNPRINTF(SWM_D_EVENT, "enternotify: window: %lu\n", ev->window);
3560
3561         if (ignore_enter) {
3562                 /* eat event(r) to prevent autofocus */
3563                 ignore_enter = 0;
3564                 return;
3565         }
3566         /*
3567          * happens when a window is created or destroyed and the border
3568          * crosses the mouse pointer
3569          */
3570         if (QLength(display))
3571                 return;
3572
3573         if ((win = find_window(ev->window)) != NULL)
3574                 focus_win(win);
3575 }
3576
3577 void
3578 focusin(XEvent *e)
3579 {
3580         DNPRINTF(SWM_D_EVENT, "focusin: window: %lu\n", e->xfocus.window);
3581 }
3582
3583 void
3584 focusout(XEvent *e)
3585 {
3586         DNPRINTF(SWM_D_EVENT, "focusout: window: %lu\n", e->xfocus.window);
3587 }
3588
3589 void
3590 mapnotify(XEvent *e)
3591 {
3592         struct ws_win           *win;
3593         XMappingEvent           *ev = &e->xmapping;
3594
3595         DNPRINTF(SWM_D_EVENT, "mapnotify: window: %lu\n", ev->window);
3596
3597         SWM_EV_PROLOGUE(display);
3598
3599         win = find_window(ev->window);
3600         if (win)
3601                 set_win_state(win, NormalState);
3602
3603         XRefreshKeyboardMapping(ev);
3604         if (ev->request == MappingKeyboard)
3605                 grabkeys();
3606
3607         SWM_EV_EPILOGUE(display);
3608 }
3609
3610 void
3611 maprequest(XEvent *e)
3612 {
3613         struct ws_win           *win;
3614         struct swm_region       *r;
3615
3616         XMapRequestEvent        *ev = &e->xmaprequest;
3617         XWindowAttributes       wa;
3618
3619         DNPRINTF(SWM_D_EVENT, "maprequest: window: %lu\n",
3620             e->xmaprequest.window);
3621
3622         SWM_EV_PROLOGUE(display);
3623
3624         if (!XGetWindowAttributes(display, ev->window, &wa))
3625                 goto done;
3626         if (wa.override_redirect)
3627                 goto done;
3628
3629         manage_window(e->xmaprequest.window);
3630
3631         stack();
3632
3633         /* make new win focused */
3634         win = find_window(ev->window);
3635         r = root_to_region(win->wa.root);
3636
3637         if (win->ws == r->ws)
3638                 focus_win(win);
3639
3640 done:
3641         SWM_EV_EPILOGUE(display);
3642 }
3643
3644 void
3645 propertynotify(XEvent *e)
3646 {
3647         struct ws_win           *win;
3648         XPropertyEvent          *ev = &e->xproperty;
3649
3650         DNPRINTF(SWM_D_EVENT, "propertynotify: window: %lu\n",
3651             ev->window);
3652
3653         if (ev->state == PropertyDelete)
3654                 return; /* ignore */
3655         win = find_window(ev->window);
3656         if (win == NULL)
3657                 return;
3658
3659         switch (ev->atom) {
3660         case XA_WM_NORMAL_HINTS:
3661 #if 0
3662                 long            mask;
3663                 XGetWMNormalHints(display, win->id, &win->sh, &mask);
3664                 fprintf(stderr, "normal hints: flag 0x%x\n", win->sh.flags);
3665                 if (win->sh.flags & PMinSize) {
3666                         win->g.w = win->sh.min_width;
3667                         win->g.h = win->sh.min_height;
3668                         fprintf(stderr, "min %d %d\n", win->g.w, win->g.h);
3669                 }
3670                 XMoveResizeWindow(display, win->id,
3671                     win->g.x, win->g.y, win->g.w, win->g.h);
3672 #endif
3673                 break;
3674         default:
3675                 break;
3676         }
3677 }
3678
3679 void
3680 unmapnotify(XEvent *e)
3681 {
3682         struct ws_win           *win, *winfocus;
3683         struct workspace        *ws;
3684
3685         DNPRINTF(SWM_D_EVENT, "unmapnotify: window: %lu\n", e->xunmap.window);
3686
3687         SWM_EV_PROLOGUE(display);
3688
3689         /* determine if we need to help unmanage this window */
3690         win = find_window(e->xunmap.window);
3691         if (win == NULL)
3692                 goto done;
3693         if (win->transient)
3694                 goto done;
3695
3696         if (getstate(e->xunmap.window) == NormalState) {
3697                 /*
3698                  * this window does not have a destroy event but but it is no
3699                  * longer visible due to the app unmapping it so unmanage it
3700                  */
3701
3702                 /* find something to focus */
3703                 ws = win->ws;
3704                 winfocus = TAILQ_PREV(win, ws_win_list, entry);
3705                 if (TAILQ_FIRST(&ws->winlist) == win)
3706                         winfocus = TAILQ_NEXT(win, entry);
3707                 else {
3708                         winfocus = TAILQ_PREV(ws->focus, ws_win_list, entry);
3709                         if (winfocus == NULL)
3710                                 winfocus = TAILQ_LAST(&ws->winlist, ws_win_list);
3711                 }
3712
3713                 /* trash window and refocus */
3714                 unmanage_window(win);
3715                 stack();
3716                 focus_win(winfocus);
3717         }
3718
3719 done:
3720         SWM_EV_EPILOGUE(display);
3721 }
3722
3723 void
3724 visibilitynotify(XEvent *e)
3725 {
3726         int                     i;
3727         struct swm_region       *r;
3728
3729         DNPRINTF(SWM_D_EVENT, "visibilitynotify: window: %lu\n",
3730             e->xvisibility.window);
3731         if (e->xvisibility.state == VisibilityUnobscured)
3732                 for (i = 0; i < ScreenCount(display); i++)
3733                         TAILQ_FOREACH(r, &screens[i].rl, entry)
3734                                 if (e->xvisibility.window == r->bar_window)
3735                                         bar_update();
3736 }
3737
3738 int
3739 xerror_start(Display *d, XErrorEvent *ee)
3740 {
3741         other_wm = 1;
3742         return (-1);
3743 }
3744
3745 int
3746 xerror(Display *d, XErrorEvent *ee)
3747 {
3748         /* fprintf(stderr, "error: %p %p\n", display, ee); */
3749         return (-1);
3750 }
3751
3752 int
3753 active_wm(void)
3754 {
3755         other_wm = 0;
3756         xerrorxlib = XSetErrorHandler(xerror_start);
3757
3758         /* this causes an error if some other window manager is running */
3759         XSelectInput(display, DefaultRootWindow(display),
3760             SubstructureRedirectMask);
3761         XSync(display, False);
3762         if (other_wm)
3763                 return (1);
3764
3765         XSetErrorHandler(xerror);
3766         XSync(display, False);
3767         return (0);
3768 }
3769
3770 void
3771 new_region(struct swm_screen *s, int x, int y, int w, int h)
3772 {
3773         struct swm_region       *r, *n;
3774         struct workspace        *ws = NULL;
3775         int                     i;
3776
3777         DNPRINTF(SWM_D_MISC, "new region: screen[%d]:%dx%d+%d+%d\n",
3778              s->idx, w, h, x, y);
3779
3780         /* remove any conflicting regions */
3781         n = TAILQ_FIRST(&s->rl);
3782         while (n) {
3783                 r = n;
3784                 n = TAILQ_NEXT(r, entry);
3785                 if (X(r) < (x + w) &&
3786                     (X(r) + WIDTH(r)) > x &&
3787                     Y(r) < (y + h) &&
3788                     (Y(r) + HEIGHT(r)) > y) {
3789                         XDestroyWindow(display, r->bar_window);
3790                         TAILQ_REMOVE(&s->rl, r, entry);
3791                         TAILQ_INSERT_TAIL(&s->orl, r, entry);
3792                 }
3793         }
3794
3795         /* search old regions for one to reuse */
3796
3797         /* size + location match */
3798         TAILQ_FOREACH(r, &s->orl, entry)
3799                 if (X(r) == x && Y(r) == y &&
3800                     HEIGHT(r) == h && WIDTH(r) == w)
3801                         break;
3802
3803         /* size match */
3804         TAILQ_FOREACH(r, &s->orl, entry)
3805                 if (HEIGHT(r) == h && WIDTH(r) == w)
3806                         break;
3807
3808         if (r != NULL) {
3809                 TAILQ_REMOVE(&s->orl, r, entry);
3810                 /* try to use old region's workspace */
3811                 if (r->ws->r == NULL)
3812                         ws = r->ws;
3813         } else
3814                 if ((r = calloc(1, sizeof(struct swm_region))) == NULL)
3815                         errx(1, "calloc: failed to allocate memory for screen");
3816
3817         /* if we don't have a workspace already, find one */
3818         if (ws == NULL) {
3819                 for (i = 0; i < SWM_WS_MAX; i++)
3820                         if (s->ws[i].r == NULL) {
3821                                 ws = &s->ws[i];
3822                                 break;
3823                         }
3824         }
3825
3826         if (ws == NULL)
3827                 errx(1, "no free workspaces\n");
3828
3829         X(r) = x;
3830         Y(r) = y;
3831         WIDTH(r) = w;
3832         HEIGHT(r) = h;
3833         r->s = s;
3834         r->ws = ws;
3835         ws->r = r;
3836         TAILQ_INSERT_TAIL(&s->rl, r, entry);
3837 }
3838
3839 void
3840 scan_xrandr(int i)
3841 {
3842 #ifdef SWM_XRR_HAS_CRTC
3843         XRRCrtcInfo             *ci;
3844         XRRScreenResources      *sr;
3845         int                     c;
3846         int                     ncrtc = 0;
3847 #endif /* SWM_XRR_HAS_CRTC */
3848         struct swm_region       *r;
3849
3850
3851         if (i >= ScreenCount(display))
3852                 errx(1, "invalid screen");
3853
3854         /* remove any old regions */
3855         while ((r = TAILQ_FIRST(&screens[i].rl)) != NULL) {
3856                 r->ws->old_r = r->ws->r = NULL;
3857                 XDestroyWindow(display, r->bar_window);
3858                 TAILQ_REMOVE(&screens[i].rl, r, entry);
3859                 TAILQ_INSERT_TAIL(&screens[i].orl, r, entry);
3860         }
3861
3862         /* map virtual screens onto physical screens */
3863 #ifdef SWM_XRR_HAS_CRTC
3864         outputs = 0;
3865         if (xrandr_support) {
3866                 sr = XRRGetScreenResources(display, screens[i].root);
3867                 if (sr == NULL)
3868                         new_region(&screens[i], 0, 0,
3869                             DisplayWidth(display, i),
3870                             DisplayHeight(display, i));
3871                 else
3872                         ncrtc = sr->ncrtc;
3873
3874                 for (c = 0, ci = NULL; c < ncrtc; c++) {
3875                         ci = XRRGetCrtcInfo(display, sr, sr->crtcs[c]);
3876                         if (ci->noutput == 0)
3877                                 continue;
3878                         outputs++;
3879
3880                         if (ci != NULL && ci->mode == None)
3881                                 new_region(&screens[i], 0, 0,
3882                                     DisplayWidth(display, i),
3883                                     DisplayHeight(display, i));
3884                         else
3885                                 new_region(&screens[i],
3886                                     ci->x, ci->y, ci->width, ci->height);
3887                 }
3888                 if (ci)
3889                         XRRFreeCrtcInfo(ci);
3890                 XRRFreeScreenResources(sr);
3891         } else
3892 #endif /* SWM_XRR_HAS_CRTC */
3893         {
3894                 new_region(&screens[i], 0, 0, DisplayWidth(display, i),
3895                     DisplayHeight(display, i));
3896         }
3897 }
3898
3899 void
3900 screenchange(XEvent *e) {
3901         XRRScreenChangeNotifyEvent      *xe = (XRRScreenChangeNotifyEvent *)e;
3902         struct swm_region               *r;
3903         int                             i;
3904
3905         DNPRINTF(SWM_D_EVENT, "screenchange: %lu\n", xe->root);
3906
3907         if (!XRRUpdateConfiguration(e))
3908                 return;
3909
3910         /* silly event doesn't include the screen index */
3911         for (i = 0; i < ScreenCount(display); i++)
3912                 if (screens[i].root == xe->root)
3913                         break;
3914         if (i >= ScreenCount(display))
3915                 errx(1, "screenchange: screen not found\n");
3916
3917         /* brute force for now, just re-enumerate the regions */
3918         scan_xrandr(i);
3919
3920         /* add bars to all regions */
3921         for (i = 0; i < ScreenCount(display); i++)
3922                 TAILQ_FOREACH(r, &screens[i].rl, entry)
3923                         bar_setup(r);
3924         stack();
3925 }
3926
3927 void
3928 setup_screens(void)
3929 {
3930         Window                  d1, d2, *wins = NULL;
3931         XWindowAttributes       wa;
3932         unsigned int            no;
3933         int                     i, j, k;
3934         int                     errorbase, major, minor;
3935         struct workspace        *ws;
3936         int                     ws_idx_atom;
3937         long                    state, manage;
3938
3939         if ((screens = calloc(ScreenCount(display),
3940              sizeof(struct swm_screen))) == NULL)
3941                 errx(1, "calloc: screens");
3942
3943         ws_idx_atom = XInternAtom(display, "_SWM_WS", False);
3944
3945         /* initial Xrandr setup */
3946         xrandr_support = XRRQueryExtension(display,
3947             &xrandr_eventbase, &errorbase);
3948         if (xrandr_support)
3949                 if (XRRQueryVersion(display, &major, &minor) && major < 1)
3950                         xrandr_support = 0;
3951
3952         /* map physical screens */
3953         for (i = 0; i < ScreenCount(display); i++) {
3954                 DNPRINTF(SWM_D_WS, "setup_screens: init screen %d\n", i);
3955                 screens[i].idx = i;
3956                 TAILQ_INIT(&screens[i].rl);
3957                 TAILQ_INIT(&screens[i].orl);
3958                 screens[i].root = RootWindow(display, i);
3959
3960                 /* set default colors */
3961                 setscreencolor("red", i + 1, SWM_S_COLOR_FOCUS);
3962                 setscreencolor("rgb:88/88/88", i + 1, SWM_S_COLOR_UNFOCUS);
3963                 setscreencolor("rgb:00/80/80", i + 1, SWM_S_COLOR_BAR_BORDER);
3964                 setscreencolor("black", i + 1, SWM_S_COLOR_BAR);
3965                 setscreencolor("rgb:a0/a0/a0", i + 1, SWM_S_COLOR_BAR_FONT);
3966
3967                 /* init all workspaces */
3968                 /* XXX these should be dynamically allocated too */
3969                 for (j = 0; j < SWM_WS_MAX; j++) {
3970                         ws = &screens[i].ws[j];
3971                         ws->idx = j;
3972                         ws->restack = 1;
3973                         ws->focus = NULL;
3974                         ws->r = NULL;
3975                         ws->old_r = NULL;
3976                         TAILQ_INIT(&ws->winlist);
3977
3978                         for (k = 0; layouts[k].l_stack != NULL; k++)
3979                                 if (layouts[k].l_config != NULL)
3980                                         layouts[k].l_config(ws,
3981                                             SWM_ARG_ID_STACKINIT);
3982                         ws->cur_layout = &layouts[0];
3983                 }
3984                 /* grab existing windows (before we build the bars)*/
3985                 if (!XQueryTree(display, screens[i].root, &d1, &d2, &wins, &no))
3986                         continue;
3987
3988                 scan_xrandr(i);
3989
3990                 if (xrandr_support)
3991                         XRRSelectInput(display, screens[i].root,
3992                             RRScreenChangeNotifyMask);
3993
3994                 /* attach windows to a region */
3995                 /* normal windows */
3996                 for (j = 0; j < no; j++) {
3997                         XGetWindowAttributes(display, wins[j], &wa);
3998                         if (!XGetWindowAttributes(display, wins[j], &wa) ||
3999                             wa.override_redirect ||
4000                             XGetTransientForHint(display, wins[j], &d1))
4001                                 continue;
4002
4003                         state = getstate(wins[j]);
4004                         manage = state == NormalState || state == IconicState;
4005                         if (wa.map_state == IsViewable || manage)
4006                                 manage_window(wins[j]);
4007                 }
4008                 /* transient windows */
4009                 for (j = 0; j < no; j++) {
4010                         if (!XGetWindowAttributes(display, wins[j], &wa))
4011                                 continue;
4012
4013                         state = getstate(wins[j]);
4014                         manage = state == NormalState || state == IconicState;
4015                         if (XGetTransientForHint(display, wins[j], &d1) &&
4016                             manage)
4017                                 manage_window(wins[j]);
4018                 }
4019                 if (wins) {
4020                         XFree(wins);
4021                         wins = NULL;
4022                 }
4023         }
4024 }
4025 void
4026 setup_globals(void)
4027 {
4028         if ((bar_fonts[0] = strdup("-*-terminus-medium-*-*-*-*-*-*-*-*-*-*-*"))
4029             == NULL)
4030                 err(1, "setup_globals: strdup");
4031         if ((bar_fonts[1] = strdup("-*-times-medium-r-*-*-*-*-*-*-*-*-*-*"))
4032             == NULL)
4033                 err(1, "setup_globals: strdup");
4034         if ((bar_fonts[2] = strdup("-misc-fixed-medium-r-*-*-*-*-*-*-*-*-*-*"))
4035             == NULL)
4036                 err(1, "setup_globals: strdup");
4037         if ((spawn_term[0] = strdup("xterm")) == NULL)
4038                 err(1, "setup_globals: strdup");
4039 }
4040
4041 void
4042 workaround(void)
4043 {
4044         int                     i;
4045         Atom                    netwmcheck, netwmname, utf8_string;
4046         Window                  root;
4047
4048         /* work around sun jdk bugs, code from wmname */
4049         netwmcheck = XInternAtom(display, "_NET_SUPPORTING_WM_CHECK", False);
4050         netwmname = XInternAtom(display, "_NET_WM_NAME", False);
4051         utf8_string = XInternAtom(display, "UTF8_STRING", False);
4052         for (i = 0; i < ScreenCount(display); i++) {
4053                 root = screens[i].root;
4054                 XChangeProperty(display, root, netwmcheck, XA_WINDOW, 32,
4055                     PropModeReplace, (unsigned char *)&root, 1);
4056                 XChangeProperty(display, root, netwmname, utf8_string, 8,
4057                     PropModeReplace, "LG3D", strlen("LG3D"));
4058         }
4059 }
4060
4061 int
4062 main(int argc, char *argv[])
4063 {
4064         struct passwd           *pwd;
4065         struct swm_region       *r, *rr;
4066         struct ws_win           *winfocus = NULL;
4067         char                    conf[PATH_MAX], *cfile = NULL;
4068         struct stat             sb;
4069         XEvent                  e;
4070         int                     xfd, i;
4071         fd_set                  rd;
4072
4073         start_argv = argv;
4074         fprintf(stderr, "Welcome to scrotwm V%s cvs tag: %s\n",
4075             SWM_VERSION, cvstag);
4076         if (!setlocale(LC_CTYPE, "") || !XSupportsLocale())
4077                 warnx("no locale support");
4078
4079         if (!(display = XOpenDisplay(0)))
4080                 errx(1, "can not open display");
4081
4082         if (active_wm())
4083                 errx(1, "other wm running");
4084
4085         /* handle some signale */
4086         installsignal(SIGINT, "INT");
4087         installsignal(SIGHUP, "HUP");
4088         installsignal(SIGQUIT, "QUIT");
4089         installsignal(SIGTERM, "TERM");
4090         installsignal(SIGCHLD, "CHLD");
4091
4092         astate = XInternAtom(display, "WM_STATE", False);
4093         aprot = XInternAtom(display, "WM_PROTOCOLS", False);
4094         adelete = XInternAtom(display, "WM_DELETE_WINDOW", False);
4095
4096         /* look for local and global conf file */
4097         pwd = getpwuid(getuid());
4098         if (pwd == NULL)
4099                 errx(1, "invalid user %d", getuid());
4100
4101         setup_screens();
4102         setup_globals();
4103         setup_keys();
4104         setup_quirks();
4105         setup_spawn();
4106
4107         snprintf(conf, sizeof conf, "%s/.%s", pwd->pw_dir, SWM_CONF_FILE);
4108         if (stat(conf, &sb) != -1) {
4109                 if (S_ISREG(sb.st_mode))
4110                         cfile = conf;
4111         } else {
4112                 /* try global conf file */
4113                 snprintf(conf, sizeof conf, "/etc/%s", SWM_CONF_FILE);
4114                 if (!stat(conf, &sb))
4115                         if (S_ISREG(sb.st_mode))
4116                                 cfile = conf;
4117         }
4118         if (cfile)
4119                 conf_load(cfile);
4120
4121         /* setup all bars */
4122         for (i = 0; i < ScreenCount(display); i++)
4123                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
4124                         if (winfocus == NULL)
4125                                 winfocus = TAILQ_FIRST(&r->ws->winlist);
4126                         bar_setup(r);
4127                 }
4128
4129         /* set some values to work around bad programs */
4130         workaround();
4131
4132         grabkeys();
4133         stack();
4134
4135         xfd = ConnectionNumber(display);
4136         while (running) {
4137                 while (XPending(display)) {
4138                         XNextEvent(display, &e);
4139                         if (running == 0)
4140                                 goto done;
4141                         if (e.type < LASTEvent) {
4142                                 dumpevent(&e);
4143                                 if (handler[e.type])
4144                                         handler[e.type](&e);
4145                                 else
4146                                         DNPRINTF(SWM_D_EVENT,
4147                                             "win: %lu unknown event: %d\n",
4148                                             e.xany.window, e.type);
4149                         } else {
4150                                 switch (e.type - xrandr_eventbase) {
4151                                 case RRScreenChangeNotify:
4152                                         screenchange(&e);
4153                                         break;
4154                                 default:
4155                                         DNPRINTF(SWM_D_EVENT,
4156                                             "win: %lu unknown xrandr event: "
4157                                             "%d\n", e.xany.window, e.type);
4158                                         break;
4159                                 }
4160                         }
4161                 }
4162
4163                 /* if we are being restarted go focus on first window */
4164                 if (winfocus) {
4165                         rr = TAILQ_FIRST(&screens[0].rl);
4166                         /* move pointer to first screen if multi screen */
4167                         if (ScreenCount(display) > 1 || outputs > 1)
4168                                 XWarpPointer(display, None, rr->s[0].root,
4169                                     0, 0, 0, 0, rr->g.x,
4170                                     rr->g.y + bar_enabled ? bar_height : 0);
4171
4172                         focus_win(winfocus);
4173                         winfocus = NULL;
4174                         continue;
4175                 }
4176
4177                 FD_ZERO(&rd);
4178                 FD_SET(xfd, &rd);
4179                 if (select(xfd + 1, &rd, NULL, NULL, NULL) == -1)
4180                         if (errno != EINTR)
4181                                 DNPRINTF(SWM_D_MISC, "select failed");
4182                 if (running == 0)
4183                         goto done;
4184                 if (bar_alarm) {
4185                         bar_alarm = 0;
4186                         bar_update();
4187                 }
4188         }
4189 done:
4190         bar_extra_stop();
4191
4192         XCloseDisplay(display);
4193
4194         return (0);
4195 }