JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
mplayer fullscreens again
[spectrwm.git] / scrotwm.c
1 /* $scrotwm$ */
2 /*
3  * Copyright (c) 2009-2010-2011 Marco Peereboom <marco@peereboom.us>
4  * Copyright (c) 2009-2010-2011 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  * Copyright (c) 2011 Jason L. Wright <jason@thought.net>
8  *
9  * Permission to use, copy, modify, and distribute this software for any
10  * purpose with or without fee is hereby granted, provided that the above
11  * copyright notice and this permission notice appear in all copies.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
14  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
15  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
16  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
17  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
18  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
19  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20  */
21 /*
22  * Much code and ideas taken from dwm under the following license:
23  * MIT/X Consortium License
24  *
25  * 2006-2008 Anselm R Garbe <garbeam at gmail dot com>
26  * 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
27  * 2006-2007 Jukka Salmi <jukka at salmi dot ch>
28  * 2007 Premysl Hruby <dfenze at gmail dot com>
29  * 2007 Szabolcs Nagy <nszabolcs at gmail dot com>
30  * 2007 Christof Musik <christof at sendfax dot de>
31  * 2007-2008 Enno Gottox Boland <gottox at s01 dot de>
32  * 2007-2008 Peter Hartlich <sgkkr at hartlich dot com>
33  * 2008 Martin Hurton <martin dot hurton at gmail dot com>
34  *
35  * Permission is hereby granted, free of charge, to any person obtaining a
36  * copy of this software and associated documentation files (the "Software"),
37  * to deal in the Software without restriction, including without limitation
38  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
39  * and/or sell copies of the Software, and to permit persons to whom the
40  * Software is furnished to do so, subject to the following conditions:
41  *
42  * The above copyright notice and this permission notice shall be included in
43  * all copies or substantial portions of the Software.
44  *
45  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
46  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
47  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
48  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
49  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
50  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
51  * DEALINGS IN THE SOFTWARE.
52  */
53
54 static const char       *cvstag = "$scrotwm$";
55
56 #define SWM_VERSION     "0.9.30"
57
58 #include <stdio.h>
59 #include <stdlib.h>
60 #include <err.h>
61 #include <errno.h>
62 #include <fcntl.h>
63 #include <locale.h>
64 #include <unistd.h>
65 #include <time.h>
66 #include <signal.h>
67 #include <string.h>
68 #include <util.h>
69 #include <pwd.h>
70 #include <paths.h>
71 #include <ctype.h>
72
73 #include <sys/types.h>
74 #include <sys/time.h>
75 #include <sys/stat.h>
76 #include <sys/wait.h>
77 #include <sys/queue.h>
78 #include <sys/param.h>
79 #include <sys/select.h>
80
81 #include <X11/cursorfont.h>
82 #include <X11/keysym.h>
83 #include <X11/Xatom.h>
84 #include <X11/Xlib.h>
85 #include <X11/Xproto.h>
86 #include <X11/Xutil.h>
87 #include <X11/extensions/Xrandr.h>
88
89 #ifdef __OSX__
90 #include <osx.h>
91 #endif
92
93 #if RANDR_MAJOR < 1
94 #  error XRandR versions less than 1.0 are not supported
95 #endif
96
97 #if RANDR_MAJOR >= 1
98 #if RANDR_MINOR >= 2
99 #define SWM_XRR_HAS_CRTC
100 #endif
101 #endif
102
103 /*#define SWM_DEBUG*/
104 #ifdef SWM_DEBUG
105 #define DPRINTF(x...)           do { if (swm_debug) fprintf(stderr, x); } while (0)
106 #define DNPRINTF(n,x...)        do { if (swm_debug & n) fprintf(stderr, x); } while (0)
107 #define SWM_D_MISC              0x0001
108 #define SWM_D_EVENT             0x0002
109 #define SWM_D_WS                0x0004
110 #define SWM_D_FOCUS             0x0008
111 #define SWM_D_MOVE              0x0010
112 #define SWM_D_STACK             0x0020
113 #define SWM_D_MOUSE             0x0040
114 #define SWM_D_PROP              0x0080
115 #define SWM_D_CLASS             0x0100
116 #define SWM_D_KEY               0x0200
117 #define SWM_D_QUIRK             0x0400
118 #define SWM_D_SPAWN             0x0800
119 #define SWM_D_EVENTQ            0x1000
120 #define SWM_D_CONF              0x2000
121
122 u_int32_t               swm_debug = 0
123                             | SWM_D_MISC
124                             | SWM_D_EVENT
125                             | SWM_D_WS
126                             | SWM_D_FOCUS
127                             | SWM_D_MOVE
128                             | SWM_D_STACK
129                             | SWM_D_MOUSE
130                             | SWM_D_PROP
131                             | SWM_D_CLASS
132                             | SWM_D_KEY
133                             | SWM_D_QUIRK
134                             | SWM_D_SPAWN
135                             | SWM_D_EVENTQ
136                             | SWM_D_CONF
137                             ;
138 #else
139 #define DPRINTF(x...)
140 #define DNPRINTF(n,x...)
141 #endif
142
143 #define LENGTH(x)               (sizeof x / sizeof x[0])
144 #define MODKEY                  Mod1Mask
145 #define CLEANMASK(mask)         (mask & ~(numlockmask | LockMask))
146 #define BUTTONMASK              (ButtonPressMask|ButtonReleaseMask)
147 #define MOUSEMASK               (BUTTONMASK|PointerMotionMask)
148 #define SWM_PROPLEN             (16)
149 #define SWM_FUNCNAME_LEN        (32)
150 #define SWM_KEYS_LEN            (255)
151 #define SWM_QUIRK_LEN           (64)
152 #define X(r)                    (r)->g.x
153 #define Y(r)                    (r)->g.y
154 #define WIDTH(r)                (r)->g.w
155 #define HEIGHT(r)               (r)->g.h
156 #define SWM_MAX_FONT_STEPS      (3)
157 #define WINID(w)                (w ? w->id : 0)
158
159 #define SWM_FOCUS_DEFAULT       (0)
160 #define SWM_FOCUS_SYNERGY       (1)
161 #define SWM_FOCUS_FOLLOW        (2)
162
163 #ifndef SWM_LIB
164 #define SWM_LIB                 "/usr/local/lib/libswmhack.so"
165 #endif
166
167 char                    **start_argv;
168 Atom                    astate;
169 Atom                    aprot;
170 Atom                    adelete;
171 Atom                    takefocus;
172 Atom                    a_wmname;
173 Atom                    a_utf8_string;
174 Atom                    a_string;
175 Atom                    a_swm_iconic;
176 volatile sig_atomic_t   running = 1;
177 volatile sig_atomic_t   restart_wm = 0;
178 int                     outputs = 0;
179 int                     last_focus_event = FocusOut;
180 int                     (*xerrorxlib)(Display *, XErrorEvent *);
181 int                     other_wm;
182 int                     ss_enabled = 0;
183 int                     xrandr_support;
184 int                     xrandr_eventbase;
185 unsigned int            numlockmask = 0;
186 Display                 *display;
187
188 int                     cycle_empty = 0;
189 int                     cycle_visible = 0;
190 int                     term_width = 0;
191 int                     font_adjusted = 0;
192 unsigned int            mod_key = MODKEY;
193
194 /* dmenu search */
195 struct swm_region       *search_r;
196 int                     select_list_pipe[2];
197 int                     select_resp_pipe[2];
198 pid_t                   searchpid;
199 volatile sig_atomic_t   search_resp;
200
201 /* dialog windows */
202 double                  dialog_ratio = .6;
203 /* status bar */
204 #define SWM_BAR_MAX     (256)
205 char                    *bar_argv[] = { NULL, NULL };
206 int                     bar_pipe[2];
207 char                    bar_ext[SWM_BAR_MAX];
208 char                    bar_vertext[SWM_BAR_MAX];
209 int                     bar_version = 0;
210 sig_atomic_t            bar_alarm = 0;
211 int                     bar_delay = 30;
212 int                     bar_enabled = 1;
213 int                     bar_border_width = 1;
214 int                     bar_at_bottom = 0;
215 int                     bar_extra = 1;
216 int                     bar_extra_running = 0;
217 int                     bar_verbose = 1;
218 int                     bar_height = 0;
219 int                     stack_enabled = 1;
220 int                     clock_enabled = 1;
221 char                    *clock_format = NULL;
222 int                     title_name_enabled = 0;
223 int                     title_class_enabled = 0;
224 int                     window_name_enabled = 0;
225 int                     focus_mode = SWM_FOCUS_DEFAULT;
226 int                     disable_border = 0;
227 int                     border_width = 1;
228 pid_t                   bar_pid;
229 GC                      bar_gc;
230 XGCValues               bar_gcv;
231 int                     bar_fidx = 0;
232 XFontStruct             *bar_fs;
233 char                    *bar_fonts[] = { NULL, NULL, NULL, NULL };/* XXX Make fully dynamic */
234 char                    *spawn_term[] = { NULL, NULL };         /* XXX Make fully dynamic */
235
236 #define SWM_MENU_FN     (2)
237 #define SWM_MENU_NB     (4)
238 #define SWM_MENU_NF     (6)
239 #define SWM_MENU_SB     (8)
240 #define SWM_MENU_SF     (10)
241
242 /* layout manager data */
243 struct swm_geometry {
244         int                     x;
245         int                     y;
246         int                     w;
247         int                     h;
248 };
249
250 struct swm_screen;
251 struct workspace;
252
253 /* virtual "screens" */
254 struct swm_region {
255         TAILQ_ENTRY(swm_region) entry;
256         struct swm_geometry     g;
257         struct workspace        *ws;    /* current workspace on this region */
258         struct workspace        *ws_prior; /* prior workspace on this region */
259         struct swm_screen       *s;     /* screen idx */
260         Window                  bar_window;
261 };
262 TAILQ_HEAD(swm_region_list, swm_region);
263
264 struct ws_win {
265         TAILQ_ENTRY(ws_win)     entry;
266         Window                  id;
267         Window                  transient;
268         struct ws_win           *child_trans;   /* transient child window */
269         struct swm_geometry     g;              /* current geometry */
270         struct swm_geometry     g_float;        /* geometry when floating */
271         struct swm_geometry     rg_float;       /* region geom when floating */
272         int                     g_floatvalid;   /* flag: geometry in g_float is valid */
273         int                     floatmaxed;     /* flag: floater was maxed in max_stack */
274         int                     floating;
275         int                     manual;
276         int                     iconic;
277         unsigned int            ewmh_flags;
278         int                     font_size_boundary[SWM_MAX_FONT_STEPS];
279         int                     font_steps;
280         int                     last_inc;
281         int                     can_delete;
282         int                     take_focus;
283         int                     java;
284         unsigned long           quirks;
285         struct workspace        *ws;    /* always valid */
286         struct swm_screen       *s;     /* always valid, never changes */
287         XWindowAttributes       wa;
288         XSizeHints              sh;
289         XClassHint              ch;
290 };
291 TAILQ_HEAD(ws_win_list, ws_win);
292
293 /* layout handlers */
294 void    stack(void);
295 void    vertical_config(struct workspace *, int);
296 void    vertical_stack(struct workspace *, struct swm_geometry *);
297 void    horizontal_config(struct workspace *, int);
298 void    horizontal_stack(struct workspace *, struct swm_geometry *);
299 void    max_stack(struct workspace *, struct swm_geometry *);
300
301 struct ws_win *find_window(Window);
302
303 void    grabbuttons(struct ws_win *, int);
304 void    new_region(struct swm_screen *, int, int, int, int);
305 void    unmanage_window(struct ws_win *);
306 long    getstate(Window);
307
308 struct layout {
309         void            (*l_stack)(struct workspace *, struct swm_geometry *);
310         void            (*l_config)(struct workspace *, int);
311         u_int32_t       flags;
312 #define SWM_L_FOCUSPREV         (1<<0)
313 #define SWM_L_MAPONFOCUS        (1<<1)
314         char            *name;
315 } layouts[] =  {
316         /* stack,               configure */
317         { vertical_stack,       vertical_config,        0,      "[|]" },
318         { horizontal_stack,     horizontal_config,      0,      "[-]" },
319         { max_stack,            NULL,
320           SWM_L_MAPONFOCUS | SWM_L_FOCUSPREV,                   "[ ]"},
321         { NULL,                 NULL,                   0,      NULL },
322 };
323
324 /* position of max_stack mode in the layouts array */
325 #define SWM_MAX_STACK           2
326
327 #define SWM_H_SLICE             (32)
328 #define SWM_V_SLICE             (32)
329
330 /* define work spaces */
331 struct workspace {
332         int                     idx;            /* workspace index */
333         struct layout           *cur_layout;    /* current layout handlers */
334         struct ws_win           *focus;         /* may be NULL */
335         struct ws_win           *focus_prev;    /* may be NULL */
336         struct swm_region       *r;             /* may be NULL */
337         struct swm_region       *old_r;         /* may be NULL */
338         struct ws_win_list      winlist;        /* list of windows in ws */
339         struct ws_win_list      unmanagedlist;  /* list of dead windows in ws */
340
341         /* stacker state */
342         struct {
343                                 int horizontal_msize;
344                                 int horizontal_mwin;
345                                 int horizontal_stacks;
346                                 int vertical_msize;
347                                 int vertical_mwin;
348                                 int vertical_stacks;
349         } l_state;
350 };
351
352 enum    { SWM_S_COLOR_BAR, SWM_S_COLOR_BAR_BORDER, SWM_S_COLOR_BAR_FONT,
353           SWM_S_COLOR_FOCUS, SWM_S_COLOR_UNFOCUS, SWM_S_COLOR_MAX };
354
355 /* physical screen mapping */
356 #define SWM_WS_MAX              (10)
357 struct swm_screen {
358         int                     idx;    /* screen index */
359         struct swm_region_list  rl;     /* list of regions on this screen */
360         struct swm_region_list  orl;    /* list of old regions */
361         Window                  root;
362         struct workspace        ws[SWM_WS_MAX];
363
364         /* colors */
365         struct {
366                 unsigned long   color;
367                 char            *name;
368         } c[SWM_S_COLOR_MAX];
369 };
370 struct swm_screen       *screens;
371 int                     num_screens;
372
373 /* args to functions */
374 union arg {
375         int                     id;
376 #define SWM_ARG_ID_FOCUSNEXT    (0)
377 #define SWM_ARG_ID_FOCUSPREV    (1)
378 #define SWM_ARG_ID_FOCUSMAIN    (2)
379 #define SWM_ARG_ID_FOCUSCUR     (4)
380 #define SWM_ARG_ID_SWAPNEXT     (10)
381 #define SWM_ARG_ID_SWAPPREV     (11)
382 #define SWM_ARG_ID_SWAPMAIN     (12)
383 #define SWM_ARG_ID_MOVELAST     (13)
384 #define SWM_ARG_ID_MASTERSHRINK (20)
385 #define SWM_ARG_ID_MASTERGROW   (21)
386 #define SWM_ARG_ID_MASTERADD    (22)
387 #define SWM_ARG_ID_MASTERDEL    (23)
388 #define SWM_ARG_ID_STACKRESET   (30)
389 #define SWM_ARG_ID_STACKINIT    (31)
390 #define SWM_ARG_ID_CYCLEWS_UP   (40)
391 #define SWM_ARG_ID_CYCLEWS_DOWN (41)
392 #define SWM_ARG_ID_CYCLESC_UP   (42)
393 #define SWM_ARG_ID_CYCLESC_DOWN (43)
394 #define SWM_ARG_ID_STACKINC     (50)
395 #define SWM_ARG_ID_STACKDEC     (51)
396 #define SWM_ARG_ID_SS_ALL       (60)
397 #define SWM_ARG_ID_SS_WINDOW    (61)
398 #define SWM_ARG_ID_DONTCENTER   (70)
399 #define SWM_ARG_ID_CENTER       (71)
400 #define SWM_ARG_ID_KILLWINDOW   (80)
401 #define SWM_ARG_ID_DELETEWINDOW (81)
402         char                    **argv;
403 };
404
405 void    focus(struct swm_region *, union arg *);
406 void    focus_magic(struct ws_win *);
407
408 /* quirks */
409 struct quirk {
410         char                    *class;
411         char                    *name;
412         unsigned long           quirk;
413 #define SWM_Q_FLOAT             (1<<0)  /* float this window */
414 #define SWM_Q_TRANSSZ           (1<<1)  /* transiend window size too small */
415 #define SWM_Q_ANYWHERE          (1<<2)  /* don't position this window */
416 #define SWM_Q_XTERM_FONTADJ     (1<<3)  /* adjust xterm fonts when resizing */
417 #define SWM_Q_FULLSCREEN        (1<<4)  /* remove border */
418 };
419 int                             quirks_size = 0, quirks_length = 0;
420 struct quirk                    *quirks = NULL;
421
422 /*
423  * Supported EWMH hints should be added to
424  * both the enum and the ewmh array
425  */
426 enum { _NET_ACTIVE_WINDOW, _NET_MOVERESIZE_WINDOW, _NET_CLOSE_WINDOW,
427     _NET_WM_WINDOW_TYPE, _NET_WM_WINDOW_TYPE_DOCK,
428     _NET_WM_WINDOW_TYPE_TOOLBAR, _NET_WM_WINDOW_TYPE_UTILITY,
429     _NET_WM_WINDOW_TYPE_SPLASH, _NET_WM_WINDOW_TYPE_DIALOG,
430     _NET_WM_WINDOW_TYPE_NORMAL, _NET_WM_STATE,
431     _NET_WM_STATE_MAXIMIZED_HORZ, _NET_WM_STATE_MAXIMIZED_VERT,
432     _NET_WM_STATE_SKIP_TASKBAR, _NET_WM_STATE_SKIP_PAGER,
433     _NET_WM_STATE_HIDDEN, _NET_WM_STATE_ABOVE, _SWM_WM_STATE_MANUAL,
434     _NET_WM_STATE_FULLSCREEN, _NET_WM_ALLOWED_ACTIONS, _NET_WM_ACTION_MOVE,
435     _NET_WM_ACTION_RESIZE, _NET_WM_ACTION_FULLSCREEN, _NET_WM_ACTION_CLOSE,
436     SWM_EWMH_HINT_MAX };
437
438 struct ewmh_hint {
439         char    *name;
440         Atom     atom;
441 } ewmh[SWM_EWMH_HINT_MAX] =     {
442     /* must be in same order as in the enum */
443     {"_NET_ACTIVE_WINDOW", None},
444     {"_NET_MOVERESIZE_WINDOW", None},
445     {"_NET_CLOSE_WINDOW", None},
446     {"_NET_WM_WINDOW_TYPE", None},
447     {"_NET_WM_WINDOW_TYPE_DOCK", None},
448     {"_NET_WM_WINDOW_TYPE_TOOLBAR", None},
449     {"_NET_WM_WINDOW_TYPE_UTILITY", None},
450     {"_NET_WM_WINDOW_TYPE_SPLASH", None},
451     {"_NET_WM_WINDOW_TYPE_DIALOG", None},
452     {"_NET_WM_WINDOW_TYPE_NORMAL", None},
453     {"_NET_WM_STATE", None},
454     {"_NET_WM_STATE_MAXIMIZED_HORZ", None},
455     {"_NET_WM_STATE_MAXIMIZED_VERT", None},
456     {"_NET_WM_STATE_SKIP_TASKBAR", None},
457     {"_NET_WM_STATE_SKIP_PAGER", None},
458     {"_NET_WM_STATE_HIDDEN", None},
459     {"_NET_WM_STATE_ABOVE", None},
460     {"_SWM_WM_STATE_MANUAL", None},
461     {"_NET_WM_STATE_FULLSCREEN", None},
462     {"_NET_WM_ALLOWED_ACTIONS", None},
463     {"_NET_WM_ACTION_MOVE", None},
464     {"_NET_WM_ACTION_RESIZE", None},
465     {"_NET_WM_ACTION_FULLSCREEN", None},
466     {"_NET_WM_ACTION_CLOSE", None},
467 };
468
469 void    store_float_geom(struct ws_win *win, struct swm_region *r);
470 int     floating_toggle_win(struct ws_win *win);
471 void    spawn_select(struct swm_region *, union arg *, char *, int *);
472
473 int
474 get_property(Window id, Atom atom, long count, Atom type,
475     unsigned long *n, unsigned char **data)
476 {
477         int                     format, status;
478         unsigned long           tmp, extra;
479         unsigned long           *nitems;
480         Atom                    real;
481
482         nitems = n != NULL ? n : &tmp;
483         status = XGetWindowProperty(display, id, atom, 0L, count, False, type,
484             &real, &format, nitems, &extra, data);
485
486         if (status != Success)
487                 return False;
488         if (real != type)
489                 return False;
490
491         return True;
492 }
493
494 void
495 update_iconic(struct ws_win *win, int newv)
496 {
497         int32_t v = newv;
498         Atom iprop;
499
500         win->iconic = newv;
501
502         iprop = XInternAtom(display, "_SWM_ICONIC", False);
503         if (!iprop)
504                 return;
505         if (newv)
506                 XChangeProperty(display, win->id, iprop, XA_INTEGER, 32,
507                     PropModeReplace, (unsigned char *)&v, 1);
508         else
509                 XDeleteProperty(display, win->id, iprop);
510 }
511
512 int
513 get_iconic(struct ws_win *win)
514 {
515         int32_t v = 0;
516         int retfmt, status;
517         Atom iprop, rettype;
518         unsigned long nitems, extra;
519         unsigned char *prop = NULL;
520
521         iprop = XInternAtom(display, "_SWM_ICONIC", False);
522         if (!iprop)
523                 goto out;
524         status = XGetWindowProperty(display, win->id, iprop, 0L, 1L,
525             False, XA_INTEGER, &rettype, &retfmt, &nitems, &extra, &prop);
526         if (status != Success)
527                 goto out;
528         if (rettype != XA_INTEGER || retfmt != 32)
529                 goto out;
530         if (nitems != 1)
531                 goto out;
532         v = *((int32_t *)prop);
533
534 out:
535         if (prop != NULL)
536                 XFree(prop);
537         return (v);
538 }
539
540 void
541 setup_ewmh(void)
542 {
543         int                     i,j;
544         Atom                    sup_list;
545
546         sup_list = XInternAtom(display, "_NET_SUPPORTED", False);
547
548         for (i = 0; i < LENGTH(ewmh); i++)
549                 ewmh[i].atom = XInternAtom(display, ewmh[i].name, False);
550
551         for (i = 0; i < ScreenCount(display); i++) {
552                 /* Support check window will be created by workaround(). */
553
554                 /* Report supported atoms */
555                 XDeleteProperty(display, screens[i].root, sup_list);
556                 for (j = 0; j < LENGTH(ewmh); j++)
557                         XChangeProperty(display, screens[i].root, sup_list, XA_ATOM, 32,
558                             PropModeAppend, (unsigned char *)&ewmh[j].atom,1);
559         }
560 }
561
562 void
563 teardown_ewmh(void)
564 {
565         int                     i, success;
566         unsigned char           *data = NULL;
567         unsigned long           n;
568         Atom                    sup_check, sup_list;
569         Window                  id;
570
571         sup_check = XInternAtom(display, "_NET_SUPPORTING_WM_CHECK", False);
572         sup_list = XInternAtom(display, "_NET_SUPPORTED", False);
573
574         for (i = 0; i < ScreenCount(display); i++) {
575                 /* Get the support check window and destroy it */
576                 success = get_property(screens[i].root, sup_check, 1, XA_WINDOW,
577                     &n, &data);
578
579                 if (success) {
580                         id = data[0];
581                         XDestroyWindow(display, id);
582                         XDeleteProperty(display, screens[i].root, sup_check);
583                         XDeleteProperty(display, screens[i].root, sup_list);
584                 }
585
586                 XFree(data);
587         }
588 }
589
590 void
591 ewmh_autoquirk(struct ws_win *win)
592 {
593         int                     success, i;
594         unsigned long           *data = NULL;
595         unsigned long           n;
596         Atom                    type;
597
598         success = get_property(win->id, ewmh[_NET_WM_WINDOW_TYPE].atom, (~0L),
599             XA_ATOM, &n, (unsigned char **)&data);
600
601         if (!success) {
602                 XFree(data);
603                 return;
604         }
605
606         for (i = 0; i < n; i++) {
607                 type = data[i];
608                 if (type == ewmh[_NET_WM_WINDOW_TYPE_NORMAL].atom)
609                         break;
610                 if (type == ewmh[_NET_WM_WINDOW_TYPE_DOCK].atom ||
611                     type == ewmh[_NET_WM_WINDOW_TYPE_TOOLBAR].atom ||
612                     type == ewmh[_NET_WM_WINDOW_TYPE_UTILITY].atom) {
613                         win->floating = 1;
614                         win->quirks = SWM_Q_FLOAT | SWM_Q_ANYWHERE;
615                         break;
616                 }
617                 if (type == ewmh[_NET_WM_WINDOW_TYPE_SPLASH].atom ||
618                     type == ewmh[_NET_WM_WINDOW_TYPE_DIALOG].atom) {
619                         win->floating = 1;
620                         win->quirks = SWM_Q_FLOAT;
621                         break;
622                 }
623         }
624
625         XFree(data);
626 }
627
628 #define SWM_EWMH_ACTION_COUNT_MAX       (6)
629 #define EWMH_F_FULLSCREEN               (1<<0)
630 #define EWMH_F_ABOVE                    (1<<1)
631 #define EWMH_F_HIDDEN                   (1<<2)
632 #define EWMH_F_SKIP_PAGER               (1<<3)
633 #define EWMH_F_SKIP_TASKBAR             (1<<4)
634 #define SWM_F_MANUAL                    (1<<5)
635
636 int
637 ewmh_set_win_fullscreen(struct ws_win *win, int fs)
638 {
639         struct swm_geometry     rg;
640
641         if (!win->ws->r)
642                 return 0;
643
644         if (!win->floating)
645                 return 0;
646
647         DNPRINTF(SWM_D_MISC, "ewmh_set_win_fullscreen: win 0x%lx fs: %d\n",
648             win->id, fs);
649
650         rg = win->ws->r->g;
651
652         if (fs) {
653                 store_float_geom(win, win->ws->r);
654
655                 win->g.x = rg.x;
656                 win->g.y = rg.y;
657                 win->g.w = rg.w;
658                 win->g.h = rg.h;
659         } else {
660                 if (win->g_floatvalid) {
661                         /* refloat at last floating relative position */
662                         win->g.x = win->g_float.x - win->rg_float.x + rg.x;
663                         win->g.y = win->g_float.y - win->rg_float.y + rg.y;
664                         win->g.w = win->g_float.w;
665                         win->g.h = win->g_float.h;
666                 }
667         }
668
669         return 1;
670 }
671
672 void
673 ewmh_update_actions(struct ws_win *win)
674 {
675         Atom                    actions[SWM_EWMH_ACTION_COUNT_MAX];
676         int                     n = 0;
677
678         if (win == NULL)
679                 return;
680
681         actions[n++] = ewmh[_NET_WM_ACTION_CLOSE].atom;
682
683         if (win->floating) {
684                 actions[n++] = ewmh[_NET_WM_ACTION_MOVE].atom;
685                 actions[n++] = ewmh[_NET_WM_ACTION_RESIZE].atom;
686         }
687
688         XChangeProperty(display, win->id, ewmh[_NET_WM_ALLOWED_ACTIONS].atom,
689             XA_ATOM, 32, PropModeReplace, (unsigned char *)actions, n);
690 }
691
692 #define _NET_WM_STATE_REMOVE    0    /* remove/unset property */
693 #define _NET_WM_STATE_ADD       1    /* add/set property */
694 #define _NET_WM_STATE_TOGGLE    2    /* toggle property */
695
696 void
697 ewmh_update_win_state(struct ws_win *win, long state, long action)
698 {
699         unsigned int            mask = 0;
700         unsigned int            changed = 0;
701         unsigned int            orig_flags;
702
703         if (win == NULL)
704                 return;
705
706         if (state == ewmh[_NET_WM_STATE_FULLSCREEN].atom)
707                 mask = EWMH_F_FULLSCREEN;
708         if (state == ewmh[_NET_WM_STATE_ABOVE].atom)
709                 mask = EWMH_F_ABOVE;
710         if (state == ewmh[_SWM_WM_STATE_MANUAL].atom)
711                 mask = SWM_F_MANUAL;
712         if (state == ewmh[_NET_WM_STATE_SKIP_PAGER].atom)
713                 mask = EWMH_F_SKIP_PAGER;
714         if (state == ewmh[_NET_WM_STATE_SKIP_TASKBAR].atom)
715                 mask = EWMH_F_SKIP_TASKBAR;
716
717
718         orig_flags = win->ewmh_flags;
719
720         switch (action) {
721         case _NET_WM_STATE_REMOVE:
722                 win->ewmh_flags &= ~mask;
723                 break;
724         case _NET_WM_STATE_ADD:
725                 win->ewmh_flags |= mask;
726                 break;
727         case _NET_WM_STATE_TOGGLE:
728                 win->ewmh_flags ^= mask;
729                 break;
730         }
731
732         changed = (win->ewmh_flags & mask) ^ (orig_flags & mask) ? 1 : 0;
733
734         if (state == ewmh[_NET_WM_STATE_ABOVE].atom)
735                 if (changed)
736                         if (!floating_toggle_win(win))
737                                 win->ewmh_flags = orig_flags; /* revert */
738         if (state == ewmh[_SWM_WM_STATE_MANUAL].atom)
739                 if (changed)
740                         win->manual = (win->ewmh_flags & SWM_F_MANUAL) != 0;
741         if (state == ewmh[_NET_WM_STATE_FULLSCREEN].atom)
742                 if (changed)
743                         if (!ewmh_set_win_fullscreen(win, win->ewmh_flags & EWMH_F_FULLSCREEN))
744                                 win->ewmh_flags = orig_flags; /* revert */
745
746         XDeleteProperty(display, win->id, ewmh[_NET_WM_STATE].atom);
747
748         if (win->ewmh_flags & EWMH_F_FULLSCREEN)
749                 XChangeProperty(display, win->id, ewmh[_NET_WM_STATE].atom,
750                     XA_ATOM, 32, PropModeAppend,
751                     (unsigned char *)&ewmh[_NET_WM_STATE_FULLSCREEN].atom, 1);
752         if (win->ewmh_flags & EWMH_F_SKIP_PAGER)
753                 XChangeProperty(display, win->id, ewmh[_NET_WM_STATE].atom,
754                     XA_ATOM, 32, PropModeAppend,
755                     (unsigned char *)&ewmh[_NET_WM_STATE_SKIP_PAGER].atom, 1);
756         if (win->ewmh_flags & EWMH_F_SKIP_TASKBAR)
757                 XChangeProperty(display, win->id, ewmh[_NET_WM_STATE].atom,
758                     XA_ATOM, 32, PropModeAppend,
759                     (unsigned char *)&ewmh[_NET_WM_STATE_SKIP_TASKBAR].atom, 1);
760         if (win->ewmh_flags & EWMH_F_ABOVE)
761                 XChangeProperty(display, win->id, ewmh[_NET_WM_STATE].atom,
762                     XA_ATOM, 32, PropModeAppend,
763                     (unsigned char *)&ewmh[_NET_WM_STATE_ABOVE].atom, 1);
764         if (win->ewmh_flags & SWM_F_MANUAL)
765                 XChangeProperty(display, win->id, ewmh[_NET_WM_STATE].atom,
766                     XA_ATOM, 32, PropModeAppend,
767                     (unsigned char *)&ewmh[_SWM_WM_STATE_MANUAL].atom, 1);
768 }
769
770 void
771 ewmh_get_win_state(struct ws_win *win)
772 {
773         int                     success, i;
774         unsigned long           n;
775         Atom                    *states;
776
777         if (win == NULL)
778                 return;
779
780         win->ewmh_flags = 0;
781         if (win->floating)
782                 win->ewmh_flags |= EWMH_F_ABOVE;
783         if (win->manual)
784                 win->ewmh_flags |= SWM_F_MANUAL;
785
786         success = get_property(win->id, ewmh[_NET_WM_STATE].atom, (~0L), XA_ATOM,
787             &n, (unsigned char **)&states);
788
789         if (!success)
790                 return;
791
792         for (i = 0; i < n; i++)
793                 ewmh_update_win_state(win, states[i], _NET_WM_STATE_ADD);
794
795         XFree(states);
796 }
797
798 /* events */
799 #ifdef SWM_DEBUG
800 void
801 dumpevent(XEvent *e)
802 {
803         char                    *name = NULL;
804
805         switch (e->type) {
806         case KeyPress:
807                 name = "KeyPress";
808                 break;
809         case KeyRelease:
810                 name = "KeyRelease";
811                 break;
812         case ButtonPress:
813                 name = "ButtonPress";
814                 break;
815         case ButtonRelease:
816                 name = "ButtonRelease";
817                 break;
818         case MotionNotify:
819                 name = "MotionNotify";
820                 break;
821         case EnterNotify:
822                 name = "EnterNotify";
823                 break;
824         case LeaveNotify:
825                 name = "LeaveNotify";
826                 break;
827         case FocusIn:
828                 name = "FocusIn";
829                 break;
830         case FocusOut:
831                 name = "FocusOut";
832                 break;
833         case KeymapNotify:
834                 name = "KeymapNotify";
835                 break;
836         case Expose:
837                 name = "Expose";
838                 break;
839         case GraphicsExpose:
840                 name = "GraphicsExpose";
841                 break;
842         case NoExpose:
843                 name = "NoExpose";
844                 break;
845         case VisibilityNotify:
846                 name = "VisibilityNotify";
847                 break;
848         case CreateNotify:
849                 name = "CreateNotify";
850                 break;
851         case DestroyNotify:
852                 name = "DestroyNotify";
853                 break;
854         case UnmapNotify:
855                 name = "UnmapNotify";
856                 break;
857         case MapNotify:
858                 name = "MapNotify";
859                 break;
860         case MapRequest:
861                 name = "MapRequest";
862                 break;
863         case ReparentNotify:
864                 name = "ReparentNotify";
865                 break;
866         case ConfigureNotify:
867                 name = "ConfigureNotify";
868                 break;
869         case ConfigureRequest:
870                 name = "ConfigureRequest";
871                 break;
872         case GravityNotify:
873                 name = "GravityNotify";
874                 break;
875         case ResizeRequest:
876                 name = "ResizeRequest";
877                 break;
878         case CirculateNotify:
879                 name = "CirculateNotify";
880                 break;
881         case CirculateRequest:
882                 name = "CirculateRequest";
883                 break;
884         case PropertyNotify:
885                 name = "PropertyNotify";
886                 break;
887         case SelectionClear:
888                 name = "SelectionClear";
889                 break;
890         case SelectionRequest:
891                 name = "SelectionRequest";
892                 break;
893         case SelectionNotify:
894                 name = "SelectionNotify";
895                 break;
896         case ColormapNotify:
897                 name = "ColormapNotify";
898                 break;
899         case ClientMessage:
900                 name = "ClientMessage";
901                 break;
902         case MappingNotify:
903                 name = "MappingNotify";
904                 break;
905         }
906
907         if (name)
908                 DNPRINTF(SWM_D_EVENTQ ,"window: %lu event: %s (%d), %d "
909                     "remaining\n",
910                     e->xany.window, name, e->type, QLength(display));
911         else
912                 DNPRINTF(SWM_D_EVENTQ, "window: %lu unknown event %d, %d "
913                     "remaining\n",
914                     e->xany.window, e->type, QLength(display));
915 }
916
917 void
918 dumpwins(struct swm_region *r, union arg *args)
919 {
920         struct ws_win           *win;
921         unsigned int            state;
922         XWindowAttributes       wa;
923
924         if (r->ws == NULL) {
925                 fprintf(stderr, "invalid workspace\n");
926                 return;
927         }
928
929         fprintf(stderr, "=== managed window list ws %02d ===\n", r->ws->idx);
930
931         TAILQ_FOREACH(win, &r->ws->winlist, entry) {
932                 state = getstate(win->id);
933                 if (!XGetWindowAttributes(display, win->id, &wa))
934                         fprintf(stderr, "window: %lu failed "
935                             "XGetWindowAttributes\n", win->id);
936                 fprintf(stderr, "window: %lu map_state: %d state: %d\n",
937                     win->id, wa.map_state, state);
938         }
939
940         fprintf(stderr, "===== unmanaged window list =====\n");
941         TAILQ_FOREACH(win, &r->ws->unmanagedlist, entry) {
942                 state = getstate(win->id);
943                 if (!XGetWindowAttributes(display, win->id, &wa))
944                         fprintf(stderr, "window: %lu failed "
945                             "XGetWindowAttributes\n", win->id);
946                 fprintf(stderr, "window: %lu map_state: %d state: %d\n",
947                     win->id, wa.map_state, state);
948         }
949
950         fprintf(stderr, "=================================\n");
951 }
952 #else
953 #define dumpevent(e)
954 void
955 dumpwins(struct swm_region *r, union arg *args)
956 {
957 }
958 #endif /* SWM_DEBUG */
959
960 void                    expose(XEvent *);
961 void                    keypress(XEvent *);
962 void                    buttonpress(XEvent *);
963 void                    configurerequest(XEvent *);
964 void                    configurenotify(XEvent *);
965 void                    destroynotify(XEvent *);
966 void                    enternotify(XEvent *);
967 void                    focusevent(XEvent *);
968 void                    mapnotify(XEvent *);
969 void                    mappingnotify(XEvent *);
970 void                    maprequest(XEvent *);
971 void                    propertynotify(XEvent *);
972 void                    unmapnotify(XEvent *);
973 void                    visibilitynotify(XEvent *);
974 void                    clientmessage(XEvent *);
975
976 void                    (*handler[LASTEvent])(XEvent *) = {
977                                 [Expose] = expose,
978                                 [KeyPress] = keypress,
979                                 [ButtonPress] = buttonpress,
980                                 [ConfigureRequest] = configurerequest,
981                                 [ConfigureNotify] = configurenotify,
982                                 [DestroyNotify] = destroynotify,
983                                 [EnterNotify] = enternotify,
984                                 [FocusIn] = focusevent,
985                                 [FocusOut] = focusevent,
986                                 [MapNotify] = mapnotify,
987                                 [MappingNotify] = mappingnotify,
988                                 [MapRequest] = maprequest,
989                                 [PropertyNotify] = propertynotify,
990                                 [UnmapNotify] = unmapnotify,
991                                 [VisibilityNotify] = visibilitynotify,
992                                 [ClientMessage] = clientmessage,
993 };
994
995 void
996 sighdlr(int sig)
997 {
998         int                     saved_errno, status;
999         pid_t                   pid;
1000
1001         saved_errno = errno;
1002
1003         switch (sig) {
1004         case SIGCHLD:
1005                 while ((pid = waitpid(WAIT_ANY, &status, WNOHANG)) != 0) {
1006                         if (pid == -1) {
1007                                 if (errno == EINTR)
1008                                         continue;
1009 #ifdef SWM_DEBUG
1010                                 if (errno != ECHILD)
1011                                         warn("sighdlr: waitpid");
1012 #endif /* SWM_DEBUG */
1013                                 break;
1014                         }
1015                         if (pid == searchpid)
1016                                 search_resp = 1;
1017
1018 #ifdef SWM_DEBUG
1019                         if (WIFEXITED(status)) {
1020                                 if (WEXITSTATUS(status) != 0)
1021                                         warnx("sighdlr: child exit status: %d",
1022                                             WEXITSTATUS(status));
1023                         } else
1024                                 warnx("sighdlr: child is terminated "
1025                                     "abnormally");
1026 #endif /* SWM_DEBUG */
1027                 }
1028                 break;
1029
1030         case SIGHUP:
1031                 restart_wm = 1;
1032                 break;
1033         case SIGINT:
1034         case SIGTERM:
1035         case SIGQUIT:
1036                 running = 0;
1037                 break;
1038         }
1039
1040         errno = saved_errno;
1041 }
1042
1043 unsigned long
1044 name_to_color(char *colorname)
1045 {
1046         Colormap                cmap;
1047         Status                  status;
1048         XColor                  screen_def, exact_def;
1049         unsigned long           result = 0;
1050         char                    cname[32] = "#";
1051
1052         cmap = DefaultColormap(display, screens[0].idx);
1053         status = XAllocNamedColor(display, cmap, colorname,
1054             &screen_def, &exact_def);
1055         if (!status) {
1056                 strlcat(cname, colorname + 2, sizeof cname - 1);
1057                 status = XAllocNamedColor(display, cmap, cname, &screen_def,
1058                     &exact_def);
1059         }
1060         if (status)
1061                 result = screen_def.pixel;
1062         else
1063                 fprintf(stderr, "color '%s' not found.\n", colorname);
1064
1065         return (result);
1066 }
1067
1068 void
1069 setscreencolor(char *val, int i, int c)
1070 {
1071         if (i > 0 && i <= ScreenCount(display)) {
1072                 screens[i - 1].c[c].color = name_to_color(val);
1073                 free(screens[i - 1].c[c].name);
1074                 if ((screens[i - 1].c[c].name = strdup(val)) == NULL)
1075                         errx(1, "strdup");
1076         } else if (i == -1) {
1077                 for (i = 0; i < ScreenCount(display); i++) {
1078                         screens[i].c[c].color = name_to_color(val);
1079                         free(screens[i].c[c].name);
1080                         if ((screens[i].c[c].name = strdup(val)) == NULL)
1081                                 errx(1, "strdup");
1082                 }
1083         } else
1084                 errx(1, "invalid screen index: %d out of bounds (maximum %d)\n",
1085                     i, ScreenCount(display));
1086 }
1087
1088 void
1089 custom_region(char *val)
1090 {
1091         unsigned int                    sidx, x, y, w, h;
1092
1093         if (sscanf(val, "screen[%u]:%ux%u+%u+%u", &sidx, &w, &h, &x, &y) != 5)
1094                 errx(1, "invalid custom region, "
1095                     "should be 'screen[<n>]:<n>x<n>+<n>+<n>\n");
1096         if (sidx < 1 || sidx > ScreenCount(display))
1097                 errx(1, "invalid screen index: %d out of bounds (maximum %d)\n",
1098                     sidx, ScreenCount(display));
1099         sidx--;
1100
1101         if (w < 1 || h < 1)
1102                 errx(1, "region %ux%u+%u+%u too small\n", w, h, x, y);
1103
1104         if (x  < 0 || x > DisplayWidth(display, sidx) ||
1105             y < 0 || y > DisplayHeight(display, sidx) ||
1106             w + x > DisplayWidth(display, sidx) ||
1107             h + y > DisplayHeight(display, sidx)) {
1108                 fprintf(stderr, "ignoring region %ux%u+%u+%u - not within screen boundaries "
1109                     "(%ux%u)\n", w, h, x, y,
1110                     DisplayWidth(display, sidx), DisplayHeight(display, sidx));
1111                 return;
1112         }
1113
1114         new_region(&screens[sidx], x, y, w, h);
1115 }
1116
1117 void
1118 socket_setnonblock(int fd)
1119 {
1120         int                     flags;
1121
1122         if ((flags = fcntl(fd, F_GETFL, 0)) == -1)
1123                 err(1, "fcntl F_GETFL");
1124         flags |= O_NONBLOCK;
1125         if ((flags = fcntl(fd, F_SETFL, flags)) == -1)
1126                 err(1, "fcntl F_SETFL");
1127 }
1128
1129 void
1130 bar_print(struct swm_region *r, char *s)
1131 {
1132         XClearWindow(display, r->bar_window);
1133         XSetForeground(display, bar_gc, r->s->c[SWM_S_COLOR_BAR_FONT].color);
1134         XDrawString(display, r->bar_window, bar_gc, 4, bar_fs->ascent, s,
1135             strlen(s));
1136 }
1137
1138 void
1139 bar_extra_stop(void)
1140 {
1141         if (bar_pipe[0]) {
1142                 close(bar_pipe[0]);
1143                 bzero(bar_pipe, sizeof bar_pipe);
1144         }
1145         if (bar_pid) {
1146                 kill(bar_pid, SIGTERM);
1147                 bar_pid = 0;
1148         }
1149         strlcpy(bar_ext, "", sizeof bar_ext);
1150         bar_extra = 0;
1151 }
1152
1153 void
1154 bar_class_name(char *s, ssize_t sz, struct ws_win *cur_focus)
1155 {
1156         int                     do_class, do_name;
1157         Status                  status;
1158         XClassHint              *xch = NULL;
1159
1160         if ((title_name_enabled == 1 || title_class_enabled == 1) &&
1161             cur_focus != NULL) {
1162                 if ((xch = XAllocClassHint()) == NULL)
1163                         goto out;
1164                 status = XGetClassHint(display, cur_focus->id, xch);
1165                 if (status == BadWindow || status == BadAlloc)
1166                         goto out;
1167                 do_class = (title_class_enabled && xch->res_class != NULL);
1168                 do_name = (title_name_enabled && xch->res_name != NULL);
1169                 if (do_class)
1170                         strlcat(s, xch->res_class, sz);
1171                 if (do_class && do_name)
1172                         strlcat(s, ":", sz);
1173                 if (do_name)
1174                         strlcat(s, xch->res_name, sz);
1175                 strlcat(s, "    ", sz);
1176         }
1177 out:
1178         if (xch)
1179                 XFree(xch);
1180 }
1181
1182 void
1183 bar_window_name(char *s, ssize_t sz, struct ws_win *cur_focus)
1184 {
1185         char                    *title;
1186
1187         if (window_name_enabled && cur_focus != NULL) {
1188                 XFetchName(display, cur_focus->id, &title);
1189                 if (title) {
1190                         if (cur_focus->floating)
1191                                 strlcat(s, "(f) ", sz);
1192                         strlcat(s, title, sz);
1193                         strlcat(s, " ", sz);
1194                         XFree(title);
1195                 }
1196         }
1197 }
1198
1199 void
1200 bar_update(void)
1201 {
1202         time_t                  tmt;
1203         struct tm               tm;
1204         struct swm_region       *r;
1205         int                     i, x;
1206         size_t                  len;
1207         char                    s[SWM_BAR_MAX];
1208         char                    cn[SWM_BAR_MAX];
1209         char                    loc[SWM_BAR_MAX];
1210         char                    *b;
1211         char                    *stack = "";
1212
1213         if (bar_enabled == 0)
1214                 return;
1215         if (bar_extra && bar_extra_running) {
1216                 /* ignore short reads; it'll correct itself */
1217                 while ((b = fgetln(stdin, &len)) != NULL)
1218                         if (b && b[len - 1] == '\n') {
1219                                 b[len - 1] = '\0';
1220                                 strlcpy(bar_ext, b, sizeof bar_ext);
1221                         }
1222                 if (b == NULL && errno != EAGAIN) {
1223                         fprintf(stderr, "bar_extra failed: errno: %d %s\n",
1224                             errno, strerror(errno));
1225                         bar_extra_stop();
1226                 }
1227         } else
1228                 strlcpy(bar_ext, "", sizeof bar_ext);
1229
1230         if (clock_enabled == 0)
1231                 strlcpy(s, "", sizeof s);
1232         else {
1233                 time(&tmt);
1234                 localtime_r(&tmt, &tm);
1235                 strftime(s, sizeof s, clock_format, &tm);
1236                 strlcat(s, "    ", sizeof s);
1237         }
1238
1239         for (i = 0; i < ScreenCount(display); i++) {
1240                 x = 1;
1241                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
1242                         strlcpy(cn, "", sizeof cn);
1243                         if (r && r->ws) {
1244                                 bar_class_name(cn, sizeof cn, r->ws->focus);
1245                                 bar_window_name(cn, sizeof cn, r->ws->focus);
1246                         }
1247
1248                         if (stack_enabled)
1249                                 stack = r->ws->cur_layout->name;
1250
1251                         snprintf(loc, sizeof loc, "%d:%d %s   %s%s    %s    %s",
1252                             x++, r->ws->idx + 1, stack, s, cn, bar_ext,
1253                             bar_vertext);
1254                         bar_print(r, loc);
1255                 }
1256         }
1257         alarm(bar_delay);
1258 }
1259
1260 void
1261 bar_signal(int sig)
1262 {
1263         bar_alarm = 1;
1264 }
1265
1266 void
1267 bar_toggle(struct swm_region *r, union arg *args)
1268 {
1269         struct swm_region       *tmpr;
1270         int                     i, sc = ScreenCount(display);
1271
1272         DNPRINTF(SWM_D_MISC, "bar_toggle\n");
1273
1274         if (bar_enabled)
1275                 for (i = 0; i < sc; i++)
1276                         TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
1277                                 XUnmapWindow(display, tmpr->bar_window);
1278         else
1279                 for (i = 0; i < sc; i++)
1280                         TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
1281                                 XMapRaised(display, tmpr->bar_window);
1282
1283         bar_enabled = !bar_enabled;
1284
1285         stack();
1286         /* must be after stack */
1287         bar_update();
1288 }
1289
1290 void
1291 bar_refresh(void)
1292 {
1293         XSetWindowAttributes    wa;
1294         struct swm_region       *r;
1295         int                     i;
1296
1297         /* do this here because the conf file is in memory */
1298         if (bar_extra && bar_extra_running == 0 && bar_argv[0]) {
1299                 /* launch external status app */
1300                 bar_extra_running = 1;
1301                 if (pipe(bar_pipe) == -1)
1302                         err(1, "pipe error");
1303                 socket_setnonblock(bar_pipe[0]);
1304                 socket_setnonblock(bar_pipe[1]); /* XXX hmmm, really? */
1305                 if (dup2(bar_pipe[0], 0) == -1)
1306                         errx(1, "dup2");
1307                 if (dup2(bar_pipe[1], 1) == -1)
1308                         errx(1, "dup2");
1309                 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
1310                         err(1, "could not disable SIGPIPE");
1311                 switch (bar_pid = fork()) {
1312                 case -1:
1313                         err(1, "cannot fork");
1314                         break;
1315                 case 0: /* child */
1316                         close(bar_pipe[0]);
1317                         execvp(bar_argv[0], bar_argv);
1318                         err(1, "%s external app failed", bar_argv[0]);
1319                         break;
1320                 default: /* parent */
1321                         close(bar_pipe[1]);
1322                         break;
1323                 }
1324         }
1325
1326         bzero(&wa, sizeof wa);
1327         for (i = 0; i < ScreenCount(display); i++)
1328                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
1329                         wa.border_pixel =
1330                             screens[i].c[SWM_S_COLOR_BAR_BORDER].color;
1331                         wa.background_pixel =
1332                             screens[i].c[SWM_S_COLOR_BAR].color;
1333                         XChangeWindowAttributes(display, r->bar_window,
1334                             CWBackPixel | CWBorderPixel, &wa);
1335                 }
1336         bar_update();
1337 }
1338
1339 void
1340 bar_setup(struct swm_region *r)
1341 {
1342         int                     i, x, y;
1343
1344         if (bar_fs) {
1345                 XFreeFont(display, bar_fs);
1346                 bar_fs = NULL;
1347         }
1348
1349         for (i = 0; bar_fonts[i] != NULL; i++) {
1350                 bar_fs = XLoadQueryFont(display, bar_fonts[i]);
1351                 if (bar_fs) {
1352                         bar_fidx = i;
1353                         break;
1354                 }
1355         }
1356         if (bar_fonts[i] == NULL)
1357                         errx(1, "couldn't load font");
1358         if (bar_fs == NULL)
1359                 errx(1, "couldn't create font structure");
1360
1361         bar_height = bar_fs->ascent + bar_fs->descent + 1 + 2 * bar_border_width;
1362         x = X(r);
1363         y = bar_at_bottom ? (Y(r) + HEIGHT(r) - bar_height) : Y(r);
1364
1365         r->bar_window = XCreateSimpleWindow(display,
1366             r->s->root, x, y, WIDTH(r) - 2 * bar_border_width, bar_height - 2 * bar_border_width,
1367             bar_border_width, r->s->c[SWM_S_COLOR_BAR_BORDER].color,
1368             r->s->c[SWM_S_COLOR_BAR].color);
1369         bar_gc = XCreateGC(display, r->bar_window, 0, &bar_gcv);
1370         XSetFont(display, bar_gc, bar_fs->fid);
1371         XSelectInput(display, r->bar_window, VisibilityChangeMask);
1372         if (bar_enabled)
1373                 XMapRaised(display, r->bar_window);
1374         DNPRINTF(SWM_D_MISC, "bar_setup: bar_window %lu\n", r->bar_window);
1375
1376         if (signal(SIGALRM, bar_signal) == SIG_ERR)
1377                 err(1, "could not install bar_signal");
1378         bar_refresh();
1379 }
1380
1381 void
1382 set_win_state(struct ws_win *win, long state)
1383 {
1384         long                    data[] = {state, None};
1385
1386         DNPRINTF(SWM_D_EVENT, "set_win_state: window: %lu\n", win->id);
1387
1388         if (win == NULL)
1389                 return;
1390
1391         XChangeProperty(display, win->id, astate, astate, 32, PropModeReplace,
1392             (unsigned char *)data, 2);
1393 }
1394
1395 long
1396 getstate(Window w)
1397 {
1398         long                    result = -1;
1399         unsigned char           *p = NULL;
1400         unsigned long           n;
1401
1402         if (!get_property(w, astate, 2L, astate, &n, &p))
1403                 return (-1);
1404         if (n != 0)
1405                 result = *((long *)p);
1406         XFree(p);
1407         return (result);
1408 }
1409
1410 void
1411 version(struct swm_region *r, union arg *args)
1412 {
1413         bar_version = !bar_version;
1414         if (bar_version)
1415                 snprintf(bar_vertext, sizeof bar_vertext, "Version: %s CVS: %s",
1416                     SWM_VERSION, cvstag);
1417         else
1418                 strlcpy(bar_vertext, "", sizeof bar_vertext);
1419         bar_update();
1420 }
1421
1422 void
1423 client_msg(struct ws_win *win, Atom a)
1424 {
1425         XClientMessageEvent     cm;
1426
1427         if (win == NULL)
1428                 return;
1429
1430         bzero(&cm, sizeof cm);
1431         cm.type = ClientMessage;
1432         cm.window = win->id;
1433         cm.message_type = aprot;
1434         cm.format = 32;
1435         cm.data.l[0] = a;
1436         cm.data.l[1] = CurrentTime;
1437         XSendEvent(display, win->id, False, 0L, (XEvent *)&cm);
1438 }
1439
1440 void
1441 config_win(struct ws_win *win, XConfigureRequestEvent  *ev)
1442 {
1443         XConfigureEvent         ce;
1444
1445         if (win == NULL)
1446                 return;
1447
1448         if (ev == NULL) {
1449                 DNPRINTF(SWM_D_MISC, "config_win: win %lu x %d y %d w %d h %d\n",
1450                     win->id, win->g.x, win->g.y, win->g.w, win->g.h);
1451
1452                 ce.type = ConfigureNotify;
1453                 ce.display = display;
1454                 ce.event = win->id;
1455                 ce.window = win->id;
1456                 ce.x = win->g.x;
1457                 ce.y = win->g.y;
1458                 ce.width = win->g.w;
1459                 ce.height = win->g.h;
1460                 ce.border_width = border_width;
1461                 ce.above = None;
1462                 ce.override_redirect = False;
1463         } else {
1464                 DNPRINTF(SWM_D_MISC, "config_win: ev win %lu x %d y %d w %d h %d\n",
1465                     ev->window, ev->x, ev->y, ev->width, ev->height);
1466                 ce.type = ConfigureNotify;
1467                 ce.display = ev->display;
1468                 ce.event = ev->window;
1469                 ce.window = ev->window;
1470                 ce.x = ev->x;
1471                 ce.y = ev->y;
1472                 ce.width = ev->width;
1473                 ce.height = ev->height;
1474                 ce.border_width = ev->border_width;
1475                 ce.above = ev->above;
1476                 ce.override_redirect = False;
1477         }
1478
1479         XSendEvent(display, win->id, False, StructureNotifyMask, (XEvent *)&ce);
1480 }
1481
1482 int
1483 count_win(struct workspace *ws, int count_transient)
1484 {
1485         struct ws_win           *win;
1486         int                     count = 0;
1487
1488         TAILQ_FOREACH(win, &ws->winlist, entry) {
1489                 if (count_transient == 0 && win->floating)
1490                         continue;
1491                 if (count_transient == 0 && win->transient)
1492                         continue;
1493                 if (win->iconic)
1494                         continue;
1495                 count++;
1496         }
1497         DNPRINTF(SWM_D_MISC, "count_win: %d\n", count);
1498
1499         return (count);
1500 }
1501
1502 void
1503 quit(struct swm_region *r, union arg *args)
1504 {
1505         DNPRINTF(SWM_D_MISC, "quit\n");
1506         running = 0;
1507 }
1508
1509 void
1510 unmap_window(struct ws_win *win)
1511 {
1512         if (win == NULL)
1513                 return;
1514
1515         /* don't unmap again */
1516         if (getstate(win->id) == IconicState)
1517                 return;
1518
1519         set_win_state(win, IconicState);
1520
1521         XUnmapWindow(display, win->id);
1522         XSetWindowBorder(display, win->id,
1523             win->s->c[SWM_S_COLOR_UNFOCUS].color);
1524 }
1525
1526 void
1527 unmap_all(void)
1528 {
1529         struct ws_win           *win;
1530         int                     i, j;
1531
1532         for (i = 0; i < ScreenCount(display); i++)
1533                 for (j = 0; j < SWM_WS_MAX; j++)
1534                         TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
1535                                 unmap_window(win);
1536 }
1537
1538 void
1539 fake_keypress(struct ws_win *win, int keysym, int modifiers)
1540 {
1541         XKeyEvent event;
1542
1543         if (win == NULL)
1544                 return;
1545
1546         event.display = display;        /* Ignored, but what the hell */
1547         event.window = win->id;
1548         event.root = win->s->root;
1549         event.subwindow = None;
1550         event.time = CurrentTime;
1551         event.x = win->g.x;
1552         event.y = win->g.y;
1553         event.x_root = 1;
1554         event.y_root = 1;
1555         event.same_screen = True;
1556         event.keycode = XKeysymToKeycode(display, keysym);
1557         event.state = modifiers;
1558
1559         event.type = KeyPress;
1560         XSendEvent(event.display, event.window, True,
1561             KeyPressMask, (XEvent *)&event);
1562
1563         event.type = KeyRelease;
1564         XSendEvent(event.display, event.window, True,
1565             KeyPressMask, (XEvent *)&event);
1566
1567 }
1568
1569 void
1570 restart(struct swm_region *r, union arg *args)
1571 {
1572         DNPRINTF(SWM_D_MISC, "restart: %s\n", start_argv[0]);
1573
1574         /* disable alarm because the following code may not be interrupted */
1575         alarm(0);
1576         if (signal(SIGALRM, SIG_IGN) == SIG_ERR)
1577                 errx(1, "can't disable alarm");
1578
1579         bar_extra_stop();
1580         bar_extra = 1;
1581         unmap_all();
1582         XCloseDisplay(display);
1583         execvp(start_argv[0], start_argv);
1584         fprintf(stderr, "execvp failed\n");
1585         perror(" failed");
1586         quit(NULL, NULL);
1587 }
1588
1589 struct swm_region *
1590 root_to_region(Window root)
1591 {
1592         struct swm_region       *r = NULL;
1593         Window                  rr, cr;
1594         int                     i, x, y, wx, wy;
1595         unsigned int            mask;
1596
1597         for (i = 0; i < ScreenCount(display); i++)
1598                 if (screens[i].root == root)
1599                         break;
1600
1601         if (XQueryPointer(display, screens[i].root,
1602             &rr, &cr, &x, &y, &wx, &wy, &mask) != False) {
1603                 /* choose a region based on pointer location */
1604                 TAILQ_FOREACH(r, &screens[i].rl, entry)
1605                         if (x >= X(r) && x <= X(r) + WIDTH(r) &&
1606                             y >= Y(r) && y <= Y(r) + HEIGHT(r))
1607                                 break;
1608         }
1609
1610         if (r == NULL)
1611                 r = TAILQ_FIRST(&screens[i].rl);
1612
1613         return (r);
1614 }
1615
1616 struct ws_win *
1617 find_unmanaged_window(Window id)
1618 {
1619         struct ws_win           *win;
1620         int                     i, j;
1621
1622         for (i = 0; i < ScreenCount(display); i++)
1623                 for (j = 0; j < SWM_WS_MAX; j++)
1624                         TAILQ_FOREACH(win, &screens[i].ws[j].unmanagedlist,
1625                             entry)
1626                                 if (id == win->id)
1627                                         return (win);
1628         return (NULL);
1629 }
1630
1631 struct ws_win *
1632 find_window(Window id)
1633 {
1634         struct ws_win           *win;
1635         Window                  wrr, wpr, *wcr = NULL;
1636         int                     i, j;
1637         unsigned int            nc;
1638
1639         for (i = 0; i < ScreenCount(display); i++)
1640                 for (j = 0; j < SWM_WS_MAX; j++)
1641                         TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
1642                                 if (id == win->id)
1643                                         return (win);
1644
1645         /* if we were looking for the parent return that window instead */
1646         if (XQueryTree(display, id, &wrr, &wpr, &wcr, &nc) == 0)
1647                 return (NULL);
1648         if (wcr)
1649                 XFree(wcr);
1650
1651         /* ignore not found and root */
1652         if (wpr == 0 || wrr == wpr)
1653                 return (NULL);
1654
1655         /* look for parent */
1656         for (i = 0; i < ScreenCount(display); i++)
1657                 for (j = 0; j < SWM_WS_MAX; j++)
1658                         TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
1659                                 if (wpr == win->id)
1660                                         return (win);
1661
1662         return (NULL);
1663 }
1664
1665 void
1666 spawn(struct swm_region *r, union arg *args, int close_fd)
1667 {
1668         int                     fd;
1669         char                    *ret = NULL;
1670
1671         DNPRINTF(SWM_D_MISC, "spawn: %s\n", args->argv[0]);
1672
1673         if (display)
1674                 close(ConnectionNumber(display));
1675
1676         setenv("LD_PRELOAD", SWM_LIB, 1);
1677
1678         if (asprintf(&ret, "%d", r->ws->idx) == -1) {
1679                 perror("_SWM_WS");
1680                 _exit(1);
1681         }
1682         setenv("_SWM_WS", ret, 1);
1683         free(ret);
1684         ret = NULL;
1685
1686         if (asprintf(&ret, "%d", getpid()) == -1) {
1687                 perror("_SWM_PID");
1688                 _exit(1);
1689         }
1690         setenv("_SWM_PID", ret, 1);
1691         free(ret);
1692         ret = NULL;
1693
1694         if (setsid() == -1) {
1695                 perror("setsid");
1696                 _exit(1);
1697         }
1698
1699         if (close_fd) {
1700                 /*
1701                  * close stdin and stdout to prevent interaction between apps
1702                  * and the baraction script
1703                  * leave stderr open to record errors
1704                 */
1705                 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) == -1) {
1706                         perror("open");
1707                         _exit(1);
1708                 }
1709                 dup2(fd, STDIN_FILENO);
1710                 dup2(fd, STDOUT_FILENO);
1711                 if (fd > 2)
1712                         close(fd);
1713         }
1714
1715         execvp(args->argv[0], args->argv);
1716
1717         perror("execvp");
1718         _exit(1);
1719 }
1720
1721 void
1722 spawnterm(struct swm_region *r, union arg *args)
1723 {
1724         DNPRINTF(SWM_D_MISC, "spawnterm\n");
1725
1726         if (term_width)
1727                 setenv("_SWM_XTERM_FONTADJ", "", 1);
1728         if (fork() == 0)
1729                 spawn(r, args, 1);
1730 }
1731
1732 void
1733 kill_refs(struct ws_win *win)
1734 {
1735         int                     i, x;
1736         struct swm_region       *r;
1737         struct workspace        *ws;
1738
1739         if (win == NULL)
1740                 return;
1741
1742         for (i = 0; i < ScreenCount(display); i++)
1743                 TAILQ_FOREACH(r, &screens[i].rl, entry)
1744                         for (x = 0; x < SWM_WS_MAX; x++) {
1745                                 ws = &r->s->ws[x];
1746                                 if (win == ws->focus)
1747                                         ws->focus = NULL;
1748                                 if (win == ws->focus_prev)
1749                                         ws->focus_prev = NULL;
1750                         }
1751 }
1752
1753 int
1754 validate_win(struct ws_win *testwin)
1755 {
1756         struct ws_win           *win;
1757         struct workspace        *ws;
1758         struct swm_region       *r;
1759         int                     i, x, foundit = 0;
1760
1761         if (testwin == NULL)
1762                 return(0);
1763
1764         for (i = 0, foundit = 0; i < ScreenCount(display); i++)
1765                 TAILQ_FOREACH(r, &screens[i].rl, entry)
1766                         for (x = 0; x < SWM_WS_MAX; x++) {
1767                                 ws = &r->s->ws[x];
1768                                 TAILQ_FOREACH(win, &ws->winlist, entry)
1769                                         if (win == testwin)
1770                                                 return (0);
1771                         }
1772         return (1);
1773 }
1774
1775 int
1776 validate_ws(struct workspace *testws)
1777 {
1778         struct swm_region       *r;
1779         struct workspace        *ws;
1780         int                     foundit, i, x;
1781
1782         /* validate all ws */
1783         for (i = 0, foundit = 0; i < ScreenCount(display); i++)
1784                 TAILQ_FOREACH(r, &screens[i].rl, entry)
1785                         for (x = 0; x < SWM_WS_MAX; x++) {
1786                                 ws = &r->s->ws[x];
1787                                 if (ws == testws)
1788                                         return (0);
1789                         }
1790         return (1);
1791 }
1792
1793 void
1794 unfocus_win(struct ws_win *win)
1795 {
1796         XEvent                  cne;
1797         Window                  none = None;
1798
1799         DNPRINTF(SWM_D_FOCUS, "unfocus_win: id: %lu\n", WINID(win));
1800
1801         if (win == NULL)
1802                 return;
1803         if (win->ws == NULL)
1804                 return;
1805
1806         if (validate_ws(win->ws))
1807                 return; /* XXX this gets hit with thunderbird, needs fixing */
1808
1809         if (win->ws->r == NULL)
1810                 return;
1811
1812         if (validate_win(win)) {
1813                 kill_refs(win);
1814                 return;
1815         }
1816
1817         if (win->ws->focus == win) {
1818                 win->ws->focus = NULL;
1819                 win->ws->focus_prev = win;
1820         }
1821
1822         if (validate_win(win->ws->focus)) {
1823                 kill_refs(win->ws->focus);
1824                 win->ws->focus = NULL;
1825         }
1826         if (validate_win(win->ws->focus_prev)) {
1827                 kill_refs(win->ws->focus_prev);
1828                 win->ws->focus_prev = NULL;
1829         }
1830
1831         /* drain all previous unfocus events */
1832         while (XCheckTypedEvent(display, FocusOut, &cne) == True)
1833                 ;
1834
1835         grabbuttons(win, 0);
1836         XSetWindowBorder(display, win->id,
1837             win->ws->r->s->c[SWM_S_COLOR_UNFOCUS].color);
1838
1839         XChangeProperty(display, win->s->root,
1840             ewmh[_NET_ACTIVE_WINDOW].atom, XA_WINDOW, 32,
1841             PropModeReplace, (unsigned char *)&none,1);
1842 }
1843
1844 void
1845 unfocus_all(void)
1846 {
1847         struct ws_win           *win;
1848         int                     i, j;
1849
1850         DNPRINTF(SWM_D_FOCUS, "unfocus_all\n");
1851
1852         for (i = 0; i < ScreenCount(display); i++)
1853                 for (j = 0; j < SWM_WS_MAX; j++)
1854                         TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
1855                                 unfocus_win(win);
1856 }
1857
1858 void
1859 focus_win(struct ws_win *win)
1860 {
1861         XEvent                  cne;
1862         Window                  cur_focus;
1863         int                     rr;
1864         struct ws_win           *cfw = NULL;
1865
1866
1867         DNPRINTF(SWM_D_FOCUS, "focus_win: id: %lu\n", win ? win->id : 0);
1868
1869         if (win == NULL)
1870                 return;
1871         if (win->ws == NULL)
1872                 return;
1873
1874         if (validate_ws(win->ws))
1875                 return; /* XXX this gets hit with thunderbird, needs fixing */
1876
1877         if (validate_win(win)) {
1878                 kill_refs(win);
1879                 return;
1880         }
1881
1882         if (validate_win(win)) {
1883                 kill_refs(win);
1884                 return;
1885         }
1886
1887         XGetInputFocus(display, &cur_focus, &rr);
1888         if ((cfw = find_window(cur_focus)) != NULL)
1889                 unfocus_win(cfw);
1890
1891         win->ws->focus = win;
1892
1893         if (win->ws->r != NULL) {
1894                 /* drain all previous focus events */
1895                 while (XCheckTypedEvent(display, FocusIn, &cne) == True)
1896                         ;
1897
1898                 if (win->java == 0)
1899                         XSetInputFocus(display, win->id,
1900                             RevertToParent, CurrentTime);
1901                 XMapRaised(display, win->id);
1902                 grabbuttons(win, 1);
1903                 XSetWindowBorder(display, win->id,
1904                     win->ws->r->s->c[SWM_S_COLOR_FOCUS].color);
1905                 if (win->ws->cur_layout->flags & SWM_L_MAPONFOCUS)
1906                         XMapRaised(display, win->id);
1907
1908                 XChangeProperty(display, win->s->root,
1909                     ewmh[_NET_ACTIVE_WINDOW].atom, XA_WINDOW, 32,
1910                     PropModeReplace, (unsigned char *)&win->id,1);
1911         }
1912
1913         if (window_name_enabled)
1914                 bar_update();
1915 }
1916
1917 void
1918 switchws(struct swm_region *r, union arg *args)
1919 {
1920         int                     wsid = args->id, unmap_old = 0;
1921         struct swm_region       *this_r, *other_r;
1922         struct ws_win           *win;
1923         struct workspace        *new_ws, *old_ws;
1924         union arg               a;
1925
1926         if (!(r && r->s))
1927                 return;
1928
1929         this_r = r;
1930         old_ws = this_r->ws;
1931         new_ws = &this_r->s->ws[wsid];
1932
1933         DNPRINTF(SWM_D_WS, "switchws screen[%d]:%dx%d+%d+%d: "
1934             "%d -> %d\n", r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r),
1935             old_ws->idx, wsid);
1936
1937         if (new_ws == NULL || old_ws == NULL)
1938                 return;
1939         if (new_ws == old_ws)
1940                 return;
1941
1942         other_r = new_ws->r;
1943         if (other_r == NULL) {
1944                 /* the other workspace is hidden, hide this one */
1945                 old_ws->r = NULL;
1946                 unmap_old = 1;
1947         } else {
1948                 /* the other ws is visible in another region, exchange them */
1949                 other_r->ws_prior = new_ws;
1950                 other_r->ws = old_ws;
1951                 old_ws->r = other_r;
1952         }
1953         this_r->ws_prior = old_ws;
1954         this_r->ws = new_ws;
1955         new_ws->r = this_r;
1956
1957         stack();
1958         a.id = SWM_ARG_ID_FOCUSCUR;
1959         focus(new_ws->r, &a);
1960         bar_update();
1961
1962         /* unmap old windows */
1963         if (unmap_old)
1964                 TAILQ_FOREACH(win, &old_ws->winlist, entry)
1965                         unmap_window(win);
1966 }
1967
1968 void
1969 cyclews(struct swm_region *r, union arg *args)
1970 {
1971         union                   arg a;
1972         struct swm_screen       *s = r->s;
1973
1974         DNPRINTF(SWM_D_WS, "cyclews id %d "
1975             "in screen[%d]:%dx%d+%d+%d ws %d\n", args->id,
1976             r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
1977
1978         a.id = r->ws->idx;
1979         do {
1980                 switch (args->id) {
1981                 case SWM_ARG_ID_CYCLEWS_UP:
1982                         if (a.id < SWM_WS_MAX - 1)
1983                                 a.id++;
1984                         else
1985                                 a.id = 0;
1986                         break;
1987                 case SWM_ARG_ID_CYCLEWS_DOWN:
1988                         if (a.id > 0)
1989                                 a.id--;
1990                         else
1991                                 a.id = SWM_WS_MAX - 1;
1992                         break;
1993                 default:
1994                         return;
1995                 };
1996
1997                 if (cycle_empty == 0 && TAILQ_EMPTY(&s->ws[a.id].winlist))
1998                         continue;
1999                 if (cycle_visible == 0 && s->ws[a.id].r != NULL)
2000                         continue;
2001
2002                 switchws(r, &a);
2003         } while (a.id != r->ws->idx);
2004 }
2005
2006 void
2007 priorws(struct swm_region *r, union arg *args)
2008 {
2009         union arg               a;
2010
2011         DNPRINTF(SWM_D_WS, "priorws id %d "
2012             "in screen[%d]:%dx%d+%d+%d ws %d\n", args->id,
2013             r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
2014
2015         if (r->ws_prior == NULL)
2016                 return;
2017
2018         a.id = r->ws_prior->idx;
2019         switchws(r, &a);
2020 }
2021
2022 void
2023 cyclescr(struct swm_region *r, union arg *args)
2024 {
2025         struct swm_region       *rr = NULL;
2026         union arg               a;
2027         int                     i, x, y;
2028
2029         /* do nothing if we don't have more than one screen */
2030         if (!(ScreenCount(display) > 1 || outputs > 1))
2031                 return;
2032
2033         i = r->s->idx;
2034         switch (args->id) {
2035         case SWM_ARG_ID_CYCLESC_UP:
2036                 rr = TAILQ_NEXT(r, entry);
2037                 if (rr == NULL)
2038                         rr = TAILQ_FIRST(&screens[i].rl);
2039                 break;
2040         case SWM_ARG_ID_CYCLESC_DOWN:
2041                 rr = TAILQ_PREV(r, swm_region_list, entry);
2042                 if (rr == NULL)
2043                         rr = TAILQ_LAST(&screens[i].rl, swm_region_list);
2044                 break;
2045         default:
2046                 return;
2047         };
2048         if (rr == NULL)
2049                 return;
2050
2051         /* move mouse to region */
2052         x = rr->g.x + 1;
2053         y = rr->g.y + 1 + (bar_enabled ? bar_height : 0);
2054         XWarpPointer(display, None, rr->s[i].root, 0, 0, 0, 0, x, y);
2055
2056         a.id = SWM_ARG_ID_FOCUSCUR;
2057         focus(rr, &a);
2058
2059         if (rr->ws->focus) {
2060                 /* move to focus window */
2061                 x = rr->ws->focus->g.x + 1;
2062                 y = rr->ws->focus->g.y + 1;
2063                 XWarpPointer(display, None, rr->s[i].root, 0, 0, 0, 0, x, y);
2064         }
2065 }
2066
2067 void
2068 swapwin(struct swm_region *r, union arg *args)
2069 {
2070         struct ws_win           *target, *source;
2071         struct ws_win           *cur_focus;
2072         struct ws_win_list      *wl;
2073
2074
2075         DNPRINTF(SWM_D_WS, "swapwin id %d "
2076             "in screen %d region %dx%d+%d+%d ws %d\n", args->id,
2077             r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
2078
2079         cur_focus = r->ws->focus;
2080         if (cur_focus == NULL)
2081                 return;
2082
2083         source = cur_focus;
2084         wl = &source->ws->winlist;
2085
2086         switch (args->id) {
2087         case SWM_ARG_ID_SWAPPREV:
2088                 target = TAILQ_PREV(source, ws_win_list, entry);
2089                 TAILQ_REMOVE(wl, cur_focus, entry);
2090                 if (target == NULL)
2091                         TAILQ_INSERT_TAIL(wl, source, entry);
2092                 else
2093                         TAILQ_INSERT_BEFORE(target, source, entry);
2094                 break;
2095         case SWM_ARG_ID_SWAPNEXT:
2096                 target = TAILQ_NEXT(source, entry);
2097                 TAILQ_REMOVE(wl, source, entry);
2098                 if (target == NULL)
2099                         TAILQ_INSERT_HEAD(wl, source, entry);
2100                 else
2101                         TAILQ_INSERT_AFTER(wl, target, source, entry);
2102                 break;
2103         case SWM_ARG_ID_SWAPMAIN:
2104                 target = TAILQ_FIRST(wl);
2105                 if (target == source) {
2106                         if (source->ws->focus_prev != NULL &&
2107                             source->ws->focus_prev != target)
2108
2109                                 source = source->ws->focus_prev;
2110                         else
2111                                 return;
2112                 }
2113                 if (target == NULL || source == NULL)
2114                         return;
2115                 source->ws->focus_prev = target;
2116                 TAILQ_REMOVE(wl, target, entry);
2117                 TAILQ_INSERT_BEFORE(source, target, entry);
2118                 TAILQ_REMOVE(wl, source, entry);
2119                 TAILQ_INSERT_HEAD(wl, source, entry);
2120                 break;
2121         case SWM_ARG_ID_MOVELAST:
2122                 TAILQ_REMOVE(wl, source, entry);
2123                 TAILQ_INSERT_TAIL(wl, source, entry);
2124                 break;
2125         default:
2126                 DNPRINTF(SWM_D_MOVE, "invalid id: %d\n", args->id);
2127                 return;
2128         }
2129
2130         stack();
2131 }
2132
2133 void
2134 focus_prev(struct ws_win *win)
2135 {
2136         struct ws_win           *winfocus = NULL, *winlostfocus = NULL;
2137         struct ws_win           *cur_focus = NULL;
2138         struct ws_win_list      *wl = NULL;
2139         struct workspace        *ws = NULL;
2140
2141         DNPRINTF(SWM_D_FOCUS, "focus_prev: id %lu\n", WINID(win));
2142
2143         if (!(win && win->ws))
2144                 return;
2145
2146         ws = win->ws;
2147         wl = &ws->winlist;
2148         cur_focus = ws->focus;
2149         winlostfocus = cur_focus;
2150
2151         /* pickle, just focus on whatever */
2152         if (cur_focus == NULL) {
2153                 /* use prev_focus if valid */
2154                 if (ws->focus_prev && ws->focus_prev != cur_focus &&
2155                     find_window(WINID(ws->focus_prev)))
2156                         winfocus = ws->focus_prev;
2157                 if (winfocus == NULL)
2158                         winfocus = TAILQ_FIRST(wl);
2159                 goto done;
2160         }
2161
2162         /* if transient focus on parent */
2163         if (cur_focus->transient) {
2164                 winfocus = find_window(cur_focus->transient);
2165                 goto done;
2166         }
2167
2168         /* if in max_stack try harder */
2169         if (ws->cur_layout->flags & SWM_L_FOCUSPREV) {
2170                 if (cur_focus != ws->focus_prev)
2171                         winfocus = ws->focus_prev;
2172                 else if (cur_focus != ws->focus)
2173                         winfocus = ws->focus;
2174                 else
2175                         winfocus = TAILQ_PREV(win, ws_win_list, entry);
2176                 if (winfocus)
2177                         goto done;
2178         }
2179
2180         if (cur_focus == win)
2181                 winfocus = TAILQ_PREV(win, ws_win_list, entry);
2182         if (winfocus == NULL)
2183                 winfocus = TAILQ_LAST(wl, ws_win_list);
2184         if (winfocus == NULL || winfocus == win)
2185                 winfocus = TAILQ_NEXT(cur_focus, entry);
2186 done:
2187         if (winfocus == winlostfocus || winfocus == NULL)
2188                 return;
2189
2190         focus_magic(winfocus);
2191 }
2192
2193 void
2194 focus(struct swm_region *r, union arg *args)
2195 {
2196         struct ws_win           *winfocus = NULL, *winlostfocus = NULL, *head;
2197         struct ws_win           *cur_focus = NULL;
2198         struct ws_win_list      *wl = NULL;
2199         struct workspace        *ws = NULL;
2200
2201         if (!(r && r->ws))
2202                 return;
2203
2204         DNPRINTF(SWM_D_FOCUS, "focus: id %d\n", args->id);
2205
2206         /* treat FOCUS_CUR special */
2207         if (args->id == SWM_ARG_ID_FOCUSCUR) {
2208                 if (r->ws->focus && r->ws->focus->iconic == 0)
2209                         winfocus = r->ws->focus;
2210                 else if (r->ws->focus_prev && r->ws->focus_prev->iconic == 0)
2211                         winfocus = r->ws->focus_prev;
2212                 else
2213                         TAILQ_FOREACH(winfocus, &r->ws->winlist, entry)
2214                                 if (winfocus->iconic == 0)
2215                                         break;
2216
2217                 focus_magic(winfocus);
2218                 return;
2219         }
2220
2221         if ((cur_focus = r->ws->focus) == NULL)
2222                 return;
2223         ws = r->ws;
2224         wl = &ws->winlist;
2225
2226         winlostfocus = cur_focus;
2227
2228         switch (args->id) {
2229         case SWM_ARG_ID_FOCUSPREV:
2230                 head = TAILQ_PREV(cur_focus, ws_win_list, entry);
2231                 if (head == NULL)
2232                         head = TAILQ_LAST(wl, ws_win_list);
2233                 winfocus = head;
2234                 if (WINID(winfocus) == cur_focus->transient) {
2235                         head = TAILQ_PREV(winfocus, ws_win_list, entry);
2236                         if (head == NULL)
2237                                 head = TAILQ_LAST(wl, ws_win_list);
2238                         winfocus = head;
2239                 }
2240                 break;
2241
2242         case SWM_ARG_ID_FOCUSNEXT:
2243                 head = TAILQ_NEXT(cur_focus, entry);
2244                 if (head == NULL)
2245                         head = TAILQ_FIRST(wl);
2246                 winfocus = head;
2247                 break;
2248
2249         case SWM_ARG_ID_FOCUSMAIN:
2250                 winfocus = TAILQ_FIRST(wl);
2251                 if (winfocus == cur_focus)
2252                         winfocus = cur_focus->ws->focus_prev;
2253                 break;
2254
2255         default:
2256                 return;
2257         }
2258
2259         if (winfocus == winlostfocus || winfocus == NULL)
2260                 return;
2261
2262         focus_magic(winfocus);
2263 }
2264
2265 void
2266 cycle_layout(struct swm_region *r, union arg *args)
2267 {
2268         struct workspace        *ws = r->ws;
2269         struct ws_win           *winfocus;
2270         union arg               a;
2271
2272         DNPRINTF(SWM_D_EVENT, "cycle_layout: workspace: %d\n", ws->idx);
2273
2274         winfocus = ws->focus;
2275
2276         ws->cur_layout++;
2277         if (ws->cur_layout->l_stack == NULL)
2278                 ws->cur_layout = &layouts[0];
2279
2280         stack();
2281         a.id = SWM_ARG_ID_FOCUSCUR;
2282         focus(r, &a);
2283         bar_update();
2284 }
2285
2286 void
2287 stack_config(struct swm_region *r, union arg *args)
2288 {
2289         struct workspace        *ws = r->ws;
2290
2291         DNPRINTF(SWM_D_STACK, "stack_config for workspace %d (id %d\n",
2292             args->id, ws->idx);
2293
2294         if (ws->cur_layout->l_config != NULL)
2295                 ws->cur_layout->l_config(ws, args->id);
2296
2297         if (args->id != SWM_ARG_ID_STACKINIT);
2298                 stack();
2299 }
2300
2301 void
2302 stack(void) {
2303         struct swm_geometry     g;
2304         struct swm_region       *r;
2305         int                     i, j;
2306
2307         DNPRINTF(SWM_D_STACK, "stack\n");
2308
2309         for (i = 0; i < ScreenCount(display); i++) {
2310                 j = 0;
2311                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
2312                         DNPRINTF(SWM_D_STACK, "stacking workspace %d "
2313                             "(screen %d, region %d)\n", r->ws->idx, i, j++);
2314
2315                         /* start with screen geometry, adjust for bar */
2316                         g = r->g;
2317                         g.w -= 2 * border_width;
2318                         g.h -= 2 * border_width;
2319                         if (bar_enabled) {
2320                                 if (!bar_at_bottom)
2321                                         g.y += bar_height;
2322                                 g.h -= bar_height;
2323                         }
2324                         r->ws->cur_layout->l_stack(r->ws, &g);
2325                         /* save r so we can track region changes */
2326                         r->ws->old_r = r;
2327                 }
2328         }
2329         if (font_adjusted)
2330                 font_adjusted--;
2331 }
2332
2333 void
2334 store_float_geom(struct ws_win *win, struct swm_region *r)
2335 {
2336         /* retain window geom and region geom */
2337         win->g_float.x = win->g.x;
2338         win->g_float.y = win->g.y;
2339         win->g_float.w = win->g.w;
2340         win->g_float.h = win->g.h;
2341         win->rg_float.x = r->g.x;
2342         win->rg_float.y = r->g.y;
2343         win->rg_float.w = r->g.w;
2344         win->rg_float.h = r->g.h;
2345         win->g_floatvalid = 1;
2346 }
2347
2348 void
2349 stack_floater(struct ws_win *win, struct swm_region *r)
2350 {
2351         unsigned int            mask;
2352         XWindowChanges          wc;
2353
2354         if (win == NULL)
2355                 return;
2356
2357         bzero(&wc, sizeof wc);
2358         mask = CWX | CWY | CWBorderWidth | CWWidth | CWHeight;
2359
2360         /*
2361          * to allow windows to change their size (e.g. mplayer fs) only retrieve
2362          * geom on ws switches or return from max mode
2363          */
2364
2365         if (win->floatmaxed || (r != r->ws->old_r && win->g_floatvalid
2366             && !(win->ewmh_flags & EWMH_F_FULLSCREEN))) {
2367                 /*
2368                  * use stored g and rg to set relative position and size
2369                  * as in old region or before max stack mode
2370                  */
2371                 win->g.x = win->g_float.x - win->rg_float.x + r->g.x;
2372                 win->g.y = win->g_float.y - win->rg_float.y + r->g.y;
2373                 win->g.w = win->g_float.w;
2374                 win->g.h = win->g_float.h;
2375                 win->g_floatvalid = 0;
2376         }
2377
2378         win->floatmaxed = 0;
2379
2380         if ((win->quirks & SWM_Q_FULLSCREEN) && (win->g.w >= WIDTH(r)) &&
2381             (win->g.h >= HEIGHT(r)))
2382                 wc.border_width = 0;
2383         else
2384                 wc.border_width = border_width;
2385         if (win->transient && (win->quirks & SWM_Q_TRANSSZ)) {
2386                 win->g.w = (double)WIDTH(r) * dialog_ratio;
2387                 win->g.h = (double)HEIGHT(r) * dialog_ratio;
2388         }
2389
2390         if (!win->manual) {
2391                 /*
2392                  * floaters and transients are auto-centred unless moved
2393                  * or resized
2394                  */
2395                 win->g.x = r->g.x + (WIDTH(r) - win->g.w) / 2 - border_width;
2396                 win->g.y = r->g.y + (HEIGHT(r) - win->g.h) / 2 - border_width;
2397         }
2398
2399         /* win can be outside r if new r smaller than old r */
2400         /* Ensure top left corner inside r (move probs otherwise) */
2401         if (win->g.x < r->g.x - border_width)
2402                 win->g.x = r->g.x - border_width;
2403         if (win->g.x > r->g.x + r->g.w - 1)
2404                 win->g.x = (win->g.w > r->g.w) ? r->g.x :
2405                     (r->g.x + r->g.w - win->g.w - 2 * border_width);
2406         if (win->g.y < r->g.y - border_width)
2407                 win->g.y = r->g.y - border_width;
2408         if (win->g.y > r->g.y + r->g.h - 1)
2409                 win->g.y = (win->g.h > r->g.h) ? r->g.y :
2410                     (r->g.y + r->g.h - win->g.h - 2 * border_width);
2411
2412         wc.x = win->g.x;
2413         wc.y = win->g.y;
2414         wc.width = win->g.w;
2415         wc.height = win->g.h;
2416
2417         /*
2418          * Retain floater and transient geometry for correct positioning
2419          * when ws changes region
2420          */
2421         if (!(win->ewmh_flags & EWMH_F_FULLSCREEN))
2422                 store_float_geom(win, r);
2423
2424         DNPRINTF(SWM_D_MISC, "stack_floater: win %lu x %d y %d w %d h %d\n",
2425             win->id, wc.x, wc.y, wc.width, wc.height);
2426
2427         XConfigureWindow(display, win->id, mask, &wc);
2428 }
2429
2430 /*
2431  * Send keystrokes to terminal to decrease/increase the font size as the
2432  * window size changes.
2433  */
2434 void
2435 adjust_font(struct ws_win *win)
2436 {
2437         if (!(win->quirks & SWM_Q_XTERM_FONTADJ) ||
2438             win->floating || win->transient)
2439                 return;
2440
2441         if (win->sh.width_inc && win->last_inc != win->sh.width_inc &&
2442             win->g.w / win->sh.width_inc < term_width &&
2443             win->font_steps < SWM_MAX_FONT_STEPS) {
2444                 win->font_size_boundary[win->font_steps] =
2445                     (win->sh.width_inc * term_width) + win->sh.base_width;
2446                 win->font_steps++;
2447                 font_adjusted++;
2448                 win->last_inc = win->sh.width_inc;
2449                 fake_keypress(win, XK_KP_Subtract, ShiftMask);
2450         } else if (win->font_steps && win->last_inc != win->sh.width_inc &&
2451             win->g.w > win->font_size_boundary[win->font_steps - 1]) {
2452                 win->font_steps--;
2453                 font_adjusted++;
2454                 win->last_inc = win->sh.width_inc;
2455                 fake_keypress(win, XK_KP_Add, ShiftMask);
2456         }
2457 }
2458
2459 #define SWAPXY(g)       do {                            \
2460         int tmp;                                        \
2461         tmp = (g)->y; (g)->y = (g)->x; (g)->x = tmp;    \
2462         tmp = (g)->h; (g)->h = (g)->w; (g)->w = tmp;    \
2463 } while (0)
2464 void
2465 stack_master(struct workspace *ws, struct swm_geometry *g, int rot, int flip)
2466 {
2467         XWindowChanges          wc;
2468         XWindowAttributes       wa;
2469         struct swm_geometry     win_g, r_g = *g;
2470         struct ws_win           *win, *fs_win = 0;
2471         int                     i, j, s, stacks;
2472         int                     w_inc = 1, h_inc, w_base = 1, h_base;
2473         int                     hrh, extra = 0, h_slice, last_h = 0;
2474         int                     split, colno, winno, mwin, msize, mscale;
2475         int                     remain, missing, v_slice, reconfigure;
2476         unsigned int            mask;
2477
2478         DNPRINTF(SWM_D_STACK, "stack_master: workspace: %d\n rot=%s flip=%s",
2479             ws->idx, rot ? "yes" : "no", flip ? "yes" : "no");
2480
2481         winno = count_win(ws, 0);
2482         if (winno == 0 && count_win(ws, 1) == 0)
2483                 return;
2484
2485         TAILQ_FOREACH(win, &ws->winlist, entry)
2486                 if (win->transient == 0 && win->floating == 0 && win->iconic == 0)
2487                         break;
2488
2489         if (win == NULL)
2490                 goto notiles;
2491
2492         if (rot) {
2493                 w_inc = win->sh.width_inc;
2494                 w_base = win->sh.base_width;
2495                 mwin = ws->l_state.horizontal_mwin;
2496                 mscale = ws->l_state.horizontal_msize;
2497                 stacks = ws->l_state.horizontal_stacks;
2498                 SWAPXY(&r_g);
2499         } else {
2500                 w_inc = win->sh.height_inc;
2501                 w_base = win->sh.base_height;
2502                 mwin = ws->l_state.vertical_mwin;
2503                 mscale = ws->l_state.vertical_msize;
2504                 stacks = ws->l_state.vertical_stacks;
2505         }
2506         win_g = r_g;
2507
2508         if (stacks > winno - mwin)
2509                 stacks = winno - mwin;
2510         if (stacks < 1)
2511                 stacks = 1;
2512
2513         h_slice = r_g.h / SWM_H_SLICE;
2514         if (mwin && winno > mwin) {
2515                 v_slice = r_g.w / SWM_V_SLICE;
2516
2517                 split = mwin;
2518                 colno = split;
2519                 win_g.w = v_slice * mscale;
2520
2521                 if (w_inc > 1 && w_inc < v_slice) {
2522                         /* adjust for window's requested size increment */
2523                         remain = (win_g.w - w_base) % w_inc;
2524                         missing = w_inc - remain;
2525                         win_g.w -= remain;
2526                         extra += remain;
2527                 }
2528
2529                 msize = win_g.w;
2530                 if (flip)
2531                         win_g.x += r_g.w - msize;
2532         } else {
2533                 msize = -2;
2534                 colno = split = winno / stacks;
2535                 win_g.w = ((r_g.w - (stacks * 2 * border_width) + 2 * border_width) / stacks);
2536         }
2537         hrh = r_g.h / colno;
2538         extra = r_g.h - (colno * hrh);
2539         win_g.h = hrh - 2 * border_width;
2540
2541         /*  stack all the tiled windows */
2542         i = j = 0, s = stacks;
2543         TAILQ_FOREACH(win, &ws->winlist, entry) {
2544                 if (win->transient != 0 || win->floating != 0)
2545                         continue;
2546                 if (win->iconic != 0)
2547                         continue;
2548
2549                 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
2550                         fs_win = win;
2551                         continue;
2552                 }
2553
2554                 if (split && i == split) {
2555                         colno = (winno - mwin) / stacks;
2556                         if (s <= (winno - mwin) % stacks)
2557                                 colno++;
2558                         split = split + colno;
2559                         hrh = (r_g.h / colno);
2560                         extra = r_g.h - (colno * hrh);
2561                         if (flip)
2562                                 win_g.x = r_g.x;
2563                         else
2564                                 win_g.x += win_g.w + 2 * border_width;
2565                         win_g.w = (r_g.w - msize - (stacks * 2 * border_width)) / stacks;
2566                         if (s == 1)
2567                                 win_g.w += (r_g.w - msize - (stacks * 2 * border_width)) %
2568                                     stacks;
2569                         s--;
2570                         j = 0;
2571                 }
2572                 win_g.h = hrh - 2 * border_width;
2573                 if (rot) {
2574                         h_inc = win->sh.width_inc;
2575                         h_base = win->sh.base_width;
2576                 } else {
2577                         h_inc = win->sh.height_inc;
2578                         h_base = win->sh.base_height;
2579                 }
2580                 if (j == colno - 1) {
2581                         win_g.h = hrh + extra;
2582                 } else if (h_inc > 1 && h_inc < h_slice) {
2583                         /* adjust for window's requested size increment */
2584                         remain = (win_g.h - h_base) % h_inc;
2585                         missing = h_inc - remain;
2586
2587                         if (missing <= extra || j == 0) {
2588                                 extra -= missing;
2589                                 win_g.h += missing;
2590                         } else {
2591                                 win_g.h -= remain;
2592                                 extra += remain;
2593                         }
2594                 }
2595
2596                 if (j == 0)
2597                         win_g.y = r_g.y;
2598                 else
2599                         win_g.y += last_h + 2 * border_width;
2600
2601                 bzero(&wc, sizeof wc);
2602                 if (disable_border && bar_enabled == 0 && winno == 1){
2603                         wc.border_width = 0;
2604                         win_g.w += 2 * border_width;
2605                         win_g.h += 2 * border_width;
2606                 } else
2607                         wc.border_width = border_width;
2608                 reconfigure = 0;
2609                 if (rot) {
2610                         if (win->g.x != win_g.y || win->g.y != win_g.x ||
2611                             win->g.w != win_g.h || win->g.h != win_g.w) {
2612                                 reconfigure = 1;
2613                                 win->g.x = wc.x = win_g.y;
2614                                 win->g.y = wc.y = win_g.x;
2615                                 win->g.w = wc.width = win_g.h;
2616                                 win->g.h = wc.height = win_g.w;
2617                         }
2618                 } else {
2619                         if (win->g.x != win_g.x || win->g.y != win_g.y ||
2620                             win->g.w != win_g.w || win->g.h != win_g.h) {
2621                                 reconfigure = 1;
2622                                 win->g.x = wc.x = win_g.x;
2623                                 win->g.y = wc.y = win_g.y;
2624                                 win->g.w = wc.width = win_g.w;
2625                                 win->g.h = wc.height = win_g.h;
2626                         }
2627                 }
2628                 if (reconfigure) {
2629                         adjust_font(win);
2630                         mask = CWX | CWY | CWWidth | CWHeight | CWBorderWidth;
2631                         XConfigureWindow(display, win->id, mask, &wc);
2632                 }
2633
2634                 if (XGetWindowAttributes(display, win->id, &wa))
2635                         if (wa.map_state == IsUnmapped)
2636                                 XMapRaised(display, win->id);
2637
2638                 last_h = win_g.h;
2639                 i++;
2640                 j++;
2641         }
2642
2643 notiles:
2644         /* now, stack all the floaters and transients */
2645         TAILQ_FOREACH(win, &ws->winlist, entry) {
2646                 if (win->transient == 0 && win->floating == 0)
2647                         continue;
2648                 if (win->iconic == 1)
2649                         continue;
2650                 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
2651                         fs_win = win;
2652                         continue;
2653                 }
2654
2655                 stack_floater(win, ws->r);
2656                 XMapRaised(display, win->id);
2657         }
2658
2659         if (fs_win) {
2660                 stack_floater(fs_win, ws->r);
2661                 XMapRaised(display, fs_win->id);
2662         }
2663 }
2664
2665 void
2666 vertical_config(struct workspace *ws, int id)
2667 {
2668         DNPRINTF(SWM_D_STACK, "vertical_resize: workspace: %d\n", ws->idx);
2669
2670         switch (id) {
2671         case SWM_ARG_ID_STACKRESET:
2672         case SWM_ARG_ID_STACKINIT:
2673                 ws->l_state.vertical_msize = SWM_V_SLICE / 2;
2674                 ws->l_state.vertical_mwin = 1;
2675                 ws->l_state.vertical_stacks = 1;
2676                 break;
2677         case SWM_ARG_ID_MASTERSHRINK:
2678                 if (ws->l_state.vertical_msize > 1)
2679                         ws->l_state.vertical_msize--;
2680                 break;
2681         case SWM_ARG_ID_MASTERGROW:
2682                 if (ws->l_state.vertical_msize < SWM_V_SLICE - 1)
2683                         ws->l_state.vertical_msize++;
2684                 break;
2685         case SWM_ARG_ID_MASTERADD:
2686                 ws->l_state.vertical_mwin++;
2687                 break;
2688         case SWM_ARG_ID_MASTERDEL:
2689                 if (ws->l_state.vertical_mwin > 0)
2690                         ws->l_state.vertical_mwin--;
2691                 break;
2692         case SWM_ARG_ID_STACKINC:
2693                 ws->l_state.vertical_stacks++;
2694                 break;
2695         case SWM_ARG_ID_STACKDEC:
2696                 if (ws->l_state.vertical_stacks > 1)
2697                         ws->l_state.vertical_stacks--;
2698                 break;
2699         default:
2700                 return;
2701         }
2702 }
2703
2704 void
2705 vertical_stack(struct workspace *ws, struct swm_geometry *g)
2706 {
2707         DNPRINTF(SWM_D_STACK, "vertical_stack: workspace: %d\n", ws->idx);
2708
2709         stack_master(ws, g, 0, 0);
2710 }
2711
2712 void
2713 horizontal_config(struct workspace *ws, int id)
2714 {
2715         DNPRINTF(SWM_D_STACK, "horizontal_config: workspace: %d\n", ws->idx);
2716
2717         switch (id) {
2718         case SWM_ARG_ID_STACKRESET:
2719         case SWM_ARG_ID_STACKINIT:
2720                 ws->l_state.horizontal_mwin = 1;
2721                 ws->l_state.horizontal_msize = SWM_H_SLICE / 2;
2722                 ws->l_state.horizontal_stacks = 1;
2723                 break;
2724         case SWM_ARG_ID_MASTERSHRINK:
2725                 if (ws->l_state.horizontal_msize > 1)
2726                         ws->l_state.horizontal_msize--;
2727                 break;
2728         case SWM_ARG_ID_MASTERGROW:
2729                 if (ws->l_state.horizontal_msize < SWM_H_SLICE - 1)
2730                         ws->l_state.horizontal_msize++;
2731                 break;
2732         case SWM_ARG_ID_MASTERADD:
2733                 ws->l_state.horizontal_mwin++;
2734                 break;
2735         case SWM_ARG_ID_MASTERDEL:
2736                 if (ws->l_state.horizontal_mwin > 0)
2737                         ws->l_state.horizontal_mwin--;
2738                 break;
2739         case SWM_ARG_ID_STACKINC:
2740                 ws->l_state.horizontal_stacks++;
2741                 break;
2742         case SWM_ARG_ID_STACKDEC:
2743                 if (ws->l_state.horizontal_stacks > 1)
2744                         ws->l_state.horizontal_stacks--;
2745                 break;
2746         default:
2747                 return;
2748         }
2749 }
2750
2751 void
2752 horizontal_stack(struct workspace *ws, struct swm_geometry *g)
2753 {
2754         DNPRINTF(SWM_D_STACK, "horizontal_stack: workspace: %d\n", ws->idx);
2755
2756         stack_master(ws, g, 1, 0);
2757 }
2758
2759 /* fullscreen view */
2760 void
2761 max_stack(struct workspace *ws, struct swm_geometry *g)
2762 {
2763         XWindowChanges          wc;
2764         struct swm_geometry     gg = *g;
2765         struct ws_win           *win, *wintrans = NULL, *parent = NULL;
2766         unsigned int            mask;
2767         int                     winno;
2768
2769         DNPRINTF(SWM_D_STACK, "max_stack: workspace: %d\n", ws->idx);
2770
2771         if (ws == NULL)
2772                 return;
2773
2774         winno = count_win(ws, 0);
2775         if (winno == 0 && count_win(ws, 1) == 0)
2776                 return;
2777
2778         TAILQ_FOREACH(win, &ws->winlist, entry) {
2779                 if (win->transient) {
2780                         wintrans = win;
2781                         parent = find_window(win->transient);
2782                         continue;
2783                 }
2784
2785                 if (win->floating && win->floatmaxed == 0 ) {
2786                         /*
2787                          * retain geometry for retrieval on exit from
2788                          * max_stack mode
2789                          */
2790                         store_float_geom(win, ws->r);
2791                         win->floatmaxed = 1;
2792                 }
2793
2794                 /* only reconfigure if necessary */
2795                 if (win->g.x != gg.x || win->g.y != gg.y || win->g.w != gg.w ||
2796                     win->g.h != gg.h) {
2797                         bzero(&wc, sizeof wc);
2798                         win->g.x = wc.x = gg.x;
2799                         win->g.y = wc.y = gg.y;
2800                         if (bar_enabled){
2801                                 wc.border_width = border_width;
2802                                 win->g.w = wc.width = gg.w;
2803                                 win->g.h = wc.height = gg.h;
2804                         } else {
2805                                 wc.border_width = 0;
2806                                 win->g.w = wc.width = gg.w + 2 * border_width;
2807                                 win->g.h = wc.height = gg.h + 2 * border_width;
2808                         }
2809                         mask = CWX | CWY | CWWidth | CWHeight | CWBorderWidth;
2810                         XConfigureWindow(display, win->id, mask, &wc);
2811                 }
2812                 /* unmap only if we don't have multi screen */
2813                 if (win != ws->focus)
2814                         if (!(ScreenCount(display) > 1 || outputs > 1))
2815                                 unmap_window(win);
2816         }
2817
2818         /* put the last transient on top */
2819         if (wintrans) {
2820                 if (parent)
2821                         XMapRaised(display, parent->id);
2822                 stack_floater(wintrans, ws->r);
2823                 focus_magic(wintrans);
2824         }
2825 }
2826
2827 void
2828 send_to_ws(struct swm_region *r, union arg *args)
2829 {
2830         int                     wsid = args->id;
2831         struct ws_win           *win = win;
2832         struct workspace        *ws, *nws;
2833         Atom                    ws_idx_atom = 0;
2834         unsigned char           ws_idx_str[SWM_PROPLEN];
2835         union arg               a;
2836
2837         if (r && r->ws)
2838                 win = r->ws->focus;
2839         else
2840                 return;
2841         if (win == NULL)
2842                 return;
2843         if (win->ws->idx == wsid)
2844                 return;
2845
2846         DNPRINTF(SWM_D_MOVE, "send_to_ws: win: %lu\n", win->id);
2847
2848         ws = win->ws;
2849         nws = &win->s->ws[wsid];
2850
2851         a.id = SWM_ARG_ID_FOCUSPREV;
2852         focus(r, &a);
2853         unmap_window(win);
2854         TAILQ_REMOVE(&ws->winlist, win, entry);
2855         TAILQ_INSERT_TAIL(&nws->winlist, win, entry);
2856         win->ws = nws;
2857
2858         /* Try to update the window's workspace property */
2859         ws_idx_atom = XInternAtom(display, "_SWM_WS", False);
2860         if (ws_idx_atom &&
2861             snprintf(ws_idx_str, SWM_PROPLEN, "%d", nws->idx) < SWM_PROPLEN) {
2862                 DNPRINTF(SWM_D_PROP, "setting property _SWM_WS to %s\n",
2863                     ws_idx_str);
2864                 XChangeProperty(display, win->id, ws_idx_atom, XA_STRING, 8,
2865                     PropModeReplace, ws_idx_str, SWM_PROPLEN);
2866         }
2867
2868         stack();
2869 }
2870
2871 void
2872 iconify(struct swm_region *r, union arg *args)
2873 {
2874         union arg a;
2875
2876         if (r->ws->focus == NULL)
2877                 return;
2878         unmap_window(r->ws->focus);
2879         update_iconic(r->ws->focus, 1);
2880         stack();
2881         r->ws->focus = NULL;
2882         a.id = SWM_ARG_ID_FOCUSCUR;
2883         focus(r, &a);
2884 }
2885
2886 unsigned char *
2887 get_win_name(Display *dpy, Window win, Atom wname, Atom stype,
2888     unsigned long *slen)
2889 {
2890         int                     status, retfmt;
2891         unsigned long           nitems, nbytes, nextra;
2892         unsigned char           *prop = NULL;
2893         Atom                    rettype;
2894
2895         status = XGetWindowProperty(dpy, win, wname, 0L, 0L, False, stype,
2896             &rettype, &retfmt,  &nitems, &nbytes, &prop);
2897         if (status != Success)
2898                 return (NULL);
2899         XFree(prop);
2900
2901         status = XGetWindowProperty(dpy, win, wname, 0L, nbytes, False,
2902             stype, &rettype, &retfmt, &nitems, &nextra, &prop);
2903         if (status != Success) {
2904                 XFree(prop);
2905                 return (NULL);
2906         }
2907         if (rettype != stype) {
2908                 XFree(prop);
2909                 return (NULL);
2910         }
2911         *slen = nitems;
2912         return (prop);
2913 }
2914
2915 void
2916 uniconify(struct swm_region *r, union arg *args)
2917 {
2918         struct ws_win           *win;
2919         FILE                    *lfile;
2920         char                    *name;
2921         int                     count = 0;
2922         unsigned long           len;
2923
2924         DNPRINTF(SWM_D_MISC, "uniconify\n");
2925
2926         if (r && r->ws == NULL)
2927                 return;
2928
2929         /* make sure we have anything to uniconify */
2930         TAILQ_FOREACH(win, &r->ws->winlist, entry) {
2931                 if (win->ws == NULL)
2932                         continue; /* should never happen */
2933                 if (win->iconic == 0)
2934                         continue;
2935                 count++;
2936         }
2937         if (count == 0)
2938                 return;
2939
2940         search_r = r;
2941
2942         spawn_select(r, args, "uniconify", &searchpid);
2943
2944         if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
2945                 return;
2946
2947         TAILQ_FOREACH(win, &r->ws->winlist, entry) {
2948                 if (win->ws == NULL)
2949                         continue; /* should never happen */
2950                 if (win->iconic == 0)
2951                         continue;
2952
2953                 name = get_win_name(display, win->id, a_wmname, a_string,
2954                     &len);
2955                 if (name == NULL)
2956                         continue;
2957                 fprintf(lfile, "%s.%lu\n", name, win->id);
2958                 XFree(name);
2959         }
2960
2961         fclose(lfile);
2962 }
2963
2964 #define MAX_RESP_LEN    1024
2965
2966 void
2967 search_do_resp(void)
2968 {
2969         ssize_t                 rbytes;
2970         struct ws_win           *win;
2971         char                    *name, *resp, *s;
2972         unsigned long           len;
2973
2974         DNPRINTF(SWM_D_MISC, "search_do_resp:\n");
2975
2976         search_resp = 0;
2977         searchpid = 0;
2978
2979         if ((resp = calloc(1, MAX_RESP_LEN + 1)) == NULL) {
2980                 fprintf(stderr, "search: calloc\n");
2981                 return;
2982         }
2983
2984         rbytes = read(select_resp_pipe[0], resp, MAX_RESP_LEN);
2985         if (rbytes <= 0) {
2986                 fprintf(stderr, "search: read error: %s\n", strerror(errno));
2987                 goto done;
2988         }
2989         resp[rbytes] = '\0';
2990         len = strlen(resp);
2991
2992         DNPRINTF(SWM_D_MISC, "search_do_resp: resp %s\n", resp);
2993         TAILQ_FOREACH(win, &search_r->ws->winlist, entry) {
2994                 if (win->iconic == 0)
2995                         continue;
2996                 name = get_win_name(display, win->id, a_wmname, a_string, &len);
2997                 if (name == NULL)
2998                         continue;
2999                 if (asprintf(&s, "%s.%lu", name, win->id) == -1) {
3000                         XFree(name);
3001                         continue;
3002                 }
3003                 XFree(name);
3004                 if (strncmp(s, resp, len) == 0) {
3005                         /* XXX this should be a callback to generalize */
3006                         update_iconic(win, 0);
3007                         free(s);
3008                         break;
3009                 }
3010                 free(s);
3011         }
3012 done:
3013         free(resp);
3014 }
3015
3016 void
3017 wkill(struct swm_region *r, union arg *args)
3018 {
3019         DNPRINTF(SWM_D_MISC, "wkill %d\n", args->id);
3020
3021         if (r->ws->focus == NULL)
3022                 return;
3023
3024         if (args->id == SWM_ARG_ID_KILLWINDOW)
3025                 XKillClient(display, r->ws->focus->id);
3026         else
3027                 if (r->ws->focus->can_delete)
3028                         client_msg(r->ws->focus, adelete);
3029 }
3030
3031
3032 int
3033 floating_toggle_win(struct ws_win *win)
3034 {
3035         struct swm_region       *r;
3036
3037         if (win == NULL)
3038                 return 0;
3039
3040         if (!win->ws->r)
3041                 return 0;
3042
3043         r = win->ws->r;
3044
3045         /* reject floating toggles in max stack mode */
3046         if (win->ws->cur_layout == &layouts[SWM_MAX_STACK])
3047                 return 0;
3048
3049         if (win->floating) {
3050                 if (!win->floatmaxed) {
3051                         /* retain position for refloat */
3052                         store_float_geom(win, r);
3053                 }
3054                 win->floating = 0;
3055         } else {
3056                 if (win->g_floatvalid) {
3057                         /* refloat at last floating relative position */
3058                         win->g.x = win->g_float.x - win->rg_float.x + r->g.x;
3059                         win->g.y = win->g_float.y - win->rg_float.y + r->g.y;
3060                         win->g.w = win->g_float.w;
3061                         win->g.h = win->g_float.h;
3062                 }
3063                 win->floating = 1;
3064         }
3065
3066         ewmh_update_actions(win);
3067
3068         return 1;
3069 }
3070
3071 void
3072 floating_toggle(struct swm_region *r, union arg *args)
3073 {
3074         struct ws_win           *win = r->ws->focus;
3075         union arg               a;
3076
3077         if (win == NULL)
3078                 return;
3079
3080         ewmh_update_win_state(win, ewmh[_NET_WM_STATE_ABOVE].atom,
3081             _NET_WM_STATE_TOGGLE);
3082
3083         stack();
3084
3085         if (win == win->ws->focus) {
3086                 a.id = SWM_ARG_ID_FOCUSCUR;
3087                 focus(win->ws->r, &a);
3088         }
3089 }
3090
3091 void
3092 resize_window(struct ws_win *win, int center)
3093 {
3094         unsigned int            mask;
3095         XWindowChanges          wc;
3096         struct swm_region       *r;
3097
3098         r = root_to_region(win->wa.root);
3099         bzero(&wc, sizeof wc);
3100         mask = CWBorderWidth | CWWidth | CWHeight;
3101         wc.border_width = border_width;
3102         wc.width = win->g.w;
3103         wc.height = win->g.h;
3104         if (center == SWM_ARG_ID_CENTER) {
3105                 wc.x = (WIDTH(r) - win->g.w) / 2 - border_width;
3106                 wc.y = (HEIGHT(r) - win->g.h) / 2 - border_width;
3107                 mask |= CWX | CWY;
3108         }
3109
3110         DNPRINTF(SWM_D_STACK, "resize_window: win %lu x %d y %d w %d h %d\n",
3111             win->id, wc.x, wc.y, wc.width, wc.height);
3112
3113         XConfigureWindow(display, win->id, mask, &wc);
3114 }
3115
3116 void
3117 resize(struct ws_win *win, union arg *args)
3118 {
3119         XEvent                  ev;
3120         Time                    time = 0;
3121         struct swm_region       *r = win->ws->r;
3122         int                     relx, rely;
3123         union arg               a;
3124
3125
3126         DNPRINTF(SWM_D_MOUSE, "resize: win %lu floating %d trans %lu\n",
3127             win->id, win->floating, win->transient);
3128
3129         if (!(win->transient != 0 || win->floating != 0))
3130                 return;
3131
3132         /* reject resizes in max mode for floaters (transient ok) */
3133         if (win->floatmaxed)
3134                 return;
3135
3136         win->manual = 1;
3137         ewmh_update_win_state(win, ewmh[_SWM_WM_STATE_MANUAL].atom,
3138             _NET_WM_STATE_ADD);
3139         /* raise the window = move to last in window list */
3140         a.id = SWM_ARG_ID_MOVELAST;
3141         swapwin(r, &a);
3142         stack();
3143
3144         if (XGrabPointer(display, win->id, False, MOUSEMASK, GrabModeAsync,
3145             GrabModeAsync, None, None /* cursor */, CurrentTime) != GrabSuccess)
3146                 return;
3147
3148         /* place pointer at bottom left corner or nearest point inside r */
3149         if ( win->g.x + win->g.w < r->g.x + r->g.w - 1)
3150                 relx = win->g.w - 1;
3151         else
3152                 relx = r->g.x + r->g.w - win->g.x - 1;
3153
3154         if ( win->g.y + win->g.h < r->g.y + r->g.h - 1)
3155                 rely = win->g.h - 1;
3156         else
3157                 rely = r->g.y + r->g.h - win->g.y - 1;
3158
3159         XWarpPointer(display, None, win->id, 0, 0, 0, 0, relx, rely);
3160         do {
3161                 XMaskEvent(display, MOUSEMASK | ExposureMask |
3162                     SubstructureRedirectMask, &ev);
3163                 switch(ev.type) {
3164                 case ConfigureRequest:
3165                 case Expose:
3166                 case MapRequest:
3167                         handler[ev.type](&ev);
3168                         break;
3169                 case MotionNotify:
3170                         /* do not allow resize outside of region */
3171                         if (    ev.xmotion.x_root < r->g.x ||
3172                                 ev.xmotion.x_root > r->g.x + r->g.w - 1 ||
3173                                 ev.xmotion.y_root < r->g.y ||
3174                                 ev.xmotion.y_root > r->g.y + r->g.h - 1)
3175                                 continue;
3176
3177                         if (ev.xmotion.x <= 1)
3178                                 ev.xmotion.x = 1;
3179                         if (ev.xmotion.y <= 1)
3180                                 ev.xmotion.y = 1;
3181                         win->g.w = ev.xmotion.x + 1;
3182                         win->g.h = ev.xmotion.y + 1;
3183
3184                         /* not free, don't sync more than 120 times / second */
3185                         if ((ev.xmotion.time - time) > (1000 / 120) ) {
3186                                 time = ev.xmotion.time;
3187                                 XSync(display, False);
3188                                 resize_window(win, args->id);
3189                         }
3190                         break;
3191                 }
3192         } while (ev.type != ButtonRelease);
3193         if (time) {
3194                 XSync(display, False);
3195                 resize_window(win, args->id);
3196         }
3197         store_float_geom(win,r);
3198
3199         XWarpPointer(display, None, win->id, 0, 0, 0, 0, win->g.w - 1,
3200             win->g.h - 1);
3201         XUngrabPointer(display, CurrentTime);
3202
3203         /* drain events */
3204         while (XCheckMaskEvent(display, EnterWindowMask, &ev));
3205 }
3206
3207 void
3208 move_window(struct ws_win *win)
3209 {
3210         unsigned int            mask;
3211         XWindowChanges          wc;
3212         struct swm_region       *r;
3213
3214         r = root_to_region(win->wa.root);
3215         bzero(&wc, sizeof wc);
3216         mask = CWX | CWY;
3217         wc.x = win->g.x;
3218         wc.y = win->g.y;
3219         wc.border_width = border_width;
3220
3221         DNPRINTF(SWM_D_STACK, "move_window: win %lu x %d y %d w %d h %d\n",
3222             win->id, wc.x, wc.y, wc.width, wc.height);
3223
3224         XConfigureWindow(display, win->id, mask, &wc);
3225 }
3226
3227 void
3228 move(struct ws_win *win, union arg *args)
3229 {
3230         XEvent                  ev;
3231         Time                    time = 0;
3232         struct swm_region       *r = win->ws->r;
3233         union arg               a;
3234
3235         DNPRINTF(SWM_D_MOUSE, "move: win %lu floating %d trans %lu\n",
3236             win->id, win->floating, win->transient);
3237
3238         /* in max_stack mode should only move transients */
3239         if (win->ws->cur_layout == &layouts[SWM_MAX_STACK] && !win->transient)
3240                 return;
3241
3242         win->manual = 1;
3243         if (win->floating == 0 && !win->transient) {
3244                 win->floating = 1;
3245                 ewmh_update_win_state(win, ewmh[_NET_WM_STATE_ABOVE].atom,
3246                     _NET_WM_STATE_ADD);
3247         }
3248         ewmh_update_win_state(win, ewmh[_SWM_WM_STATE_MANUAL].atom,
3249             _NET_WM_STATE_ADD);
3250
3251         /* raise the window = move to last in window list */
3252         a.id = SWM_ARG_ID_MOVELAST;
3253         swapwin(r, &a);
3254         stack();
3255
3256         if (XGrabPointer(display, win->id, False, MOUSEMASK, GrabModeAsync,
3257             GrabModeAsync, None, None /* cursor */, CurrentTime) != GrabSuccess)
3258                 return;
3259         XWarpPointer(display, None, win->id, 0, 0, 0, 0, 0, 0);
3260         do {
3261                 XMaskEvent(display, MOUSEMASK | ExposureMask |
3262                     SubstructureRedirectMask, &ev);
3263                 switch(ev.type) {
3264                 case ConfigureRequest:
3265                 case Expose:
3266                 case MapRequest:
3267                         handler[ev.type](&ev);
3268                         break;
3269                 case MotionNotify:
3270                         /* don't allow to move window origin out of region */
3271                         if (    ev.xmotion.x_root < r->g.x ||
3272                                 ev.xmotion.x_root > r->g.x + r->g.w - 1 ||
3273                                 ev.xmotion.y_root < r->g.y ||
3274                                 ev.xmotion.y_root > r->g.y + r->g.h - 1)
3275                                 continue;
3276
3277                         win->g.x = ev.xmotion.x_root - border_width;
3278                         win->g.y = ev.xmotion.y_root - border_width;
3279
3280                         /* not free, don't sync more than 120 times / second */
3281                         if ((ev.xmotion.time - time) > (1000 / 120) ) {
3282                                 time = ev.xmotion.time;
3283                                 XSync(display, False);
3284                                 move_window(win);
3285                         }
3286                         break;
3287                 }
3288         } while (ev.type != ButtonRelease);
3289         if (time) {
3290                 XSync(display, False);
3291                 move_window(win);
3292         }
3293         store_float_geom(win,r);
3294         XWarpPointer(display, None, win->id, 0, 0, 0, 0, 0, 0);
3295         XUngrabPointer(display, CurrentTime);
3296
3297         /* drain events */
3298         while (XCheckMaskEvent(display, EnterWindowMask, &ev));
3299 }
3300
3301 /* user/key callable function IDs */
3302 enum keyfuncid {
3303         kf_cycle_layout,
3304         kf_stack_reset,
3305         kf_master_shrink,
3306         kf_master_grow,
3307         kf_master_add,
3308         kf_master_del,
3309         kf_stack_inc,
3310         kf_stack_dec,
3311         kf_swap_main,
3312         kf_focus_next,
3313         kf_focus_prev,
3314         kf_swap_next,
3315         kf_swap_prev,
3316         kf_spawn_term,
3317         kf_spawn_menu,
3318         kf_quit,
3319         kf_restart,
3320         kf_focus_main,
3321         kf_ws_1,
3322         kf_ws_2,
3323         kf_ws_3,
3324         kf_ws_4,
3325         kf_ws_5,
3326         kf_ws_6,
3327         kf_ws_7,
3328         kf_ws_8,
3329         kf_ws_9,
3330         kf_ws_10,
3331         kf_ws_next,
3332         kf_ws_prev,
3333         kf_ws_prior,
3334         kf_screen_next,
3335         kf_screen_prev,
3336         kf_mvws_1,
3337         kf_mvws_2,
3338         kf_mvws_3,
3339         kf_mvws_4,
3340         kf_mvws_5,
3341         kf_mvws_6,
3342         kf_mvws_7,
3343         kf_mvws_8,
3344         kf_mvws_9,
3345         kf_mvws_10,
3346         kf_bar_toggle,
3347         kf_wind_kill,
3348         kf_wind_del,
3349         kf_screenshot_all,
3350         kf_screenshot_wind,
3351         kf_float_toggle,
3352         kf_version,
3353         kf_spawn_lock,
3354         kf_spawn_initscr,
3355         kf_spawn_custom,
3356         kf_iconify,
3357         kf_uniconify,
3358         kf_dumpwins, /* MUST BE LAST */
3359         kf_invalid
3360 };
3361
3362 /* key definitions */
3363 void
3364 dummykeyfunc(struct swm_region *r, union arg *args)
3365 {
3366 };
3367
3368 void
3369 legacyfunc(struct swm_region *r, union arg *args)
3370 {
3371 };
3372
3373 struct keyfunc {
3374         char                    name[SWM_FUNCNAME_LEN];
3375         void                    (*func)(struct swm_region *r, union arg *);
3376         union arg               args;
3377 } keyfuncs[kf_invalid + 1] = {
3378         /* name                 function        argument */
3379         { "cycle_layout",       cycle_layout,   {0} },
3380         { "stack_reset",        stack_config,   {.id = SWM_ARG_ID_STACKRESET} },
3381         { "master_shrink",      stack_config,   {.id = SWM_ARG_ID_MASTERSHRINK} },
3382         { "master_grow",        stack_config,   {.id = SWM_ARG_ID_MASTERGROW} },
3383         { "master_add",         stack_config,   {.id = SWM_ARG_ID_MASTERADD} },
3384         { "master_del",         stack_config,   {.id = SWM_ARG_ID_MASTERDEL} },
3385         { "stack_inc",          stack_config,   {.id = SWM_ARG_ID_STACKINC} },
3386         { "stack_dec",          stack_config,   {.id = SWM_ARG_ID_STACKDEC} },
3387         { "swap_main",          swapwin,        {.id = SWM_ARG_ID_SWAPMAIN} },
3388         { "focus_next",         focus,          {.id = SWM_ARG_ID_FOCUSNEXT} },
3389         { "focus_prev",         focus,          {.id = SWM_ARG_ID_FOCUSPREV} },
3390         { "swap_next",          swapwin,        {.id = SWM_ARG_ID_SWAPNEXT} },
3391         { "swap_prev",          swapwin,        {.id = SWM_ARG_ID_SWAPPREV} },
3392         { "spawn_term",         spawnterm,      {.argv = spawn_term} },
3393         { "spawn_menu",         legacyfunc,     {0} },
3394         { "quit",               quit,           {0} },
3395         { "restart",            restart,        {0} },
3396         { "focus_main",         focus,          {.id = SWM_ARG_ID_FOCUSMAIN} },
3397         { "ws_1",               switchws,       {.id = 0} },
3398         { "ws_2",               switchws,       {.id = 1} },
3399         { "ws_3",               switchws,       {.id = 2} },
3400         { "ws_4",               switchws,       {.id = 3} },
3401         { "ws_5",               switchws,       {.id = 4} },
3402         { "ws_6",               switchws,       {.id = 5} },
3403         { "ws_7",               switchws,       {.id = 6} },
3404         { "ws_8",               switchws,       {.id = 7} },
3405         { "ws_9",               switchws,       {.id = 8} },
3406         { "ws_10",              switchws,       {.id = 9} },
3407         { "ws_next",            cyclews,        {.id = SWM_ARG_ID_CYCLEWS_UP} },
3408         { "ws_prev",            cyclews,        {.id = SWM_ARG_ID_CYCLEWS_DOWN} },
3409         { "ws_prior",           priorws,        {0} },
3410         { "screen_next",        cyclescr,       {.id = SWM_ARG_ID_CYCLESC_UP} },
3411         { "screen_prev",        cyclescr,       {.id = SWM_ARG_ID_CYCLESC_DOWN} },
3412         { "mvws_1",             send_to_ws,     {.id = 0} },
3413         { "mvws_2",             send_to_ws,     {.id = 1} },
3414         { "mvws_3",             send_to_ws,     {.id = 2} },
3415         { "mvws_4",             send_to_ws,     {.id = 3} },
3416         { "mvws_5",             send_to_ws,     {.id = 4} },
3417         { "mvws_6",             send_to_ws,     {.id = 5} },
3418         { "mvws_7",             send_to_ws,     {.id = 6} },
3419         { "mvws_8",             send_to_ws,     {.id = 7} },
3420         { "mvws_9",             send_to_ws,     {.id = 8} },
3421         { "mvws_10",            send_to_ws,     {.id = 9} },
3422         { "bar_toggle",         bar_toggle,     {0} },
3423         { "wind_kill",          wkill,          {.id = SWM_ARG_ID_KILLWINDOW} },
3424         { "wind_del",           wkill,          {.id = SWM_ARG_ID_DELETEWINDOW} },
3425         { "screenshot_all",     legacyfunc,     {0} },
3426         { "screenshot_wind",    legacyfunc,     {0} },
3427         { "float_toggle",       floating_toggle,{0} },
3428         { "version",            version,        {0} },
3429         { "spawn_lock",         legacyfunc,     {0} },
3430         { "spawn_initscr",      legacyfunc,     {0} },
3431         { "spawn_custom",       dummykeyfunc,   {0} },
3432         { "iconify",            iconify,        {0} },
3433         { "uniconify",          uniconify,      {0} },
3434         { "dumpwins",           dumpwins,       {0} }, /* MUST BE LAST */
3435         { "invalid key func",   NULL,           {0} },
3436 };
3437 struct key {
3438         unsigned int            mod;
3439         KeySym                  keysym;
3440         enum keyfuncid          funcid;
3441         char                    *spawn_name;
3442 };
3443 int                             keys_size = 0, keys_length = 0;
3444 struct key                      *keys = NULL;
3445
3446 /* mouse */
3447 enum { client_click, root_click };
3448 struct button {
3449         unsigned int            action;
3450         unsigned int            mask;
3451         unsigned int            button;
3452         void                    (*func)(struct ws_win *, union arg *);
3453         union arg               args;
3454 } buttons[] = {
3455           /* action     key             mouse button    func    args */
3456         { client_click, MODKEY,         Button3,        resize, {.id = SWM_ARG_ID_DONTCENTER} },
3457         { client_click, MODKEY | ShiftMask, Button3,    resize, {.id = SWM_ARG_ID_CENTER} },
3458         { client_click, MODKEY,         Button1,        move,   {0} },
3459 };
3460
3461 void
3462 update_modkey(unsigned int mod)
3463 {
3464         int                     i;
3465
3466         mod_key = mod;
3467         for (i = 0; i < keys_length; i++)
3468                 if (keys[i].mod & ShiftMask)
3469                         keys[i].mod = mod | ShiftMask;
3470                 else
3471                         keys[i].mod = mod;
3472
3473         for (i = 0; i < LENGTH(buttons); i++)
3474                 if (buttons[i].mask & ShiftMask)
3475                         buttons[i].mask = mod | ShiftMask;
3476                 else
3477                         buttons[i].mask = mod;
3478 }
3479
3480 /* spawn */
3481 struct spawn_prog {
3482         char                    *name;
3483         int                     argc;
3484         char                    **argv;
3485 };
3486
3487 int                             spawns_size = 0, spawns_length = 0;
3488 struct spawn_prog               *spawns = NULL;
3489
3490 int
3491 spawn_expand(struct swm_region *r, union arg *args, char *spawn_name,
3492     char ***ret_args)
3493 {
3494         struct spawn_prog       *prog = NULL;
3495         int                     i;
3496         char                    *ap, **real_args;
3497
3498         DNPRINTF(SWM_D_SPAWN, "spawn_expand %s\n", spawn_name);
3499
3500         /* find program */
3501         for (i = 0; i < spawns_length; i++) {
3502                 if (!strcasecmp(spawn_name, spawns[i].name))
3503                         prog = &spawns[i];
3504         }
3505         if (prog == NULL) {
3506                 fprintf(stderr, "spawn_custom: program %s not found\n",
3507                     spawn_name);
3508                 return (-1);
3509         }
3510
3511         /* make room for expanded args */
3512         if ((real_args = calloc(prog->argc + 1, sizeof(char *))) == NULL)
3513                 err(1, "spawn_custom: calloc real_args");
3514
3515         /* expand spawn_args into real_args */
3516         for (i = 0; i < prog->argc; i++) {
3517                 ap = prog->argv[i];
3518                 DNPRINTF(SWM_D_SPAWN, "spawn_custom: raw arg = %s\n", ap);
3519                 if (!strcasecmp(ap, "$bar_border")) {
3520                         if ((real_args[i] =
3521                             strdup(r->s->c[SWM_S_COLOR_BAR_BORDER].name))
3522                             == NULL)
3523                                 err(1,  "spawn_custom border color");
3524                 } else if (!strcasecmp(ap, "$bar_color")) {
3525                         if ((real_args[i] =
3526                             strdup(r->s->c[SWM_S_COLOR_BAR].name))
3527                             == NULL)
3528                                 err(1, "spawn_custom bar color");
3529                 } else if (!strcasecmp(ap, "$bar_font")) {
3530                         if ((real_args[i] = strdup(bar_fonts[bar_fidx]))
3531                             == NULL)
3532                                 err(1, "spawn_custom bar fonts");
3533                 } else if (!strcasecmp(ap, "$bar_font_color")) {
3534                         if ((real_args[i] =
3535                             strdup(r->s->c[SWM_S_COLOR_BAR_FONT].name))
3536                             == NULL)
3537                                 err(1, "spawn_custom color font");
3538                 } else if (!strcasecmp(ap, "$color_focus")) {
3539                         if ((real_args[i] =
3540                             strdup(r->s->c[SWM_S_COLOR_FOCUS].name))
3541                             == NULL)
3542                                 err(1, "spawn_custom color focus");
3543                 } else if (!strcasecmp(ap, "$color_unfocus")) {
3544                         if ((real_args[i] =
3545                             strdup(r->s->c[SWM_S_COLOR_UNFOCUS].name))
3546                             == NULL)
3547                                 err(1, "spawn_custom color unfocus");
3548                 } else {
3549                         /* no match --> copy as is */
3550                         if ((real_args[i] = strdup(ap)) == NULL)
3551                                 err(1, "spawn_custom strdup(ap)");
3552                 }
3553                 DNPRINTF(SWM_D_SPAWN, "spawn_custom: cooked arg = %s\n",
3554                     real_args[i]);
3555         }
3556
3557 #ifdef SWM_DEBUG
3558         if ((swm_debug & SWM_D_SPAWN) != 0) {
3559                 fprintf(stderr, "spawn_custom: result = ");
3560                 for (i = 0; i < prog->argc; i++)
3561                         fprintf(stderr, "\"%s\" ", real_args[i]);
3562                 fprintf(stderr, "\n");
3563         }
3564 #endif
3565         *ret_args = real_args;
3566         return (prog->argc);
3567 }
3568
3569 void
3570 spawn_custom(struct swm_region *r, union arg *args, char *spawn_name)
3571 {
3572         union arg               a;
3573         char                    **real_args;
3574         int                     spawn_argc, i;
3575
3576         if ((spawn_argc = spawn_expand(r, args, spawn_name, &real_args)) < 0)
3577                 return;
3578         a.argv = real_args;
3579         if (fork() == 0)
3580                 spawn(r, &a, 1);
3581
3582         for (i = 0; i < spawn_argc; i++)
3583                 free(real_args[i]);
3584         free(real_args);
3585 }
3586
3587 void
3588 spawn_select(struct swm_region *r, union arg *args, char *spawn_name, int *pid)
3589 {
3590         union arg               a;
3591         char                    **real_args;
3592         int                     i, spawn_argc;
3593
3594         if ((spawn_argc = spawn_expand(r, args, spawn_name, &real_args)) < 0)
3595                 return;
3596         a.argv = real_args;
3597
3598         if (pipe(select_list_pipe) == -1)
3599                 err(1, "pipe error");
3600         if (pipe(select_resp_pipe) == -1)
3601                 err(1, "pipe error");
3602
3603         if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
3604                 err(1, "could not disable SIGPIPE");
3605         switch (*pid = fork()) {
3606         case -1:
3607                 err(1, "cannot fork");
3608                 break;
3609         case 0: /* child */
3610                 if (dup2(select_list_pipe[0], 0) == -1)
3611                         errx(1, "dup2");
3612                 if (dup2(select_resp_pipe[1], 1) == -1)
3613                         errx(1, "dup2");
3614                 close(select_list_pipe[1]);
3615                 close(select_resp_pipe[0]);
3616                 spawn(r, &a, 0);
3617                 break;
3618         default: /* parent */
3619                 close(select_list_pipe[0]);
3620                 close(select_resp_pipe[1]);
3621                 break;
3622         }
3623
3624         for (i = 0; i < spawn_argc; i++)
3625                 free(real_args[i]);
3626         free(real_args);
3627 }
3628
3629 void
3630 setspawn(struct spawn_prog *prog)
3631 {
3632         int                     i, j;
3633
3634         if (prog == NULL || prog->name == NULL)
3635                 return;
3636
3637         /* find existing */
3638         for (i = 0; i < spawns_length; i++) {
3639                 if (!strcmp(spawns[i].name, prog->name)) {
3640                         /* found */
3641                         if (prog->argv == NULL) {
3642                                 /* delete */
3643                                 DNPRINTF(SWM_D_SPAWN,
3644                                     "setspawn: delete #%d %s\n",
3645                                     i, spawns[i].name);
3646                                 free(spawns[i].name);
3647                                 for (j = 0; j < spawns[i].argc; j++)
3648                                         free(spawns[i].argv[j]);
3649                                 free(spawns[i].argv);
3650                                 j = spawns_length - 1;
3651                                 if (i < j)
3652                                         spawns[i] = spawns[j];
3653                                 spawns_length--;
3654                                 free(prog->name);
3655                         } else {
3656                                 /* replace */
3657                                 DNPRINTF(SWM_D_SPAWN,
3658                                     "setspawn: replace #%d %s\n",
3659                                     i, spawns[i].name);
3660                                 free(spawns[i].name);
3661                                 for (j = 0; j < spawns[i].argc; j++)
3662                                         free(spawns[i].argv[j]);
3663                                 free(spawns[i].argv);
3664                                 spawns[i] = *prog;
3665                         }
3666                         /* found case handled */
3667                         free(prog);
3668                         return;
3669                 }
3670         }
3671
3672         if (prog->argv == NULL) {
3673                 fprintf(stderr,
3674                     "error: setspawn: cannot find program %s", prog->name);
3675                 free(prog);
3676                 return;
3677         }
3678
3679         /* not found: add */
3680         if (spawns_size == 0 || spawns == NULL) {
3681                 spawns_size = 4;
3682                 DNPRINTF(SWM_D_SPAWN, "setspawn: init list %d\n", spawns_size);
3683                 spawns = malloc((size_t)spawns_size *
3684                     sizeof(struct spawn_prog));
3685                 if (spawns == NULL) {
3686                         fprintf(stderr, "setspawn: malloc failed\n");
3687                         perror(" failed");
3688                         quit(NULL, NULL);
3689                 }
3690         } else if (spawns_length == spawns_size) {
3691                 spawns_size *= 2;
3692                 DNPRINTF(SWM_D_SPAWN, "setspawn: grow list %d\n", spawns_size);
3693                 spawns = realloc(spawns, (size_t)spawns_size *
3694                     sizeof(struct spawn_prog));
3695                 if (spawns == NULL) {
3696                         fprintf(stderr, "setspawn: realloc failed\n");
3697                         perror(" failed");
3698                         quit(NULL, NULL);
3699                 }
3700         }
3701
3702         if (spawns_length < spawns_size) {
3703                 DNPRINTF(SWM_D_SPAWN, "setspawn: add #%d %s\n",
3704                     spawns_length, prog->name);
3705                 i = spawns_length++;
3706                 spawns[i] = *prog;
3707         } else {
3708                 fprintf(stderr, "spawns array problem?\n");
3709                 if (spawns == NULL) {
3710                         fprintf(stderr, "spawns array is NULL!\n");
3711                         quit(NULL, NULL);
3712                 }
3713         }
3714         free(prog);
3715 }
3716
3717 int
3718 setconfspawn(char *selector, char *value, int flags)
3719 {
3720         struct spawn_prog       *prog;
3721         char                    *vp, *cp, *word;
3722
3723         DNPRINTF(SWM_D_SPAWN, "setconfspawn: [%s] [%s]\n", selector, value);
3724         if ((prog = calloc(1, sizeof *prog)) == NULL)
3725                 err(1, "setconfspawn: calloc prog");
3726         prog->name = strdup(selector);
3727         if (prog->name == NULL)
3728                 err(1, "setconfspawn prog->name");
3729         if ((cp = vp = strdup(value)) == NULL)
3730                 err(1, "setconfspawn: strdup(value) ");
3731         while ((word = strsep(&cp, " \t")) != NULL) {
3732                 DNPRINTF(SWM_D_SPAWN, "setconfspawn: arg [%s]\n", word);
3733                 if (cp)
3734                         cp += (long)strspn(cp, " \t");
3735                 if (strlen(word) > 0) {
3736                         prog->argc++;
3737                         prog->argv = realloc(prog->argv,
3738                             prog->argc * sizeof(char *));
3739                         if ((prog->argv[prog->argc - 1] = strdup(word)) == NULL)
3740                                 err(1, "setconfspawn: strdup");
3741                 }
3742         }
3743         free(vp);
3744
3745         setspawn(prog);
3746
3747         DNPRINTF(SWM_D_SPAWN, "setconfspawn: done\n");
3748         return (0);
3749 }
3750
3751 void
3752 setup_spawn(void)
3753 {
3754         setconfspawn("term",            "xterm",                0);
3755         setconfspawn("screenshot_all",  "screenshot.sh full",   0);
3756         setconfspawn("screenshot_wind", "screenshot.sh window", 0);
3757         setconfspawn("lock",            "xlock",                0);
3758         setconfspawn("initscr",         "initscreen.sh",        0);
3759         setconfspawn("menu",            "dmenu_run"
3760                                         " -fn $bar_font"
3761                                         " -nb $bar_color"
3762                                         " -nf $bar_font_color"
3763                                         " -sb $bar_border"
3764                                         " -sf $bar_color",      0);
3765         setconfspawn("uniconify",       "dmenu"
3766                                         " -i"
3767                                         " -fn $bar_font"
3768                                         " -nb $bar_color"
3769                                         " -nf $bar_font_color"
3770                                         " -sb $bar_border"
3771                                         " -sf $bar_color",      0);
3772 }
3773
3774 /* key bindings */
3775 #define SWM_MODNAME_SIZE        32
3776 #define SWM_KEY_WS              "\n+ \t"
3777 int
3778 parsekeys(char *keystr, unsigned int currmod, unsigned int *mod, KeySym *ks)
3779 {
3780         char                    *cp, *name;
3781         KeySym                  uks;
3782         DNPRINTF(SWM_D_KEY, "parsekeys: enter [%s]\n", keystr);
3783         if (mod == NULL || ks == NULL) {
3784                 DNPRINTF(SWM_D_KEY, "parsekeys: no mod or key vars\n");
3785                 return (1);
3786         }
3787         if (keystr == NULL || strlen(keystr) == 0) {
3788                 DNPRINTF(SWM_D_KEY, "parsekeys: no keystr\n");
3789                 return (1);
3790         }
3791         cp = keystr;
3792         *ks = NoSymbol;
3793         *mod = 0;
3794         while ((name = strsep(&cp, SWM_KEY_WS)) != NULL) {
3795                 DNPRINTF(SWM_D_KEY, "parsekeys: key [%s]\n", name);
3796                 if (cp)
3797                         cp += (long)strspn(cp, SWM_KEY_WS);
3798                 if (strncasecmp(name, "MOD", SWM_MODNAME_SIZE) == 0)
3799                         *mod |= currmod;
3800                 else if (!strncasecmp(name, "Mod1", SWM_MODNAME_SIZE))
3801                         *mod |= Mod1Mask;
3802                 else if (!strncasecmp(name, "Mod2", SWM_MODNAME_SIZE))
3803                         *mod += Mod2Mask;
3804                 else if (!strncmp(name, "Mod3", SWM_MODNAME_SIZE))
3805                         *mod |= Mod3Mask;
3806                 else if (!strncmp(name, "Mod4", SWM_MODNAME_SIZE))
3807                         *mod |= Mod4Mask;
3808                 else if (strncasecmp(name, "SHIFT", SWM_MODNAME_SIZE) == 0)
3809                         *mod |= ShiftMask;
3810                 else if (strncasecmp(name, "CONTROL", SWM_MODNAME_SIZE) == 0)
3811                         *mod |= ControlMask;
3812                 else {
3813                         *ks = XStringToKeysym(name);
3814                         XConvertCase(*ks, ks, &uks);
3815                         if (ks == NoSymbol) {
3816                                 DNPRINTF(SWM_D_KEY,
3817                                     "parsekeys: invalid key %s\n",
3818                                     name);
3819                                 return (1);
3820                         }
3821                 }
3822         }
3823         DNPRINTF(SWM_D_KEY, "parsekeys: leave ok\n");
3824         return (0);
3825 }
3826
3827 char *
3828 strdupsafe(char *str)
3829 {
3830         if (str == NULL)
3831                 return (NULL);
3832         else
3833                 return (strdup(str));
3834 }
3835
3836 void
3837 setkeybinding(unsigned int mod, KeySym ks, enum keyfuncid kfid, char *spawn_name)
3838 {
3839         int                     i, j;
3840         DNPRINTF(SWM_D_KEY, "setkeybinding: enter %s [%s]\n",
3841             keyfuncs[kfid].name, spawn_name);
3842         /* find existing */
3843         for (i = 0; i < keys_length; i++) {
3844                 if (keys[i].mod == mod && keys[i].keysym == ks) {
3845                         if (kfid == kf_invalid) {
3846                                 /* found: delete */
3847                                 DNPRINTF(SWM_D_KEY,
3848                                     "setkeybinding: delete #%d %s\n",
3849                                     i, keyfuncs[keys[i].funcid].name);
3850                                 free(keys[i].spawn_name);
3851                                 j = keys_length - 1;
3852                                 if (i < j)
3853                                         keys[i] = keys[j];
3854                                 keys_length--;
3855                                 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
3856                                 return;
3857                         } else {
3858                                 /* found: replace */
3859                                 DNPRINTF(SWM_D_KEY,
3860                                     "setkeybinding: replace #%d %s %s\n",
3861                                     i, keyfuncs[keys[i].funcid].name,
3862                                     spawn_name);
3863                                 free(keys[i].spawn_name);
3864                                 keys[i].mod = mod;
3865                                 keys[i].keysym = ks;
3866                                 keys[i].funcid = kfid;
3867                                 keys[i].spawn_name = strdupsafe(spawn_name);
3868                                 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
3869                                 return;
3870                         }
3871                 }
3872         }
3873         if (kfid == kf_invalid) {
3874                 fprintf(stderr,
3875                     "error: setkeybinding: cannot find mod/key combination");
3876                 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
3877                 return;
3878         }
3879         /* not found: add */
3880         if (keys_size == 0 || keys == NULL) {
3881                 keys_size = 4;
3882                 DNPRINTF(SWM_D_KEY, "setkeybinding: init list %d\n", keys_size);
3883                 keys = malloc((size_t)keys_size * sizeof(struct key));
3884                 if (!keys) {
3885                         fprintf(stderr, "malloc failed\n");
3886                         perror(" failed");
3887                         quit(NULL, NULL);
3888                 }
3889         } else if (keys_length == keys_size) {
3890                 keys_size *= 2;
3891                 DNPRINTF(SWM_D_KEY, "setkeybinding: grow list %d\n", keys_size);
3892                 keys = realloc(keys, (size_t)keys_size * sizeof(struct key));
3893                 if (!keys) {
3894                         fprintf(stderr, "realloc failed\n");
3895                         perror(" failed");
3896                         quit(NULL, NULL);
3897                 }
3898         }
3899         if (keys_length < keys_size) {
3900                 j = keys_length++;
3901                 DNPRINTF(SWM_D_KEY, "setkeybinding: add #%d %s %s\n",
3902                     j, keyfuncs[kfid].name, spawn_name);
3903                 keys[j].mod = mod;
3904                 keys[j].keysym = ks;
3905                 keys[j].funcid = kfid;
3906                 keys[j].spawn_name = strdupsafe(spawn_name);
3907         } else {
3908                 fprintf(stderr, "keys array problem?\n");
3909                 if (!keys) {
3910                         fprintf(stderr, "keys array problem\n");
3911                         quit(NULL, NULL);
3912                 }
3913         }
3914         DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
3915 }
3916
3917 int
3918 setconfbinding(char *selector, char *value, int flags)
3919 {
3920         enum keyfuncid          kfid;
3921         unsigned int            mod;
3922         KeySym                  ks;
3923         int                     i;
3924         DNPRINTF(SWM_D_KEY, "setconfbinding: enter\n");
3925         if (selector == NULL) {
3926                 DNPRINTF(SWM_D_KEY, "setconfbinding: unbind %s\n", value);
3927                 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
3928                         kfid = kf_invalid;
3929                         setkeybinding(mod, ks, kfid, NULL);
3930                         return (0);
3931                 } else
3932                         return (1);
3933         }
3934         /* search by key function name */
3935         for (kfid = 0; kfid < kf_invalid; (kfid)++) {
3936                 if (strncasecmp(selector, keyfuncs[kfid].name,
3937                     SWM_FUNCNAME_LEN) == 0) {
3938                         DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match\n",
3939                             selector);
3940                         if (parsekeys(value, mod_key, &mod, &ks) == 0) {
3941                                 setkeybinding(mod, ks, kfid, NULL);
3942                                 return (0);
3943                         } else
3944                                 return (1);
3945                 }
3946         }
3947         /* search by custom spawn name */
3948         for (i = 0; i < spawns_length; i++) {
3949                 if (strcasecmp(selector, spawns[i].name) == 0) {
3950                         DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match\n",
3951                             selector);
3952                         if (parsekeys(value, mod_key, &mod, &ks) == 0) {
3953                                 setkeybinding(mod, ks, kf_spawn_custom,
3954                                     spawns[i].name);
3955                                 return (0);
3956                         } else
3957                                 return (1);
3958                 }
3959         }
3960         DNPRINTF(SWM_D_KEY, "setconfbinding: no match\n");
3961         return (1);
3962 }
3963
3964 void
3965 setup_keys(void)
3966 {
3967         setkeybinding(MODKEY,           XK_space,       kf_cycle_layout,NULL);
3968         setkeybinding(MODKEY|ShiftMask, XK_space,       kf_stack_reset, NULL);
3969         setkeybinding(MODKEY,           XK_h,           kf_master_shrink,NULL);
3970         setkeybinding(MODKEY,           XK_l,           kf_master_grow, NULL);
3971         setkeybinding(MODKEY,           XK_comma,       kf_master_add,  NULL);
3972         setkeybinding(MODKEY,           XK_period,      kf_master_del,  NULL);
3973         setkeybinding(MODKEY|ShiftMask, XK_comma,       kf_stack_inc,   NULL);
3974         setkeybinding(MODKEY|ShiftMask, XK_period,      kf_stack_dec,   NULL);
3975         setkeybinding(MODKEY,           XK_Return,      kf_swap_main,   NULL);
3976         setkeybinding(MODKEY,           XK_j,           kf_focus_next,  NULL);
3977         setkeybinding(MODKEY,           XK_k,           kf_focus_prev,  NULL);
3978         setkeybinding(MODKEY|ShiftMask, XK_j,           kf_swap_next,   NULL);
3979         setkeybinding(MODKEY|ShiftMask, XK_k,           kf_swap_prev,   NULL);
3980         setkeybinding(MODKEY|ShiftMask, XK_Return,      kf_spawn_term,  NULL);
3981         setkeybinding(MODKEY,           XK_p,           kf_spawn_custom,        "menu");
3982         setkeybinding(MODKEY|ShiftMask, XK_q,           kf_quit,        NULL);
3983         setkeybinding(MODKEY,           XK_q,           kf_restart,     NULL);
3984         setkeybinding(MODKEY,           XK_m,           kf_focus_main,  NULL);
3985         setkeybinding(MODKEY,           XK_1,           kf_ws_1,        NULL);
3986         setkeybinding(MODKEY,           XK_2,           kf_ws_2,        NULL);
3987         setkeybinding(MODKEY,           XK_3,           kf_ws_3,        NULL);
3988         setkeybinding(MODKEY,           XK_4,           kf_ws_4,        NULL);
3989         setkeybinding(MODKEY,           XK_5,           kf_ws_5,        NULL);
3990         setkeybinding(MODKEY,           XK_6,           kf_ws_6,        NULL);
3991         setkeybinding(MODKEY,           XK_7,           kf_ws_7,        NULL);
3992         setkeybinding(MODKEY,           XK_8,           kf_ws_8,        NULL);
3993         setkeybinding(MODKEY,           XK_9,           kf_ws_9,        NULL);
3994         setkeybinding(MODKEY,           XK_0,           kf_ws_10,       NULL);
3995         setkeybinding(MODKEY,           XK_Right,       kf_ws_next,     NULL);
3996         setkeybinding(MODKEY,           XK_Left,        kf_ws_prev,     NULL);
3997         setkeybinding(MODKEY,           XK_a,           kf_ws_prior,    NULL);
3998         setkeybinding(MODKEY|ShiftMask, XK_Right,       kf_screen_next, NULL);
3999         setkeybinding(MODKEY|ShiftMask, XK_Left,        kf_screen_prev, NULL);
4000         setkeybinding(MODKEY|ShiftMask, XK_1,           kf_mvws_1,      NULL);
4001         setkeybinding(MODKEY|ShiftMask, XK_2,           kf_mvws_2,      NULL);
4002         setkeybinding(MODKEY|ShiftMask, XK_3,           kf_mvws_3,      NULL);
4003         setkeybinding(MODKEY|ShiftMask, XK_4,           kf_mvws_4,      NULL);
4004         setkeybinding(MODKEY|ShiftMask, XK_5,           kf_mvws_5,      NULL);
4005         setkeybinding(MODKEY|ShiftMask, XK_6,           kf_mvws_6,      NULL);
4006         setkeybinding(MODKEY|ShiftMask, XK_7,           kf_mvws_7,      NULL);
4007         setkeybinding(MODKEY|ShiftMask, XK_8,           kf_mvws_8,      NULL);
4008         setkeybinding(MODKEY|ShiftMask, XK_9,           kf_mvws_9,      NULL);
4009         setkeybinding(MODKEY|ShiftMask, XK_0,           kf_mvws_10,     NULL);
4010         setkeybinding(MODKEY,           XK_b,           kf_bar_toggle,  NULL);
4011         setkeybinding(MODKEY,           XK_Tab,         kf_focus_next,  NULL);
4012         setkeybinding(MODKEY|ShiftMask, XK_Tab,         kf_focus_prev,  NULL);
4013         setkeybinding(MODKEY|ShiftMask, XK_x,           kf_wind_kill,   NULL);
4014         setkeybinding(MODKEY,           XK_x,           kf_wind_del,    NULL);
4015         setkeybinding(MODKEY,           XK_s,           kf_spawn_custom,        "screenshot_all");
4016         setkeybinding(MODKEY|ShiftMask, XK_s,           kf_spawn_custom,        "screenshot_wind");
4017         setkeybinding(MODKEY,           XK_t,           kf_float_toggle,NULL);
4018         setkeybinding(MODKEY|ShiftMask, XK_v,           kf_version,     NULL);
4019         setkeybinding(MODKEY|ShiftMask, XK_Delete,      kf_spawn_custom,        "lock");
4020         setkeybinding(MODKEY|ShiftMask, XK_i,           kf_spawn_custom,        "initscr");
4021         setkeybinding(MODKEY,           XK_w,           kf_iconify,     NULL);
4022         setkeybinding(MODKEY|ShiftMask, XK_w,           kf_uniconify,   NULL);
4023 #ifdef SWM_DEBUG
4024         setkeybinding(MODKEY|ShiftMask, XK_d,           kf_dumpwins,    NULL);
4025 #endif
4026 }
4027
4028 void
4029 updatenumlockmask(void)
4030 {
4031         unsigned int            i, j;
4032         XModifierKeymap         *modmap;
4033
4034         DNPRINTF(SWM_D_MISC, "updatenumlockmask\n");
4035         numlockmask = 0;
4036         modmap = XGetModifierMapping(display);
4037         for (i = 0; i < 8; i++)
4038                 for (j = 0; j < modmap->max_keypermod; j++)
4039                         if (modmap->modifiermap[i * modmap->max_keypermod + j]
4040                           == XKeysymToKeycode(display, XK_Num_Lock))
4041                                 numlockmask = (1 << i);
4042
4043         XFreeModifiermap(modmap);
4044 }
4045
4046 void
4047 grabkeys(void)
4048 {
4049         unsigned int            i, j, k;
4050         KeyCode                 code;
4051         unsigned int            modifiers[] =
4052             { 0, LockMask, numlockmask, numlockmask | LockMask };
4053
4054         DNPRINTF(SWM_D_MISC, "grabkeys\n");
4055         updatenumlockmask();
4056
4057         for (k = 0; k < ScreenCount(display); k++) {
4058                 if (TAILQ_EMPTY(&screens[k].rl))
4059                         continue;
4060                 XUngrabKey(display, AnyKey, AnyModifier, screens[k].root);
4061                 for (i = 0; i < keys_length; i++) {
4062                         if ((code = XKeysymToKeycode(display, keys[i].keysym)))
4063                                 for (j = 0; j < LENGTH(modifiers); j++)
4064                                         XGrabKey(display, code,
4065                                             keys[i].mod | modifiers[j],
4066                                             screens[k].root, True,
4067                                             GrabModeAsync, GrabModeAsync);
4068                 }
4069         }
4070 }
4071
4072 void
4073 grabbuttons(struct ws_win *win, int focused)
4074 {
4075         unsigned int            i, j;
4076         unsigned int            modifiers[] =
4077             { 0, LockMask, numlockmask, numlockmask|LockMask };
4078
4079         updatenumlockmask();
4080         XUngrabButton(display, AnyButton, AnyModifier, win->id);
4081         if (focused) {
4082                 for (i = 0; i < LENGTH(buttons); i++)
4083                         if (buttons[i].action == client_click)
4084                                 for (j = 0; j < LENGTH(modifiers); j++)
4085                                         XGrabButton(display, buttons[i].button,
4086                                             buttons[i].mask | modifiers[j],
4087                                             win->id, False, BUTTONMASK,
4088                                             GrabModeAsync, GrabModeSync, None,
4089                                             None);
4090         } else
4091                 XGrabButton(display, AnyButton, AnyModifier, win->id, False,
4092                     BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
4093 }
4094
4095 const char *quirkname[] = {
4096         "NONE",         /* config string for "no value" */
4097         "FLOAT",
4098         "TRANSSZ",
4099         "ANYWHERE",
4100         "XTERM_FONTADJ",
4101         "FULLSCREEN",
4102 };
4103
4104 /* SWM_Q_WS: retain '|' for back compat for now (2009-08-11) */
4105 #define SWM_Q_WS                "\n|+ \t"
4106 int
4107 parsequirks(char *qstr, unsigned long *quirk)
4108 {
4109         char                    *cp, *name;
4110         int                     i;
4111
4112         if (quirk == NULL)
4113                 return (1);
4114
4115         cp = qstr;
4116         *quirk = 0;
4117         while ((name = strsep(&cp, SWM_Q_WS)) != NULL) {
4118                 if (cp)
4119                         cp += (long)strspn(cp, SWM_Q_WS);
4120                 for (i = 0; i < LENGTH(quirkname); i++) {
4121                         if (!strncasecmp(name, quirkname[i], SWM_QUIRK_LEN)) {
4122                                 DNPRINTF(SWM_D_QUIRK, "parsequirks: %s\n", name);
4123                                 if (i == 0) {
4124                                         *quirk = 0;
4125                                         return (0);
4126                                 }
4127                                 *quirk |= 1 << (i-1);
4128                                 break;
4129                         }
4130                 }
4131                 if (i >= LENGTH(quirkname)) {
4132                         DNPRINTF(SWM_D_QUIRK,
4133                             "parsequirks: invalid quirk [%s]\n", name);
4134                         return (1);
4135                 }
4136         }
4137         return (0);
4138 }
4139
4140 void
4141 setquirk(const char *class, const char *name, const int quirk)
4142 {
4143         int                     i, j;
4144
4145         /* find existing */
4146         for (i = 0; i < quirks_length; i++) {
4147                 if (!strcmp(quirks[i].class, class) &&
4148                     !strcmp(quirks[i].name, name)) {
4149                         if (!quirk) {
4150                                 /* found: delete */
4151                                 DNPRINTF(SWM_D_QUIRK,
4152                                     "setquirk: delete #%d %s:%s\n",
4153                                     i, quirks[i].class, quirks[i].name);
4154                                 free(quirks[i].class);
4155                                 free(quirks[i].name);
4156                                 j = quirks_length - 1;
4157                                 if (i < j)
4158                                         quirks[i] = quirks[j];
4159                                 quirks_length--;
4160                                 return;
4161                         } else {
4162                                 /* found: replace */
4163                                 DNPRINTF(SWM_D_QUIRK,
4164                                     "setquirk: replace #%d %s:%s\n",
4165                                     i, quirks[i].class, quirks[i].name);
4166                                 free(quirks[i].class);
4167                                 free(quirks[i].name);
4168                                 quirks[i].class = strdup(class);
4169                                 quirks[i].name = strdup(name);
4170                                 quirks[i].quirk = quirk;
4171                                 return;
4172                         }
4173                 }
4174         }
4175         if (!quirk) {
4176                 fprintf(stderr,
4177                     "error: setquirk: cannot find class/name combination");
4178                 return;
4179         }
4180         /* not found: add */
4181         if (quirks_size == 0 || quirks == NULL) {
4182                 quirks_size = 4;
4183                 DNPRINTF(SWM_D_QUIRK, "setquirk: init list %d\n", quirks_size);
4184                 quirks = malloc((size_t)quirks_size * sizeof(struct quirk));
4185                 if (!quirks) {
4186                         fprintf(stderr, "setquirk: malloc failed\n");
4187                         perror(" failed");
4188                         quit(NULL, NULL);
4189                 }
4190         } else if (quirks_length == quirks_size) {
4191                 quirks_size *= 2;
4192                 DNPRINTF(SWM_D_QUIRK, "setquirk: grow list %d\n", quirks_size);
4193                 quirks = realloc(quirks, (size_t)quirks_size * sizeof(struct quirk));
4194                 if (!quirks) {
4195                         fprintf(stderr, "setquirk: realloc failed\n");
4196                         perror(" failed");
4197                         quit(NULL, NULL);
4198                 }
4199         }
4200         if (quirks_length < quirks_size) {
4201                 DNPRINTF(SWM_D_QUIRK, "setquirk: add %d\n", quirks_length);
4202                 j = quirks_length++;
4203                 quirks[j].class = strdup(class);
4204                 quirks[j].name = strdup(name);
4205                 quirks[j].quirk = quirk;
4206         } else {
4207                 fprintf(stderr, "quirks array problem?\n");
4208                 if (!quirks) {
4209                         fprintf(stderr, "quirks array problem!\n");
4210                         quit(NULL, NULL);
4211                 }
4212         }
4213 }
4214
4215 int
4216 setconfquirk(char *selector, char *value, int flags)
4217 {
4218         char                    *cp, *class, *name;
4219         int                     retval;
4220         unsigned long           quirks;
4221         if (selector == NULL)
4222                 return (0);
4223         if ((cp = strchr(selector, ':')) == NULL)
4224                 return (0);
4225         *cp = '\0';
4226         class = selector;
4227         name = cp + 1;
4228         if ((retval = parsequirks(value, &quirks)) == 0)
4229                 setquirk(class, name, quirks);
4230         return (retval);
4231 }
4232
4233 void
4234 setup_quirks(void)
4235 {
4236         setquirk("MPlayer",             "xv",           SWM_Q_FLOAT | SWM_Q_FULLSCREEN);
4237         setquirk("OpenOffice.org 3.2",  "VCLSalFrame",  SWM_Q_FLOAT);
4238         setquirk("Firefox-bin",         "firefox-bin",  SWM_Q_TRANSSZ);
4239         setquirk("Firefox",             "Dialog",       SWM_Q_FLOAT);
4240         setquirk("Gimp",                "gimp",         SWM_Q_FLOAT | SWM_Q_ANYWHERE);
4241         setquirk("XTerm",               "xterm",        SWM_Q_XTERM_FONTADJ);
4242         setquirk("xine",                "Xine Window",  SWM_Q_FLOAT | SWM_Q_ANYWHERE);
4243         setquirk("Xitk",                "Xitk Combo",   SWM_Q_FLOAT | SWM_Q_ANYWHERE);
4244         setquirk("xine",                "xine Panel",   SWM_Q_FLOAT | SWM_Q_ANYWHERE);
4245         setquirk("Xitk",                "Xine Window",  SWM_Q_FLOAT | SWM_Q_ANYWHERE);
4246         setquirk("xine",                "xine Video Fullscreen Window", SWM_Q_FULLSCREEN | SWM_Q_FLOAT);
4247         setquirk("pcb",                 "pcb",          SWM_Q_FLOAT);
4248 }
4249
4250 /* conf file stuff */
4251 #define SWM_CONF_FILE   "scrotwm.conf"
4252
4253 enum    { SWM_S_BAR_DELAY, SWM_S_BAR_ENABLED, SWM_S_BAR_BORDER_WIDTH, SWM_S_STACK_ENABLED,
4254           SWM_S_CLOCK_ENABLED, SWM_S_CLOCK_FORMAT, SWM_S_CYCLE_EMPTY,
4255           SWM_S_CYCLE_VISIBLE, SWM_S_SS_ENABLED, SWM_S_TERM_WIDTH,
4256           SWM_S_TITLE_CLASS_ENABLED, SWM_S_TITLE_NAME_ENABLED, SWM_S_WINDOW_NAME_ENABLED,
4257           SWM_S_FOCUS_MODE, SWM_S_DISABLE_BORDER, SWM_S_BORDER_WIDTH, SWM_S_BAR_FONT,
4258           SWM_S_BAR_ACTION, SWM_S_SPAWN_TERM, SWM_S_SS_APP, SWM_S_DIALOG_RATIO,
4259           SWM_S_BAR_AT_BOTTOM
4260         };
4261
4262 int
4263 setconfvalue(char *selector, char *value, int flags)
4264 {
4265         switch (flags) {
4266         case SWM_S_BAR_DELAY:
4267                 bar_delay = atoi(value);
4268                 break;
4269         case SWM_S_BAR_ENABLED:
4270                 bar_enabled = atoi(value);
4271                 break;
4272         case SWM_S_BAR_BORDER_WIDTH:
4273                 bar_border_width = atoi(value);
4274                 break;
4275         case SWM_S_BAR_AT_BOTTOM:
4276                 bar_at_bottom = atoi(value);
4277                 break;
4278         case SWM_S_STACK_ENABLED:
4279                 stack_enabled = atoi(value);
4280                 break;
4281         case SWM_S_CLOCK_ENABLED:
4282                 clock_enabled = atoi(value);
4283                 break;
4284         case SWM_S_CLOCK_FORMAT:
4285 #ifndef SWM_DENY_CLOCK_FORMAT
4286                 free(clock_format);
4287                 if ((clock_format = strdup(value)) == NULL)
4288                         err(1, "setconfvalue: clock_format");
4289 #endif
4290                 break;
4291         case SWM_S_CYCLE_EMPTY:
4292                 cycle_empty = atoi(value);
4293                 break;
4294         case SWM_S_CYCLE_VISIBLE:
4295                 cycle_visible = atoi(value);
4296                 break;
4297         case SWM_S_SS_ENABLED:
4298                 ss_enabled = atoi(value);
4299                 break;
4300         case SWM_S_TERM_WIDTH:
4301                 term_width = atoi(value);
4302                 break;
4303         case SWM_S_TITLE_CLASS_ENABLED:
4304                 title_class_enabled = atoi(value);
4305                 break;
4306         case SWM_S_WINDOW_NAME_ENABLED:
4307                 window_name_enabled = atoi(value);
4308                 break;
4309         case SWM_S_TITLE_NAME_ENABLED:
4310                 title_name_enabled = atoi(value);
4311                 break;
4312         case SWM_S_FOCUS_MODE:
4313                 if (!strcmp(value, "default"))
4314                         focus_mode = SWM_FOCUS_DEFAULT;
4315                 else if (!strcmp(value, "follow_cursor"))
4316                         focus_mode = SWM_FOCUS_FOLLOW;
4317                 else if (!strcmp(value, "synergy"))
4318                         focus_mode = SWM_FOCUS_SYNERGY;
4319                 else
4320                         err(1, "focus_mode");
4321                 break;
4322         case SWM_S_DISABLE_BORDER:
4323                 disable_border = atoi(value);
4324                 break;
4325         case SWM_S_BORDER_WIDTH:
4326                 border_width = atoi(value);
4327                 break;
4328         case SWM_S_BAR_FONT:
4329                 free(bar_fonts[0]);
4330                 if ((bar_fonts[0] = strdup(value)) == NULL)
4331                         err(1, "setconfvalue: bar_font");
4332                 break;
4333         case SWM_S_BAR_ACTION:
4334                 free(bar_argv[0]);
4335                 if ((bar_argv[0] = strdup(value)) == NULL)
4336                         err(1, "setconfvalue: bar_action");
4337                 break;
4338         case SWM_S_SPAWN_TERM:
4339                 free(spawn_term[0]);
4340                 if ((spawn_term[0] = strdup(value)) == NULL)
4341                         err(1, "setconfvalue: spawn_term");
4342                 break;
4343         case SWM_S_SS_APP:
4344                 break;
4345         case SWM_S_DIALOG_RATIO:
4346                 dialog_ratio = atof(value);
4347                 if (dialog_ratio > 1.0 || dialog_ratio <= .3)
4348                         dialog_ratio = .6;
4349                 break;
4350         default:
4351                 return (1);
4352         }
4353         return (0);
4354 }
4355
4356 int
4357 setconfmodkey(char *selector, char *value, int flags)
4358 {
4359         if (!strncasecmp(value, "Mod1", strlen("Mod1")))
4360                 update_modkey(Mod1Mask);
4361         else if (!strncasecmp(value, "Mod2", strlen("Mod2")))
4362                 update_modkey(Mod2Mask);
4363         else if (!strncasecmp(value, "Mod3", strlen("Mod3")))
4364                 update_modkey(Mod3Mask);
4365         else if (!strncasecmp(value, "Mod4", strlen("Mod4")))
4366                 update_modkey(Mod4Mask);
4367         else
4368                 return (1);
4369         return (0);
4370 }
4371
4372 int
4373 setconfcolor(char *selector, char *value, int flags)
4374 {
4375         setscreencolor(value, ((selector == NULL)?-1:atoi(selector)), flags);
4376         return (0);
4377 }
4378
4379 int
4380 setconfregion(char *selector, char *value, int flags)
4381 {
4382         custom_region(value);
4383         return (0);
4384 }
4385
4386 /* config options */
4387 struct config_option {
4388         char                    *optname;
4389         int (*func)(char*, char*, int);
4390         int funcflags;
4391 };
4392 struct config_option configopt[] = {
4393         { "bar_enabled",                setconfvalue,   SWM_S_BAR_ENABLED },
4394         { "bar_at_bottom",              setconfvalue,   SWM_S_BAR_AT_BOTTOM },
4395         { "bar_border",                 setconfcolor,   SWM_S_COLOR_BAR_BORDER },
4396         { "bar_border_width",                   setconfvalue,   SWM_S_BAR_BORDER_WIDTH },
4397         { "bar_color",                  setconfcolor,   SWM_S_COLOR_BAR },
4398         { "bar_font_color",             setconfcolor,   SWM_S_COLOR_BAR_FONT },
4399         { "bar_font",                   setconfvalue,   SWM_S_BAR_FONT },
4400         { "bar_action",                 setconfvalue,   SWM_S_BAR_ACTION },
4401         { "bar_delay",                  setconfvalue,   SWM_S_BAR_DELAY },
4402         { "bind",                       setconfbinding, 0 },
4403         { "stack_enabled",              setconfvalue,   SWM_S_STACK_ENABLED },
4404         { "clock_enabled",              setconfvalue,   SWM_S_CLOCK_ENABLED },
4405         { "clock_format",               setconfvalue,   SWM_S_CLOCK_FORMAT },
4406         { "color_focus",                setconfcolor,   SWM_S_COLOR_FOCUS },
4407         { "color_unfocus",              setconfcolor,   SWM_S_COLOR_UNFOCUS },
4408         { "cycle_empty",                setconfvalue,   SWM_S_CYCLE_EMPTY },
4409         { "cycle_visible",              setconfvalue,   SWM_S_CYCLE_VISIBLE },
4410         { "dialog_ratio",               setconfvalue,   SWM_S_DIALOG_RATIO },
4411         { "modkey",                     setconfmodkey,  0 },
4412         { "program",                    setconfspawn,   0 },
4413         { "quirk",                      setconfquirk,   0 },
4414         { "region",                     setconfregion,  0 },
4415         { "spawn_term",                 setconfvalue,   SWM_S_SPAWN_TERM },
4416         { "screenshot_enabled",         setconfvalue,   SWM_S_SS_ENABLED },
4417         { "screenshot_app",             setconfvalue,   SWM_S_SS_APP },
4418         { "window_name_enabled",        setconfvalue,   SWM_S_WINDOW_NAME_ENABLED },
4419         { "term_width",                 setconfvalue,   SWM_S_TERM_WIDTH },
4420         { "title_class_enabled",        setconfvalue,   SWM_S_TITLE_CLASS_ENABLED },
4421         { "title_name_enabled",         setconfvalue,   SWM_S_TITLE_NAME_ENABLED },
4422         { "focus_mode",                 setconfvalue,   SWM_S_FOCUS_MODE },
4423         { "disable_border",             setconfvalue,   SWM_S_DISABLE_BORDER },
4424         { "border_width",               setconfvalue,   SWM_S_BORDER_WIDTH },
4425 };
4426
4427
4428 int
4429 conf_load(char *filename)
4430 {
4431         FILE                    *config;
4432         char                    *line, *cp, *optsub, *optval;
4433         size_t                  linelen, lineno = 0;
4434         int                     wordlen, i, optind;
4435         struct config_option    *opt;
4436
4437         DNPRINTF(SWM_D_CONF, "conf_load begin\n");
4438
4439         if (filename == NULL) {
4440                 fprintf(stderr, "conf_load: no filename\n");
4441                 return (1);
4442         }
4443         if ((config = fopen(filename, "r")) == NULL) {
4444                 warn("conf_load: fopen");
4445                 return (1);
4446         }
4447
4448         while (!feof(config)) {
4449                 if ((line = fparseln(config, &linelen, &lineno, NULL, 0))
4450                     == NULL) {
4451                         if (ferror(config))
4452                                 err(1, "%s", filename);
4453                         else
4454                                 continue;
4455                 }
4456                 cp = line;
4457                 cp += strspn(cp, " \t\n"); /* eat whitespace */
4458                 if (cp[0] == '\0') {
4459                         /* empty line */
4460                         free(line);
4461                         continue;
4462                 }
4463                 /* get config option */
4464                 wordlen = strcspn(cp, "=[ \t\n");
4465                 if (wordlen == 0) {
4466                         warnx("%s: line %zd: no option found",
4467                             filename, lineno);
4468                         return (1);
4469                 }
4470                 optind = -1;
4471                 for (i = 0; i < LENGTH(configopt); i++) {
4472                         opt = &configopt[i];
4473                         if (!strncasecmp(cp, opt->optname, wordlen) &&
4474                             strlen(opt->optname) == wordlen) {
4475                                 optind = i;
4476                                 break;
4477                         }
4478                 }
4479                 if (optind == -1) {
4480                         warnx("%s: line %zd: unknown option %.*s",
4481                             filename, lineno, wordlen, cp);
4482                         return (1);
4483                 }
4484                 cp += wordlen;
4485                 cp += strspn(cp, " \t\n"); /* eat whitespace */
4486                 /* get [selector] if any */
4487                 optsub = NULL;
4488                 if (*cp == '[') {
4489                         cp++;
4490                         wordlen = strcspn(cp, "]");
4491                         if (*cp != ']') {
4492                                 if (wordlen == 0) {
4493                                         warnx("%s: line %zd: syntax error",
4494                                             filename, lineno);
4495                                         return (1);
4496                                 }
4497                                 asprintf(&optsub, "%.*s", wordlen, cp);
4498                         }
4499                         cp += wordlen;
4500                         cp += strspn(cp, "] \t\n"); /* eat trailing */
4501                 }
4502                 cp += strspn(cp, "= \t\n"); /* eat trailing */
4503                 /* get RHS value */
4504                 optval = strdup(cp);
4505                 /* call function to deal with it all */
4506                 if (configopt[optind].func(optsub, optval,
4507                     configopt[optind].funcflags) != 0) {
4508                         fprintf(stderr, "%s line %zd: %s\n",
4509                             filename, lineno, line);
4510                         errx(1, "%s: line %zd: invalid data for %s",
4511                             filename, lineno, configopt[optind].optname);
4512                 }
4513                 free(optval);
4514                 free(optsub);
4515                 free(line);
4516         }
4517
4518         fclose(config);
4519         DNPRINTF(SWM_D_CONF, "conf_load end\n");
4520
4521         return (0);
4522 }
4523
4524 void
4525 set_child_transient(struct ws_win *win)
4526 {
4527         struct ws_win           *parent;
4528
4529         parent = find_window(win->transient);
4530         if (parent)
4531                 parent->child_trans = win;
4532 }
4533
4534 struct ws_win *
4535 manage_window(Window id)
4536 {
4537         Window                  trans = 0;
4538         struct workspace        *ws;
4539         struct ws_win           *win, *ww;
4540         int                     format, i, ws_idx, n, border_me = 0;
4541         unsigned long           nitems, bytes;
4542         Atom                    ws_idx_atom = 0, type;
4543         Atom                    *prot = NULL, *pp;
4544         unsigned char           ws_idx_str[SWM_PROPLEN], *prop = NULL;
4545         struct swm_region       *r;
4546         long                    mask;
4547         const char              *errstr;
4548         XWindowChanges          wc;
4549
4550         if ((win = find_window(id)) != NULL)
4551                 return (win);   /* already being managed */
4552
4553         /* see if we are on the unmanaged list */
4554         if ((win = find_unmanaged_window(id)) != NULL) {
4555                 DNPRINTF(SWM_D_MISC, "manage previously unmanaged window "
4556                     "%lu\n", win->id);
4557                 TAILQ_REMOVE(&win->ws->unmanagedlist, win, entry);
4558                 if (win->transient)
4559                         set_child_transient(win);
4560                 if (trans && (ww = find_window(trans)))
4561                         TAILQ_INSERT_AFTER(&win->ws->winlist, ww, win, entry);
4562                 else
4563                         TAILQ_INSERT_TAIL(&win->ws->winlist, win, entry);
4564                 ewmh_update_actions(win);
4565                 return (win);
4566         }
4567
4568         if ((win = calloc(1, sizeof(struct ws_win))) == NULL)
4569                 errx(1, "calloc: failed to allocate memory for new window");
4570
4571         win->id = id;
4572
4573         /* Get all the window data in one shot */
4574         ws_idx_atom = XInternAtom(display, "_SWM_WS", False);
4575         if (ws_idx_atom)
4576                 XGetWindowProperty(display, id, ws_idx_atom, 0, SWM_PROPLEN,
4577                     False, XA_STRING, &type, &format, &nitems, &bytes, &prop);
4578         XGetWindowAttributes(display, id, &win->wa);
4579         XGetWMNormalHints(display, id, &win->sh, &mask);
4580         XGetTransientForHint(display, id, &trans);
4581         if (trans) {
4582                 win->transient = trans;
4583                 set_child_transient(win);
4584                 DNPRINTF(SWM_D_MISC, "manage_window: win %lu transient %lu\n",
4585                     win->id, win->transient);
4586         }
4587
4588         /* get supported protocols */
4589         if (XGetWMProtocols(display, id, &prot, &n)) {
4590                 for (i = 0, pp = prot; i < n; i++, pp++) {
4591                         if (*pp == takefocus)
4592                                 win->take_focus = 1;
4593                         if (*pp == adelete)
4594                                 win->can_delete = 1;
4595                 }
4596                 if (prot)
4597                         XFree(prot);
4598         }
4599
4600         win->iconic = get_iconic(win);
4601
4602         /*
4603          * Figure out where to put the window. If it was previously assigned to
4604          * a workspace (either by spawn() or manually moving), and isn't
4605          * transient, * put it in the same workspace
4606          */
4607         r = root_to_region(win->wa.root);
4608         if (prop && win->transient == 0) {
4609                 DNPRINTF(SWM_D_PROP, "got property _SWM_WS=%s\n", prop);
4610                 ws_idx = strtonum(prop, 0, 9, &errstr);
4611                 if (errstr) {
4612                         DNPRINTF(SWM_D_EVENT, "window idx is %s: %s",
4613                             errstr, prop);
4614                 }
4615                 ws = &r->s->ws[ws_idx];
4616         } else {
4617                 ws = r->ws;
4618                 /* this should launch transients in the same ws as parent */
4619                 if (id && trans)
4620                         if ((ww = find_window(trans)) != NULL)
4621                                 if (ws->r) {
4622                                         ws = ww->ws;
4623                                         if (ww->ws->r)
4624                                                 r = ww->ws->r;
4625                                         else
4626                                                 fprintf(stderr,
4627                                                     "fix this bug mcbride\n");
4628                                         border_me = 1;
4629                                 }
4630         }
4631
4632         /* set up the window layout */
4633         win->id = id;
4634         win->ws = ws;
4635         win->s = r->s;  /* this never changes */
4636         if (trans && (ww = find_window(trans)))
4637                 TAILQ_INSERT_AFTER(&ws->winlist, ww, win, entry);
4638         else
4639                 TAILQ_INSERT_TAIL(&ws->winlist, win, entry);
4640
4641         win->g.w = win->wa.width;
4642         win->g.h = win->wa.height;
4643         win->g.x = win->wa.x;
4644         win->g.y = win->wa.y;
4645         win->g_floatvalid = 0;
4646         win->floatmaxed = 0;
4647         win->ewmh_flags = 0;
4648
4649         /* Set window properties so we can remember this after reincarnation */
4650         if (ws_idx_atom && prop == NULL &&
4651             snprintf(ws_idx_str, SWM_PROPLEN, "%d", ws->idx) < SWM_PROPLEN) {
4652                 DNPRINTF(SWM_D_PROP, "setting property _SWM_WS to %s\n",
4653                     ws_idx_str);
4654                 XChangeProperty(display, win->id, ws_idx_atom, XA_STRING, 8,
4655                     PropModeReplace, ws_idx_str, SWM_PROPLEN);
4656         }
4657         if (prop)
4658                 XFree(prop);
4659
4660         ewmh_autoquirk(win);
4661
4662         if (XGetClassHint(display, win->id, &win->ch)) {
4663                 DNPRINTF(SWM_D_CLASS, "class: %s name: %s\n",
4664                     win->ch.res_class, win->ch.res_name);
4665
4666                 /* java is retarded so treat it special */
4667                 if (strstr(win->ch.res_name, "sun-awt")) {
4668                         win->java = 1;
4669                         border_me = 1;
4670                 }
4671
4672                 for (i = 0; i < quirks_length; i++){
4673                         if (!strcmp(win->ch.res_class, quirks[i].class) &&
4674                             !strcmp(win->ch.res_name, quirks[i].name)) {
4675                                 DNPRINTF(SWM_D_CLASS, "found: %s name: %s\n",
4676                                     win->ch.res_class, win->ch.res_name);
4677                                 if (quirks[i].quirk & SWM_Q_FLOAT) {
4678                                         win->floating = 1;
4679                                         border_me = 1;
4680                                 }
4681                                 win->quirks = quirks[i].quirk;
4682                         }
4683                 }
4684         }
4685
4686         /* alter window position if quirky */
4687         if (win->quirks & SWM_Q_ANYWHERE) {
4688                 win->manual = 1; /* don't center the quirky windows */
4689                 bzero(&wc, sizeof wc);
4690                 mask = 0;
4691                 if (bar_enabled && win->g.y < bar_height) {
4692                         win->g.y = wc.y = bar_height;
4693                         mask |= CWY;
4694                 }
4695                 if (win->g.w + win->g.x > WIDTH(r)) {
4696                         win->g.x = wc.x = WIDTH(r) - win->g.w - 2;
4697                         mask |= CWX;
4698                 }
4699                 border_me = 1;
4700         }
4701
4702         /* Reset font sizes (the bruteforce way; no default keybinding). */
4703         if (win->quirks & SWM_Q_XTERM_FONTADJ) {
4704                 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
4705                         fake_keypress(win, XK_KP_Subtract, ShiftMask);
4706                 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
4707                         fake_keypress(win, XK_KP_Add, ShiftMask);
4708         }
4709
4710         ewmh_get_win_state(win);
4711         ewmh_update_actions(win);
4712         ewmh_update_win_state(win, None, _NET_WM_STATE_REMOVE);
4713
4714         /* border me */
4715         if (border_me) {
4716                 bzero(&wc, sizeof wc);
4717                 wc.border_width = border_width;
4718                 mask = CWBorderWidth;
4719                 XConfigureWindow(display, win->id, mask, &wc);
4720         }
4721
4722         XSelectInput(display, id, EnterWindowMask | FocusChangeMask |
4723             PropertyChangeMask | StructureNotifyMask);
4724         if (win->iconic)
4725                 set_win_state(win, IconicState);
4726         else
4727                 set_win_state(win, NormalState);
4728
4729         /* floaters need to be mapped if they are in the current workspace */
4730         if ((win->floating || win->transient) && (ws->idx == r->ws->idx))
4731                 XMapRaised(display, win->id);
4732
4733         return (win);
4734 }
4735
4736 void
4737 free_window(struct ws_win *win)
4738 {
4739         DNPRINTF(SWM_D_MISC, "free_window:  %lu\n", win->id);
4740
4741         if (win == NULL)
4742                 return;
4743
4744         /* needed for restart wm */
4745         set_win_state(win, WithdrawnState);
4746
4747         TAILQ_REMOVE(&win->ws->unmanagedlist, win, entry);
4748
4749         if (win->ch.res_class)
4750                 XFree(win->ch.res_class);
4751         if (win->ch.res_name)
4752                 XFree(win->ch.res_name);
4753
4754         kill_refs(win);
4755
4756         /* paint memory */
4757         memset(win, 0xff, sizeof *win); /* XXX kill later */
4758
4759         free(win);
4760 }
4761
4762 void
4763 unmanage_window(struct ws_win *win)
4764 {
4765         struct ws_win           *parent;
4766
4767         if (win == NULL)
4768                 return;
4769
4770         DNPRINTF(SWM_D_MISC, "unmanage_window:  %lu\n", win->id);
4771
4772         if (win->transient) {
4773                 parent = find_window(win->transient);
4774                 if (parent)
4775                         parent->child_trans = NULL;
4776         }
4777
4778         /* focus on root just in case */
4779         XSetInputFocus(display, PointerRoot, PointerRoot, CurrentTime);
4780
4781         focus_prev(win);
4782
4783         TAILQ_REMOVE(&win->ws->winlist, win, entry);
4784         TAILQ_INSERT_TAIL(&win->ws->unmanagedlist, win, entry);
4785
4786         kill_refs(win);
4787 }
4788
4789 void
4790 focus_magic(struct ws_win *win)
4791 {
4792         DNPRINTF(SWM_D_FOCUS, "focus_magic: %lu\n", WINID(win));
4793
4794         if (win == NULL)
4795                 return;
4796
4797         if (win->child_trans) {
4798                 /* win = parent & has a transient so focus on that */
4799                 if (win->java) {
4800                         focus_win(win->child_trans);
4801                         if (win->child_trans->take_focus)
4802                                 client_msg(win, takefocus);
4803                 } else {
4804                         /* make sure transient hasn't dissapeared */
4805                         if (validate_win(win->child_trans) == 0) {
4806                                 focus_win(win->child_trans);
4807                                 if (win->child_trans->take_focus)
4808                                         client_msg(win->child_trans, takefocus);
4809                         } else {
4810                                 win->child_trans = NULL;
4811                                 focus_win(win);
4812                                 if (win->take_focus)
4813                                         client_msg(win, takefocus);
4814                         }
4815                 }
4816         } else {
4817                 /* regular focus */
4818                 focus_win(win);
4819                 if (win->take_focus)
4820                         client_msg(win, takefocus);
4821         }
4822 }
4823
4824 void
4825 expose(XEvent *e)
4826 {
4827         DNPRINTF(SWM_D_EVENT, "expose: window: %lu\n", e->xexpose.window);
4828 }
4829
4830 void
4831 keypress(XEvent *e)
4832 {
4833         unsigned int            i;
4834         KeySym                  keysym;
4835         XKeyEvent               *ev = &e->xkey;
4836
4837         DNPRINTF(SWM_D_EVENT, "keypress: window: %lu\n", ev->window);
4838
4839         keysym = XKeycodeToKeysym(display, (KeyCode)ev->keycode, 0);
4840         for (i = 0; i < keys_length; i++)
4841                 if (keysym == keys[i].keysym
4842                    && CLEANMASK(keys[i].mod) == CLEANMASK(ev->state)
4843                    && keyfuncs[keys[i].funcid].func) {
4844                         if (keys[i].funcid == kf_spawn_custom)
4845                                 spawn_custom(
4846                                     root_to_region(ev->root),
4847                                     &(keyfuncs[keys[i].funcid].args),
4848                                     keys[i].spawn_name
4849                                     );
4850                         else
4851                                 keyfuncs[keys[i].funcid].func(
4852                                     root_to_region(ev->root),
4853                                     &(keyfuncs[keys[i].funcid].args)
4854                                     );
4855                 }
4856 }
4857
4858 void
4859 buttonpress(XEvent *e)
4860 {
4861         struct ws_win           *win;
4862         int                     i, action;
4863         XButtonPressedEvent     *ev = &e->xbutton;
4864
4865         DNPRINTF(SWM_D_EVENT, "buttonpress: window: %lu\n", ev->window);
4866
4867         action = root_click;
4868         if ((win = find_window(ev->window)) == NULL)
4869                 return;
4870
4871         focus_magic(win);
4872         action = client_click;
4873
4874         for (i = 0; i < LENGTH(buttons); i++)
4875                 if (action == buttons[i].action && buttons[i].func &&
4876                     buttons[i].button == ev->button &&
4877                     CLEANMASK(buttons[i].mask) == CLEANMASK(ev->state))
4878                         buttons[i].func(win, &buttons[i].args);
4879 }
4880
4881 void
4882 configurerequest(XEvent *e)
4883 {
4884         XConfigureRequestEvent  *ev = &e->xconfigurerequest;
4885         struct ws_win           *win;
4886         int                     new = 0;
4887         XWindowChanges          wc;
4888
4889         if ((win = find_window(ev->window)) == NULL)
4890                 if ((win = find_unmanaged_window(ev->window)) == NULL)
4891                         new = 1;
4892
4893         if (new) {
4894                 DNPRINTF(SWM_D_EVENT, "configurerequest: new window: %lu\n",
4895                     ev->window);
4896                 bzero(&wc, sizeof wc);
4897                 wc.x = ev->x;
4898                 wc.y = ev->y;
4899                 wc.width = ev->width;
4900                 wc.height = ev->height;
4901                 wc.border_width = ev->border_width;
4902                 wc.sibling = ev->above;
4903                 wc.stack_mode = ev->detail;
4904                 XConfigureWindow(display, ev->window, ev->value_mask, &wc);
4905         } else {
4906                 DNPRINTF(SWM_D_EVENT, "configurerequest: change window: %lu\n",
4907                     ev->window);
4908                 config_win(win, ev);
4909         }
4910 }
4911
4912 void
4913 configurenotify(XEvent *e)
4914 {
4915         struct ws_win           *win;
4916         long                    mask;
4917
4918         DNPRINTF(SWM_D_EVENT, "configurenotify: window: %lu\n",
4919             e->xconfigure.window);
4920
4921         win = find_window(e->xconfigure.window);
4922         if (win) {
4923                 XGetWMNormalHints(display, win->id, &win->sh, &mask);
4924                 adjust_font(win);
4925                 if (font_adjusted)
4926                         stack();
4927         }
4928 }
4929
4930 void
4931 destroynotify(XEvent *e)
4932 {
4933         struct ws_win           *win;
4934         XDestroyWindowEvent     *ev = &e->xdestroywindow;
4935
4936         DNPRINTF(SWM_D_EVENT, "destroynotify: window %lu\n", ev->window);
4937
4938         if ((win = find_window(ev->window)) == NULL) {
4939                 if ((win = find_unmanaged_window(ev->window)) == NULL)
4940                         return;
4941                 free_window(win);
4942                 return;
4943         }
4944
4945         /* make sure we focus on something */
4946         win->floating = 0;
4947
4948         unmanage_window(win);
4949         stack();
4950         free_window(win);
4951 }
4952
4953 void
4954 enternotify(XEvent *e)
4955 {
4956         XCrossingEvent          *ev = &e->xcrossing;
4957         XEvent                  cne;
4958         struct ws_win           *win;
4959 #if 0
4960         struct ws_win           *w;
4961         Window                  focus_return;
4962         int                     revert_to_return;
4963 #endif
4964         DNPRINTF(SWM_D_FOCUS, "enternotify: window: %lu mode %d detail %d root "
4965             "%lu subwindow %lu same_screen %d focus %d state %d\n",
4966             ev->window, ev->mode, ev->detail, ev->root, ev->subwindow,
4967             ev->same_screen, ev->focus, ev->state);
4968
4969         switch (focus_mode) {
4970         case SWM_FOCUS_DEFAULT:
4971                 if (QLength(display)) {
4972                         DNPRINTF(SWM_D_EVENT, "ignore enternotify %d\n",
4973                             QLength(display));
4974                         return;
4975                 }
4976                 break;
4977         case SWM_FOCUS_FOLLOW:
4978                 break;
4979         case SWM_FOCUS_SYNERGY:
4980 #if 0
4981         /*
4982          * all these checks need to be in this order because the
4983          * XCheckTypedWindowEvent relies on weeding out the previous events
4984          *
4985          * making this code an option would enable a follow mouse for focus
4986          * feature
4987          */
4988
4989         /*
4990          * state is set when we are switching workspaces and focus is set when
4991          * the window or a subwindow already has focus (occurs during restart).
4992          *
4993          * Only honor the focus flag if last_focus_event is not FocusOut,
4994          * this allows scrotwm to continue to control focus when another
4995          * program is also playing with it.
4996          */
4997         if (ev->state || (ev->focus && last_focus_event != FocusOut)) {
4998                 DNPRINTF(SWM_D_EVENT, "ignoring enternotify: focus\n");
4999                 return;
5000         }
5001
5002         /*
5003          * happens when a window is created or destroyed and the border
5004          * crosses the mouse pointer and when switching ws
5005          *
5006          * we need the subwindow test to see if we came from root in order
5007          * to give focus to floaters
5008          */
5009         if (ev->mode == NotifyNormal && ev->detail == NotifyVirtual &&
5010             ev->subwindow == 0) {
5011                 DNPRINTF(SWM_D_EVENT, "ignoring enternotify: NotifyVirtual\n");
5012                 return;
5013         }
5014
5015         /* this window already has focus */
5016         if (ev->mode == NotifyNormal && ev->detail == NotifyInferior) {
5017                 DNPRINTF(SWM_D_EVENT, "ignoring enternotify: win has focus\n");
5018                 return;
5019         }
5020
5021         /* this window is being deleted or moved to another ws */
5022         if (XCheckTypedWindowEvent(display, ev->window, ConfigureNotify,
5023             &cne) == True) {
5024                 DNPRINTF(SWM_D_EVENT, "ignoring enternotify: configurenotify\n");
5025                 XPutBackEvent(display, &cne);
5026                 return;
5027         }
5028
5029         if ((win = find_window(ev->window)) == NULL) {
5030                 DNPRINTF(SWM_D_EVENT, "ignoring enternotify: win == NULL\n");
5031                 return;
5032         }
5033
5034         /*
5035          * In fullstack kill all enters unless they come from a different ws
5036          * (i.e. another region) or focus has been grabbed externally.
5037          */
5038         if (win->ws->cur_layout->flags & SWM_L_FOCUSPREV &&
5039             last_focus_event != FocusOut) {
5040                 XGetInputFocus(display, &focus_return, &revert_to_return);
5041                 if ((w = find_window(focus_return)) == NULL ||
5042                     w->ws == win->ws) {
5043                         DNPRINTF(SWM_D_EVENT, "ignoring event: fullstack\n");
5044                         return;
5045                 }
5046         }
5047 #endif
5048                 break;
5049         }
5050
5051         if ((win = find_window(ev->window)) == NULL) {
5052                 DNPRINTF(SWM_D_EVENT, "ignoring enternotify: win == NULL\n");
5053                 return;
5054         }
5055
5056         /*
5057          * if we have more enternotifies let them handle it in due time
5058          */
5059         if (XCheckTypedEvent(display, EnterNotify, &cne) == True) {
5060                 DNPRINTF(SWM_D_EVENT,
5061                     "ignoring enternotify: got more enternotify\n");
5062                 XPutBackEvent(display, &cne);
5063                 return;
5064         }
5065
5066         focus_magic(win);
5067 }
5068
5069 /* lets us use one switch statement for arbitrary mode/detail combinations */
5070 #define MERGE_MEMBERS(a,b)      (((a & 0xffff) << 16) | (b & 0xffff))
5071
5072 void
5073 focusevent(XEvent *e)
5074 {
5075 #if 0
5076         struct ws_win           *win;
5077         u_int32_t               mode_detail;
5078         XFocusChangeEvent       *ev = &e->xfocus;
5079
5080         DNPRINTF(SWM_D_EVENT, "focusevent: %s window: %lu mode %d detail %d\n",
5081             ev->type == FocusIn ? "entering" : "leaving",
5082             ev->window, ev->mode, ev->detail);
5083
5084         if (last_focus_event == ev->type) {
5085                 DNPRINTF(SWM_D_FOCUS, "ignoring focusevent: bad ordering\n");
5086                 return;
5087         }
5088
5089         last_focus_event = ev->type;
5090         mode_detail = MERGE_MEMBERS(ev->mode, ev->detail);
5091
5092         switch (mode_detail) {
5093         /* synergy client focus operations */
5094         case MERGE_MEMBERS(NotifyNormal, NotifyNonlinear):
5095         case MERGE_MEMBERS(NotifyNormal, NotifyNonlinearVirtual):
5096
5097         /* synergy server focus operations */
5098         case MERGE_MEMBERS(NotifyWhileGrabbed, NotifyNonlinear):
5099
5100         /* Entering applications like rdesktop that mangle the pointer */
5101         case MERGE_MEMBERS(NotifyNormal, NotifyPointer):
5102
5103                 if ((win = find_window(e->xfocus.window)) != NULL && win->ws->r)
5104                         XSetWindowBorder(display, win->id,
5105                             win->ws->r->s->c[ev->type == FocusIn ?
5106                             SWM_S_COLOR_FOCUS : SWM_S_COLOR_UNFOCUS].color);
5107                 break;
5108         default:
5109                 fprintf(stderr, "ignoring focusevent\n");
5110                 DNPRINTF(SWM_D_FOCUS, "ignoring focusevent\n");
5111                 break;
5112         }
5113 #endif
5114 }
5115
5116 void
5117 mapnotify(XEvent *e)
5118 {
5119         struct ws_win           *win;
5120         XMapEvent               *ev = &e->xmap;
5121
5122         DNPRINTF(SWM_D_EVENT, "mapnotify: window: %lu\n", ev->window);
5123
5124         win = manage_window(ev->window);
5125         if (win)
5126                 set_win_state(win, NormalState);
5127 }
5128
5129 void
5130 mappingnotify(XEvent *e)
5131 {
5132         XMappingEvent           *ev = &e->xmapping;
5133
5134         XRefreshKeyboardMapping(ev);
5135         if (ev->request == MappingKeyboard)
5136                 grabkeys();
5137 }
5138
5139 void
5140 maprequest(XEvent *e)
5141 {
5142         struct ws_win           *win;
5143         struct swm_region       *r;
5144         XWindowAttributes       wa;
5145         XMapRequestEvent        *ev = &e->xmaprequest;
5146
5147         DNPRINTF(SWM_D_EVENT, "maprequest: window: %lu\n",
5148             e->xmaprequest.window);
5149
5150         if (!XGetWindowAttributes(display, ev->window, &wa))
5151                 return;
5152         if (wa.override_redirect)
5153                 return;
5154
5155         win = manage_window(e->xmaprequest.window);
5156         if (win == NULL)
5157                 return; /* can't happen */
5158
5159         stack();
5160
5161         /* make new win focused */
5162         r = root_to_region(win->wa.root);
5163         if (win->ws == r->ws)
5164                 focus_magic(win);
5165 }
5166
5167 void
5168 propertynotify(XEvent *e)
5169 {
5170         struct ws_win           *win;
5171         XPropertyEvent          *ev = &e->xproperty;
5172
5173         DNPRINTF(SWM_D_EVENT, "propertynotify: window: %lu\n",
5174             ev->window);
5175
5176         win = find_window(ev->window);
5177         if (win == NULL)
5178                 return;
5179
5180         if (ev->state == PropertyDelete && ev->atom == a_swm_iconic) {
5181                 update_iconic(win, 0);
5182                 XMapRaised(display, win->id);
5183                 stack();
5184                 focus_win(win);
5185                 return;
5186         }
5187
5188         switch (ev->atom) {
5189         case XA_WM_NORMAL_HINTS:
5190 #if 0
5191                 long            mask;
5192                 XGetWMNormalHints(display, win->id, &win->sh, &mask);
5193                 fprintf(stderr, "normal hints: flag 0x%x\n", win->sh.flags);
5194                 if (win->sh.flags & PMinSize) {
5195                         win->g.w = win->sh.min_width;
5196                         win->g.h = win->sh.min_height;
5197                         fprintf(stderr, "min %d %d\n", win->g.w, win->g.h);
5198                 }
5199                 XMoveResizeWindow(display, win->id,
5200                     win->g.x, win->g.y, win->g.w, win->g.h);
5201 #endif
5202                 if (window_name_enabled)
5203                         bar_update();
5204                 break;
5205         default:
5206                 break;
5207         }
5208 }
5209
5210 void
5211 unmapnotify(XEvent *e)
5212 {
5213         struct ws_win           *win;
5214
5215         DNPRINTF(SWM_D_EVENT, "unmapnotify: window: %lu\n", e->xunmap.window);
5216
5217         /* determine if we need to help unmanage this window */
5218         win = find_window(e->xunmap.window);
5219         if (win == NULL)
5220                 return;
5221
5222         if (getstate(e->xunmap.window) == NormalState) {
5223                 unmanage_window(win);
5224                 stack();
5225         }
5226 }
5227
5228 void
5229 visibilitynotify(XEvent *e)
5230 {
5231         int                     i;
5232         struct swm_region       *r;
5233
5234         DNPRINTF(SWM_D_EVENT, "visibilitynotify: window: %lu\n",
5235             e->xvisibility.window);
5236         if (e->xvisibility.state == VisibilityUnobscured)
5237                 for (i = 0; i < ScreenCount(display); i++)
5238                         TAILQ_FOREACH(r, &screens[i].rl, entry)
5239                                 if (e->xvisibility.window == r->bar_window)
5240                                         bar_update();
5241 }
5242
5243 void
5244 clientmessage(XEvent *e)
5245 {
5246         XClientMessageEvent *ev;
5247         struct ws_win *win;
5248
5249         ev = &e->xclient;
5250
5251         win = find_window(ev->window);
5252         if (win == NULL)
5253                 return;
5254
5255         DNPRINTF(SWM_D_EVENT, "clientmessage: window: 0x%lx type: %ld \n",
5256             ev->window, ev->message_type);
5257
5258         if (ev->message_type == ewmh[_NET_ACTIVE_WINDOW].atom) {
5259                 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_ACTIVE_WINDOW \n");
5260                 focus_win(win);
5261         }
5262         if (ev->message_type == ewmh[_NET_CLOSE_WINDOW].atom) {
5263                 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_CLOSE_WINDOW \n");
5264                 if (win->can_delete)
5265                         client_msg(win, adelete);
5266                 else
5267                         XKillClient(display, win->id);
5268         }
5269         if (ev->message_type == ewmh[_NET_MOVERESIZE_WINDOW].atom) {
5270                 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_MOVERESIZE_WINDOW \n");
5271                 if (win->floating) {
5272                         if (ev->data.l[0] & (1<<8)) /* x */
5273                                 win->g.x = ev->data.l[1];
5274                         if (ev->data.l[0] & (1<<9)) /* y */
5275                                 win->g.y = ev->data.l[2];
5276                         if (ev->data.l[0] & (1<<10)) /* width */
5277                                 win->g.w = ev->data.l[3];
5278                         if (ev->data.l[0] & (1<<11)) /* height */
5279                                 win->g.h = ev->data.l[4];
5280                 }
5281                 else {
5282                         /* TODO: Change stack sizes */
5283                 }
5284                 config_win(win, NULL);
5285         }
5286         if (ev->message_type == ewmh[_NET_WM_STATE].atom) {
5287                 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_WM_STATE \n");
5288                 ewmh_update_win_state(win, ev->data.l[1], ev->data.l[0]);
5289                 if (ev->data.l[2])
5290                         ewmh_update_win_state(win, ev->data.l[2], ev->data.l[0]);
5291
5292                 stack();
5293         }
5294 }
5295
5296 int
5297 xerror_start(Display *d, XErrorEvent *ee)
5298 {
5299         other_wm = 1;
5300         return (-1);
5301 }
5302
5303 int
5304 xerror(Display *d, XErrorEvent *ee)
5305 {
5306         /* fprintf(stderr, "error: %p %p\n", display, ee); */
5307         return (-1);
5308 }
5309
5310 int
5311 active_wm(void)
5312 {
5313         other_wm = 0;
5314         xerrorxlib = XSetErrorHandler(xerror_start);
5315
5316         /* this causes an error if some other window manager is running */
5317         XSelectInput(display, DefaultRootWindow(display),
5318             SubstructureRedirectMask);
5319         XSync(display, False);
5320         if (other_wm)
5321                 return (1);
5322
5323         XSetErrorHandler(xerror);
5324         XSync(display, False);
5325         return (0);
5326 }
5327
5328 void
5329 new_region(struct swm_screen *s, int x, int y, int w, int h)
5330 {
5331         struct swm_region       *r, *n;
5332         struct workspace        *ws = NULL;
5333         int                     i;
5334
5335         DNPRINTF(SWM_D_MISC, "new region: screen[%d]:%dx%d+%d+%d\n",
5336              s->idx, w, h, x, y);
5337
5338         /* remove any conflicting regions */
5339         n = TAILQ_FIRST(&s->rl);
5340         while (n) {
5341                 r = n;
5342                 n = TAILQ_NEXT(r, entry);
5343                 if (X(r) < (x + w) &&
5344                     (X(r) + WIDTH(r)) > x &&
5345                     Y(r) < (y + h) &&
5346                     (Y(r) + HEIGHT(r)) > y) {
5347                         if (r->ws->r != NULL)
5348                                 r->ws->old_r = r->ws->r;
5349                         r->ws->r = NULL;
5350                         XDestroyWindow(display, r->bar_window);
5351                         TAILQ_REMOVE(&s->rl, r, entry);
5352                         TAILQ_INSERT_TAIL(&s->orl, r, entry);
5353                 }
5354         }
5355
5356         /* search old regions for one to reuse */
5357
5358         /* size + location match */
5359         TAILQ_FOREACH(r, &s->orl, entry)
5360                 if (X(r) == x && Y(r) == y &&
5361                     HEIGHT(r) == h && WIDTH(r) == w)
5362                         break;
5363
5364         /* size match */
5365         TAILQ_FOREACH(r, &s->orl, entry)
5366                 if (HEIGHT(r) == h && WIDTH(r) == w)
5367                         break;
5368
5369         if (r != NULL) {
5370                 TAILQ_REMOVE(&s->orl, r, entry);
5371                 /* try to use old region's workspace */
5372                 if (r->ws->r == NULL)
5373                         ws = r->ws;
5374         } else
5375                 if ((r = calloc(1, sizeof(struct swm_region))) == NULL)
5376                         errx(1, "calloc: failed to allocate memory for screen");
5377
5378         /* if we don't have a workspace already, find one */
5379         if (ws == NULL) {
5380                 for (i = 0; i < SWM_WS_MAX; i++)
5381                         if (s->ws[i].r == NULL) {
5382                                 ws = &s->ws[i];
5383                                 break;
5384                         }
5385         }
5386
5387         if (ws == NULL)
5388                 errx(1, "no free workspaces\n");
5389
5390         X(r) = x;
5391         Y(r) = y;
5392         WIDTH(r) = w;
5393         HEIGHT(r) = h;
5394         r->s = s;
5395         r->ws = ws;
5396         r->ws_prior = NULL;
5397         ws->r = r;
5398         outputs++;
5399         TAILQ_INSERT_TAIL(&s->rl, r, entry);
5400 }
5401
5402 void
5403 scan_xrandr(int i)
5404 {
5405 #ifdef SWM_XRR_HAS_CRTC
5406         XRRCrtcInfo             *ci;
5407         XRRScreenResources      *sr;
5408         int                     c;
5409         int                     ncrtc = 0;
5410 #endif /* SWM_XRR_HAS_CRTC */
5411         struct swm_region       *r;
5412
5413
5414         if (i >= ScreenCount(display))
5415                 errx(1, "invalid screen");
5416
5417         /* remove any old regions */
5418         while ((r = TAILQ_FIRST(&screens[i].rl)) != NULL) {
5419                 r->ws->old_r = r->ws->r = NULL;
5420                 XDestroyWindow(display, r->bar_window);
5421                 TAILQ_REMOVE(&screens[i].rl, r, entry);
5422                 TAILQ_INSERT_TAIL(&screens[i].orl, r, entry);
5423         }
5424         outputs = 0;
5425
5426         /* map virtual screens onto physical screens */
5427 #ifdef SWM_XRR_HAS_CRTC
5428         if (xrandr_support) {
5429                 sr = XRRGetScreenResources(display, screens[i].root);
5430                 if (sr == NULL)
5431                         new_region(&screens[i], 0, 0,
5432                             DisplayWidth(display, i),
5433                             DisplayHeight(display, i));
5434                 else
5435                         ncrtc = sr->ncrtc;
5436
5437                 for (c = 0, ci = NULL; c < ncrtc; c++) {
5438                         ci = XRRGetCrtcInfo(display, sr, sr->crtcs[c]);
5439                         if (ci->noutput == 0)
5440                                 continue;
5441
5442                         if (ci != NULL && ci->mode == None)
5443                                 new_region(&screens[i], 0, 0,
5444                                     DisplayWidth(display, i),
5445                                     DisplayHeight(display, i));
5446                         else
5447                                 new_region(&screens[i],
5448                                     ci->x, ci->y, ci->width, ci->height);
5449                 }
5450                 if (ci)
5451                         XRRFreeCrtcInfo(ci);
5452                 XRRFreeScreenResources(sr);
5453         } else
5454 #endif /* SWM_XRR_HAS_CRTC */
5455         {
5456                 new_region(&screens[i], 0, 0, DisplayWidth(display, i),
5457                     DisplayHeight(display, i));
5458         }
5459 }
5460
5461 void
5462 screenchange(XEvent *e) {
5463         XRRScreenChangeNotifyEvent      *xe = (XRRScreenChangeNotifyEvent *)e;
5464         struct swm_region               *r;
5465         int                             i;
5466
5467         DNPRINTF(SWM_D_EVENT, "screenchange: %lu\n", xe->root);
5468
5469         if (!XRRUpdateConfiguration(e))
5470                 return;
5471
5472         /* silly event doesn't include the screen index */
5473         for (i = 0; i < ScreenCount(display); i++)
5474                 if (screens[i].root == xe->root)
5475                         break;
5476         if (i >= ScreenCount(display))
5477                 errx(1, "screenchange: screen not found\n");
5478
5479         /* brute force for now, just re-enumerate the regions */
5480         scan_xrandr(i);
5481
5482         /* add bars to all regions */
5483         for (i = 0; i < ScreenCount(display); i++)
5484                 TAILQ_FOREACH(r, &screens[i].rl, entry)
5485                         bar_setup(r);
5486         stack();
5487 }
5488
5489 void
5490 grab_windows(void)
5491 {
5492         Window                  d1, d2, *wins = NULL;
5493         XWindowAttributes       wa;
5494         unsigned int            no;
5495         int                     i, j;
5496         long                    state, manage;
5497
5498         for (i = 0; i < ScreenCount(display); i++) {
5499                 if (!XQueryTree(display, screens[i].root, &d1, &d2, &wins, &no))
5500                         continue;
5501
5502                 /* attach windows to a region */
5503                 /* normal windows */
5504                 for (j = 0; j < no; j++) {
5505                         if (!XGetWindowAttributes(display, wins[j], &wa) ||
5506                             wa.override_redirect ||
5507                             XGetTransientForHint(display, wins[j], &d1))
5508                                 continue;
5509
5510                         state = getstate(wins[j]);
5511                         manage = state == IconicState;
5512                         if (wa.map_state == IsViewable || manage)
5513                                 manage_window(wins[j]);
5514                 }
5515                 /* transient windows */
5516                 for (j = 0; j < no; j++) {
5517                         if (!XGetWindowAttributes(display, wins[j], &wa) ||
5518                             wa.override_redirect)
5519                                 continue;
5520
5521                         state = getstate(wins[j]);
5522                         manage = state == IconicState;
5523                         if (XGetTransientForHint(display, wins[j], &d1) &&
5524                             manage)
5525                                 manage_window(wins[j]);
5526                 }
5527                 if (wins) {
5528                         XFree(wins);
5529                         wins = NULL;
5530                 }
5531         }
5532 }
5533
5534 void
5535 setup_screens(void)
5536 {
5537         int                     i, j, k;
5538         int                     errorbase, major, minor;
5539         struct workspace        *ws;
5540         int                     ws_idx_atom;
5541
5542         if ((screens = calloc(ScreenCount(display),
5543              sizeof(struct swm_screen))) == NULL)
5544                 errx(1, "calloc: screens");
5545
5546         ws_idx_atom = XInternAtom(display, "_SWM_WS", False);
5547
5548         /* initial Xrandr setup */
5549         xrandr_support = XRRQueryExtension(display,
5550             &xrandr_eventbase, &errorbase);
5551         if (xrandr_support)
5552                 if (XRRQueryVersion(display, &major, &minor) && major < 1)
5553                         xrandr_support = 0;
5554
5555         /* map physical screens */
5556         for (i = 0; i < ScreenCount(display); i++) {
5557                 DNPRINTF(SWM_D_WS, "setup_screens: init screen %d\n", i);
5558                 screens[i].idx = i;
5559                 TAILQ_INIT(&screens[i].rl);
5560                 TAILQ_INIT(&screens[i].orl);
5561                 screens[i].root = RootWindow(display, i);
5562
5563                 /* set default colors */
5564                 setscreencolor("red", i + 1, SWM_S_COLOR_FOCUS);
5565                 setscreencolor("rgb:88/88/88", i + 1, SWM_S_COLOR_UNFOCUS);
5566                 setscreencolor("rgb:00/80/80", i + 1, SWM_S_COLOR_BAR_BORDER);
5567                 setscreencolor("black", i + 1, SWM_S_COLOR_BAR);
5568                 setscreencolor("rgb:a0/a0/a0", i + 1, SWM_S_COLOR_BAR_FONT);
5569
5570                 /* set default cursor */
5571                 XDefineCursor(display, screens[i].root,
5572                     XCreateFontCursor(display, XC_left_ptr));
5573
5574                 /* init all workspaces */
5575                 /* XXX these should be dynamically allocated too */
5576                 for (j = 0; j < SWM_WS_MAX; j++) {
5577                         ws = &screens[i].ws[j];
5578                         ws->idx = j;
5579                         ws->focus = NULL;
5580                         ws->r = NULL;
5581                         ws->old_r = NULL;
5582                         TAILQ_INIT(&ws->winlist);
5583                         TAILQ_INIT(&ws->unmanagedlist);
5584
5585                         for (k = 0; layouts[k].l_stack != NULL; k++)
5586                                 if (layouts[k].l_config != NULL)
5587                                         layouts[k].l_config(ws,
5588                                             SWM_ARG_ID_STACKINIT);
5589                         ws->cur_layout = &layouts[0];
5590                 }
5591
5592                 scan_xrandr(i);
5593
5594                 if (xrandr_support)
5595                         XRRSelectInput(display, screens[i].root,
5596                             RRScreenChangeNotifyMask);
5597         }
5598 }
5599
5600 void
5601 setup_globals(void)
5602 {
5603         if ((bar_fonts[0] = strdup("-*-terminus-medium-*-*-*-*-*-*-*-*-*-*-*"))
5604             == NULL)
5605                 err(1, "setup_globals: strdup");
5606         if ((bar_fonts[1] = strdup("-*-times-medium-r-*-*-*-*-*-*-*-*-*-*"))
5607             == NULL)
5608                 err(1, "setup_globals: strdup");
5609         if ((bar_fonts[2] = strdup("-misc-fixed-medium-r-*-*-*-*-*-*-*-*-*-*"))
5610             == NULL)
5611                 err(1, "setup_globals: strdup");
5612         if ((spawn_term[0] = strdup("xterm")) == NULL)
5613                 err(1, "setup_globals: strdup");
5614         if ((clock_format = strdup("%a %b %d %R %Z %Y")) == NULL)
5615                 errx(1, "strdup");
5616 }
5617
5618 void
5619 workaround(void)
5620 {
5621         int                     i;
5622         Atom                    netwmcheck, netwmname, utf8_string;
5623         Window                  root, win;
5624
5625         /* work around sun jdk bugs, code from wmname */
5626         netwmcheck = XInternAtom(display, "_NET_SUPPORTING_WM_CHECK", False);
5627         netwmname = XInternAtom(display, "_NET_WM_NAME", False);
5628         utf8_string = XInternAtom(display, "UTF8_STRING", False);
5629         for (i = 0; i < ScreenCount(display); i++) {
5630                 root = screens[i].root;
5631                 win = XCreateSimpleWindow(display,root, 0, 0, 1, 1, 0,
5632                     screens[i].c[SWM_S_COLOR_UNFOCUS].color,
5633                     screens[i].c[SWM_S_COLOR_UNFOCUS].color);
5634
5635                 XChangeProperty(display, root, netwmcheck, XA_WINDOW, 32,
5636                     PropModeReplace, (unsigned char *)&win,1);
5637                 XChangeProperty(display, win, netwmcheck, XA_WINDOW, 32,
5638                     PropModeReplace, (unsigned char *)&win,1);
5639                 XChangeProperty(display, win, netwmname, utf8_string, 8,
5640                     PropModeReplace, (unsigned char*)"LG3D", strlen("LG3D"));
5641         }
5642 }
5643
5644 int
5645 main(int argc, char *argv[])
5646 {
5647         struct passwd           *pwd;
5648         struct swm_region       *r, *rr;
5649         struct ws_win           *winfocus = NULL;
5650         struct timeval          tv;
5651         union arg               a;
5652         char                    conf[PATH_MAX], *cfile = NULL;
5653         struct stat             sb;
5654         XEvent                  e;
5655         int                     xfd, i;
5656         fd_set                  rd;
5657         struct sigaction        sact;
5658
5659         start_argv = argv;
5660         fprintf(stderr, "Welcome to scrotwm V%s cvs tag: %s\n",
5661             SWM_VERSION, cvstag);
5662         if (!setlocale(LC_CTYPE, "") || !XSupportsLocale())
5663                 warnx("no locale support");
5664
5665         if (!(display = XOpenDisplay(0)))
5666                 errx(1, "can not open display");
5667
5668         if (active_wm())
5669                 errx(1, "other wm running");
5670
5671         /* handle some signals */
5672         bzero(&sact, sizeof(sact));
5673         sigemptyset(&sact.sa_mask);
5674         sact.sa_flags = 0;
5675         sact.sa_handler = sighdlr;
5676         sigaction(SIGINT, &sact, NULL);
5677         sigaction(SIGQUIT, &sact, NULL);
5678         sigaction(SIGTERM, &sact, NULL);
5679         sigaction(SIGHUP, &sact, NULL);
5680
5681         sact.sa_handler = sighdlr;
5682         sact.sa_flags = SA_NOCLDSTOP;
5683         sigaction(SIGCHLD, &sact, NULL);
5684
5685         astate = XInternAtom(display, "WM_STATE", False);
5686         aprot = XInternAtom(display, "WM_PROTOCOLS", False);
5687         adelete = XInternAtom(display, "WM_DELETE_WINDOW", False);
5688         takefocus = XInternAtom(display, "WM_TAKE_FOCUS", False);
5689         a_wmname = XInternAtom(display, "WM_NAME", False);
5690         a_utf8_string = XInternAtom(display, "UTF8_STRING", False);
5691         a_string = XInternAtom(display, "STRING", False);
5692         a_swm_iconic = XInternAtom(display, "_SWM_ICONIC", False);
5693
5694         /* look for local and global conf file */
5695         pwd = getpwuid(getuid());
5696         if (pwd == NULL)
5697                 errx(1, "invalid user %d", getuid());
5698
5699         setup_screens();
5700         setup_globals();
5701         setup_keys();
5702         setup_quirks();
5703         setup_spawn();
5704
5705         /* load config */
5706         snprintf(conf, sizeof conf, "%s/.%s", pwd->pw_dir, SWM_CONF_FILE);
5707         if (stat(conf, &sb) != -1) {
5708                 if (S_ISREG(sb.st_mode))
5709                         cfile = conf;
5710         } else {
5711                 /* try global conf file */
5712                 snprintf(conf, sizeof conf, "/etc/%s", SWM_CONF_FILE);
5713                 if (!stat(conf, &sb))
5714                         if (S_ISREG(sb.st_mode))
5715                                 cfile = conf;
5716         }
5717         if (cfile)
5718                 conf_load(cfile);
5719
5720         setup_ewmh();
5721         /* set some values to work around bad programs */
5722         workaround();
5723
5724         /* grab existing windows (before we build the bars) */
5725         grab_windows();
5726
5727         /* setup all bars */
5728         for (i = 0; i < ScreenCount(display); i++)
5729                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
5730                         if (winfocus == NULL)
5731                                 winfocus = TAILQ_FIRST(&r->ws->winlist);
5732                         bar_setup(r);
5733                 }
5734
5735         unfocus_all();
5736
5737         grabkeys();
5738         stack();
5739
5740         xfd = ConnectionNumber(display);
5741         while (running) {
5742                 while (XPending(display)) {
5743                         XNextEvent(display, &e);
5744                         if (running == 0)
5745                                 goto done;
5746                         if (e.type < LASTEvent) {
5747                                 dumpevent(&e);
5748                                 if (handler[e.type])
5749                                         handler[e.type](&e);
5750                                 else
5751                                         DNPRINTF(SWM_D_EVENT,
5752                                             "win: %lu unknown event: %d\n",
5753                                             e.xany.window, e.type);
5754                         } else {
5755                                 switch (e.type - xrandr_eventbase) {
5756                                 case RRScreenChangeNotify:
5757                                         screenchange(&e);
5758                                         break;
5759                                 default:
5760                                         DNPRINTF(SWM_D_EVENT,
5761                                             "win: %lu unknown xrandr event: "
5762                                             "%d\n", e.xany.window, e.type);
5763                                         break;
5764                                 }
5765                         }
5766                 }
5767
5768                 /* if we are being restarted go focus on first window */
5769                 if (winfocus) {
5770                         rr = winfocus->ws->r;
5771                         if (rr == NULL) {
5772                                 /* not a visible window */
5773                                 winfocus = NULL;
5774                                 continue;
5775                         }
5776                         /* move pointer to first screen if multi screen */
5777                         if (ScreenCount(display) > 1 || outputs > 1)
5778                                 XWarpPointer(display, None, rr->s[0].root,
5779                                     0, 0, 0, 0, rr->g.x,
5780                                     rr->g.y + (bar_enabled ? bar_height : 0));
5781
5782                         a.id = SWM_ARG_ID_FOCUSCUR;
5783                         focus(rr, &a);
5784                         winfocus = NULL;
5785                         continue;
5786                 }
5787
5788                 FD_ZERO(&rd);
5789                 FD_SET(xfd, &rd);
5790                 tv.tv_sec = 1;
5791                 tv.tv_usec = 0;
5792                 if (select(xfd + 1, &rd, NULL, NULL, &tv) == -1)
5793                         if (errno != EINTR)
5794                                 DNPRINTF(SWM_D_MISC, "select failed");
5795                 if (restart_wm == 1)
5796                         restart(NULL, NULL);
5797                 if (search_resp == 1)
5798                         search_do_resp();
5799                 if (running == 0)
5800                         goto done;
5801                 if (bar_alarm) {
5802                         bar_alarm = 0;
5803                         bar_update();
5804                 }
5805         }
5806 done:
5807         teardown_ewmh();
5808         bar_extra_stop();
5809         XFreeGC(display, bar_gc);
5810         XCloseDisplay(display);
5811
5812         return (0);
5813 }