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