JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Validate bound spawn programs after conf is loaded.
[spectrwm.git] / spectrwm.c
1 /*
2  * Copyright (c) 2009-2012 Marco Peereboom <marco@peereboom.us>
3  * Copyright (c) 2009-2011 Ryan McBride <mcbride@countersiege.com>
4  * Copyright (c) 2009 Darrin Chandler <dwchandler@stilyagin.com>
5  * Copyright (c) 2009 Pierre-Yves Ritschard <pyr@spootnik.org>
6  * Copyright (c) 2010 Tuukka Kataja <stuge@xor.fi>
7  * Copyright (c) 2011 Jason L. Wright <jason@thought.net>
8  * Copyright (c) 2011-2012 Reginald Kennedy <rk@rejii.com>
9  * Copyright (c) 2011-2012 Lawrence Teo <lteo@lteo.net>
10  * Copyright (c) 2011-2012 Tiago Cunha <tcunha@gmx.com>
11  * Copyright (c) 2012 David Hill <dhill@mindcry.org>
12  *
13  * Permission to use, copy, modify, and distribute this software for any
14  * purpose with or without fee is hereby granted, provided that the above
15  * copyright notice and this permission notice appear in all copies.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
18  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
19  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
20  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
21  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
22  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
23  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
24  */
25 /*
26  * Much code and ideas taken from dwm under the following license:
27  * MIT/X Consortium License
28  *
29  * 2006-2008 Anselm R Garbe <garbeam at gmail dot com>
30  * 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
31  * 2006-2007 Jukka Salmi <jukka at salmi dot ch>
32  * 2007 Premysl Hruby <dfenze at gmail dot com>
33  * 2007 Szabolcs Nagy <nszabolcs at gmail dot com>
34  * 2007 Christof Musik <christof at sendfax dot de>
35  * 2007-2008 Enno Gottox Boland <gottox at s01 dot de>
36  * 2007-2008 Peter Hartlich <sgkkr at hartlich dot com>
37  * 2008 Martin Hurton <martin dot hurton at gmail dot com>
38  *
39  * Permission is hereby granted, free of charge, to any person obtaining a
40  * copy of this software and associated documentation files (the "Software"),
41  * to deal in the Software without restriction, including without limitation
42  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
43  * and/or sell copies of the Software, and to permit persons to whom the
44  * Software is furnished to do so, subject to the following conditions:
45  *
46  * The above copyright notice and this permission notice shall be included in
47  * all copies or substantial portions of the Software.
48  *
49  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
50  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
51  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
52  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
53  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
54  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
55  * DEALINGS IN THE SOFTWARE.
56  */
57
58 /* kernel includes */
59 #include <sys/types.h>
60 #include <sys/time.h>
61 #include <sys/stat.h>
62 #include <sys/wait.h>
63 #include <sys/queue.h>
64 #include <sys/param.h>
65 #include <sys/select.h>
66 #if defined(__linux__)
67 #include "tree.h"
68 #elif defined(__OpenBSD__)
69 #include <sys/tree.h>
70 #elif defined(__FreeBSD__)
71 #include <sys/tree.h>
72 #else
73 #include "tree.h"
74 #endif
75
76 /* /usr/includes */
77 #include <ctype.h>
78 #include <err.h>
79 #include <errno.h>
80 #include <fcntl.h>
81 #include <locale.h>
82 #include <paths.h>
83 #include <pwd.h>
84 #include <signal.h>
85 #include <stdio.h>
86 #include <stdlib.h>
87 #include <string.h>
88 #include <time.h>
89 #include <unistd.h>
90 #include <util.h>
91 #include <X11/cursorfont.h>
92 #include <X11/extensions/Xrandr.h>
93 #include <X11/Xcursor/Xcursor.h>
94 #include <X11/Xft/Xft.h>
95 #include <X11/Xlib-xcb.h>
96 #include <xcb/xcb_atom.h>
97 #include <xcb/xcb_aux.h>
98 #include <xcb/xcb_event.h>
99 #include <xcb/xcb_icccm.h>
100 #include <xcb/xcb_keysyms.h>
101 #include <xcb/xtest.h>
102 #include <xcb/randr.h>
103
104 /* local includes */
105 #include "version.h"
106 #ifdef __OSX__
107 #include <osx.h>
108 #endif
109
110 #ifdef SPECTRWM_BUILDSTR
111 static const char       *buildstr = SPECTRWM_BUILDSTR;
112 #else
113 static const char       *buildstr = SPECTRWM_VERSION;
114 #endif
115
116 #if !defined(__CYGWIN__) /* cygwin chokes on xrandr stuff */
117 #  if RANDR_MAJOR < 1
118 #    error XRandR versions less than 1.0 are not supported
119 #endif
120
121 #  if RANDR_MAJOR >= 1
122 #    if RANDR_MINOR >= 2
123 #      define SWM_XRR_HAS_CRTC
124 #    endif
125 #  endif
126 #endif /* __CYGWIN__ */
127
128 #ifndef XCB_ICCCM_NUM_WM_HINTS_ELEMENTS
129 #define XCB_ICCCM_SIZE_HINT_P_MIN_SIZE          XCB_SIZE_HINT_P_MIN_SIZE
130 #define XCB_ICCCM_SIZE_HINT_P_MAX_SIZE          XCB_SIZE_HINT_P_MAX_SIZE
131 #define XCB_ICCCM_SIZE_HINT_P_RESIZE_INC        XCB_SIZE_HINT_P_RESIZE_INC
132 #define XCB_ICCCM_WM_HINT_INPUT                 XCB_WM_HINT_INPUT
133 #define XCB_ICCCM_WM_HINT_X_URGENCY             XCB_WM_HINT_X_URGENCY
134 #define XCB_ICCCM_WM_STATE_ICONIC               XCB_WM_STATE_ICONIC
135 #define XCB_ICCCM_WM_STATE_WITHDRAWN            XCB_WM_STATE_WITHDRAWN
136 #define XCB_ICCCM_WM_STATE_NORMAL               XCB_WM_STATE_NORMAL
137 #define xcb_icccm_get_text_property_reply_t     xcb_get_text_property_reply_t
138 #define xcb_icccm_get_text_property_reply_wipe  xcb_get_text_property_reply_wipe
139 #define xcb_icccm_get_wm_class                  xcb_get_wm_class
140 #define xcb_icccm_get_wm_class_reply            xcb_get_wm_class_reply
141 #define xcb_icccm_get_wm_class_reply_t          xcb_get_wm_class_reply_t
142 #define xcb_icccm_get_wm_class_reply_wipe       xcb_get_wm_class_reply_wipe
143 #define xcb_icccm_get_wm_hints                  xcb_get_wm_hints
144 #define xcb_icccm_get_wm_hints_reply            xcb_get_wm_hints_reply
145 #define xcb_icccm_get_wm_name                   xcb_get_wm_name
146 #define xcb_icccm_get_wm_name_reply             xcb_get_wm_name_reply
147 #define xcb_icccm_get_wm_normal_hints           xcb_get_wm_normal_hints
148 #define xcb_icccm_get_wm_normal_hints_reply     xcb_get_wm_normal_hints_reply
149 #define xcb_icccm_get_wm_protocols              xcb_get_wm_protocols
150 #define xcb_icccm_get_wm_protocols_reply        xcb_get_wm_protocols_reply
151 #define xcb_icccm_get_wm_protocols_reply_t      xcb_get_wm_protocols_reply_t
152 #define xcb_icccm_get_wm_protocols_reply_wipe   xcb_get_wm_protocols_reply_wipe
153 #define xcb_icccm_get_wm_transient_for          xcb_get_wm_transient_for
154 #define xcb_icccm_get_wm_transient_for_reply    xcb_get_wm_transient_for_reply
155 #define xcb_icccm_wm_hints_t                    xcb_wm_hints_t
156 #endif
157
158 /*#define SWM_DEBUG*/
159 #ifdef SWM_DEBUG
160 #define DPRINTF(x...) do {                                                      \
161         if (swm_debug)                                                          \
162                 fprintf(stderr, x);                                             \
163 } while (0)
164 #define DNPRINTF(n,x...) do {                                                   \
165         if (swm_debug & n) {                                                    \
166                 fprintf(stderr, "%ld ", (long)(time(NULL) - time_started));     \
167                 fprintf(stderr, x);                                             \
168         }                                                                       \
169 } while (0)
170 #define SWM_D_MISC              0x0001
171 #define SWM_D_EVENT             0x0002
172 #define SWM_D_WS                0x0004
173 #define SWM_D_FOCUS             0x0008
174 #define SWM_D_MOVE              0x0010
175 #define SWM_D_STACK             0x0020
176 #define SWM_D_MOUSE             0x0040
177 #define SWM_D_PROP              0x0080
178 #define SWM_D_CLASS             0x0100
179 #define SWM_D_KEY               0x0200
180 #define SWM_D_QUIRK             0x0400
181 #define SWM_D_SPAWN             0x0800
182 #define SWM_D_EVENTQ            0x1000
183 #define SWM_D_CONF              0x2000
184 #define SWM_D_BAR               0x4000
185 #define SWM_D_INIT              0x8000
186
187 u_int32_t               swm_debug = 0
188                             | SWM_D_MISC
189                             | SWM_D_EVENT
190                             | SWM_D_WS
191                             | SWM_D_FOCUS
192                             | SWM_D_MOVE
193                             | SWM_D_STACK
194                             | SWM_D_MOUSE
195                             | SWM_D_PROP
196                             | SWM_D_CLASS
197                             | SWM_D_KEY
198                             | SWM_D_QUIRK
199                             | SWM_D_SPAWN
200                             | SWM_D_EVENTQ
201                             | SWM_D_CONF
202                             | SWM_D_BAR
203                             | SWM_D_INIT
204                             ;
205 #else
206 #define DPRINTF(x...)
207 #define DNPRINTF(n,x...)
208 #endif
209
210 /* convert 8-bit to 16-bit */
211 #define RGB_8_TO_16(col)        ((col) << 8) + (col)
212
213 #define PIXEL_TO_XRENDERCOLOR(px, xrc)                                  \
214         xrc.red = RGB_8_TO_16((px) >> 16 & 0xff);                       \
215         xrc.green = RGB_8_TO_16((px) >> 8 & 0xff);                      \
216         xrc.blue = RGB_8_TO_16((px) & 0xff);                            \
217         xrc.alpha = 0xffff;
218
219 #define LENGTH(x)               (int)(sizeof (x) / sizeof (x)[0])
220 #define MODKEY                  XCB_MOD_MASK_1
221 #define CLEANMASK(mask)         ((mask) & ~(numlockmask | XCB_MOD_MASK_LOCK))
222 #define BUTTONMASK              (XCB_EVENT_MASK_BUTTON_PRESS |          \
223     XCB_EVENT_MASK_BUTTON_RELEASE)
224 #define MOUSEMASK               (BUTTONMASK|XCB_EVENT_MASK_POINTER_MOTION)
225 #define SWM_PROPLEN             (16)
226 #define SWM_FUNCNAME_LEN        (32)
227 #define SWM_KEYS_LEN            (255)
228 #define SWM_QUIRK_LEN           (64)
229 #define X(r)                    (r)->g.x
230 #define Y(r)                    (r)->g.y
231 #define WIDTH(r)                (r)->g.w
232 #define HEIGHT(r)               (r)->g.h
233 #define BORDER(w)               ((w)->bordered ? border_width : 0)
234 #define MAX_X(r)                ((r)->g.x + (r)->g.w)
235 #define MAX_Y(r)                ((r)->g.y + (r)->g.h)
236 #define SH_MIN(w)               (w)->sh.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE
237 #define SH_MIN_W(w)             (w)->sh.min_width
238 #define SH_MIN_H(w)             (w)->sh.min_height
239 #define SH_MAX(w)               (w)->sh.flags & XCB_ICCCM_SIZE_HINT_P_MAX_SIZE
240 #define SH_MAX_W(w)             (w)->sh.max_width
241 #define SH_MAX_H(w)             (w)->sh.max_height
242 #define SH_INC(w)               (w)->sh.flags & XCB_ICCCM_SIZE_HINT_P_RESIZE_INC
243 #define SH_INC_W(w)             (w)->sh.width_inc
244 #define SH_INC_H(w)             (w)->sh.height_inc
245 #define SWM_MAX_FONT_STEPS      (3)
246 #define WINID(w)                ((w) ? (w)->id : 0)
247 #define YESNO(x)                ((x) ? "yes" : "no")
248
249 #define SWM_FOCUS_DEFAULT       (0)
250 #define SWM_FOCUS_FOLLOW        (1)
251 #define SWM_FOCUS_MANUAL        (2)
252
253 #define SWM_CK_NONE             0
254 #define SWM_CK_ALL              0xf
255 #define SWM_CK_FOCUS            0x1
256 #define SWM_CK_POINTER          0x2
257 #define SWM_CK_FALLBACK         0x4
258 #define SWM_CK_REGION           0x8
259
260 #define SWM_CONF_DEFAULT        (0)
261 #define SWM_CONF_KEYMAPPING     (1)
262
263 #ifndef SWM_LIB
264 #define SWM_LIB                 "/usr/local/lib/libswmhack.so"
265 #endif
266
267 char                    **start_argv;
268 xcb_atom_t              a_state;
269 xcb_atom_t              a_prot;
270 xcb_atom_t              a_delete;
271 xcb_atom_t              a_takefocus;
272 xcb_atom_t              a_wmname;
273 xcb_atom_t              a_netwmname;
274 xcb_atom_t              a_utf8_string;
275 xcb_atom_t              a_string;
276 xcb_atom_t              a_swm_iconic;
277 xcb_atom_t              a_swm_ws;
278 volatile sig_atomic_t   running = 1;
279 volatile sig_atomic_t   restart_wm = 0;
280 xcb_timestamp_t         last_event_time = 0;
281 int                     outputs = 0;
282 int                     other_wm;
283 int                     xrandr_support;
284 int                     xrandr_eventbase;
285 unsigned int            numlockmask = 0;
286
287 Display                 *display;
288 xcb_connection_t        *conn;
289 xcb_key_symbols_t       *syms;
290
291 int                     cycle_empty = 0;
292 int                     cycle_visible = 0;
293 int                     term_width = 0;
294 int                     font_adjusted = 0;
295 unsigned int            mod_key = MODKEY;
296
297 /* dmenu search */
298 struct swm_region       *search_r;
299 int                     select_list_pipe[2];
300 int                     select_resp_pipe[2];
301 pid_t                   searchpid;
302 volatile sig_atomic_t   search_resp;
303 int                     search_resp_action;
304
305 struct search_window {
306         TAILQ_ENTRY(search_window)      entry;
307         int                             idx;
308         struct ws_win                   *win;
309         xcb_gcontext_t                  gc;
310         xcb_window_t                    indicator;
311 };
312 TAILQ_HEAD(search_winlist, search_window);
313 struct search_winlist                   search_wl;
314
315 /* search actions */
316 enum {
317         SWM_SEARCH_NONE,
318         SWM_SEARCH_UNICONIFY,
319         SWM_SEARCH_NAME_WORKSPACE,
320         SWM_SEARCH_SEARCH_WORKSPACE,
321         SWM_SEARCH_SEARCH_WINDOW
322 };
323
324 #define SWM_STACK_TOP           (0)
325 #define SWM_STACK_BOTTOM        (1)
326 #define SWM_STACK_ABOVE         (2)
327 #define SWM_STACK_BELOW         (3)
328
329 /* dialog windows */
330 double                  dialog_ratio = 0.6;
331 /* status bar */
332 #define SWM_BAR_MAX             (256)
333 #define SWM_BAR_JUSTIFY_LEFT    (0)
334 #define SWM_BAR_JUSTIFY_CENTER  (1)
335 #define SWM_BAR_JUSTIFY_RIGHT   (2)
336 #define SWM_BAR_OFFSET          (4)
337 #define SWM_BAR_FONTS           "-*-terminus-medium-*-*-*-12-*-*-*-*-*-*-*," \
338                                 "-*-profont-*-*-*-*-12-*-*-*-*-*-*-*,"      \
339                                 "-*-times-medium-r-*-*-12-*-*-*-*-*-*-*,"    \
340                                 "-misc-fixed-medium-r-*-*-12-*-*-*-*-*-*-*,"  \
341                                 "-*-*-*-r-*-*-*-*-*-*-*-*-*-*"
342
343 #ifdef X_HAVE_UTF8_STRING
344 #define DRAWSTRING(x...)        Xutf8DrawString(x)
345 #else
346 #define DRAWSTRING(x...)        XmbDrawString(x)
347 #endif
348
349 char            *bar_argv[] = { NULL, NULL };
350 int              bar_pipe[2];
351 char             bar_ext[SWM_BAR_MAX];
352 char             bar_ext_buf[SWM_BAR_MAX];
353 char             bar_vertext[SWM_BAR_MAX];
354 int              bar_version = 0;
355 int              bar_enabled = 1;
356 int              bar_border_width = 1;
357 int              bar_at_bottom = 0;
358 int              bar_extra = 0;
359 int              bar_verbose = 1;
360 int              bar_height = 0;
361 int              bar_justify = SWM_BAR_JUSTIFY_LEFT;
362 char             *bar_format = NULL;
363 int              stack_enabled = 1;
364 int              clock_enabled = 1;
365 int              urgent_enabled = 0;
366 char            *clock_format = NULL;
367 int              title_name_enabled = 0;
368 int              title_class_enabled = 0;
369 int              window_name_enabled = 0;
370 int              focus_mode = SWM_FOCUS_DEFAULT;
371 int              focus_close = SWM_STACK_BELOW;
372 int              focus_close_wrap = 1;
373 int              focus_default = SWM_STACK_TOP;
374 int              spawn_position = SWM_STACK_TOP;
375 int              disable_border = 0;
376 int              border_width = 1;
377 int              region_padding = 0;
378 int              tile_gap = 0;
379 int              verbose_layout = 0;
380 time_t           time_started;
381 pid_t            bar_pid;
382 XFontSet         bar_fs;
383 XFontSetExtents *bar_fs_extents;
384 XftFont         *bar_font;
385 int              bar_font_legacy = 1;
386 char            *bar_fonts;
387 XftColor         bar_font_color;
388 struct passwd   *pwd;
389 char            *startup_exception;
390 unsigned int     nr_exceptions = 0;
391
392 /* layout manager data */
393 struct swm_geometry {
394         int                     x;
395         int                     y;
396         int                     w;
397         int                     h;
398 };
399
400 struct swm_screen;
401 struct workspace;
402
403 struct swm_bar {
404         xcb_window_t            id;
405         xcb_pixmap_t            buffer;
406         struct swm_geometry     g;
407 };
408
409 /* virtual "screens" */
410 struct swm_region {
411         TAILQ_ENTRY(swm_region) entry;
412         xcb_window_t            id;
413         struct swm_geometry     g;
414         struct workspace        *ws;    /* current workspace on this region */
415         struct workspace        *ws_prior; /* prior workspace on this region */
416         struct swm_screen       *s;     /* screen idx */
417         struct swm_bar          *bar;
418 };
419 TAILQ_HEAD(swm_region_list, swm_region);
420
421 struct ws_win {
422         TAILQ_ENTRY(ws_win)     entry;
423         xcb_window_t            id;
424         xcb_window_t            transient;
425         struct ws_win           *focus_child;   /* focus on child transient */
426         struct swm_geometry     g;              /* current geometry */
427         struct swm_geometry     g_float;        /* region coordinates */
428         int                     g_floatvalid;   /* g_float geometry validity */
429         int                     floatmaxed;     /* whether maxed by max_stack */
430         int                     floating;
431         int                     manual;
432         int32_t                 mapped;
433         int32_t                 iconic;
434         int                     bordered;
435         unsigned int            ewmh_flags;
436         int                     font_size_boundary[SWM_MAX_FONT_STEPS];
437         int                     font_steps;
438         int                     last_inc;
439         int                     can_delete;
440         int                     take_focus;
441         int                     java;
442         unsigned long           quirks;
443         struct workspace        *ws;    /* always valid */
444         struct swm_screen       *s;     /* always valid, never changes */
445         xcb_get_geometry_reply_t        *wa;
446         xcb_size_hints_t        sh;
447         xcb_icccm_get_wm_class_reply_t  ch;
448         xcb_icccm_wm_hints_t    hints;
449 };
450 TAILQ_HEAD(ws_win_list, ws_win);
451
452 /* pid goo */
453 struct pid_e {
454         TAILQ_ENTRY(pid_e)      entry;
455         pid_t                   pid;
456         int                     ws;
457 };
458 TAILQ_HEAD(pid_list, pid_e);
459 struct pid_list                 pidlist = TAILQ_HEAD_INITIALIZER(pidlist);
460
461 /* layout handlers */
462 void    stack(void);
463 void    vertical_config(struct workspace *, int);
464 void    vertical_stack(struct workspace *, struct swm_geometry *);
465 void    horizontal_config(struct workspace *, int);
466 void    horizontal_stack(struct workspace *, struct swm_geometry *);
467 void    max_stack(struct workspace *, struct swm_geometry *);
468 void    plain_stacker(struct workspace *);
469 void    fancy_stacker(struct workspace *);
470
471 struct layout {
472         void            (*l_stack)(struct workspace *, struct swm_geometry *);
473         void            (*l_config)(struct workspace *, int);
474         u_int32_t       flags;
475 #define SWM_L_FOCUSPREV         (1<<0)
476 #define SWM_L_MAPONFOCUS        (1<<1)
477         void            (*l_string)(struct workspace *);
478 } layouts[] =  {
479         /* stack,               configure */
480         { vertical_stack,       vertical_config,        0,      plain_stacker },
481         { horizontal_stack,     horizontal_config,      0,      plain_stacker },
482         { max_stack,            NULL,
483           SWM_L_MAPONFOCUS | SWM_L_FOCUSPREV,                   plain_stacker },
484         { NULL,                 NULL,                   0,      NULL  },
485 };
486
487 /* position of max_stack mode in the layouts array, index into layouts! */
488 #define SWM_V_STACK             (0)
489 #define SWM_H_STACK             (1)
490 #define SWM_MAX_STACK           (2)
491
492 #define SWM_H_SLICE             (32)
493 #define SWM_V_SLICE             (32)
494
495 /* define work spaces */
496 struct workspace {
497         int                     idx;            /* workspace index */
498         char                    *name;          /* workspace name */
499         int                     always_raise;   /* raise windows on focus */
500         int                     bar_enabled;    /* bar visibility */
501         struct layout           *cur_layout;    /* current layout handlers */
502         struct ws_win           *focus;         /* may be NULL */
503         struct ws_win           *focus_prev;    /* may be NULL */
504         struct ws_win           *focus_pending; /* may be NULL */
505         struct swm_region       *r;             /* may be NULL */
506         struct swm_region       *old_r;         /* may be NULL */
507         struct ws_win_list      winlist;        /* list of windows in ws */
508         struct ws_win_list      unmanagedlist;  /* list of dead windows in ws */
509         char                    stacker[10];    /* display stacker and layout */
510
511         /* stacker state */
512         struct {
513                                 int horizontal_msize;
514                                 int horizontal_mwin;
515                                 int horizontal_stacks;
516                                 int horizontal_flip;
517                                 int vertical_msize;
518                                 int vertical_mwin;
519                                 int vertical_stacks;
520                                 int vertical_flip;
521         } l_state;
522 };
523
524 enum {
525         SWM_S_COLOR_BAR,
526         SWM_S_COLOR_BAR_BORDER,
527         SWM_S_COLOR_BAR_BORDER_UNFOCUS,
528         SWM_S_COLOR_BAR_FONT,
529         SWM_S_COLOR_FOCUS,
530         SWM_S_COLOR_UNFOCUS,
531         SWM_S_COLOR_MAX
532 };
533
534 /* physical screen mapping */
535 #define SWM_WS_MAX              (22)    /* hard limit */
536 int             workspace_limit = 10;   /* soft limit */
537
538 struct swm_screen {
539         int                     idx;    /* screen index */
540         struct swm_region_list  rl;     /* list of regions on this screen */
541         struct swm_region_list  orl;    /* list of old regions */
542         xcb_window_t            root;
543         struct workspace        ws[SWM_WS_MAX];
544         struct swm_region       *r_focus;
545
546         /* colors */
547         struct {
548                 uint32_t        pixel;
549                 char            *name;
550         } c[SWM_S_COLOR_MAX];
551
552         xcb_gcontext_t          bar_gc;
553         GC                      bar_gc_legacy;
554 };
555 struct swm_screen       *screens;
556
557 /* args to functions */
558 union arg {
559         int                     id;
560 #define SWM_ARG_ID_FOCUSNEXT    (0)
561 #define SWM_ARG_ID_FOCUSPREV    (1)
562 #define SWM_ARG_ID_FOCUSMAIN    (2)
563 #define SWM_ARG_ID_SWAPNEXT     (10)
564 #define SWM_ARG_ID_SWAPPREV     (11)
565 #define SWM_ARG_ID_SWAPMAIN     (12)
566 #define SWM_ARG_ID_MOVELAST     (13)
567 #define SWM_ARG_ID_MASTERSHRINK (20)
568 #define SWM_ARG_ID_MASTERGROW   (21)
569 #define SWM_ARG_ID_MASTERADD    (22)
570 #define SWM_ARG_ID_MASTERDEL    (23)
571 #define SWM_ARG_ID_FLIPLAYOUT   (24)
572 #define SWM_ARG_ID_STACKRESET   (30)
573 #define SWM_ARG_ID_STACKINIT    (31)
574 #define SWM_ARG_ID_CYCLEWS_UP   (40)
575 #define SWM_ARG_ID_CYCLEWS_DOWN (41)
576 #define SWM_ARG_ID_CYCLERG_UP   (42)
577 #define SWM_ARG_ID_CYCLERG_DOWN (43)
578 #define SWM_ARG_ID_CYCLEWS_UP_ALL       (44)
579 #define SWM_ARG_ID_CYCLEWS_DOWN_ALL     (45)
580 #define SWM_ARG_ID_STACKINC     (50)
581 #define SWM_ARG_ID_STACKDEC     (51)
582 #define SWM_ARG_ID_SS_ALL       (60)
583 #define SWM_ARG_ID_SS_WINDOW    (61)
584 #define SWM_ARG_ID_DONTCENTER   (70)
585 #define SWM_ARG_ID_CENTER       (71)
586 #define SWM_ARG_ID_KILLWINDOW   (80)
587 #define SWM_ARG_ID_DELETEWINDOW (81)
588 #define SWM_ARG_ID_WIDTHGROW    (90)
589 #define SWM_ARG_ID_WIDTHSHRINK  (91)
590 #define SWM_ARG_ID_HEIGHTGROW   (92)
591 #define SWM_ARG_ID_HEIGHTSHRINK (93)
592 #define SWM_ARG_ID_MOVEUP       (100)
593 #define SWM_ARG_ID_MOVEDOWN     (101)
594 #define SWM_ARG_ID_MOVELEFT     (102)
595 #define SWM_ARG_ID_MOVERIGHT    (103)
596 #define SWM_ARG_ID_BAR_TOGGLE   (110)
597 #define SWM_ARG_ID_BAR_TOGGLE_WS        (111)
598         char                    **argv;
599 };
600
601 /* quirks */
602 struct quirk {
603         TAILQ_ENTRY(quirk)      entry;
604         char                    *class;
605         char                    *name;
606         unsigned long           quirk;
607 #define SWM_Q_FLOAT             (1<<0)  /* float this window */
608 #define SWM_Q_TRANSSZ           (1<<1)  /* transiend window size too small */
609 #define SWM_Q_ANYWHERE          (1<<2)  /* don't position this window */
610 #define SWM_Q_XTERM_FONTADJ     (1<<3)  /* adjust xterm fonts when resizing */
611 #define SWM_Q_FULLSCREEN        (1<<4)  /* remove border */
612 #define SWM_Q_FOCUSPREV         (1<<5)  /* focus on caller */
613 };
614 TAILQ_HEAD(quirk_list, quirk);
615 struct quirk_list               quirks = TAILQ_HEAD_INITIALIZER(quirks);
616
617 /*
618  * Supported EWMH hints should be added to
619  * both the enum and the ewmh array
620  */
621 enum {
622         _NET_ACTIVE_WINDOW,
623         _NET_CLOSE_WINDOW,
624         _NET_MOVERESIZE_WINDOW,
625         _NET_WM_ACTION_ABOVE,
626         _NET_WM_ACTION_CLOSE,
627         _NET_WM_ACTION_FULLSCREEN,
628         _NET_WM_ACTION_MOVE,
629         _NET_WM_ACTION_RESIZE,
630         _NET_WM_ALLOWED_ACTIONS,
631         _NET_WM_NAME,
632         _NET_WM_STATE,
633         _NET_WM_STATE_ABOVE,
634         _NET_WM_STATE_FULLSCREEN,
635         _NET_WM_STATE_HIDDEN,
636         _NET_WM_STATE_MAXIMIZED_HORZ,
637         _NET_WM_STATE_MAXIMIZED_VERT,
638         _NET_WM_STATE_SKIP_PAGER,
639         _NET_WM_STATE_SKIP_TASKBAR,
640         _NET_WM_WINDOW_TYPE,
641         _NET_WM_WINDOW_TYPE_DIALOG,
642         _NET_WM_WINDOW_TYPE_DOCK,
643         _NET_WM_WINDOW_TYPE_NORMAL,
644         _NET_WM_WINDOW_TYPE_SPLASH,
645         _NET_WM_WINDOW_TYPE_TOOLBAR,
646         _NET_WM_WINDOW_TYPE_UTILITY,
647         _SWM_WM_STATE_MANUAL,
648         SWM_EWMH_HINT_MAX
649 };
650
651 struct ewmh_hint {
652         char            *name;
653         xcb_atom_t      atom;
654 } ewmh[SWM_EWMH_HINT_MAX] =     {
655     /* must be in same order as in the enum */
656     {"_NET_ACTIVE_WINDOW", XCB_ATOM_NONE},
657     {"_NET_CLOSE_WINDOW", XCB_ATOM_NONE},
658     {"_NET_MOVERESIZE_WINDOW", XCB_ATOM_NONE},
659     {"_NET_WM_ACTION_ABOVE", XCB_ATOM_NONE},
660     {"_NET_WM_ACTION_CLOSE", XCB_ATOM_NONE},
661     {"_NET_WM_ACTION_FULLSCREEN", XCB_ATOM_NONE},
662     {"_NET_WM_ACTION_MOVE", XCB_ATOM_NONE},
663     {"_NET_WM_ACTION_RESIZE", XCB_ATOM_NONE},
664     {"_NET_WM_ALLOWED_ACTIONS", XCB_ATOM_NONE},
665     {"_NET_WM_NAME", XCB_ATOM_NONE},
666     {"_NET_WM_STATE", XCB_ATOM_NONE},
667     {"_NET_WM_STATE_ABOVE", XCB_ATOM_NONE},
668     {"_NET_WM_STATE_FULLSCREEN", XCB_ATOM_NONE},
669     {"_NET_WM_STATE_HIDDEN", XCB_ATOM_NONE},
670     {"_NET_WM_STATE_MAXIMIZED_HORZ", XCB_ATOM_NONE},
671     {"_NET_WM_STATE_MAXIMIZED_VERT", XCB_ATOM_NONE},
672     {"_NET_WM_STATE_SKIP_PAGER", XCB_ATOM_NONE},
673     {"_NET_WM_STATE_SKIP_TASKBAR", XCB_ATOM_NONE},
674     {"_NET_WM_WINDOW_TYPE", XCB_ATOM_NONE},
675     {"_NET_WM_WINDOW_TYPE_DIALOG", XCB_ATOM_NONE},
676     {"_NET_WM_WINDOW_TYPE_DOCK", XCB_ATOM_NONE},
677     {"_NET_WM_WINDOW_TYPE_NORMAL", XCB_ATOM_NONE},
678     {"_NET_WM_WINDOW_TYPE_SPLASH", XCB_ATOM_NONE},
679     {"_NET_WM_WINDOW_TYPE_TOOLBAR", XCB_ATOM_NONE},
680     {"_NET_WM_WINDOW_TYPE_UTILITY", XCB_ATOM_NONE},
681     {"_SWM_WM_STATE_MANUAL", XCB_ATOM_NONE},
682 };
683
684 /* Cursors */
685 enum {
686         XC_FLEUR,
687         XC_LEFT_PTR,
688         XC_BOTTOM_LEFT_CORNER,
689         XC_BOTTOM_RIGHT_CORNER,
690         XC_SIZING,
691         XC_TOP_LEFT_CORNER,
692         XC_TOP_RIGHT_CORNER,
693         XC_MAX
694 };
695
696 struct cursors {
697         char            *name; /* Name used by Xcursor .*/
698         uint8_t         cf_char; /* cursorfont index. */
699         xcb_cursor_t    cid;
700 } cursors[XC_MAX] =     {
701         {"fleur", XC_fleur, XCB_CURSOR_NONE},
702         {"left_ptr", XC_left_ptr, XCB_CURSOR_NONE},
703         {"bottom_left_corner", XC_bottom_left_corner, XCB_CURSOR_NONE},
704         {"bottom_right_corner", XC_bottom_right_corner, XCB_CURSOR_NONE},
705         {"sizing", XC_sizing, XCB_CURSOR_NONE},
706         {"top_left_corner", XC_top_left_corner, XCB_CURSOR_NONE},
707         {"top_right_corner", XC_top_right_corner, XCB_CURSOR_NONE},
708 };
709
710 #define SWM_SPAWN_OPTIONAL              0x1
711
712 /* spawn */
713 struct spawn_prog {
714         TAILQ_ENTRY(spawn_prog) entry;
715         char                    *name;
716         int                     argc;
717         char                    **argv;
718         int                     flags;
719 };
720 TAILQ_HEAD(spawn_list, spawn_prog);
721 struct spawn_list               spawns = TAILQ_HEAD_INITIALIZER(spawns);
722
723 /* user/key callable function IDs */
724 enum keyfuncid {
725         KF_BAR_TOGGLE,
726         KF_BAR_TOGGLE_WS,
727         KF_BUTTON2,
728         KF_CYCLE_LAYOUT,
729         KF_FLIP_LAYOUT,
730         KF_FLOAT_TOGGLE,
731         KF_FOCUS_MAIN,
732         KF_FOCUS_NEXT,
733         KF_FOCUS_PREV,
734         KF_HEIGHT_GROW,
735         KF_HEIGHT_SHRINK,
736         KF_ICONIFY,
737         KF_MASTER_SHRINK,
738         KF_MASTER_GROW,
739         KF_MASTER_ADD,
740         KF_MASTER_DEL,
741         KF_MOVE_DOWN,
742         KF_MOVE_LEFT,
743         KF_MOVE_RIGHT,
744         KF_MOVE_UP,
745         KF_MVRG_1,
746         KF_MVRG_2,
747         KF_MVRG_3,
748         KF_MVRG_4,
749         KF_MVRG_5,
750         KF_MVRG_6,
751         KF_MVRG_7,
752         KF_MVRG_8,
753         KF_MVRG_9,
754         KF_MVWS_1,
755         KF_MVWS_2,
756         KF_MVWS_3,
757         KF_MVWS_4,
758         KF_MVWS_5,
759         KF_MVWS_6,
760         KF_MVWS_7,
761         KF_MVWS_8,
762         KF_MVWS_9,
763         KF_MVWS_10,
764         KF_MVWS_11,
765         KF_MVWS_12,
766         KF_MVWS_13,
767         KF_MVWS_14,
768         KF_MVWS_15,
769         KF_MVWS_16,
770         KF_MVWS_17,
771         KF_MVWS_18,
772         KF_MVWS_19,
773         KF_MVWS_20,
774         KF_MVWS_21,
775         KF_MVWS_22,
776         KF_NAME_WORKSPACE,
777         KF_QUIT,
778         KF_RAISE_TOGGLE,
779         KF_RESTART,
780         KF_RG_1,
781         KF_RG_2,
782         KF_RG_3,
783         KF_RG_4,
784         KF_RG_5,
785         KF_RG_6,
786         KF_RG_7,
787         KF_RG_8,
788         KF_RG_9,
789         KF_RG_NEXT,
790         KF_RG_PREV,
791         KF_SCREEN_NEXT,
792         KF_SCREEN_PREV,
793         KF_SEARCH_WIN,
794         KF_SEARCH_WORKSPACE,
795         KF_SPAWN_CUSTOM,
796         KF_STACK_INC,
797         KF_STACK_DEC,
798         KF_STACK_RESET,
799         KF_SWAP_MAIN,
800         KF_SWAP_NEXT,
801         KF_SWAP_PREV,
802         KF_UNICONIFY,
803         KF_VERSION,
804         KF_WIDTH_GROW,
805         KF_WIDTH_SHRINK,
806         KF_WIND_DEL,
807         KF_WIND_KILL,
808         KF_WS_1,
809         KF_WS_2,
810         KF_WS_3,
811         KF_WS_4,
812         KF_WS_5,
813         KF_WS_6,
814         KF_WS_7,
815         KF_WS_8,
816         KF_WS_9,
817         KF_WS_10,
818         KF_WS_11,
819         KF_WS_12,
820         KF_WS_13,
821         KF_WS_14,
822         KF_WS_15,
823         KF_WS_16,
824         KF_WS_17,
825         KF_WS_18,
826         KF_WS_19,
827         KF_WS_20,
828         KF_WS_21,
829         KF_WS_22,
830         KF_WS_NEXT,
831         KF_WS_NEXT_ALL,
832         KF_WS_PREV,
833         KF_WS_PREV_ALL,
834         KF_WS_PRIOR,
835         KF_DUMPWINS, /* MUST BE LAST */
836         KF_INVALID
837 };
838
839 struct key {
840         RB_ENTRY(key)           entry;
841         unsigned int            mod;
842         KeySym                  keysym;
843         enum keyfuncid          funcid;
844         char                    *spawn_name;
845 };
846 RB_HEAD(key_tree, key);
847
848 /* function prototypes */
849 void     adjust_font(struct ws_win *);
850 void     bar_class_name(char *, size_t, struct swm_region *);
851 void     bar_class_title_name(char *, size_t, struct swm_region *);
852 void     bar_cleanup(struct swm_region *);
853 void     bar_extra_setup(void);
854 void     bar_extra_stop(void);
855 int      bar_extra_update(void);
856 void     bar_fmt(const char *, char *, struct swm_region *, size_t);
857 void     bar_fmt_expand(char *, size_t);
858 void     bar_draw(void);
859 void     bar_print(struct swm_region *, const char *);
860 void     bar_print_legacy(struct swm_region *, const char *);
861 void     bar_replace(char *, char *, struct swm_region *, size_t);
862 void     bar_replace_pad(char *, int *, size_t);
863 char    *bar_replace_seq(char *, char *, struct swm_region *, size_t *, size_t);
864 void     bar_setup(struct swm_region *);
865 void     bar_title_name(char *, size_t, struct swm_region *);
866 void     bar_toggle(struct swm_region *, union arg *);
867 void     bar_urgent(char *, size_t);
868 void     bar_window_float(char *, size_t, struct swm_region *);
869 void     bar_window_name(char *, size_t, struct swm_region *);
870 void     bar_workspace_name(char *, size_t, struct swm_region *);
871 void     buttonpress(xcb_button_press_event_t *);
872 void     check_conn(void);
873 void     clear_keys(void);
874 void     clientmessage(xcb_client_message_event_t *);
875 void     client_msg(struct ws_win *, xcb_atom_t, xcb_timestamp_t);
876 int      conf_load(const char *, int);
877 void     configurenotify(xcb_configure_notify_event_t *);
878 void     configurerequest(xcb_configure_request_event_t *);
879 void     config_win(struct ws_win *, xcb_configure_request_event_t *);
880 void     constrain_window(struct ws_win *, struct swm_region *, int);
881 int      count_win(struct workspace *, int);
882 void     cursors_cleanup(void);
883 void     cursors_load(void);
884 void     custom_region(char *);
885 void     cyclerg(struct swm_region *, union arg *);
886 void     cyclews(struct swm_region *, union arg *);
887 void     cycle_layout(struct swm_region *, union arg *);
888 void     destroynotify(xcb_destroy_notify_event_t *);
889 void     dumpwins(struct swm_region *, union arg *);
890 int      enable_wm(void);
891 void     enternotify(xcb_enter_notify_event_t *);
892 void     event_drain(uint8_t);
893 void     event_error(xcb_generic_error_t *);
894 void     event_handle(xcb_generic_event_t *);
895 void     ewmh_autoquirk(struct ws_win *);
896 void     ewmh_get_win_state(struct ws_win *);
897 int      ewmh_set_win_fullscreen(struct ws_win *, int);
898 void     ewmh_update_actions(struct ws_win *);
899 void     ewmh_update_win_state(struct ws_win *, xcb_atom_t, long);
900 char    *expand_tilde(const char *);
901 void     expose(xcb_expose_event_t *);
902 void     fake_keypress(struct ws_win *, xcb_keysym_t, uint16_t);
903 struct pid_e    *find_pid(pid_t);
904 struct ws_win   *find_unmanaged_window(xcb_window_t);
905 struct ws_win   *find_window(xcb_window_t);
906 void     floating_toggle(struct swm_region *, union arg *);
907 int      floating_toggle_win(struct ws_win *);
908 void     focus(struct swm_region *, union arg *);
909 #ifdef SWM_DEBUG
910 void     focusin(xcb_focus_in_event_t *);
911 void     focusout(xcb_focus_out_event_t *);
912 #endif
913 void     focus_flush(void);
914 void     focus_region(struct swm_region *);
915 void     focusrg(struct swm_region *, union arg *);
916 void     focus_win(struct ws_win *);
917 void     fontset_init(void);
918 void     free_window(struct ws_win *);
919 xcb_atom_t get_atom_from_string(const char *);
920 #ifdef SWM_DEBUG
921 char    *get_atom_name(xcb_atom_t);
922 #endif
923 struct ws_win   *get_focus_magic(struct ws_win *);
924 struct ws_win   *get_focus_prev(struct ws_win *);
925 #ifdef SWM_DEBUG
926 char    *get_notify_detail_label(uint8_t);
927 char    *get_notify_mode_label(uint8_t);
928 #endif
929 struct ws_win   *get_pointer_win(xcb_window_t);
930 struct ws_win   *get_region_focus(struct swm_region *);
931 int      get_region_index(struct swm_region *);
932 xcb_screen_t    *get_screen(int);
933 #ifdef SWM_DEBUG
934 char    *get_stack_mode_name(uint8_t);
935 #endif
936 int32_t  get_swm_iconic(struct ws_win *);
937 char    *get_win_name(xcb_window_t);
938 int      get_ws_idx(xcb_window_t);
939 uint32_t getstate(xcb_window_t);
940 void     grabbuttons(struct ws_win *);
941 void     grabkeys(void);
942 void     grab_windows(void);
943 void     iconify(struct swm_region *, union arg *);
944 int      isxlfd(char *);
945 void     keypress(xcb_key_press_event_t *);
946 int      key_cmp(struct key *, struct key *);
947 void     key_insert(unsigned int, KeySym, enum keyfuncid, const char *);
948 struct key      *key_lookup(unsigned int, KeySym);
949 void     key_remove(struct key *);
950 void     key_replace(struct key *, unsigned int, KeySym, enum keyfuncid,
951              const char *);
952 void     kill_bar_extra_atexit(void);
953 void     kill_refs(struct ws_win *);
954 #ifdef SWM_DEBUG
955 void     leavenotify(xcb_leave_notify_event_t *);
956 #endif
957 void     load_float_geom(struct ws_win *, struct swm_region *);
958 struct ws_win   *manage_window(xcb_window_t, uint16_t);
959 void     map_window(struct ws_win *);
960 void     mapnotify(xcb_map_notify_event_t *);
961 void     mappingnotify(xcb_mapping_notify_event_t *);
962 void     maprequest(xcb_map_request_event_t *);
963 void     motionnotify(xcb_motion_notify_event_t *);
964 void     move(struct ws_win *, union arg *);
965 void     move_step(struct swm_region *, union arg *);
966 uint32_t name_to_pixel(const char *);
967 void     name_workspace(struct swm_region *, union arg *);
968 void     new_region(struct swm_screen *, int, int, int, int);
969 int      parsekeys(char *, unsigned int, unsigned int *, KeySym *);
970 int      parsequirks(char *, unsigned long *);
971 int      parse_rgb(const char *, uint16_t *, uint16_t *, uint16_t *);
972 void     pressbutton(struct swm_region *, union arg *);
973 void     priorws(struct swm_region *, union arg *);
974 #ifdef SWM_DEBUG
975 void     print_win_geom(xcb_window_t);
976 #endif
977 void     propertynotify(xcb_property_notify_event_t *);
978 void     quirk_insert(const char *, const char *, unsigned long);
979 void     quirk_remove(struct quirk *);
980 void     quirk_replace(struct quirk *, const char *, const char *,
981              unsigned long);
982 void     quit(struct swm_region *, union arg *);
983 void     raise_toggle(struct swm_region *, union arg *);
984 void     resize(struct ws_win *, union arg *);
985 void     resize_step(struct swm_region *, union arg *);
986 void     restart(struct swm_region *, union arg *);
987 struct swm_region       *root_to_region(xcb_window_t, int);
988 void     screenchange(xcb_randr_screen_change_notify_event_t *);
989 void     scan_xrandr(int);
990 void     search_do_resp(void);
991 void     search_resp_name_workspace(const char *, unsigned long);
992 void     search_resp_search_window(const char *);
993 void     search_resp_search_workspace(const char *);
994 void     search_resp_uniconify(const char *, unsigned long);
995 void     search_win(struct swm_region *, union arg *);
996 void     search_win_cleanup(void);
997 void     search_workspace(struct swm_region *, union arg *);
998 void     send_to_rg(struct swm_region *, union arg *);
999 void     send_to_ws(struct swm_region *, union arg *);
1000 void     set_region(struct swm_region *);
1001 int      setautorun(char *, char *, int);
1002 int      setconfbinding(char *, char *, int);
1003 int      setconfcolor(char *, char *, int);
1004 int      setconfmodkey(char *, char *, int);
1005 int      setconfquirk(char *, char *, int);
1006 int      setconfregion(char *, char *, int);
1007 int      setconfspawn(char *, char *, int);
1008 int      setconfvalue(char *, char *, int);
1009 void     setkeybinding(unsigned int, KeySym, enum keyfuncid, const char *);
1010 int      setkeymapping(char *, char *, int);
1011 int      setlayout(char *, char *, int);
1012 void     setquirk(const char *, const char *, unsigned long);
1013 void     setscreencolor(char *, int, int);
1014 void     setspawn(const char *, const char *, int);
1015 void     setup_ewmh(void);
1016 void     setup_globals(void);
1017 void     setup_keys(void);
1018 void     setup_quirks(void);
1019 void     setup_screens(void);
1020 void     setup_spawn(void);
1021 void     set_child_transient(struct ws_win *, xcb_window_t *);
1022 void     set_swm_iconic(struct ws_win *, int);
1023 void     set_win_state(struct ws_win *, uint16_t);
1024 void     shutdown_cleanup(void);
1025 void     sighdlr(int);
1026 void     socket_setnonblock(int);
1027 void     sort_windows(struct ws_win_list *);
1028 void     spawn(int, union arg *, int);
1029 void     spawn_custom(struct swm_region *, union arg *, const char *);
1030 int      spawn_expand(struct swm_region *, union arg *, const char *, char ***);
1031 void     spawn_insert(const char *, const char *, int);
1032 void     spawn_remove(struct spawn_prog *);
1033 void     spawn_replace(struct spawn_prog *, const char *, const char *, int);
1034 void     spawn_select(struct swm_region *, union arg *, const char *, int *);
1035 void     stack_config(struct swm_region *, union arg *);
1036 void     stack_floater(struct ws_win *, struct swm_region *);
1037 void     stack_master(struct workspace *, struct swm_geometry *, int, int);
1038 void     store_float_geom(struct ws_win *, struct swm_region *);
1039 char    *strdupsafe(const char *);
1040 void     swapwin(struct swm_region *, union arg *);
1041 void     switchws(struct swm_region *, union arg *);
1042 void     teardown_ewmh(void);
1043 void     unfocus_win(struct ws_win *);
1044 void     uniconify(struct swm_region *, union arg *);
1045 void     unmanage_window(struct ws_win *);
1046 void     unmapnotify(xcb_unmap_notify_event_t *);
1047 void     unmap_all(void);
1048 void     unmap_window(struct ws_win *);
1049 void     updatenumlockmask(void);
1050 void     update_modkey(unsigned int);
1051 void     update_window(struct ws_win *);
1052 void     validate_spawns(void);
1053 int      validate_win(struct ws_win *);
1054 int      validate_ws(struct workspace *);
1055 /*void   visibilitynotify(xcb_visibility_notify_event_t *);*/
1056 void     version(struct swm_region *, union arg *);
1057 pid_t    window_get_pid(xcb_window_t);
1058 void     wkill(struct swm_region *, union arg *);
1059 void     workaround(void);
1060 void     xft_init(struct swm_region *);
1061 void     _add_startup_exception(const char *, va_list);
1062 void     add_startup_exception(const char *, ...);
1063
1064 RB_PROTOTYPE(key_tree, key, entry, key_cmp);
1065 RB_GENERATE(key_tree, key, entry, key_cmp);
1066 struct key_tree                 keys;
1067
1068 void
1069 cursors_load(void)
1070 {
1071         xcb_font_t      cf = XCB_NONE;
1072         int             i;
1073
1074         for (i = 0; i < LENGTH(cursors); ++i) {
1075                 /* try to load Xcursor first. */
1076                 cursors[i].cid = XcursorLibraryLoadCursor(display,
1077                     cursors[i].name);
1078
1079                 /* fallback to cursorfont. */
1080                 if (cursors[i].cid == XCB_CURSOR_NONE) {
1081                         if (cf == XCB_NONE) {
1082                                 cf = xcb_generate_id(conn);
1083                                 xcb_open_font(conn, cf, strlen("cursor"),
1084                                     "cursor");
1085                         }
1086
1087                         cursors[i].cid = xcb_generate_id(conn);
1088                         xcb_create_glyph_cursor(conn, cursors[i].cid, cf, cf,
1089                             cursors[i].cf_char, cursors[i].cf_char + 1, 0, 0, 0,
1090                             0xffff, 0xffff, 0xffff);
1091
1092                 }
1093         }
1094
1095         if (cf != XCB_NONE)
1096                 xcb_close_font(conn, cf);
1097 }
1098
1099 void
1100 cursors_cleanup(void)
1101 {
1102         int     i;
1103         for (i = 0; i < LENGTH(cursors); ++i)
1104                 xcb_free_cursor(conn, cursors[i].cid);
1105 }
1106
1107 char *
1108 expand_tilde(const char *s)
1109 {
1110         struct passwd           *ppwd;
1111         int                     i;
1112         long                    max;
1113         char                    *user;
1114         const char              *sc = s;
1115         char                    *result;
1116
1117         if (s == NULL)
1118                 errx(1, "expand_tilde: NULL string.");
1119
1120         if (s[0] != '~') {
1121                 result = strdup(sc);
1122                 goto out;
1123         }
1124
1125         ++s;
1126
1127         if ((max = sysconf(_SC_LOGIN_NAME_MAX)) == -1)
1128                 errx(1, "expand_tilde: sysconf");
1129
1130         if ((user = calloc(1, max + 1)) == NULL)
1131                 errx(1, "expand_tilde: calloc");
1132
1133         for (i = 0; s[i] != '/' && s[i] != '\0'; ++i)
1134                 user[i] = s[i];
1135         user[i] = '\0';
1136         s = &s[i];
1137
1138         ppwd = strlen(user) == 0 ? getpwuid(getuid()) : getpwnam(user);
1139         free(user);
1140
1141         if (ppwd == NULL)
1142                 result = strdup(sc);
1143         else
1144                 if (asprintf(&result, "%s%s", ppwd->pw_dir, s) == -1)
1145                         result = NULL;
1146 out:
1147         if (result == NULL)
1148                 errx(1, "expand_tilde: failed to allocate memory.");
1149
1150         return result;
1151 }
1152
1153 int
1154 parse_rgb(const char *rgb, uint16_t *rr, uint16_t *gg, uint16_t *bb)
1155 {
1156         unsigned int    tmpr, tmpg, tmpb;
1157
1158         if (sscanf(rgb, "rgb:%x/%x/%x", &tmpr, &tmpg, &tmpb) != 3)
1159                 return (-1);
1160
1161         *rr = RGB_8_TO_16(tmpr);
1162         *gg = RGB_8_TO_16(tmpg);
1163         *bb = RGB_8_TO_16(tmpb);
1164
1165         return (0);
1166 }
1167
1168 xcb_screen_t *
1169 get_screen(int screen)
1170 {
1171         const xcb_setup_t       *r;
1172         xcb_screen_iterator_t   iter;
1173
1174         if ((r = xcb_get_setup(conn)) == NULL) {
1175                 DNPRINTF(SWM_D_MISC, "get_screen: xcb_get_setup\n");
1176                 check_conn();
1177         }
1178
1179         iter = xcb_setup_roots_iterator(r);
1180         for (; iter.rem; --screen, xcb_screen_next(&iter))
1181                 if (screen == 0)
1182                         return (iter.data);
1183
1184         return (NULL);
1185 }
1186
1187 int
1188 get_region_index(struct swm_region *r)
1189 {
1190         struct swm_region       *rr;
1191         int                      ridx = 0;
1192
1193         if (r == NULL)
1194                 return -1;
1195
1196         TAILQ_FOREACH(rr, &r->s->rl, entry) {
1197                 if (rr == r)
1198                         break;
1199                 ++ridx;
1200         }
1201
1202         if (rr == NULL)
1203                 return -1;
1204
1205         return ridx;
1206 }
1207
1208 void
1209 focus_flush(void)
1210 {
1211         if (focus_mode == SWM_FOCUS_DEFAULT)
1212                 event_drain(XCB_ENTER_NOTIFY);
1213         else
1214                 xcb_flush(conn);
1215 }
1216
1217 xcb_atom_t
1218 get_atom_from_string(const char *str)
1219 {
1220         xcb_intern_atom_cookie_t        c;
1221         xcb_intern_atom_reply_t         *r;
1222         xcb_atom_t                      atom;
1223
1224         c = xcb_intern_atom(conn, 0, strlen(str), str);
1225         r = xcb_intern_atom_reply(conn, c, NULL);
1226         if (r) {
1227                 atom = r->atom;
1228                 free(r);
1229
1230                 return (atom);
1231         }
1232
1233         return (XCB_ATOM_NONE);
1234 }
1235
1236 void
1237 set_swm_iconic(struct ws_win *win, int newv)
1238 {
1239         int32_t                         v = newv;
1240
1241         win->iconic = newv;
1242
1243         if (newv)
1244                 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
1245                     a_swm_iconic, XCB_ATOM_INTEGER, 32, 1, &v);
1246         else
1247                 xcb_delete_property(conn, win->id, a_swm_iconic);
1248 }
1249
1250 int32_t
1251 get_swm_iconic(struct ws_win *win)
1252 {
1253         int32_t                         v = 0;
1254         xcb_get_property_reply_t        *pr = NULL;
1255
1256         pr = xcb_get_property_reply(conn,
1257             xcb_get_property(conn, 0, win->id, a_swm_iconic,
1258             XCB_ATOM_INTEGER, 0, 1), NULL);
1259         if (!pr)
1260                 goto out;
1261         if (pr->type != XCB_ATOM_INTEGER || pr->format != 32)
1262                 goto out;
1263         v = *((int32_t *)xcb_get_property_value(pr));
1264 out:
1265         if (pr)
1266                 free(pr);
1267         return (v);
1268 }
1269
1270 void
1271 setup_ewmh(void)
1272 {
1273         xcb_atom_t                      sup_list;
1274         int                             i, j, num_screens;
1275
1276         sup_list = get_atom_from_string("_NET_SUPPORTED");
1277
1278         for (i = 0; i < LENGTH(ewmh); i++)
1279                 ewmh[i].atom = get_atom_from_string(ewmh[i].name);
1280
1281         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1282         for (i = 0; i < num_screens; i++) {
1283                 /* Support check window will be created by workaround(). */
1284
1285                 /* Report supported atoms */
1286                 xcb_delete_property(conn, screens[i].root, sup_list);
1287                 for (j = 0; j < LENGTH(ewmh); j++)
1288                         xcb_change_property(conn, XCB_PROP_MODE_APPEND,
1289                             screens[i].root, sup_list, XCB_ATOM_ATOM, 32, 1,
1290                             &ewmh[j].atom);
1291         }
1292 }
1293
1294 void
1295 teardown_ewmh(void)
1296 {
1297         int                             i, num_screens;
1298         xcb_atom_t                      sup_check, sup_list;
1299         xcb_window_t                    id;
1300         xcb_get_property_cookie_t       pc;
1301         xcb_get_property_reply_t        *pr;
1302
1303         sup_check = get_atom_from_string("_NET_SUPPORTING_WM_CHECK");
1304         sup_list = get_atom_from_string("_NET_SUPPORTED");
1305         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1306
1307         for (i = 0; i < num_screens; i++) {
1308                 /* Get the support check window and destroy it */
1309                 pc = xcb_get_property(conn, 0, screens[i].root, sup_check,
1310                     XCB_ATOM_WINDOW, 0, 1);
1311                 pr = xcb_get_property_reply(conn, pc, NULL);
1312                 if (!pr)
1313                         continue;
1314                 if (pr->format == sup_check) {
1315                         id = *((xcb_window_t *)xcb_get_property_value(pr));
1316
1317                         xcb_destroy_window(conn, id);
1318                         xcb_delete_property(conn, screens[i].root, sup_check);
1319                         xcb_delete_property(conn, screens[i].root, sup_list);
1320                 }
1321                 free(pr);
1322         }
1323 }
1324
1325 void
1326 ewmh_autoquirk(struct ws_win *win)
1327 {
1328         uint32_t                i, n;
1329         xcb_atom_t              *type;
1330         xcb_get_property_cookie_t       c;
1331         xcb_get_property_reply_t        *r;
1332
1333         c = xcb_get_property(conn, 0, win->id,
1334             ewmh[_NET_WM_WINDOW_TYPE].atom, XCB_ATOM_ATOM, 0, UINT32_MAX);
1335         r = xcb_get_property_reply(conn, c, NULL);
1336         if (!r)
1337                 return;
1338
1339         n = xcb_get_property_value_length(r);
1340         type = xcb_get_property_value(r);
1341
1342         for (i = 0; i < n; i++) {
1343                 if (type[i] == ewmh[_NET_WM_WINDOW_TYPE_NORMAL].atom)
1344                         break;
1345                 if (type[i] == ewmh[_NET_WM_WINDOW_TYPE_DOCK].atom ||
1346                     type[i] == ewmh[_NET_WM_WINDOW_TYPE_TOOLBAR].atom ||
1347                     type[i] == ewmh[_NET_WM_WINDOW_TYPE_UTILITY].atom) {
1348                         win->floating = 1;
1349                         win->quirks = SWM_Q_FLOAT | SWM_Q_ANYWHERE;
1350                         break;
1351                 }
1352                 if (type[i] == ewmh[_NET_WM_WINDOW_TYPE_SPLASH].atom ||
1353                     type[i] == ewmh[_NET_WM_WINDOW_TYPE_DIALOG].atom) {
1354                         win->floating = 1;
1355                         win->quirks = SWM_Q_FLOAT;
1356                         break;
1357                 }
1358         }
1359         free(r);
1360 }
1361
1362 #define SWM_EWMH_ACTION_COUNT_MAX       (6)
1363 #define EWMH_F_FULLSCREEN               (1<<0)
1364 #define EWMH_F_ABOVE                    (1<<1)
1365 #define EWMH_F_HIDDEN                   (1<<2)
1366 #define EWMH_F_SKIP_PAGER               (1<<3)
1367 #define EWMH_F_SKIP_TASKBAR             (1<<4)
1368 #define SWM_F_MANUAL                    (1<<5)
1369
1370 int
1371 ewmh_set_win_fullscreen(struct ws_win *win, int fs)
1372 {
1373         if (!win->ws->r)
1374                 return (0);
1375
1376         if (!win->floating)
1377                 return (0);
1378
1379         DNPRINTF(SWM_D_MISC, "ewmh_set_win_fullscreen: window: 0x%x, "
1380             "fullscreen %s\n", win->id, YESNO(fs));
1381
1382         if (fs) {
1383                 if (!win->g_floatvalid)
1384                         store_float_geom(win, win->ws->r);
1385
1386                 win->g = win->ws->r->g;
1387                 win->bordered = 0;
1388         } else {
1389                 load_float_geom(win, win->ws->r);
1390         }
1391
1392         return (1);
1393 }
1394
1395 void
1396 ewmh_update_actions(struct ws_win *win)
1397 {
1398         xcb_atom_t              actions[SWM_EWMH_ACTION_COUNT_MAX];
1399         int                     n = 0;
1400
1401         if (win == NULL)
1402                 return;
1403
1404         actions[n++] = ewmh[_NET_WM_ACTION_CLOSE].atom;
1405
1406         if (win->floating) {
1407                 actions[n++] = ewmh[_NET_WM_ACTION_MOVE].atom;
1408                 actions[n++] = ewmh[_NET_WM_ACTION_RESIZE].atom;
1409                 actions[n++] = ewmh[_NET_WM_ACTION_ABOVE].atom;
1410         }
1411
1412         xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
1413             ewmh[_NET_WM_ALLOWED_ACTIONS].atom, XCB_ATOM_ATOM, 32, 1, actions);
1414 }
1415
1416 #define _NET_WM_STATE_REMOVE    0    /* remove/unset property */
1417 #define _NET_WM_STATE_ADD       1    /* add/set property */
1418 #define _NET_WM_STATE_TOGGLE    2    /* toggle property */
1419
1420 void
1421 ewmh_update_win_state(struct ws_win *win, xcb_atom_t state, long action)
1422 {
1423         unsigned int            mask = 0;
1424         unsigned int            changed = 0;
1425         unsigned int            orig_flags;
1426
1427         if (win == NULL)
1428                 return;
1429
1430         DNPRINTF(SWM_D_PROP, "ewmh_update_win_state: window: 0x%x, state: %ld, "
1431             "action: %ld\n", win->id, (unsigned long)state, action);
1432
1433         if (state == ewmh[_NET_WM_STATE_FULLSCREEN].atom)
1434                 mask = EWMH_F_FULLSCREEN;
1435         else if (state == ewmh[_NET_WM_STATE_ABOVE].atom)
1436                 mask = EWMH_F_ABOVE;
1437         else if (state == ewmh[_SWM_WM_STATE_MANUAL].atom)
1438                 mask = SWM_F_MANUAL;
1439         else if (state == ewmh[_NET_WM_STATE_SKIP_PAGER].atom)
1440                 mask = EWMH_F_SKIP_PAGER;
1441         else if (state == ewmh[_NET_WM_STATE_SKIP_TASKBAR].atom)
1442                 mask = EWMH_F_SKIP_TASKBAR;
1443
1444         orig_flags = win->ewmh_flags;
1445
1446         switch (action) {
1447         case _NET_WM_STATE_REMOVE:
1448                 win->ewmh_flags &= ~mask;
1449                 break;
1450         case _NET_WM_STATE_ADD:
1451                 win->ewmh_flags |= mask;
1452                 break;
1453         case _NET_WM_STATE_TOGGLE:
1454                 win->ewmh_flags ^= mask;
1455                 break;
1456         }
1457
1458         changed = (win->ewmh_flags & mask) ^ (orig_flags & mask) ? 1 : 0;
1459
1460         if (state == ewmh[_NET_WM_STATE_ABOVE].atom) {
1461                 if (changed && !floating_toggle_win(win))
1462                                 win->ewmh_flags = orig_flags; /* revert */
1463         } else if (state == ewmh[_SWM_WM_STATE_MANUAL].atom) {
1464                 if (changed)
1465                         win->manual = (win->ewmh_flags & SWM_F_MANUAL) != 0;
1466         } else if (state == ewmh[_NET_WM_STATE_FULLSCREEN].atom) {
1467                 if (changed && !ewmh_set_win_fullscreen(win,
1468                             win->ewmh_flags & EWMH_F_FULLSCREEN))
1469                                 win->ewmh_flags = orig_flags; /* revert */
1470         }
1471
1472         xcb_delete_property(conn, win->id, ewmh[_NET_WM_STATE].atom);
1473
1474         if (win->ewmh_flags & EWMH_F_FULLSCREEN)
1475                 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1476                     ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1477                     &ewmh[_NET_WM_STATE_FULLSCREEN].atom);
1478         else if (win->ewmh_flags & EWMH_F_SKIP_PAGER)
1479                 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1480                     ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1481                     &ewmh[_NET_WM_STATE_SKIP_PAGER].atom);
1482         else if (win->ewmh_flags & EWMH_F_SKIP_TASKBAR)
1483                 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1484                     ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1485                     &ewmh[_NET_WM_STATE_SKIP_TASKBAR].atom);
1486         else if (win->ewmh_flags & EWMH_F_ABOVE)
1487                 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1488                     ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1489                     &ewmh[_NET_WM_STATE_ABOVE].atom);
1490         else if (win->ewmh_flags & SWM_F_MANUAL)
1491                 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1492                     ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1493                     &ewmh[_SWM_WM_STATE_MANUAL].atom);
1494 }
1495
1496 void
1497 ewmh_get_win_state(struct ws_win *win)
1498 {
1499         xcb_atom_t                      *states;
1500         xcb_get_property_cookie_t       c;
1501         xcb_get_property_reply_t        *r;
1502         int                             i, n;
1503
1504         if (win == NULL)
1505                 return;
1506
1507         win->ewmh_flags = 0;
1508         if (win->floating)
1509                 win->ewmh_flags |= EWMH_F_ABOVE;
1510         if (win->manual)
1511                 win->ewmh_flags |= SWM_F_MANUAL;
1512
1513         c = xcb_get_property(conn, 0, win->id, ewmh[_NET_WM_STATE].atom,
1514             XCB_ATOM_ATOM, 0, UINT32_MAX);
1515         r = xcb_get_property_reply(conn, c, NULL);
1516         if (!r)
1517                 return;
1518
1519         states = xcb_get_property_value(r);
1520         n = xcb_get_property_value_length(r);
1521
1522         for (i = 0; i < n; i++)
1523                 ewmh_update_win_state(win, states[i], _NET_WM_STATE_ADD);
1524
1525         free(r);
1526 }
1527
1528 /* events */
1529 #ifdef SWM_DEBUG
1530 void
1531 dumpwins(struct swm_region *r, union arg *args)
1532 {
1533         struct ws_win                           *win;
1534         uint32_t                                state;
1535         xcb_get_window_attributes_cookie_t      c;
1536         xcb_get_window_attributes_reply_t       *wa;
1537
1538         /* suppress unused warning since var is needed */
1539         (void)args;
1540
1541         if (r->ws == NULL) {
1542                 warnx("dumpwins: invalid workspace");
1543                 return;
1544         }
1545
1546         warnx("=== managed window list ws %02d ===", r->ws->idx);
1547         TAILQ_FOREACH(win, &r->ws->winlist, entry) {
1548                 state = getstate(win->id);
1549                 c = xcb_get_window_attributes(conn, win->id);
1550                 wa = xcb_get_window_attributes_reply(conn, c, NULL);
1551                 if (wa) {
1552                         warnx("window: 0x%x, map_state: %d, state: %u, "
1553                             "transient: 0x%x", win->id, wa->map_state,
1554                             state, win->transient);
1555                         free(wa);
1556                 } else
1557                         warnx("window: 0x%x, failed xcb_get_window_attributes",
1558                             win->id);
1559         }
1560
1561         warnx("===== unmanaged window list =====");
1562         TAILQ_FOREACH(win, &r->ws->unmanagedlist, entry) {
1563                 state = getstate(win->id);
1564                 c = xcb_get_window_attributes(conn, win->id);
1565                 wa = xcb_get_window_attributes_reply(conn, c, NULL);
1566                 if (wa) {
1567                         warnx("window: 0x%x, map_state: %d, state: %u, "
1568                             "transient: 0x%x", win->id, wa->map_state,
1569                             state, win->transient);
1570                         free(wa);
1571                 } else
1572                         warnx("window: 0x%x, failed xcb_get_window_attributes",
1573                             win->id);
1574         }
1575
1576         warnx("=================================");
1577 }
1578 #else
1579 void
1580 dumpwins(struct swm_region *r, union arg *s)
1581 {
1582         (void)r;
1583         (void)s;
1584 }
1585 #endif /* SWM_DEBUG */
1586
1587 void
1588 sighdlr(int sig)
1589 {
1590         int                     saved_errno, status;
1591         pid_t                   pid;
1592
1593         saved_errno = errno;
1594
1595         switch (sig) {
1596         case SIGCHLD:
1597                 while ((pid = waitpid(WAIT_ANY, &status, WNOHANG)) != 0) {
1598                         if (pid == -1) {
1599                                 if (errno == EINTR)
1600                                         continue;
1601 #ifdef SWM_DEBUG
1602                                 if (errno != ECHILD)
1603                                         warn("sighdlr: waitpid");
1604 #endif /* SWM_DEBUG */
1605                                 break;
1606                         }
1607                         if (pid == searchpid)
1608                                 search_resp = 1;
1609
1610 #ifdef SWM_DEBUG
1611                         if (WIFEXITED(status)) {
1612                                 if (WEXITSTATUS(status) != 0)
1613                                         warnx("sighdlr: child exit status: %d",
1614                                             WEXITSTATUS(status));
1615                         } else
1616                                 warnx("sighdlr: child is terminated "
1617                                     "abnormally");
1618 #endif /* SWM_DEBUG */
1619                 }
1620                 break;
1621
1622         case SIGHUP:
1623                 restart_wm = 1;
1624                 break;
1625         case SIGINT:
1626         case SIGTERM:
1627         case SIGQUIT:
1628                 running = 0;
1629                 break;
1630         }
1631
1632         errno = saved_errno;
1633 }
1634
1635 struct pid_e *
1636 find_pid(pid_t pid)
1637 {
1638         struct pid_e            *p = NULL;
1639
1640         DNPRINTF(SWM_D_MISC, "find_pid: %d\n", pid);
1641
1642         if (pid == 0)
1643                 return (NULL);
1644
1645         TAILQ_FOREACH(p, &pidlist, entry) {
1646                 if (p->pid == pid)
1647                         return (p);
1648         }
1649
1650         return (NULL);
1651 }
1652
1653 uint32_t
1654 name_to_pixel(const char *colorname)
1655 {
1656         uint32_t                        result = 0;
1657         char                            cname[32] = "#";
1658         xcb_screen_t                    *screen;
1659         xcb_colormap_t                  cmap;
1660         xcb_alloc_color_reply_t         *cr;
1661         xcb_alloc_named_color_reply_t   *nr;
1662         uint16_t                        rr, gg, bb;
1663
1664         screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
1665         cmap = screen->default_colormap;
1666
1667         /* color is in format rgb://rr/gg/bb */
1668         if (strncmp(colorname, "rgb:", 4) == 0) {
1669                 if (parse_rgb(colorname, &rr, &gg, &bb) == -1)
1670                         warnx("could not parse rgb %s", colorname);
1671                 else {
1672                         cr = xcb_alloc_color_reply(conn,
1673                             xcb_alloc_color(conn, cmap, rr, gg, bb),
1674                             NULL);
1675                         if (cr) {
1676                                 result = cr->pixel;
1677                                 free(cr);
1678                         } else
1679                                 warnx("color '%s' not found", colorname);
1680                 }
1681         } else {
1682                 nr = xcb_alloc_named_color_reply(conn,
1683                         xcb_alloc_named_color(conn, cmap, strlen(colorname),
1684                             colorname), NULL);
1685                 if (!nr) {
1686                         strlcat(cname, colorname + 2, sizeof cname - 1);
1687                         nr = xcb_alloc_named_color_reply(conn,
1688                             xcb_alloc_named_color(conn, cmap, strlen(cname),
1689                             cname), NULL);
1690                 }
1691                 if (nr) {
1692                         result = nr->pixel;
1693                         free(nr);
1694                 } else
1695                         warnx("color '%s' not found", colorname);
1696         }
1697
1698         return (result);
1699 }
1700
1701 void
1702 setscreencolor(char *val, int i, int c)
1703 {
1704         int     num_screens;
1705
1706         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1707         if (i > 0 && i <= num_screens) {
1708                 screens[i - 1].c[c].pixel = name_to_pixel(val);
1709                 free(screens[i - 1].c[c].name);
1710                 if ((screens[i - 1].c[c].name = strdup(val)) == NULL)
1711                         err(1, "strdup");
1712         } else if (i == -1) {
1713                 for (i = 0; i < num_screens; i++) {
1714                         screens[i].c[c].pixel = name_to_pixel(val);
1715                         free(screens[i].c[c].name);
1716                         if ((screens[i].c[c].name = strdup(val)) == NULL)
1717                                 err(1, "strdup");
1718                 }
1719         } else
1720                 errx(1, "invalid screen index: %d out of bounds (maximum %d)",
1721                     i, num_screens);
1722 }
1723
1724 void
1725 fancy_stacker(struct workspace *ws)
1726 {
1727         strlcpy(ws->stacker, "[   ]", sizeof ws->stacker);
1728         if (ws->cur_layout->l_stack == vertical_stack)
1729                 snprintf(ws->stacker, sizeof ws->stacker,
1730                     ws->l_state.vertical_flip ? "[%d>%d]" : "[%d|%d]",
1731                     ws->l_state.vertical_mwin, ws->l_state.vertical_stacks);
1732         if (ws->cur_layout->l_stack == horizontal_stack)
1733                 snprintf(ws->stacker, sizeof ws->stacker,
1734                     ws->l_state.horizontal_flip ? "[%dv%d]" : "[%d-%d]",
1735                     ws->l_state.horizontal_mwin, ws->l_state.horizontal_stacks);
1736 }
1737
1738 void
1739 plain_stacker(struct workspace *ws)
1740 {
1741         strlcpy(ws->stacker, "[ ]", sizeof ws->stacker);
1742         if (ws->cur_layout->l_stack == vertical_stack)
1743                 strlcpy(ws->stacker, ws->l_state.vertical_flip ? "[>]" : "[|]",
1744                     sizeof ws->stacker);
1745         if (ws->cur_layout->l_stack == horizontal_stack)
1746                 strlcpy(ws->stacker, ws->l_state.horizontal_flip ? "[v]" : "[-]",
1747                     sizeof ws->stacker);
1748 }
1749
1750 void
1751 custom_region(char *val)
1752 {
1753         unsigned int                    x, y, w, h;
1754         int                             sidx, num_screens;
1755         xcb_screen_t                    *screen;
1756
1757         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1758         if (sscanf(val, "screen[%d]:%ux%u+%u+%u", &sidx, &w, &h, &x, &y) != 5)
1759                 errx(1, "invalid custom region, "
1760                     "should be 'screen[<n>]:<n>x<n>+<n>+<n>");
1761         if (sidx < 1 || sidx > num_screens)
1762                 errx(1, "invalid screen index: %d out of bounds (maximum %d)",
1763                     sidx, num_screens);
1764         sidx--;
1765
1766         if ((screen = get_screen(sidx)) == NULL)
1767                 errx(1, "ERROR: can't get screen %d.", sidx);
1768
1769         if (w < 1 || h < 1)
1770                 errx(1, "region %ux%u+%u+%u too small", w, h, x, y);
1771
1772         if (x > screen->width_in_pixels ||
1773             y > screen->height_in_pixels ||
1774             w + x > screen->width_in_pixels ||
1775             h + y > screen->height_in_pixels) {
1776                 warnx("ignoring region %ux%u+%u+%u - not within screen "
1777                     "boundaries (%ux%u)", w, h, x, y,
1778                     screen->width_in_pixels, screen->height_in_pixels);
1779                 return;
1780         }
1781
1782         new_region(&screens[sidx], x, y, w, h);
1783 }
1784
1785 void
1786 socket_setnonblock(int fd)
1787 {
1788         int                     flags;
1789
1790         if ((flags = fcntl(fd, F_GETFL, 0)) == -1)
1791                 err(1, "fcntl F_GETFL");
1792         flags |= O_NONBLOCK;
1793         if ((flags = fcntl(fd, F_SETFL, flags)) == -1)
1794                 err(1, "fcntl F_SETFL");
1795 }
1796
1797 void
1798 bar_print_legacy(struct swm_region *r, const char *s)
1799 {
1800         xcb_rectangle_t         rect;
1801         uint32_t                gcv[1];
1802         XGCValues               gcvd;
1803         int                     x = 0;
1804         size_t                  len;
1805         XRectangle              ibox, lbox;
1806         GC                      draw;
1807
1808         len = strlen(s);
1809         XmbTextExtents(bar_fs, s, len, &ibox, &lbox);
1810
1811         switch (bar_justify) {
1812         case SWM_BAR_JUSTIFY_LEFT:
1813                 x = SWM_BAR_OFFSET;
1814                 break;
1815         case SWM_BAR_JUSTIFY_CENTER:
1816                 x = (WIDTH(r) - lbox.width) / 2;
1817                 break;
1818         case SWM_BAR_JUSTIFY_RIGHT:
1819                 x = WIDTH(r) - lbox.width - SWM_BAR_OFFSET;
1820                 break;
1821         }
1822
1823         if (x < SWM_BAR_OFFSET)
1824                 x = SWM_BAR_OFFSET;
1825
1826         rect.x = 0;
1827         rect.y = 0;
1828         rect.width = WIDTH(r->bar);
1829         rect.height = HEIGHT(r->bar);
1830
1831         /* clear back buffer */
1832         gcv[0] = r->s->c[SWM_S_COLOR_BAR].pixel;
1833         xcb_change_gc(conn, r->s->bar_gc, XCB_GC_FOREGROUND, gcv);
1834         xcb_poly_fill_rectangle(conn, r->bar->buffer, r->s->bar_gc, 1, &rect);
1835
1836         /* draw back buffer */
1837         gcvd.graphics_exposures = 0;
1838         draw = XCreateGC(display, r->bar->buffer, GCGraphicsExposures, &gcvd);
1839         XSetForeground(display, draw, r->s->c[SWM_S_COLOR_BAR_FONT].pixel);
1840         DRAWSTRING(display, r->bar->buffer, bar_fs, draw,
1841             x, (bar_fs_extents->max_logical_extent.height - lbox.height) / 2 -
1842             lbox.y, s, len);
1843         XFreeGC(display, draw);
1844
1845         /* blt */
1846         xcb_copy_area(conn, r->bar->buffer, r->bar->id, r->s->bar_gc, 0, 0,
1847             0, 0, WIDTH(r->bar), HEIGHT(r->bar));
1848 }
1849
1850 void
1851 bar_print(struct swm_region *r, const char *s)
1852 {
1853         size_t                          len;
1854         xcb_rectangle_t                 rect;
1855         uint32_t                        gcv[1];
1856         int32_t                         x = 0;
1857         XGlyphInfo                      info;
1858         XftDraw                         *draw;
1859
1860         len = strlen(s);
1861
1862         XftTextExtentsUtf8(display, bar_font, (FcChar8 *)s, len, &info);
1863
1864         switch (bar_justify) {
1865         case SWM_BAR_JUSTIFY_LEFT:
1866                 x = SWM_BAR_OFFSET;
1867                 break;
1868         case SWM_BAR_JUSTIFY_CENTER:
1869                 x = (WIDTH(r) - info.width) / 2;
1870                 break;
1871         case SWM_BAR_JUSTIFY_RIGHT:
1872                 x = WIDTH(r) - info.width - SWM_BAR_OFFSET;
1873                 break;
1874         }
1875
1876         if (x < SWM_BAR_OFFSET)
1877                 x = SWM_BAR_OFFSET;
1878
1879         rect.x = 0;
1880         rect.y = 0;
1881         rect.width = WIDTH(r->bar);
1882         rect.height = HEIGHT(r->bar);
1883
1884         /* clear back buffer */
1885         gcv[0] = r->s->c[SWM_S_COLOR_BAR].pixel;
1886         xcb_change_gc(conn, r->s->bar_gc, XCB_GC_FOREGROUND, gcv);
1887         xcb_poly_fill_rectangle(conn, r->bar->buffer, r->s->bar_gc, 1, &rect);
1888
1889         /* draw back buffer */
1890         draw = XftDrawCreate(display, r->bar->buffer,
1891             DefaultVisual(display, r->s->idx),
1892             DefaultColormap(display, r->s->idx));
1893
1894         XftDrawStringUtf8(draw, &bar_font_color, bar_font, x,
1895             (HEIGHT(r->bar) + bar_font->height) / 2 - bar_font->descent,
1896             (FcChar8 *)s, len);
1897
1898         XftDrawDestroy(draw);
1899
1900         /* blt */
1901         xcb_copy_area(conn, r->bar->buffer, r->bar->id, r->s->bar_gc, 0, 0,
1902             0, 0, WIDTH(r->bar), HEIGHT(r->bar));
1903 }
1904
1905 void
1906 bar_extra_stop(void)
1907 {
1908         if (bar_pipe[0]) {
1909                 close(bar_pipe[0]);
1910                 bzero(bar_pipe, sizeof bar_pipe);
1911         }
1912         if (bar_pid) {
1913                 kill(bar_pid, SIGTERM);
1914                 bar_pid = 0;
1915         }
1916         strlcpy(bar_ext, "", sizeof bar_ext);
1917         bar_extra = 0;
1918 }
1919
1920 void
1921 bar_class_name(char *s, size_t sz, struct swm_region *r)
1922 {
1923         if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1924                 return;
1925         if (r->ws->focus->ch.class_name != NULL)
1926                 strlcat(s, r->ws->focus->ch.class_name, sz);
1927 }
1928
1929 void
1930 bar_title_name(char *s, size_t sz, struct swm_region *r)
1931 {
1932         if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1933                 return;
1934         if (r->ws->focus->ch.instance_name != NULL)
1935                 strlcat(s, r->ws->focus->ch.instance_name, sz);
1936 }
1937
1938 void
1939 bar_class_title_name(char *s, size_t sz, struct swm_region *r)
1940 {
1941         if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1942                 return;
1943
1944         bar_class_name(s, sz, r);
1945         strlcat(s, ":", sz);
1946         bar_title_name(s, sz, r);
1947 }
1948
1949 void
1950 bar_window_float(char *s, size_t sz, struct swm_region *r)
1951 {
1952         if (r == NULL || r ->ws == NULL || r->ws->focus == NULL)
1953                 return;
1954         if (r->ws->focus->floating)
1955                 strlcat(s, "(f)", sz);
1956 }
1957
1958 void
1959 bar_window_name(char *s, size_t sz, struct swm_region *r)
1960 {
1961         char            *title;
1962
1963         if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1964                 return;
1965         if ((title = get_win_name(r->ws->focus->id)) == NULL)
1966                 return;
1967
1968         strlcat(s, title, sz);
1969         free(title);
1970 }
1971
1972 int             urgent[SWM_WS_MAX];
1973 void
1974 bar_urgent(char *s, size_t sz)
1975 {
1976         struct ws_win           *win;
1977         int                     i, j, num_screens;
1978         char                    b[8];
1979         xcb_get_property_cookie_t       c;
1980         xcb_icccm_wm_hints_t    hints;
1981
1982         for (i = 0; i < workspace_limit; i++)
1983                 urgent[i] = 0;
1984
1985         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1986         for (i = 0; i < num_screens; i++)
1987                 for (j = 0; j < workspace_limit; j++)
1988                         TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry) {
1989                                 c = xcb_icccm_get_wm_hints(conn, win->id);
1990                                 if (xcb_icccm_get_wm_hints_reply(conn, c,
1991                                     &hints, NULL) == 0)
1992                                         continue;
1993                                 if (hints.flags & XCB_ICCCM_WM_HINT_X_URGENCY)
1994                                         urgent[j] = 1;
1995                         }
1996
1997         for (i = 0; i < workspace_limit; i++) {
1998                 if (urgent[i])
1999                         snprintf(b, sizeof b, "%d ", i + 1);
2000                 else
2001                         snprintf(b, sizeof b, "- ");
2002                 strlcat(s, b, sz);
2003         }
2004 }
2005
2006 void
2007 bar_workspace_name(char *s, size_t sz, struct swm_region *r)
2008 {
2009         if (r == NULL || r->ws == NULL)
2010                 return;
2011         if (r->ws->name != NULL)
2012                 strlcat(s, r->ws->name, sz);
2013 }
2014
2015 /* build the default bar format according to the defined enabled options */
2016 void
2017 bar_fmt(const char *fmtexp, char *fmtnew, struct swm_region *r, size_t sz)
2018 {
2019         /* if format provided, just copy the buffers */
2020         if (bar_format != NULL) {
2021                 strlcpy(fmtnew, fmtexp, sz);
2022                 return;
2023         }
2024
2025         /* reset the output buffer */
2026         *fmtnew = '\0';
2027
2028         strlcat(fmtnew, "+N:+I ", sz);
2029         if (stack_enabled)
2030                 strlcat(fmtnew, "+S", sz);
2031         strlcat(fmtnew, " ", sz);
2032
2033         /* only show the workspace name if there's actually one */
2034         if (r != NULL && r->ws != NULL && r->ws->name != NULL)
2035                 strlcat(fmtnew, "<+D>", sz);
2036         strlcat(fmtnew, "+3<", sz);
2037
2038         if (clock_enabled) {
2039                 strlcat(fmtnew, fmtexp, sz);
2040                 strlcat(fmtnew, "+4<", sz);
2041         }
2042
2043         /* bar_urgent already adds the space before the last asterisk */
2044         if (urgent_enabled)
2045                 strlcat(fmtnew, "* +U*+4<", sz);
2046
2047         if (title_class_enabled) {
2048                 strlcat(fmtnew, "+C", sz);
2049                 if (!title_name_enabled)
2050                         strlcat(fmtnew, "+4<", sz);
2051         }
2052
2053         /* checks needed by the colon and floating strlcat(3) calls below */
2054         if (r != NULL && r->ws != NULL && r->ws->focus != NULL) {
2055                 if (title_name_enabled) {
2056                         if (title_class_enabled)
2057                                 strlcat(fmtnew, ":", sz);
2058                         strlcat(fmtnew, "+T+4<", sz);
2059                 }
2060                 if (window_name_enabled) {
2061                         if (r->ws->focus->floating)
2062                                 strlcat(fmtnew, "+F ", sz);
2063                         strlcat(fmtnew, "+64W ", sz);
2064                 }
2065         }
2066
2067         /* finally add the action script output and the version */
2068         strlcat(fmtnew, "+4<+A+4<+V", sz);
2069 }
2070
2071 void
2072 bar_replace_pad(char *tmp, int *limit, size_t sz)
2073 {
2074         /* special case; no limit given, pad one space, instead */
2075         if (*limit == (int)sz - 1)
2076                 *limit = 1;
2077         snprintf(tmp, sz, "%*s", *limit, " ");
2078 }
2079
2080 /* replaces the bar format character sequences (like in tmux(1)) */
2081 char *
2082 bar_replace_seq(char *fmt, char *fmtrep, struct swm_region *r, size_t *offrep,
2083     size_t sz)
2084 {
2085         char                    *ptr;
2086         char                    tmp[SWM_BAR_MAX];
2087         int                     limit, size;
2088         size_t                  len;
2089
2090         /* reset strlcat(3) buffer */
2091         *tmp = '\0';
2092
2093         /* get number, if any */
2094         fmt++;
2095         size = 0;
2096         if (sscanf(fmt, "%d%n", &limit, &size) != 1)
2097                 limit = sizeof tmp - 1;
2098         if (limit <= 0 || limit >= (int)sizeof tmp)
2099                 limit = sizeof tmp - 1;
2100
2101         /* there is nothing to replace (ie EOL) */
2102         fmt += size;
2103         if (*fmt == '\0')
2104                 return (fmt);
2105
2106         switch (*fmt) {
2107         case '<':
2108                 bar_replace_pad(tmp, &limit, sizeof tmp);
2109                 break;
2110         case 'A':
2111                 snprintf(tmp, sizeof tmp, "%s", bar_ext);
2112                 break;
2113         case 'C':
2114                 bar_class_name(tmp, sizeof tmp, r);
2115                 break;
2116         case 'D':
2117                 bar_workspace_name(tmp, sizeof tmp, r);
2118                 break;
2119         case 'F':
2120                 bar_window_float(tmp, sizeof tmp, r);
2121                 break;
2122         case 'I':
2123                 snprintf(tmp, sizeof tmp, "%d", r->ws->idx + 1);
2124                 break;
2125         case 'N':
2126                 snprintf(tmp, sizeof tmp, "%d", r->s->idx + 1);
2127                 break;
2128         case 'P':
2129                 bar_class_title_name(tmp, sizeof tmp, r);
2130                 break;
2131         case 'S':
2132                 snprintf(tmp, sizeof tmp, "%s", r->ws->stacker);
2133                 break;
2134         case 'T':
2135                 bar_title_name(tmp, sizeof tmp, r);
2136                 break;
2137         case 'U':
2138                 bar_urgent(tmp, sizeof tmp);
2139                 break;
2140         case 'V':
2141                 snprintf(tmp, sizeof tmp, "%s", bar_vertext);
2142                 break;
2143         case 'W':
2144                 bar_window_name(tmp, sizeof tmp, r);
2145                 break;
2146         default:
2147                 /* unknown character sequence; copy as-is */
2148                 snprintf(tmp, sizeof tmp, "+%c", *fmt);
2149                 break;
2150         }
2151
2152         len = strlen(tmp);
2153         ptr = tmp;
2154         if ((int)len < limit)
2155                 limit = len;
2156         while (limit-- > 0) {
2157                 if (*offrep >= sz - 1)
2158                         break;
2159                 fmtrep[(*offrep)++] = *ptr++;
2160         }
2161
2162         fmt++;
2163         return (fmt);
2164 }
2165
2166 void
2167 bar_replace(char *fmt, char *fmtrep, struct swm_region *r, size_t sz)
2168 {
2169         size_t                  off;
2170
2171         off = 0;
2172         while (*fmt != '\0') {
2173                 if (*fmt != '+') {
2174                         /* skip ordinary characters */
2175                         if (off >= sz - 1)
2176                                 break;
2177                         fmtrep[off++] = *fmt++;
2178                         continue;
2179                 }
2180
2181                 /* character sequence found; replace it */
2182                 fmt = bar_replace_seq(fmt, fmtrep, r, &off, sz);
2183                 if (off >= sz - 1)
2184                         break;
2185         }
2186
2187         fmtrep[off] = '\0';
2188 }
2189
2190 void
2191 bar_fmt_expand(char *fmtexp, size_t sz)
2192 {
2193         char                    *fmt = NULL;
2194         size_t                  len;
2195         struct tm               tm;
2196         time_t                  tmt;
2197
2198         /* start by grabbing the current time and date */
2199         time(&tmt);
2200         localtime_r(&tmt, &tm);
2201
2202         /* figure out what to expand */
2203         if (bar_format != NULL)
2204                 fmt = bar_format;
2205         else if (bar_format == NULL && clock_enabled)
2206                 fmt = clock_format;
2207         /* if nothing to expand bail out */
2208         if (fmt == NULL) {
2209                 *fmtexp = '\0';
2210                 return;
2211         }
2212
2213         /* copy as-is, just in case the format shouldn't be expanded below */
2214         strlcpy(fmtexp, fmt, sz);
2215         /* finally pass the string through strftime(3) */
2216 #ifndef SWM_DENY_CLOCK_FORMAT
2217         if ((len = strftime(fmtexp, sz, fmt, &tm)) == 0)
2218                 warnx("format too long");
2219         fmtexp[len] = '\0';
2220 #endif
2221 }
2222
2223 /* Redraws the bar; need to follow with xcb_flush() or focus_flush(). */
2224 void
2225 bar_draw(void)
2226 {
2227         char                    fmtexp[SWM_BAR_MAX], fmtnew[SWM_BAR_MAX];
2228         char                    fmtrep[SWM_BAR_MAX];
2229         int                     i, num_screens;
2230         struct swm_region       *r;
2231
2232         /* expand the format by first passing it through strftime(3) */
2233         bar_fmt_expand(fmtexp, sizeof fmtexp);
2234
2235         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2236         for (i = 0; i < num_screens; i++) {
2237                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
2238                         if (r->bar == NULL)
2239                                 continue;
2240
2241                         if (bar_enabled && r->ws->bar_enabled)
2242                                 xcb_map_window(conn, r->bar->id);
2243                         else {
2244                                 xcb_unmap_window(conn, r->bar->id);
2245                                 continue;
2246                         }
2247
2248                         if (startup_exception)
2249                                 snprintf(fmtrep, sizeof fmtrep, "total "
2250                                     "exceptions: %d, first exception: %s",
2251                                     nr_exceptions,
2252                                     startup_exception);
2253                         else {
2254                                 bar_fmt(fmtexp, fmtnew, r, sizeof fmtnew);
2255                                 bar_replace(fmtnew, fmtrep, r, sizeof fmtrep);
2256                         }
2257                         if (bar_font_legacy)
2258                                 bar_print_legacy(r, fmtrep);
2259                         else
2260                                 bar_print(r, fmtrep);
2261                 }
2262         }
2263 }
2264
2265 /*
2266  * Reads external script output; call when stdin is readable.
2267  * Returns 1 if bar_ext was updated; otherwise 0.
2268  */
2269 int
2270 bar_extra_update(void)
2271 {
2272         size_t          len;
2273         char            b[SWM_BAR_MAX];
2274         int             changed = 0;
2275
2276         if (!bar_extra)
2277                 return changed;
2278
2279         while (fgets(b, sizeof(b), stdin) != NULL) {
2280                 if (bar_enabled) {
2281                         len = strlen(b);
2282                         if (b[len - 1] == '\n') {
2283                                 /* Remove newline. */
2284                                 b[--len] = '\0';
2285
2286                                 /* "Clear" bar_ext. */
2287                                 bar_ext[0] = '\0';
2288
2289                                 /* Flush buffered output. */
2290                                 strlcpy(bar_ext, bar_ext_buf, sizeof(bar_ext));
2291                                 bar_ext_buf[0] = '\0';
2292
2293                                 /* Append new output to bar. */
2294                                 strlcat(bar_ext, b, sizeof(bar_ext));
2295
2296                                 changed = 1;
2297                         } else {
2298                                 /* Buffer output. */
2299                                 strlcat(bar_ext_buf, b, sizeof(bar_ext_buf));
2300                         }
2301                 }
2302         }
2303
2304         if (errno != EAGAIN) {
2305                 warn("bar_action failed");
2306                 bar_extra_stop();
2307                 changed = 1;
2308         }
2309
2310         return changed;
2311 }
2312
2313 void
2314 bar_toggle(struct swm_region *r, union arg *args)
2315 {
2316         struct swm_region       *tmpr;
2317         int                     i, num_screens;
2318
2319         /* suppress unused warnings since vars are needed */
2320         (void)r;
2321         (void)args;
2322
2323         DNPRINTF(SWM_D_BAR, "bar_toggle\n");
2324
2325         switch (args->id) {
2326         case SWM_ARG_ID_BAR_TOGGLE_WS:
2327                 /* Only change if master switch is enabled. */
2328                 if (bar_enabled)
2329                         r->ws->bar_enabled = !r->ws->bar_enabled;
2330                 else
2331                         bar_enabled = r->ws->bar_enabled = 1;
2332                 break;
2333         case SWM_ARG_ID_BAR_TOGGLE:
2334                 bar_enabled = !bar_enabled;
2335                 break;
2336         }
2337
2338         /* update bars as necessary */
2339         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2340         for (i = 0; i < num_screens; i++)
2341                 TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
2342                         if (tmpr->bar) {
2343                                 if (bar_enabled && tmpr->ws->bar_enabled)
2344                                         xcb_map_window(conn, tmpr->bar->id);
2345                                 else
2346                                         xcb_unmap_window(conn, tmpr->bar->id);
2347                         }
2348
2349         stack();
2350
2351         /* must be after stack */
2352         bar_draw();
2353
2354         focus_flush();
2355 }
2356
2357 void
2358 bar_extra_setup(void)
2359 {
2360         /* do this here because the conf file is in memory */
2361         if (!bar_extra && bar_argv[0]) {
2362                 /* launch external status app */
2363                 bar_extra = 1;
2364                 if (pipe(bar_pipe) == -1)
2365                         err(1, "pipe error");
2366                 socket_setnonblock(bar_pipe[0]);
2367                 socket_setnonblock(bar_pipe[1]); /* XXX hmmm, really? */
2368
2369                 /* Set stdin to read from the pipe. */
2370                 if (dup2(bar_pipe[0], STDIN_FILENO) == -1)
2371                         err(1, "dup2");
2372
2373                 /* Set stdout to write to the pipe. */
2374                 if (dup2(bar_pipe[1], STDOUT_FILENO) == -1)
2375                         err(1, "dup2");
2376
2377                 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
2378                         err(1, "could not disable SIGPIPE");
2379                 switch (bar_pid = fork()) {
2380                 case -1:
2381                         err(1, "cannot fork");
2382                         break;
2383                 case 0: /* child */
2384                         close(bar_pipe[0]);
2385                         execvp(bar_argv[0], bar_argv);
2386                         err(1, "%s external app failed", bar_argv[0]);
2387                         break;
2388                 default: /* parent */
2389                         close(bar_pipe[1]);
2390                         break;
2391                 }
2392
2393                 atexit(kill_bar_extra_atexit);
2394         }
2395 }
2396
2397 void
2398 kill_bar_extra_atexit(void)
2399 {
2400         if (bar_pid)
2401                 kill(bar_pid, SIGTERM);
2402 }
2403
2404 int
2405 isxlfd(char *s)
2406 {
2407         int      count = 0;
2408
2409         while ((s = index(s, '-'))) {
2410                 ++count;
2411                 ++s;
2412         }
2413
2414         return (count == 14);
2415 }
2416
2417 void
2418 fontset_init(void)
2419 {
2420         char                    *default_string;
2421         char                    **missing_charsets;
2422         int                     num_missing_charsets = 0;
2423         int                     i;
2424
2425         if (bar_fs) {
2426                 XFreeFontSet(display, bar_fs);
2427                 bar_fs = NULL;
2428         }
2429
2430         DNPRINTF(SWM_D_INIT, "fontset_init: loading bar_fonts: %s\n", bar_fonts);
2431
2432         bar_fs = XCreateFontSet(display, bar_fonts, &missing_charsets,
2433             &num_missing_charsets, &default_string);
2434
2435         if (num_missing_charsets > 0) {
2436                 warnx("Unable to load charset(s):");
2437
2438                 for (i = 0; i < num_missing_charsets; ++i)
2439                         warnx("%s", missing_charsets[i]);
2440
2441                 XFreeStringList(missing_charsets);
2442
2443                 if (strcmp(default_string, ""))
2444                         warnx("Glyphs from those sets will be replaced "
2445                             "by '%s'.", default_string);
2446                 else
2447                         warnx("Glyphs from those sets won't be drawn.");
2448         }
2449
2450         if (bar_fs == NULL)
2451                 errx(1, "Error creating font set structure.");
2452
2453         bar_fs_extents = XExtentsOfFontSet(bar_fs);
2454
2455         bar_height = bar_fs_extents->max_logical_extent.height +
2456             2 * bar_border_width;
2457
2458         if (bar_height < 1)
2459                 bar_height = 1;
2460 }
2461
2462 void
2463 xft_init(struct swm_region *r)
2464 {
2465         char                    *font, *d, *search;
2466         XRenderColor            color;
2467
2468         if (bar_font == NULL) {
2469                 if ((d = strdup(bar_fonts)) == NULL)
2470                         errx(1, "insufficient memory.");
2471                 search = d;
2472                 while ((font = strsep(&search, ",")) != NULL) {
2473                         if (*font == '\0')
2474                                 continue;
2475
2476                         DNPRINTF(SWM_D_INIT, "xft_init: try font %s\n", font);
2477
2478                         if (isxlfd(font)) {
2479                                 bar_font = XftFontOpenXlfd(display, r->s->idx,
2480                                                 font);
2481                         } else {
2482                                 bar_font = XftFontOpenName(display, r->s->idx,
2483                                                 font);
2484                         }
2485
2486                         if (!bar_font) {
2487                                 warnx("unable to load font %s", font);
2488                                 continue;
2489                         } else {
2490                                 DNPRINTF(SWM_D_INIT, "successfully opened "
2491                                     "font %s\n", font);
2492                                 break;
2493                         }
2494                 }
2495                 free(d);
2496         }
2497
2498         if (bar_font == NULL)
2499                 errx(1, "unable to open a font");
2500
2501         PIXEL_TO_XRENDERCOLOR(r->s->c[SWM_S_COLOR_BAR_FONT].pixel, color);
2502
2503         if (!XftColorAllocValue(display, DefaultVisual(display, r->s->idx),
2504             DefaultColormap(display, r->s->idx), &color, &bar_font_color))
2505                 warn("Xft error: unable to allocate color.");
2506
2507         bar_height = bar_font->height + 2 * bar_border_width;
2508
2509         if (bar_height < 1)
2510                 bar_height = 1;
2511 }
2512
2513 void
2514 bar_setup(struct swm_region *r)
2515 {
2516         xcb_screen_t    *screen;
2517         uint32_t         wa[3];
2518
2519         DNPRINTF(SWM_D_BAR, "bar_setup: screen %d.\n",
2520             r->s->idx);
2521
2522         if ((screen = get_screen(r->s->idx)) == NULL)
2523                 errx(1, "ERROR: can't get screen %d.", r->s->idx);
2524
2525         if (r->bar != NULL)
2526                 return;
2527
2528         if ((r->bar = calloc(1, sizeof(struct swm_bar))) == NULL)
2529                 err(1, "bar_setup: calloc: failed to allocate memory.");
2530
2531         if (bar_font_legacy)
2532                 fontset_init();
2533         else
2534                 xft_init(r);
2535
2536         X(r->bar) = X(r);
2537         Y(r->bar) = bar_at_bottom ? (Y(r) + HEIGHT(r) - bar_height) : Y(r);
2538         WIDTH(r->bar) = WIDTH(r) - 2 * bar_border_width;
2539         HEIGHT(r->bar) = bar_height - 2 * bar_border_width;
2540
2541         /* Assume region is unfocused when we create the bar. */
2542         r->bar->id = xcb_generate_id(conn);
2543         wa[0] = r->s->c[SWM_S_COLOR_BAR].pixel;
2544         wa[1] = r->s->c[SWM_S_COLOR_BAR_BORDER_UNFOCUS].pixel;
2545         wa[2] = XCB_EVENT_MASK_EXPOSURE | XCB_EVENT_MASK_POINTER_MOTION |
2546             XCB_EVENT_MASK_POINTER_MOTION_HINT;
2547
2548         xcb_create_window(conn, XCB_COPY_FROM_PARENT, r->bar->id, r->s->root,
2549             X(r->bar), Y(r->bar), WIDTH(r->bar), HEIGHT(r->bar),
2550             bar_border_width, XCB_WINDOW_CLASS_INPUT_OUTPUT,
2551             XCB_COPY_FROM_PARENT, XCB_CW_BACK_PIXEL | XCB_CW_BORDER_PIXEL
2552             | XCB_CW_EVENT_MASK, wa);
2553
2554         r->bar->buffer = xcb_generate_id(conn);
2555         xcb_create_pixmap(conn, screen->root_depth, r->bar->buffer, r->bar->id,
2556             WIDTH(r->bar), HEIGHT(r->bar));
2557
2558         if (xrandr_support)
2559                 xcb_randr_select_input(conn, r->bar->id,
2560                     XCB_RANDR_NOTIFY_MASK_OUTPUT_CHANGE);
2561
2562         if (bar_enabled)
2563                 xcb_map_window(conn, r->bar->id);
2564
2565         DNPRINTF(SWM_D_BAR, "bar_setup: window: 0x%x, (x,y) w x h: (%d,%d) "
2566             "%d x %d\n", WINID(r->bar), X(r->bar), Y(r->bar), WIDTH(r->bar),
2567             HEIGHT(r->bar));
2568
2569         bar_extra_setup();
2570 }
2571
2572 void
2573 bar_cleanup(struct swm_region *r)
2574 {
2575         if (r->bar == NULL)
2576                 return;
2577         xcb_destroy_window(conn, r->bar->id);
2578         xcb_free_pixmap(conn, r->bar->buffer);
2579         free(r->bar);
2580         r->bar = NULL;
2581 }
2582
2583 void
2584 set_win_state(struct ws_win *win, uint16_t state)
2585 {
2586         uint16_t                data[2] = { state, XCB_ATOM_NONE };
2587
2588         DNPRINTF(SWM_D_EVENT, "set_win_state: window: 0x%x, state: %u\n",
2589             win->id, state);
2590
2591         if (win == NULL)
2592                 return;
2593
2594         xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id, a_state,
2595             a_state, 32, 2, data);
2596 }
2597
2598 uint32_t
2599 getstate(xcb_window_t w)
2600 {
2601         uint32_t                        result = 0;
2602         xcb_get_property_cookie_t       c;
2603         xcb_get_property_reply_t        *r;
2604
2605         c = xcb_get_property(conn, 0, w, a_state, a_state, 0L, 2L);
2606         r = xcb_get_property_reply(conn, c, NULL);
2607
2608         if (r) {
2609                 if (r->type == a_state && r->format == 32 && r->length == 2)
2610                         result = *((uint32_t *)xcb_get_property_value(r));
2611                 free(r);
2612         }
2613
2614         DNPRINTF(SWM_D_MISC, "getstate property: win 0x%x state %u\n", w,
2615             result);
2616         return (result);
2617 }
2618
2619 void
2620 version(struct swm_region *r, union arg *args)
2621 {
2622         /* suppress unused warnings since vars are needed */
2623         (void)r;
2624         (void)args;
2625
2626         bar_version = !bar_version;
2627         if (bar_version)
2628                 snprintf(bar_vertext, sizeof bar_vertext,
2629                     "Version: %s Build: %s", SPECTRWM_VERSION, buildstr);
2630         else
2631                 strlcpy(bar_vertext, "", sizeof bar_vertext);
2632
2633         bar_draw();
2634         xcb_flush(conn);
2635 }
2636
2637 void
2638 client_msg(struct ws_win *win, xcb_atom_t a, xcb_timestamp_t t)
2639 {
2640         xcb_client_message_event_t      ev;
2641 #ifdef SWM_DEBUG
2642         char                            *name;
2643 #endif
2644
2645         if (win == NULL)
2646                 return;
2647 #ifdef SWM_DEBUG
2648         name = get_atom_name(a);
2649         DNPRINTF(SWM_D_EVENT, "client_msg: window: 0x%x, atom: %s(%u), "
2650             "time: %#x\n",
2651             win->id, name, a, t);
2652         free(name);
2653 #endif
2654
2655         bzero(&ev, sizeof ev);
2656         ev.response_type = XCB_CLIENT_MESSAGE;
2657         ev.window = win->id;
2658         ev.type = a_prot;
2659         ev.format = 32;
2660         ev.data.data32[0] = a;
2661         ev.data.data32[1] = t;
2662
2663         xcb_send_event(conn, 0, win->id,
2664             XCB_EVENT_MASK_NO_EVENT, (const char *)&ev);
2665 }
2666
2667 /* synthetic response to a ConfigureRequest when not making a change */
2668 void
2669 config_win(struct ws_win *win, xcb_configure_request_event_t *ev)
2670 {
2671         xcb_configure_notify_event_t ce;
2672
2673         if (win == NULL)
2674                 return;
2675
2676         /* send notification of unchanged state. */
2677         bzero(&ce, sizeof(ce));
2678         ce.response_type = XCB_CONFIGURE_NOTIFY;
2679         ce.x = X(win);
2680         ce.y = Y(win);
2681         ce.width = WIDTH(win);
2682         ce.height = HEIGHT(win);
2683         ce.override_redirect = 0;
2684
2685         if (ev == NULL) {
2686                 /* EWMH */
2687                 ce.event = win->id;
2688                 ce.window = win->id;
2689                 ce.border_width = BORDER(win);
2690                 ce.above_sibling = XCB_WINDOW_NONE;
2691         } else {
2692                 /* normal */
2693                 ce.event = ev->window;
2694                 ce.window = ev->window;
2695
2696                 /* make response appear more WM_SIZE_HINTS-compliant */
2697                 if (win->sh.flags) {
2698                         DNPRINTF(SWM_D_MISC, "config_win: hints: window: 0x%x,"
2699                             " sh.flags: %u, min: %d x %d, max: %d x %d, inc: "
2700                             "%d x %d\n", win->id, win->sh.flags, SH_MIN_W(win),
2701                             SH_MIN_H(win), SH_MAX_W(win), SH_MAX_H(win),
2702                             SH_INC_W(win), SH_INC_H(win));
2703                 }
2704
2705                 /* min size */
2706                 if (SH_MIN(win)) {
2707                         /* the hint may be set... to 0! */
2708                         if (SH_MIN_W(win) > 0 && ce.width < SH_MIN_W(win))
2709                                 ce.width = SH_MIN_W(win);
2710                         if (SH_MIN_H(win) > 0 && ce.height < SH_MIN_H(win))
2711                                 ce.height = SH_MIN_H(win);
2712                 }
2713
2714                 /* max size */
2715                 if (SH_MAX(win)) {
2716                         /* may also be advertized as 0 */
2717                         if (SH_MAX_W(win) > 0 && ce.width > SH_MAX_W(win))
2718                                 ce.width = SH_MAX_W(win);
2719                         if (SH_MAX_H(win) > 0 && ce.height > SH_MAX_H(win))
2720                                 ce.height = SH_MAX_H(win);
2721                 }
2722
2723                 /* resize increment. */
2724                 if (SH_INC(win)) {
2725                         if (SH_INC_W(win) > 1 && ce.width > SH_INC_W(win))
2726                                 ce.width -= (ce.width - SH_MIN_W(win)) %
2727                                     SH_INC_W(win);
2728                         if (SH_INC_H(win) > 1 && ce.height > SH_INC_H(win))
2729                                 ce.height -= (ce.height - SH_MIN_H(win)) %
2730                                     SH_INC_H(win);
2731                 }
2732
2733                 /* adjust x and y for requested border_width. */
2734                 ce.x += BORDER(win) - ev->border_width;
2735                 ce.y += BORDER(win) - ev->border_width;
2736                 ce.border_width = ev->border_width;
2737                 ce.above_sibling = ev->sibling;
2738         }
2739
2740         DNPRINTF(SWM_D_MISC, "config_win: ewmh: %s, window: 0x%x, (x,y) w x h: "
2741             "(%d,%d) %d x %d, border: %d\n", YESNO(ev == NULL), win->id, ce.x,
2742             ce.y, ce.width, ce.height, ce.border_width);
2743
2744         xcb_send_event(conn, 0, win->id, XCB_EVENT_MASK_STRUCTURE_NOTIFY,
2745             (char *)&ce);
2746 }
2747
2748 int
2749 count_win(struct workspace *ws, int count_transient)
2750 {
2751         struct ws_win           *win;
2752         int                     count = 0;
2753
2754         TAILQ_FOREACH(win, &ws->winlist, entry) {
2755                 if (!count_transient && win->floating)
2756                         continue;
2757                 if (!count_transient && win->transient)
2758                         continue;
2759                 if (win->iconic)
2760                         continue;
2761                 count++;
2762         }
2763         DNPRINTF(SWM_D_MISC, "count_win: %d\n", count);
2764
2765         return (count);
2766 }
2767
2768 void
2769 quit(struct swm_region *r, union arg *args)
2770 {
2771         /* suppress unused warnings since vars are needed */
2772         (void)r;
2773         (void)args;
2774
2775         DNPRINTF(SWM_D_MISC, "quit\n");
2776         running = 0;
2777 }
2778
2779 void
2780 map_window(struct ws_win *win)
2781 {
2782         uint32_t        val = XCB_STACK_MODE_ABOVE;
2783
2784         if (win == NULL)
2785                 return;
2786
2787         DNPRINTF(SWM_D_EVENT, "map_window: win 0x%x, mapped: %s\n", win->id,
2788             YESNO(win->mapped));
2789
2790         xcb_configure_window(conn, win->id,
2791             XCB_CONFIG_WINDOW_STACK_MODE, &val);
2792
2793         if (win->mapped)
2794                 return;
2795
2796         xcb_map_window(conn, win->id);
2797         set_win_state(win, XCB_ICCCM_WM_STATE_NORMAL);
2798         win->mapped = 1;
2799 }
2800
2801 void
2802 unmap_window(struct ws_win *win)
2803 {
2804         if (win == NULL)
2805                 return;
2806
2807         DNPRINTF(SWM_D_EVENT, "unmap_window: win 0x%x, mapped: %s\n", win->id,
2808             YESNO(win->mapped));
2809
2810         if (!win->mapped)
2811                 return;
2812
2813         xcb_unmap_window(conn, win->id);
2814         set_win_state(win, XCB_ICCCM_WM_STATE_ICONIC);
2815         win->mapped = 0;
2816 }
2817
2818 void
2819 unmap_all(void)
2820 {
2821         struct ws_win           *win;
2822         int                     i, j, num_screens;
2823
2824         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2825         for (i = 0; i < num_screens; i++)
2826                 for (j = 0; j < workspace_limit; j++)
2827                         TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
2828                                 unmap_window(win);
2829 }
2830
2831 void
2832 fake_keypress(struct ws_win *win, xcb_keysym_t keysym, uint16_t modifiers)
2833 {
2834         xcb_key_press_event_t   event;
2835         xcb_keycode_t           *keycode;
2836
2837         if (win == NULL)
2838                 return;
2839
2840         keycode = xcb_key_symbols_get_keycode(syms, keysym);
2841
2842         DNPRINTF(SWM_D_MISC, "fake_keypress: win 0x%x keycode %u\n",
2843             win->id, *keycode);
2844
2845         bzero(&event, sizeof(event));
2846         event.event = win->id;
2847         event.root = win->s->root;
2848         event.child = XCB_WINDOW_NONE;
2849         event.time = XCB_CURRENT_TIME;
2850         event.event_x = X(win);
2851         event.event_y = Y(win);
2852         event.root_x = 1;
2853         event.root_y = 1;
2854         event.same_screen = 1;
2855         event.detail = *keycode;
2856         event.state = modifiers;
2857
2858         event.response_type = XCB_KEY_PRESS;
2859         xcb_send_event(conn, 1, win->id,
2860             XCB_EVENT_MASK_KEY_PRESS, (const char *)&event);
2861
2862         event.response_type = XCB_KEY_RELEASE;
2863         xcb_send_event(conn, 1, win->id,
2864             XCB_EVENT_MASK_KEY_RELEASE, (const char *)&event);
2865
2866         free(keycode);
2867 }
2868
2869 void
2870 restart(struct swm_region *r, union arg *args)
2871 {
2872         /* suppress unused warning since var is needed */
2873         (void)r;
2874         (void)args;
2875
2876         DNPRINTF(SWM_D_MISC, "restart: %s\n", start_argv[0]);
2877
2878         shutdown_cleanup();
2879
2880         execvp(start_argv[0], start_argv);
2881         warn("execvp failed");
2882         quit(NULL, NULL);
2883 }
2884
2885 struct ws_win *
2886 get_pointer_win(xcb_window_t root)
2887 {
2888         struct ws_win                   *win = NULL;
2889         xcb_query_pointer_reply_t       *r;
2890
2891         DNPRINTF(SWM_D_EVENT, "get_pointer_win: root: 0x%x.\n", root);
2892
2893         r = xcb_query_pointer_reply(conn, xcb_query_pointer(conn, root), NULL);
2894         if (r) {
2895                 win = find_window(r->child);
2896                 if (win) {
2897                         DNPRINTF(SWM_D_EVENT, "get_pointer_win: 0x%x.\n",
2898                             win->id);
2899                 } else {
2900                         DNPRINTF(SWM_D_EVENT, "get_pointer_win: none.\n");
2901                 }
2902                 free(r);
2903         }
2904
2905         return win;
2906 }
2907
2908 struct swm_region *
2909 root_to_region(xcb_window_t root, int check)
2910 {
2911         struct ws_win                   *cfw;
2912         struct swm_region               *r = NULL;
2913         int                             i, num_screens;
2914         xcb_query_pointer_reply_t       *qpr;
2915         xcb_get_input_focus_reply_t     *gifr;
2916
2917         DNPRINTF(SWM_D_MISC, "root_to_region: window: 0x%x\n", root);
2918
2919         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2920         for (i = 0; i < num_screens; i++)
2921                 if (screens[i].root == root)
2922                         break;
2923
2924         if (check & SWM_CK_REGION)
2925                 r = screens[i].r_focus;
2926
2927         if (r == NULL && check & SWM_CK_FOCUS) {
2928                 /* Try to find an actively focused window */
2929                 gifr = xcb_get_input_focus_reply(conn,
2930                     xcb_get_input_focus(conn), NULL);
2931                 if (gifr) {
2932                         cfw = find_window(gifr->focus);
2933                         if (cfw && cfw->ws->r)
2934                                 r = cfw->ws->r;
2935
2936                         free(gifr);
2937                 }
2938         }
2939
2940         if (r == NULL && check & SWM_CK_POINTER) {
2941                 /* No region with an active focus; try to use pointer. */
2942                 qpr = xcb_query_pointer_reply(conn, xcb_query_pointer(conn,
2943                     screens[i].root), NULL);
2944
2945                 if (qpr) {
2946                         DNPRINTF(SWM_D_MISC, "root_to_region: pointer: "
2947                             "(%d,%d)\n", qpr->root_x, qpr->root_y);
2948                         TAILQ_FOREACH(r, &screens[i].rl, entry)
2949                                 if (X(r) <= qpr->root_x &&
2950                                     qpr->root_x < MAX_X(r) &&
2951                                     Y(r) <= qpr->root_y &&
2952                                     qpr->root_y < MAX_Y(r))
2953                                         break;
2954                         free(qpr);
2955                 }
2956         }
2957
2958         /* Last resort. */
2959         if (r == NULL && check & SWM_CK_FALLBACK)
2960                 r = TAILQ_FIRST(&screens[i].rl);
2961
2962         return (r);
2963 }
2964
2965 struct ws_win *
2966 find_unmanaged_window(xcb_window_t id)
2967 {
2968         struct ws_win           *win;
2969         int                     i, j, num_screens;
2970
2971         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2972         for (i = 0; i < num_screens; i++)
2973                 for (j = 0; j < workspace_limit; j++)
2974                         TAILQ_FOREACH(win, &screens[i].ws[j].unmanagedlist,
2975                             entry)
2976                                 if (id == win->id)
2977                                         return (win);
2978         return (NULL);
2979 }
2980
2981 struct ws_win *
2982 find_window(xcb_window_t id)
2983 {
2984         struct ws_win           *win;
2985         int                     i, j, num_screens;
2986         xcb_query_tree_reply_t  *r;
2987
2988         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2989         for (i = 0; i < num_screens; i++)
2990                 for (j = 0; j < workspace_limit; j++)
2991                         TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
2992                                 if (id == win->id)
2993                                         return (win);
2994
2995         r = xcb_query_tree_reply(conn, xcb_query_tree(conn, id), NULL);
2996         if (!r)
2997                 return (NULL);
2998
2999         /* if we were looking for the parent return that window instead */
3000         if (r->parent == 0 || r->root == r->parent) {
3001                 free(r);
3002                 return (NULL);
3003         }
3004
3005         /* look for parent */
3006         for (i = 0; i < num_screens; i++)
3007                 for (j = 0; j < workspace_limit; j++)
3008                         TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
3009                                 if (r->parent == win->id) {
3010                                         free(r);
3011                                         return (win);
3012                                 }
3013
3014         free(r);
3015         return (NULL);
3016 }
3017
3018 void
3019 spawn(int ws_idx, union arg *args, int close_fd)
3020 {
3021         int                     fd;
3022         char                    *ret = NULL;
3023
3024         DNPRINTF(SWM_D_MISC, "spawn: %s\n", args->argv[0]);
3025
3026         close(xcb_get_file_descriptor(conn));
3027
3028         setenv("LD_PRELOAD", SWM_LIB, 1);
3029
3030         if (asprintf(&ret, "%d", ws_idx) == -1) {
3031                 warn("spawn: asprintf SWM_WS");
3032                 _exit(1);
3033         }
3034         setenv("_SWM_WS", ret, 1);
3035         free(ret);
3036         ret = NULL;
3037
3038         if (asprintf(&ret, "%d", getpid()) == -1) {
3039                 warn("spawn: asprintf _SWM_PID");
3040                 _exit(1);
3041         }
3042         setenv("_SWM_PID", ret, 1);
3043         free(ret);
3044         ret = NULL;
3045
3046         if (setsid() == -1) {
3047                 warn("spawn: setsid");
3048                 _exit(1);
3049         }
3050
3051         if (close_fd) {
3052                 /*
3053                  * close stdin and stdout to prevent interaction between apps
3054                  * and the baraction script
3055                  * leave stderr open to record errors
3056                 */
3057                 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) == -1) {
3058                         warn("spawn: open");
3059                         _exit(1);
3060                 }
3061                 dup2(fd, STDIN_FILENO);
3062                 dup2(fd, STDOUT_FILENO);
3063                 if (fd > 2)
3064                         close(fd);
3065         }
3066
3067         execvp(args->argv[0], args->argv);
3068
3069         warn("spawn: execvp");
3070         _exit(1);
3071 }
3072
3073 void
3074 kill_refs(struct ws_win *win)
3075 {
3076         int                     i, x, num_screens;
3077         struct swm_region       *r;
3078         struct workspace        *ws;
3079
3080         if (win == NULL)
3081                 return;
3082
3083         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
3084         for (i = 0; i < num_screens; i++)
3085                 TAILQ_FOREACH(r, &screens[i].rl, entry)
3086                         for (x = 0; x < workspace_limit; x++) {
3087                                 ws = &r->s->ws[x];
3088                                 if (win == ws->focus)
3089                                         ws->focus = NULL;
3090                                 if (win == ws->focus_prev)
3091                                         ws->focus_prev = NULL;
3092                         }
3093 }
3094
3095 int
3096 validate_win(struct ws_win *testwin)
3097 {
3098         struct ws_win           *win;
3099         struct workspace        *ws;
3100         struct swm_region       *r;
3101         int                     i, x, num_screens;
3102
3103         if (testwin == NULL)
3104                 return (0);
3105
3106         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
3107         for (i = 0; i < num_screens; i++)
3108                 TAILQ_FOREACH(r, &screens[i].rl, entry)
3109                         for (x = 0; x < workspace_limit; x++) {
3110                                 ws = &r->s->ws[x];
3111                                 TAILQ_FOREACH(win, &ws->winlist, entry)
3112                                         if (win == testwin)
3113                                                 return (0);
3114                         }
3115         return (1);
3116 }
3117
3118 int
3119 validate_ws(struct workspace *testws)
3120 {
3121         struct swm_region       *r;
3122         struct workspace        *ws;
3123         int                     i, x, num_screens;
3124
3125         /* validate all ws */
3126         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
3127         for (i = 0; i < num_screens; i++)
3128                 TAILQ_FOREACH(r, &screens[i].rl, entry)
3129                         for (x = 0; x < workspace_limit; x++) {
3130                                 ws = &r->s->ws[x];
3131                                 if (ws == testws)
3132                                         return (0);
3133                         }
3134         return (1);
3135 }
3136
3137 void
3138 unfocus_win(struct ws_win *win)
3139 {
3140         xcb_window_t            none = XCB_WINDOW_NONE;
3141
3142         DNPRINTF(SWM_D_FOCUS, "unfocus_win: window: 0x%x\n", WINID(win));
3143
3144         if (win == NULL)
3145                 return;
3146         if (win->ws == NULL) {
3147                 DNPRINTF(SWM_D_FOCUS, "unfocus_win: NULL ws.\n");
3148                 return;
3149         }
3150
3151         if (validate_ws(win->ws)) {
3152                 DNPRINTF(SWM_D_FOCUS, "unfocus_win: invalid ws.\n");
3153                 return;
3154         }
3155
3156         if (win->ws->r == NULL) {
3157                 DNPRINTF(SWM_D_FOCUS, "unfocus_win: NULL region.\n");
3158                 return;
3159         }
3160
3161         if (validate_win(win)) {
3162                 DNPRINTF(SWM_D_FOCUS, "unfocus_win: invalid win.\n");
3163                 kill_refs(win);
3164                 return;
3165         }
3166
3167         if (win->ws->focus == win) {
3168                 win->ws->focus = NULL;
3169                 win->ws->focus_prev = win;
3170         }
3171
3172         if (validate_win(win->ws->focus)) {
3173                 kill_refs(win->ws->focus);
3174                 win->ws->focus = NULL;
3175         }
3176
3177         if (validate_win(win->ws->focus_prev)) {
3178                 kill_refs(win->ws->focus_prev);
3179                 win->ws->focus_prev = NULL;
3180         }
3181
3182         xcb_change_window_attributes(conn, win->id, XCB_CW_BORDER_PIXEL,
3183             &win->ws->r->s->c[SWM_S_COLOR_UNFOCUS].pixel);
3184
3185         xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->s->root,
3186             ewmh[_NET_ACTIVE_WINDOW].atom, XCB_ATOM_WINDOW, 32, 1, &none);
3187
3188         DNPRINTF(SWM_D_FOCUS, "unfocus_win: done.\n");
3189 }
3190
3191 void
3192 focus_win(struct ws_win *win)
3193 {
3194         struct ws_win                   *cfw = NULL, *parent = NULL, *w;
3195         struct workspace                *ws;
3196         xcb_get_input_focus_reply_t     *r;
3197
3198         DNPRINTF(SWM_D_FOCUS, "focus_win: window: 0x%x\n", WINID(win));
3199
3200         if (win == NULL)
3201                 goto out;
3202
3203         if (win->ws == NULL)
3204                 goto out;
3205
3206         if (!win->mapped)
3207                 goto out;
3208
3209         ws = win->ws;
3210
3211         if (validate_ws(ws))
3212                 goto out;
3213
3214         if (validate_win(win)) {
3215                 kill_refs(win);
3216                 goto out;
3217         }
3218
3219         r = xcb_get_input_focus_reply(conn, xcb_get_input_focus(conn), NULL);
3220         if (r) {
3221                 cfw = find_window(r->focus);
3222                 if (cfw != win)
3223                         unfocus_win(cfw);
3224                 free(r);
3225         }
3226
3227         if (ws->focus != win) {
3228                 if (ws->focus && ws->focus != cfw)
3229                         unfocus_win(ws->focus);
3230                 ws->focus = win;
3231         }
3232
3233         /* If this window directs focus to a child window, then clear. */
3234         if (win->focus_child)
3235                 win->focus_child = NULL;
3236
3237         /* If transient, adjust parent's focus child for focus_magic. */
3238         if (win->transient) {
3239                 parent = find_window(win->transient);
3240                 if (parent && parent->focus_child != win)
3241                         parent->focus_child = win;
3242         }
3243
3244         if (cfw != win && ws->r != NULL) {
3245                 /* Set input focus if no input hint, or indicated by hint. */
3246                 if (!(win->hints.flags & XCB_ICCCM_WM_HINT_INPUT) ||
3247                     (win->hints.flags & XCB_ICCCM_WM_HINT_INPUT &&
3248                      win->hints.input))
3249                         xcb_set_input_focus(conn, XCB_INPUT_FOCUS_PARENT,
3250                                         win->id, last_event_time);
3251
3252                 /* Tell app it can adjust focus to a specific window. */
3253                 if (win->take_focus) {
3254                         /* java is special; always tell parent */
3255                         if (win->transient && win->java)
3256                                 client_msg(parent, a_takefocus,
3257                                     last_event_time);
3258                         else
3259                                 client_msg(win, a_takefocus, last_event_time);
3260                 }
3261
3262                 xcb_change_window_attributes(conn, win->id, XCB_CW_BORDER_PIXEL,
3263                     &ws->r->s->c[SWM_S_COLOR_FOCUS].pixel);
3264
3265                 if (ws->cur_layout->flags & SWM_L_MAPONFOCUS ||
3266                     ws->always_raise) {
3267                         /* If a parent exists, map it first. */
3268                         if (parent) {
3269                                 map_window(parent);
3270
3271                                 /* Map siblings next. */
3272                                 TAILQ_FOREACH(w, &ws->winlist, entry)
3273                                         if (w != win && !w->iconic &&
3274                                             w->transient == parent->id)
3275                                                 map_window(w);
3276                         }
3277
3278                         /* Map focused window. */
3279                         map_window(win);
3280
3281                         /* Finally, map children of focus window. */
3282                         TAILQ_FOREACH(w, &ws->winlist, entry)
3283                                 if (w->transient == win->id && !w->iconic)
3284                                         map_window(w);
3285                 }
3286
3287                 set_region(ws->r);
3288
3289                 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->s->root,
3290                     ewmh[_NET_ACTIVE_WINDOW].atom, XCB_ATOM_WINDOW, 32, 1,
3291                     &win->id);
3292         }
3293
3294 out:
3295         bar_draw();
3296
3297         DNPRINTF(SWM_D_FOCUS, "focus_win: done.\n");
3298 }
3299
3300 /* If a child window should have focus instead, return it. */
3301 struct ws_win *
3302 get_focus_magic(struct ws_win *win)
3303 {
3304         struct ws_win   *parent = NULL;
3305         struct ws_win   *child = NULL;
3306
3307         DNPRINTF(SWM_D_FOCUS, "get_focus_magic: window: 0x%x\n", WINID(win));
3308         if (win == NULL)
3309                 return win;
3310
3311         if (win->transient) {
3312                 parent = find_window(win->transient);
3313
3314                 /* If parent prefers focus elsewhere, then try to do so. */
3315                 if (parent && (child = parent->focus_child)) {
3316                         if (validate_win(child) == 0 && child->mapped)
3317                                 win = child;
3318                         else
3319                                 parent->focus_child = NULL;
3320                 }
3321         }
3322
3323         /* If this window prefers focus elsewhere, then try to do so. */
3324         if ((child = win->focus_child)) {
3325                 if (validate_win(child) == 0 && child->mapped)
3326                         win = child;
3327                 else
3328                         win->focus_child = NULL;
3329         }
3330
3331         return win;
3332 }
3333
3334 void
3335 event_drain(uint8_t rt)
3336 {
3337         xcb_generic_event_t     *evt;
3338
3339         /* ensure all pending requests have been processed before filtering. */
3340         xcb_aux_sync(conn);
3341         while ((evt = xcb_poll_for_event(conn))) {
3342                 if (XCB_EVENT_RESPONSE_TYPE(evt) != rt)
3343                         event_handle(evt);
3344
3345                 free(evt);
3346         }
3347 }
3348
3349 void
3350 set_region(struct swm_region *r)
3351 {
3352         struct swm_region       *rf;
3353
3354         if (r == NULL)
3355                 return;
3356
3357         rf = r->s->r_focus;
3358         /* Unfocus old region bar. */
3359         if (rf) {
3360                 if (rf == r)
3361                         return;
3362
3363                 xcb_change_window_attributes(conn, rf->bar->id,
3364                     XCB_CW_BORDER_PIXEL,
3365                     &r->s->c[SWM_S_COLOR_BAR_BORDER_UNFOCUS].pixel);
3366         }
3367
3368         /* Set region bar border to focus_color. */
3369         xcb_change_window_attributes(conn, r->bar->id,
3370             XCB_CW_BORDER_PIXEL, &r->s->c[SWM_S_COLOR_BAR_BORDER].pixel);
3371
3372         r->s->r_focus = r;
3373 }
3374
3375 void
3376 focus_region(struct swm_region *r)
3377 {
3378         struct ws_win           *nfw;
3379         struct swm_region       *old_r;
3380
3381         if (r == NULL)
3382                 return;
3383
3384         old_r = r->s->r_focus;
3385         set_region(r);
3386
3387         nfw = get_region_focus(r);
3388         if (nfw) {
3389                 focus_win(nfw);
3390         } else {
3391                 /* New region is empty; need to manually unfocus win. */
3392                 if (old_r)
3393                         unfocus_win(old_r->ws->focus);
3394
3395                 xcb_set_input_focus(conn, XCB_INPUT_FOCUS_PARENT, r->s->root,
3396                     XCB_CURRENT_TIME);
3397
3398                 /* Clear bar since empty. */
3399                 bar_draw();
3400         }
3401 }
3402
3403 void
3404 switchws(struct swm_region *r, union arg *args)
3405 {
3406         int                     wsid = args->id, unmap_old = 0;
3407         struct swm_region       *this_r, *other_r;
3408         struct ws_win           *win;
3409         struct workspace        *new_ws, *old_ws;
3410
3411         if (!(r && r->s))
3412                 return;
3413
3414         if (wsid >= workspace_limit)
3415                 return;
3416
3417         this_r = r;
3418         old_ws = this_r->ws;
3419         new_ws = &this_r->s->ws[wsid];
3420
3421         DNPRINTF(SWM_D_WS, "switchws: screen[%d]:%dx%d+%d+%d: %d -> %d\n",
3422             r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), old_ws->idx, wsid);
3423
3424         if (new_ws == NULL || old_ws == NULL)
3425                 return;
3426         if (new_ws == old_ws)
3427                 return;
3428
3429         unfocus_win(old_ws->focus);
3430
3431         other_r = new_ws->r;
3432         if (other_r == NULL) {
3433                 /* the other workspace is hidden, hide this one */
3434                 old_ws->r = NULL;
3435                 unmap_old = 1;
3436         } else {
3437                 /* the other ws is visible in another region, exchange them */
3438                 other_r->ws_prior = new_ws;
3439                 other_r->ws = old_ws;
3440                 old_ws->r = other_r;
3441         }
3442         this_r->ws_prior = old_ws;
3443         this_r->ws = new_ws;
3444         new_ws->r = this_r;
3445
3446         /* Set focus_pending before stacking. */
3447         if (focus_mode != SWM_FOCUS_FOLLOW)
3448                 new_ws->focus_pending = get_region_focus(new_ws->r);
3449
3450         stack();
3451
3452         /* unmap old windows */
3453         if (unmap_old)
3454                 TAILQ_FOREACH(win, &old_ws->winlist, entry)
3455                         unmap_window(win);
3456
3457         /* if workspaces were swapped, then don't wait to set focus */
3458         if (old_ws->r && focus_mode != SWM_FOCUS_FOLLOW) {
3459                 if (new_ws->focus_pending) {
3460                         focus_win(new_ws->focus_pending);
3461                 } else {
3462                         /* Empty region, focus on root. */
3463                         xcb_set_input_focus(conn, XCB_INPUT_FOCUS_PARENT,
3464                             new_ws->r->s[new_ws->r->s->idx].root,
3465                             XCB_CURRENT_TIME);
3466                 }
3467         }
3468
3469         /* Clear bar if new ws is empty. */
3470         if (new_ws->focus_pending == NULL)
3471                 bar_draw();
3472
3473         focus_flush();
3474
3475         DNPRINTF(SWM_D_WS, "switchws: done.\n");
3476 }
3477
3478 void
3479 cyclews(struct swm_region *r, union arg *args)
3480 {
3481         union                   arg a;
3482         struct swm_screen       *s = r->s;
3483         int                     cycle_all = 0;
3484
3485         DNPRINTF(SWM_D_WS, "cyclews: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
3486             args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
3487
3488         a.id = r->ws->idx;
3489         do {
3490                 switch (args->id) {
3491                 case SWM_ARG_ID_CYCLEWS_UP_ALL:
3492                         cycle_all = 1;
3493                         /* FALLTHROUGH */
3494                 case SWM_ARG_ID_CYCLEWS_UP:
3495                         if (a.id < workspace_limit - 1)
3496                                 a.id++;
3497                         else
3498                                 a.id = 0;
3499                         break;
3500                 case SWM_ARG_ID_CYCLEWS_DOWN_ALL:
3501                         cycle_all = 1;
3502                         /* FALLTHROUGH */
3503                 case SWM_ARG_ID_CYCLEWS_DOWN:
3504                         if (a.id > 0)
3505                                 a.id--;
3506                         else
3507                                 a.id = workspace_limit - 1;
3508                         break;
3509                 default:
3510                         return;
3511                 };
3512
3513                 if (!cycle_all &&
3514                     (!cycle_empty && TAILQ_EMPTY(&s->ws[a.id].winlist)))
3515                         continue;
3516                 if (!cycle_visible && s->ws[a.id].r != NULL)
3517                         continue;
3518
3519                 switchws(r, &a);
3520         } while (a.id != r->ws->idx);
3521 }
3522
3523 void
3524 priorws(struct swm_region *r, union arg *args)
3525 {
3526         union arg               a;
3527
3528         (void)args;
3529
3530         DNPRINTF(SWM_D_WS, "priorws: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
3531             args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
3532
3533         if (r->ws_prior == NULL)
3534                 return;
3535
3536         a.id = r->ws_prior->idx;
3537         switchws(r, &a);
3538 }
3539
3540 void
3541 focusrg(struct swm_region *r, union arg *args)
3542 {
3543         int                     ridx = args->id, i, num_screens;
3544         struct swm_region       *rr = NULL;
3545
3546         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
3547         /* do nothing if we don't have more than one screen */
3548         if (!(num_screens > 1 || outputs > 1))
3549                 return;
3550
3551         DNPRINTF(SWM_D_FOCUS, "focusrg: id: %d\n", ridx);
3552
3553         rr = TAILQ_FIRST(&r->s->rl);
3554         for (i = 0; i < ridx; ++i)
3555                 rr = TAILQ_NEXT(rr, entry);
3556
3557         if (rr == NULL)
3558                 return;
3559
3560         focus_region(rr);
3561         focus_flush();
3562 }
3563
3564 void
3565 cyclerg(struct swm_region *r, union arg *args)
3566 {
3567         struct swm_region       *rr = NULL;
3568         int                     i, num_screens;
3569
3570         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
3571         /* do nothing if we don't have more than one screen */
3572         if (!(num_screens > 1 || outputs > 1))
3573                 return;
3574
3575         i = r->s->idx;
3576         switch (args->id) {
3577         case SWM_ARG_ID_CYCLERG_UP:
3578                 rr = TAILQ_NEXT(r, entry);
3579                 if (rr == NULL)
3580                         rr = TAILQ_FIRST(&screens[i].rl);
3581                 break;
3582         case SWM_ARG_ID_CYCLERG_DOWN:
3583                 rr = TAILQ_PREV(r, swm_region_list, entry);
3584                 if (rr == NULL)
3585                         rr = TAILQ_LAST(&screens[i].rl, swm_region_list);
3586                 break;
3587         default:
3588                 return;
3589         };
3590         if (rr == NULL)
3591                 return;
3592
3593         focus_region(rr);
3594         focus_flush();
3595 }
3596
3597 void
3598 sort_windows(struct ws_win_list *wl)
3599 {
3600         struct ws_win           *win, *parent, *nxt;
3601
3602         if (wl == NULL)
3603                 return;
3604
3605         for (win = TAILQ_FIRST(wl); win != TAILQ_END(wl); win = nxt) {
3606                 nxt = TAILQ_NEXT(win, entry);
3607                 if (win->transient) {
3608                         parent = find_window(win->transient);
3609                         if (parent == NULL) {
3610                                 warnx("not possible bug");
3611                                 continue;
3612                         }
3613                         TAILQ_REMOVE(wl, win, entry);
3614                         TAILQ_INSERT_AFTER(wl, parent, win, entry);
3615                 }
3616         }
3617
3618 }
3619
3620 void
3621 swapwin(struct swm_region *r, union arg *args)
3622 {
3623         struct ws_win           *target, *source;
3624         struct ws_win           *cur_focus;
3625         struct ws_win_list      *wl;
3626
3627         DNPRINTF(SWM_D_WS, "swapwin: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
3628             args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
3629
3630         cur_focus = r->ws->focus;
3631         if (cur_focus == NULL)
3632                 return;
3633
3634         source = cur_focus;
3635         wl = &source->ws->winlist;
3636
3637         switch (args->id) {
3638         case SWM_ARG_ID_SWAPPREV:
3639                 if (source->transient)
3640                         source = find_window(source->transient);
3641                 target = TAILQ_PREV(source, ws_win_list, entry);
3642                 if (target && target->transient)
3643                         target = find_window(target->transient);
3644                 TAILQ_REMOVE(wl, source, entry);
3645                 if (target == NULL)
3646                         TAILQ_INSERT_TAIL(wl, source, entry);
3647                 else
3648                         TAILQ_INSERT_BEFORE(target, source, entry);
3649                 break;
3650         case SWM_ARG_ID_SWAPNEXT:
3651                 target = TAILQ_NEXT(source, entry);
3652                 /* move the parent and let the sort handle the move */
3653                 if (source->transient)
3654                         source = find_window(source->transient);
3655                 TAILQ_REMOVE(wl, source, entry);
3656                 if (target == NULL)
3657                         TAILQ_INSERT_HEAD(wl, source, entry);
3658                 else
3659                         TAILQ_INSERT_AFTER(wl, target, source, entry);
3660                 break;
3661         case SWM_ARG_ID_SWAPMAIN:
3662                 target = TAILQ_FIRST(wl);
3663                 if (target == source) {
3664                         if (source->ws->focus_prev != NULL &&
3665                             source->ws->focus_prev != target)
3666                                 source = source->ws->focus_prev;
3667                         else
3668                                 return;
3669                 }
3670                 if (target == NULL || source == NULL)
3671                         return;
3672                 source->ws->focus_prev = target;
3673                 TAILQ_REMOVE(wl, target, entry);
3674                 TAILQ_INSERT_BEFORE(source, target, entry);
3675                 TAILQ_REMOVE(wl, source, entry);
3676                 TAILQ_INSERT_HEAD(wl, source, entry);
3677                 break;
3678         case SWM_ARG_ID_MOVELAST:
3679                 TAILQ_REMOVE(wl, source, entry);
3680                 TAILQ_INSERT_TAIL(wl, source, entry);
3681                 break;
3682         default:
3683                 DNPRINTF(SWM_D_MOVE, "swapwin: invalid id: %d\n", args->id);
3684                 return;
3685         }
3686
3687         sort_windows(wl);
3688
3689         stack();
3690
3691         focus_flush();
3692 }
3693
3694 struct ws_win *
3695 get_focus_prev(struct ws_win *win)
3696 {
3697         struct ws_win           *winfocus = NULL;
3698         struct ws_win           *cur_focus = NULL;
3699         struct ws_win_list      *wl = NULL;
3700         struct workspace        *ws = NULL;
3701
3702         if (!(win && win->ws))
3703                 return NULL;
3704
3705         ws = win->ws;
3706         wl = &ws->winlist;
3707         cur_focus = ws->focus;
3708
3709         DNPRINTF(SWM_D_FOCUS, "get_focus_prev: window: 0x%x, cur_focus: 0x%x\n",
3710             WINID(win), WINID(cur_focus));
3711
3712         /* pickle, just focus on whatever */
3713         if (cur_focus == NULL) {
3714                 /* use prev_focus if valid */
3715                 if (ws->focus_prev && ws->focus_prev != cur_focus &&
3716                     find_window(WINID(ws->focus_prev)))
3717                         winfocus = ws->focus_prev;
3718                 goto done;
3719         }
3720
3721         /* if transient focus on parent */
3722         if (cur_focus->transient) {
3723                 winfocus = find_window(cur_focus->transient);
3724                 goto done;
3725         }
3726
3727         /* if in max_stack try harder */
3728         if ((win->quirks & SWM_Q_FOCUSPREV) ||
3729             (ws->cur_layout->flags & SWM_L_FOCUSPREV)) {
3730                 if (cur_focus != ws->focus_prev)
3731                         winfocus = ws->focus_prev;
3732                 else
3733                         winfocus = TAILQ_PREV(win, ws_win_list, entry);
3734                 if (winfocus)
3735                         goto done;
3736         }
3737
3738         DNPRINTF(SWM_D_FOCUS, "get_focus_prev: focus_close: %d\n", focus_close);
3739
3740         if (winfocus == NULL || winfocus == win) {
3741                 switch (focus_close) {
3742                 case SWM_STACK_BOTTOM:
3743                         TAILQ_FOREACH(winfocus, wl, entry)
3744                                 if (!winfocus->iconic && winfocus != cur_focus)
3745                                         break;
3746                         break;
3747                 case SWM_STACK_TOP:
3748                         TAILQ_FOREACH_REVERSE(winfocus, wl, ws_win_list, entry)
3749                                 if (!winfocus->iconic && winfocus != cur_focus)
3750                                         break;
3751                         break;
3752                 case SWM_STACK_ABOVE:
3753                         winfocus = TAILQ_NEXT(cur_focus, entry);
3754                         while (winfocus && winfocus->iconic)
3755                                 winfocus = TAILQ_NEXT(winfocus, entry);
3756
3757                         if (winfocus == NULL) {
3758                                 if (focus_close_wrap) {
3759                                         TAILQ_FOREACH(winfocus, wl, entry)
3760                                                 if (!winfocus->iconic &&
3761                                                     winfocus != cur_focus)
3762                                                         break;
3763                                 } else {
3764                                         TAILQ_FOREACH_REVERSE(winfocus, wl,
3765                                             ws_win_list, entry)
3766                                                 if (!winfocus->iconic &&
3767                                                     winfocus != cur_focus)
3768                                                         break;
3769                                 }
3770                         }
3771                         break;
3772                 case SWM_STACK_BELOW:
3773                         winfocus = TAILQ_PREV(cur_focus, ws_win_list, entry);
3774                         while (winfocus && winfocus->iconic)
3775                                 winfocus = TAILQ_PREV(winfocus, ws_win_list,
3776                                     entry);
3777
3778                         if (winfocus == NULL) {
3779                                 if (focus_close_wrap) {
3780                                         TAILQ_FOREACH_REVERSE(winfocus, wl,
3781                                             ws_win_list, entry)
3782                                                 if (!winfocus->iconic &&
3783                                                     winfocus != cur_focus)
3784                                                         break;
3785                                 } else {
3786                                         TAILQ_FOREACH(winfocus, wl, entry)
3787                                                 if (!winfocus->iconic &&
3788                                                     winfocus != cur_focus)
3789                                                         break;
3790                                 }
3791                         }
3792                         break;
3793                 }
3794         }
3795 done:
3796         if (winfocus == NULL ||
3797             (winfocus && (winfocus->iconic || winfocus == cur_focus))) {
3798                 if (focus_default == SWM_STACK_TOP) {
3799                         TAILQ_FOREACH_REVERSE(winfocus, wl, ws_win_list, entry)
3800                                 if (!winfocus->iconic && winfocus != cur_focus)
3801                                         break;
3802                 } else {
3803                         TAILQ_FOREACH(winfocus, wl, entry)
3804                                 if (!winfocus->iconic && winfocus != cur_focus)
3805                                         break;
3806                 }
3807         }
3808
3809         kill_refs(win);
3810
3811         return get_focus_magic(winfocus);
3812 }
3813
3814 struct ws_win *
3815 get_region_focus(struct swm_region *r)
3816 {
3817         struct ws_win           *winfocus = NULL;
3818
3819         if (!(r && r->ws))
3820                 return NULL;
3821
3822         if (r->ws->focus && !r->ws->focus->iconic)
3823                 winfocus = r->ws->focus;
3824         else if (r->ws->focus_prev && !r->ws->focus_prev->iconic)
3825                 winfocus = r->ws->focus_prev;
3826         else
3827                 TAILQ_FOREACH(winfocus, &r->ws->winlist, entry)
3828                         if (!winfocus->iconic)
3829                                 break;
3830
3831         return get_focus_magic(winfocus);
3832 }
3833
3834 void
3835 focus(struct swm_region *r, union arg *args)
3836 {
3837         struct ws_win           *head, *cur_focus = NULL, *winfocus = NULL;
3838         struct ws_win_list      *wl = NULL;
3839         struct workspace        *ws = NULL;
3840         int                     all_iconics;
3841
3842         if (!(r && r->ws))
3843                 return;
3844
3845         DNPRINTF(SWM_D_FOCUS, "focus: id: %d\n", args->id);
3846
3847         if ((cur_focus = r->ws->focus) == NULL)
3848                 return;
3849         ws = r->ws;
3850         wl = &ws->winlist;
3851         if (TAILQ_EMPTY(wl))
3852                 return;
3853         /* make sure there is at least one uniconified window */
3854         all_iconics = 1;
3855         TAILQ_FOREACH(winfocus, wl, entry)
3856                 if (!winfocus->iconic) {
3857                         all_iconics = 0;
3858                         break;
3859                 }
3860         if (all_iconics)
3861                 return;
3862
3863         switch (args->id) {
3864         case SWM_ARG_ID_FOCUSPREV:
3865                 head = TAILQ_PREV(cur_focus, ws_win_list, entry);
3866                 if (head == NULL)
3867                         head = TAILQ_LAST(wl, ws_win_list);
3868                 winfocus = head;
3869                 if (WINID(winfocus) == cur_focus->transient) {
3870                         head = TAILQ_PREV(winfocus, ws_win_list, entry);
3871                         if (head == NULL)
3872                                 head = TAILQ_LAST(wl, ws_win_list);
3873                         winfocus = head;
3874                 }
3875
3876                 /* skip iconics */
3877                 if (winfocus && winfocus->iconic) {
3878                         while (winfocus != cur_focus) {
3879                                 if (winfocus == NULL)
3880                                         winfocus = TAILQ_LAST(wl, ws_win_list);
3881                                 if (!winfocus->iconic)
3882                                         break;
3883                                 winfocus = TAILQ_PREV(winfocus, ws_win_list,
3884                                     entry);
3885                         }
3886                 }
3887                 break;
3888
3889         case SWM_ARG_ID_FOCUSNEXT:
3890                 head = TAILQ_NEXT(cur_focus, entry);
3891                 if (head == NULL)
3892                         head = TAILQ_FIRST(wl);
3893                 winfocus = head;
3894
3895                 /* skip iconics */
3896                 if (winfocus && winfocus->iconic) {
3897                         while (winfocus != cur_focus) {
3898                                 if (winfocus == NULL)
3899                                         winfocus = TAILQ_FIRST(wl);
3900                                 if (!winfocus->iconic)
3901                                         break;
3902                                 winfocus = TAILQ_NEXT(winfocus, entry);
3903                         }
3904                 }
3905                 break;
3906
3907         case SWM_ARG_ID_FOCUSMAIN:
3908                 winfocus = TAILQ_FIRST(wl);
3909                 if (winfocus == cur_focus)
3910                         winfocus = cur_focus->ws->focus_prev;
3911                 break;
3912
3913         default:
3914                 return;
3915         }
3916
3917         focus_win(get_focus_magic(winfocus));
3918
3919         focus_flush();
3920 }
3921
3922 void
3923 cycle_layout(struct swm_region *r, union arg *args)
3924 {
3925         struct workspace        *ws = r->ws;
3926
3927         /* suppress unused warning since var is needed */
3928         (void)args;
3929
3930         DNPRINTF(SWM_D_EVENT, "cycle_layout: workspace: %d\n", ws->idx);
3931
3932         ws->cur_layout++;
3933         if (ws->cur_layout->l_stack == NULL)
3934                 ws->cur_layout = &layouts[0];
3935
3936         stack();
3937         bar_draw();
3938
3939         focus_win(get_region_focus(r));
3940
3941         focus_flush();
3942 }
3943
3944 void
3945 stack_config(struct swm_region *r, union arg *args)
3946 {
3947         struct workspace        *ws = r->ws;
3948
3949         DNPRINTF(SWM_D_STACK, "stack_config: id: %d workspace: %d\n",
3950             args->id, ws->idx);
3951
3952         if (ws->cur_layout->l_config != NULL)
3953                 ws->cur_layout->l_config(ws, args->id);
3954
3955         if (args->id != SWM_ARG_ID_STACKINIT)
3956                 stack();
3957         bar_draw();
3958
3959         focus_flush();
3960 }
3961
3962 void
3963 stack(void) {
3964         struct swm_geometry     g;
3965         struct swm_region       *r;
3966         int                     i, num_screens;
3967 #ifdef SWM_DEBUG
3968         int j;
3969 #endif
3970
3971         DNPRINTF(SWM_D_STACK, "stack: begin\n");
3972
3973         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
3974         for (i = 0; i < num_screens; i++) {
3975 #ifdef SWM_DEBUG
3976                 j = 0;
3977 #endif
3978                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
3979                         DNPRINTF(SWM_D_STACK, "stack: workspace: %d "
3980                             "(screen: %d, region: %d)\n", r->ws->idx, i, j++);
3981
3982                         /* Adjust stack area for region bar and padding. */
3983                         g = r->g;
3984                         g.x += region_padding;
3985                         g.y += region_padding;
3986                         g.w -= 2 * border_width + 2 * region_padding;
3987                         g.h -= 2 * border_width + 2 * region_padding;
3988                         if (bar_enabled && r->ws->bar_enabled) {
3989                                 if (!bar_at_bottom)
3990                                         g.y += bar_height;
3991                                 g.h -= bar_height;
3992                         }
3993                         r->ws->cur_layout->l_stack(r->ws, &g);
3994                         r->ws->cur_layout->l_string(r->ws);
3995                         /* save r so we can track region changes */
3996                         r->ws->old_r = r;
3997                 }
3998         }
3999         if (font_adjusted)
4000                 font_adjusted--;
4001
4002         DNPRINTF(SWM_D_STACK, "stack: end\n");
4003 }
4004
4005 void
4006 store_float_geom(struct ws_win *win, struct swm_region *r)
4007 {
4008         if (win == NULL || r == NULL)
4009                 return;
4010
4011         /* retain window geom and region geom */
4012         win->g_float = win->g;
4013         win->g_float.x -= X(r);
4014         win->g_float.y -= Y(r);
4015         win->g_floatvalid = 1;
4016         DNPRINTF(SWM_D_MISC, "store_float_geom: window: 0x%x, g: (%d,%d)"
4017             " %d x %d, g_float: (%d,%d) %d x %d\n", win->id, X(win), Y(win),
4018             WIDTH(win), HEIGHT(win), win->g_float.x, win->g_float.y,
4019             win->g_float.w, win->g_float.h);
4020 }
4021
4022 void
4023 load_float_geom(struct ws_win *win, struct swm_region *r)
4024 {
4025         if (win == NULL || r == NULL)
4026                 return;
4027
4028         if (win->g_floatvalid) {
4029                 win->g = win->g_float;
4030                 X(win) += X(r);
4031                 Y(win) += Y(r);
4032                 DNPRINTF(SWM_D_MISC, "load_float_geom: window: 0x%x, g: (%d,%d)"
4033                     "%d x %d\n", win->id, X(win), Y(win), WIDTH(win),
4034                     HEIGHT(win));
4035         } else {
4036                 DNPRINTF(SWM_D_MISC, "load_float_geom: window: 0x%x, g_float "
4037                     "is not set.\n", win->id);
4038         }
4039 }
4040
4041 void
4042 stack_floater(struct ws_win *win, struct swm_region *r)
4043 {
4044         if (win == NULL)
4045                 return;
4046
4047         DNPRINTF(SWM_D_MISC, "stack_floater: window: 0x%x\n", win->id);
4048
4049         /*
4050          * to allow windows to change their size (e.g. mplayer fs) only retrieve
4051          * geom on ws switches or return from max mode
4052          */
4053         if (win->floatmaxed || (r != r->ws->old_r &&
4054             !(win->ewmh_flags & EWMH_F_FULLSCREEN))) {
4055                 /* update geometry for the new region */
4056                 load_float_geom(win, r);
4057         }
4058
4059         win->floatmaxed = 0;
4060
4061         /*
4062          * if set to fullscreen mode, configure window to maximum size.
4063          */
4064         if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
4065                 if (!win->g_floatvalid)
4066                         store_float_geom(win, win->ws->r);
4067
4068                 win->g = r->g;
4069         }
4070
4071         /*
4072          * remove border on fullscreen floater when in fullscreen mode or when
4073          * the quirk is present.
4074          */
4075         if ((win->ewmh_flags & EWMH_F_FULLSCREEN) ||
4076             ((win->quirks & SWM_Q_FULLSCREEN) &&
4077              (WIDTH(win) >= WIDTH(r)) && (HEIGHT(win) >= HEIGHT(r)))) {
4078                 if (win->bordered) {
4079                         win->bordered = 0;
4080                         X(win) += border_width;
4081                         Y(win) += border_width;
4082                 }
4083         } else if (!win->bordered) {
4084                 win->bordered = 1;
4085                 X(win) -= border_width;
4086                 Y(win) -= border_width;
4087         }
4088
4089         if (win->transient && (win->quirks & SWM_Q_TRANSSZ)) {
4090                 WIDTH(win) = (double)WIDTH(r) * dialog_ratio;
4091                 HEIGHT(win) = (double)HEIGHT(r) * dialog_ratio;
4092         }
4093
4094         if (!win->manual && !(win->ewmh_flags & EWMH_F_FULLSCREEN) &&
4095             !(win->quirks & SWM_Q_ANYWHERE)) {
4096                 /*
4097                  * floaters and transients are auto-centred unless moved,
4098                  * resized or ANYWHERE quirk is set.
4099                  */
4100                 X(win) = X(r) + (WIDTH(r) - WIDTH(win)) /  2 - BORDER(win);
4101                 Y(win) = Y(r) + (HEIGHT(r) - HEIGHT(win)) / 2 - BORDER(win);
4102
4103                 store_float_geom(win, r);
4104         }
4105
4106         /* keep window within region bounds */
4107         constrain_window(win, r, 0);
4108
4109         update_window(win);
4110 }
4111
4112 /*
4113  * Send keystrokes to terminal to decrease/increase the font size as the
4114  * window size changes.
4115  */
4116 void
4117 adjust_font(struct ws_win *win)
4118 {
4119         if (!(win->quirks & SWM_Q_XTERM_FONTADJ) ||
4120             win->floating || win->transient)
4121                 return;
4122
4123         if (win->sh.width_inc && win->last_inc != win->sh.width_inc &&
4124             WIDTH(win) / win->sh.width_inc < term_width &&
4125             win->font_steps < SWM_MAX_FONT_STEPS) {
4126                 win->font_size_boundary[win->font_steps] =
4127                     (win->sh.width_inc * term_width) + win->sh.base_width;
4128                 win->font_steps++;
4129                 font_adjusted++;
4130                 win->last_inc = win->sh.width_inc;
4131                 fake_keypress(win, XK_KP_Subtract, XCB_MOD_MASK_SHIFT);
4132         } else if (win->font_steps && win->last_inc != win->sh.width_inc &&
4133             WIDTH(win) > win->font_size_boundary[win->font_steps - 1]) {
4134                 win->font_steps--;
4135                 font_adjusted++;
4136                 win->last_inc = win->sh.width_inc;
4137                 fake_keypress(win, XK_KP_Add, XCB_MOD_MASK_SHIFT);
4138         }
4139 }
4140
4141 #define SWAPXY(g)       do {                            \
4142         int tmp;                                        \
4143         tmp = (g)->y; (g)->y = (g)->x; (g)->x = tmp;    \
4144         tmp = (g)->h; (g)->h = (g)->w; (g)->w = tmp;    \
4145 } while (0)
4146 void
4147 stack_master(struct workspace *ws, struct swm_geometry *g, int rot, int flip)
4148 {
4149         struct swm_geometry     win_g, r_g = *g;
4150         struct ws_win           *win, *fs_win = NULL;
4151         int                     i, j, s, stacks;
4152         int                     w_inc = 1, h_inc, w_base = 1, h_base;
4153         int                     hrh, extra = 0, h_slice, last_h = 0;
4154         int                     split, colno, winno, mwin, msize, mscale;
4155         int                     remain, missing, v_slice, reconfigure = 0;
4156         int                     bordered = 1;
4157
4158         DNPRINTF(SWM_D_STACK, "stack_master: workspace: %d, rot: %s, "
4159             "flip: %s\n", ws->idx, YESNO(rot), YESNO(flip));
4160
4161         winno = count_win(ws, 0);
4162         if (winno == 0 && count_win(ws, 1) == 0)
4163                 return;
4164
4165         TAILQ_FOREACH(win, &ws->winlist, entry)
4166                 if (!win->transient && !win->floating && !win->iconic)
4167                         break;
4168
4169         if (win == NULL)
4170                 goto notiles;
4171
4172         if (rot) {
4173                 w_inc = win->sh.width_inc;
4174                 w_base = win->sh.base_width;
4175                 mwin = ws->l_state.horizontal_mwin;
4176                 mscale = ws->l_state.horizontal_msize;
4177                 stacks = ws->l_state.horizontal_stacks;
4178                 SWAPXY(&r_g);
4179         } else {
4180                 w_inc = win->sh.height_inc;
4181                 w_base = win->sh.base_height;
4182                 mwin = ws->l_state.vertical_mwin;
4183                 mscale = ws->l_state.vertical_msize;
4184                 stacks = ws->l_state.vertical_stacks;
4185         }
4186         win_g = r_g;
4187
4188         if (stacks > winno - mwin)
4189                 stacks = winno - mwin;
4190         if (stacks < 1)
4191                 stacks = 1;
4192
4193         h_slice = r_g.h / SWM_H_SLICE;
4194         if (mwin && winno > mwin) {
4195                 v_slice = r_g.w / SWM_V_SLICE;
4196
4197                 split = mwin;
4198                 colno = split;
4199                 win_g.w = v_slice * mscale;
4200
4201                 if (w_inc > 1 && w_inc < v_slice) {
4202                         /* adjust for window's requested size increment */
4203                         remain = (win_g.w - w_base) % w_inc;
4204                         win_g.w -= remain;
4205                 }
4206
4207                 msize = win_g.w;
4208                 if (flip)
4209                         win_g.x += r_g.w - msize;
4210         } else {
4211                 msize = -2;
4212                 colno = split = winno / stacks;
4213                 win_g.w = ((r_g.w - (stacks * 2 * border_width) +
4214                     2 * border_width) / stacks);
4215         }
4216         hrh = r_g.h / colno;
4217         extra = r_g.h - (colno * hrh);
4218         win_g.h = hrh - 2 * border_width;
4219
4220         /*  stack all the tiled windows */
4221         i = j = 0, s = stacks;
4222         TAILQ_FOREACH(win, &ws->winlist, entry) {
4223                 if (win->transient || win->floating || win->iconic)
4224                         continue;
4225
4226                 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
4227                         fs_win = win;
4228                         continue;
4229                 }
4230
4231                 if (split && i == split) {
4232                         colno = (winno - mwin) / stacks;
4233                         if (s <= (winno - mwin) % stacks)
4234                                 colno++;
4235                         split = split + colno;
4236                         hrh = (r_g.h / colno);
4237                         extra = r_g.h - (colno * hrh);
4238                         if (flip)
4239                                 win_g.x = r_g.x;
4240                         else
4241                                 win_g.x += win_g.w + 2 * border_width +
4242                                     tile_gap;
4243                         win_g.w = (r_g.w - msize -
4244                             (stacks * (2 * border_width + tile_gap))) / stacks;
4245                         if (s == 1)
4246                                 win_g.w += (r_g.w - msize -
4247                                     (stacks * (2 * border_width + tile_gap))) %
4248                                     stacks;
4249                         s--;
4250                         j = 0;
4251                 }
4252
4253                 win_g.h = hrh - 2 * border_width - tile_gap;
4254
4255                 if (rot) {
4256                         h_inc = win->sh.width_inc;
4257                         h_base = win->sh.base_width;
4258                 } else {
4259                         h_inc = win->sh.height_inc;
4260                         h_base = win->sh.base_height;
4261                 }
4262
4263                 if (j == colno - 1) {
4264                         win_g.h = hrh + extra;
4265                 } else if (h_inc > 1 && h_inc < h_slice) {
4266                         /* adjust for window's requested size increment */
4267                         remain = (win_g.h - h_base) % h_inc;
4268                         missing = h_inc - remain;
4269
4270                         if (missing <= extra || j == 0) {
4271                                 extra -= missing;
4272                                 win_g.h += missing;
4273                         } else {
4274                                 win_g.h -= remain;
4275                                 extra += remain;
4276                         }
4277                 }
4278
4279                 if (j == 0)
4280                         win_g.y = r_g.y;
4281                 else
4282                         win_g.y += last_h + 2 * border_width + tile_gap;
4283
4284                 if (disable_border && !(bar_enabled && ws->bar_enabled) &&
4285                     winno == 1){
4286                         bordered = 0;
4287                         win_g.w += 2 * border_width;
4288                         win_g.h += 2 * border_width;
4289                 } else {
4290                         bordered = 1;
4291                 }
4292
4293                 if (rot) {
4294                         if (X(win) != win_g.y || Y(win) != win_g.x ||
4295                             WIDTH(win) != win_g.h || HEIGHT(win) != win_g.w) {
4296                                 reconfigure = 1;
4297                                 X(win) = win_g.y;
4298                                 Y(win) = win_g.x;
4299                                 WIDTH(win) = win_g.h;
4300                                 HEIGHT(win) = win_g.w;
4301                         }
4302                 } else {
4303                         if (X(win) != win_g.x || Y(win) != win_g.y ||
4304                             WIDTH(win) != win_g.w || HEIGHT(win) != win_g.h) {
4305                                 reconfigure = 1;
4306                                 X(win) = win_g.x;
4307                                 Y(win) = win_g.y;
4308                                 WIDTH(win) = win_g.w;
4309                                 HEIGHT(win) = win_g.h;
4310                         }
4311                 }
4312
4313                 if (bordered != win->bordered) {
4314                         reconfigure = 1;
4315                         win->bordered = bordered;
4316                 }
4317
4318                 if (reconfigure) {
4319                         adjust_font(win);
4320                         update_window(win);
4321                 }
4322
4323                 map_window(win);
4324
4325                 last_h = win_g.h;
4326                 i++;
4327                 j++;
4328         }
4329
4330 notiles:
4331         /* now, stack all the floaters and transients */
4332         TAILQ_FOREACH(win, &ws->winlist, entry) {
4333                 if (!win->transient && !win->floating)
4334                         continue;
4335                 if (win->iconic)
4336                         continue;
4337                 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
4338                         fs_win = win;
4339                         continue;
4340                 }
4341
4342                 stack_floater(win, ws->r);
4343                 map_window(win);
4344         }
4345
4346         /* Make sure fs_win is stacked last so it's on top. */
4347         if (fs_win) {
4348                 stack_floater(fs_win, ws->r);
4349                 map_window(fs_win);
4350         }
4351 }
4352
4353 void
4354 vertical_config(struct workspace *ws, int id)
4355 {
4356         DNPRINTF(SWM_D_STACK, "vertical_config: id: %d, workspace: %d\n",
4357             id, ws->idx);
4358
4359         switch (id) {
4360         case SWM_ARG_ID_STACKRESET:
4361         case SWM_ARG_ID_STACKINIT:
4362                 ws->l_state.vertical_msize = SWM_V_SLICE / 2;
4363                 ws->l_state.vertical_mwin = 1;
4364                 ws->l_state.vertical_stacks = 1;
4365                 break;
4366         case SWM_ARG_ID_MASTERSHRINK:
4367                 if (ws->l_state.vertical_msize > 1)
4368                         ws->l_state.vertical_msize--;
4369                 break;
4370         case SWM_ARG_ID_MASTERGROW:
4371                 if (ws->l_state.vertical_msize < SWM_V_SLICE - 1)
4372                         ws->l_state.vertical_msize++;
4373                 break;
4374         case SWM_ARG_ID_MASTERADD:
4375                 ws->l_state.vertical_mwin++;
4376                 break;
4377         case SWM_ARG_ID_MASTERDEL:
4378                 if (ws->l_state.vertical_mwin > 0)
4379                         ws->l_state.vertical_mwin--;
4380                 break;
4381         case SWM_ARG_ID_STACKINC:
4382                 ws->l_state.vertical_stacks++;
4383                 break;
4384         case SWM_ARG_ID_STACKDEC:
4385                 if (ws->l_state.vertical_stacks > 1)
4386                         ws->l_state.vertical_stacks--;
4387                 break;
4388         case SWM_ARG_ID_FLIPLAYOUT:
4389                 ws->l_state.vertical_flip = !ws->l_state.vertical_flip;
4390                 break;
4391         default:
4392                 return;
4393         }
4394 }
4395
4396 void
4397 vertical_stack(struct workspace *ws, struct swm_geometry *g)
4398 {
4399         DNPRINTF(SWM_D_STACK, "vertical_stack: workspace: %d\n", ws->idx);
4400
4401         stack_master(ws, g, 0, ws->l_state.vertical_flip);
4402 }
4403
4404 void
4405 horizontal_config(struct workspace *ws, int id)
4406 {
4407         DNPRINTF(SWM_D_STACK, "horizontal_config: workspace: %d\n", ws->idx);
4408
4409         switch (id) {
4410         case SWM_ARG_ID_STACKRESET:
4411         case SWM_ARG_ID_STACKINIT:
4412                 ws->l_state.horizontal_mwin = 1;
4413                 ws->l_state.horizontal_msize = SWM_H_SLICE / 2;
4414                 ws->l_state.horizontal_stacks = 1;
4415                 break;
4416         case SWM_ARG_ID_MASTERSHRINK:
4417                 if (ws->l_state.horizontal_msize > 1)
4418                         ws->l_state.horizontal_msize--;
4419                 break;
4420         case SWM_ARG_ID_MASTERGROW:
4421                 if (ws->l_state.horizontal_msize < SWM_H_SLICE - 1)
4422                         ws->l_state.horizontal_msize++;
4423                 break;
4424         case SWM_ARG_ID_MASTERADD:
4425                 ws->l_state.horizontal_mwin++;
4426                 break;
4427         case SWM_ARG_ID_MASTERDEL:
4428                 if (ws->l_state.horizontal_mwin > 0)
4429                         ws->l_state.horizontal_mwin--;
4430                 break;
4431         case SWM_ARG_ID_STACKINC:
4432                 ws->l_state.horizontal_stacks++;
4433                 break;
4434         case SWM_ARG_ID_STACKDEC:
4435                 if (ws->l_state.horizontal_stacks > 1)
4436                         ws->l_state.horizontal_stacks--;
4437                 break;
4438         case SWM_ARG_ID_FLIPLAYOUT:
4439                 ws->l_state.horizontal_flip = !ws->l_state.horizontal_flip;
4440                 break;
4441         default:
4442                 return;
4443         }
4444 }
4445
4446 void
4447 horizontal_stack(struct workspace *ws, struct swm_geometry *g)
4448 {
4449         DNPRINTF(SWM_D_STACK, "horizontal_stack: workspace: %d\n", ws->idx);
4450
4451         stack_master(ws, g, 1, ws->l_state.horizontal_flip);
4452 }
4453
4454 /* fullscreen view */
4455 void
4456 max_stack(struct workspace *ws, struct swm_geometry *g)
4457 {
4458         struct swm_geometry     gg = *g;
4459         struct ws_win           *w, *win = NULL, *parent = NULL;
4460         int                     winno;
4461
4462         DNPRINTF(SWM_D_STACK, "max_stack: workspace: %d\n", ws->idx);
4463
4464         if (ws == NULL)
4465                 return;
4466
4467         winno = count_win(ws, 0);
4468         if (winno == 0 && count_win(ws, 1) == 0)
4469                 return;
4470
4471         /* Figure out which top level window should be visible. */
4472         if (ws->focus_pending)
4473                 win = ws->focus_pending;
4474         else if (ws->focus)
4475                 win = ws->focus;
4476         else
4477                 win = TAILQ_FIRST(&ws->winlist);
4478
4479         if (win->transient)
4480                 parent = find_window(win->transient);
4481
4482         DNPRINTF(SWM_D_STACK, "max_stack: win: 0x%x\n", win->id);
4483
4484         /* maximize all top level windows */
4485         TAILQ_FOREACH(w, &ws->winlist, entry) {
4486                 if (w->transient || w->iconic)
4487                         continue;
4488
4489                 if (!w->mapped && w != win)
4490                         map_window(w);
4491
4492                 if (w->floating && !w->floatmaxed) {
4493                         /*
4494                          * retain geometry for retrieval on exit from
4495                          * max_stack mode
4496                          */
4497                         store_float_geom(w, ws->r);
4498                         w->floatmaxed = 1;
4499                 }
4500
4501                 /* only reconfigure if necessary */
4502                 if (X(w) != gg.x || Y(w) != gg.y || WIDTH(w) != gg.w ||
4503                     HEIGHT(w) != gg.h) {
4504                         w->g = gg;
4505                         if (bar_enabled && ws->bar_enabled){
4506                                 w->bordered = 1;
4507                         } else {
4508                                 w->bordered = 0;
4509                                 WIDTH(w) += 2 * border_width;
4510                                 HEIGHT(w) += 2 * border_width;
4511                         }
4512
4513                         update_window(w);
4514                 }
4515         }
4516
4517         /* If a parent exists, map/raise it first. */
4518         if (parent) {
4519                 map_window(parent);
4520
4521                 /* Map siblings next. */
4522                 TAILQ_FOREACH(w, &ws->winlist, entry)
4523                         if (w != win && !w->iconic &&
4524                             w->transient == parent->id) {
4525                                 stack_floater(w, ws->r);
4526                                 map_window(w);
4527                         }
4528         }
4529
4530         /* Map/raise focused window. */
4531         map_window(win);
4532
4533         /* Finally, map/raise children of focus window. */
4534         TAILQ_FOREACH(w, &ws->winlist, entry)
4535                 if (w->transient == win->id && !w->iconic) {
4536                         stack_floater(w, ws->r);
4537                         map_window(w);
4538                 }
4539 }
4540
4541 void
4542 send_to_rg(struct swm_region *r, union arg *args)
4543 {
4544         int                     ridx = args->id, i, num_screens;
4545         struct swm_region       *rr = NULL;
4546         union arg               a;
4547
4548         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
4549         /* do nothing if we don't have more than one screen */
4550         if (!(num_screens > 1 || outputs > 1))
4551                 return;
4552
4553         DNPRINTF(SWM_D_FOCUS, "send_to_rg: id: %d\n", ridx);
4554
4555         rr = TAILQ_FIRST(&r->s->rl);
4556         for (i = 0; i < ridx; ++i)
4557                 rr = TAILQ_NEXT(rr, entry);
4558
4559         if (rr == NULL)
4560                 return;
4561
4562         a.id = rr->ws->idx;
4563
4564         send_to_ws(r, &a);
4565 }
4566
4567 void
4568 send_to_ws(struct swm_region *r, union arg *args)
4569 {
4570         int                     wsid = args->id;
4571         struct ws_win           *win = NULL, *parent;
4572         struct workspace        *ws, *nws, *pws;
4573         char                    ws_idx_str[SWM_PROPLEN];
4574
4575         if (wsid >= workspace_limit)
4576                 return;
4577
4578         if (r && r->ws && r->ws->focus)
4579                 win = r->ws->focus;
4580         else
4581                 return;
4582
4583         if (win->ws->idx == wsid)
4584                 return;
4585
4586         DNPRINTF(SWM_D_MOVE, "send_to_ws: win 0x%x, ws %d -> %d\n", win->id,
4587             win->ws->idx, wsid);
4588
4589         ws = win->ws;
4590         nws = &win->s->ws[wsid];
4591
4592         /* Update the window's workspace property: _SWM_WS */
4593         if (snprintf(ws_idx_str, SWM_PROPLEN, "%d", nws->idx) < SWM_PROPLEN) {
4594                 if (focus_mode != SWM_FOCUS_FOLLOW)
4595                         ws->focus_pending = get_focus_prev(win);
4596
4597                 /* Move the parent if this is a transient window. */
4598                 if (win->transient) {
4599                         parent = find_window(win->transient);
4600                         if (parent) {
4601                                 pws = parent->ws;
4602                                 /* Set new focus in parent's ws if needed. */
4603                                 if (pws->focus == parent) {
4604                                         if (focus_mode != SWM_FOCUS_FOLLOW)
4605                                                 pws->focus_pending =
4606                                                     get_focus_prev(parent);
4607
4608                                         unfocus_win(parent);
4609
4610                                         if (focus_mode != SWM_FOCUS_FOLLOW)
4611                                                 pws->focus = pws->focus_pending;
4612
4613                                         if (focus_mode != SWM_FOCUS_FOLLOW)
4614                                                 pws->focus_pending = NULL;
4615                                 }
4616
4617                                 /* Don't unmap parent if new ws is visible */
4618                                 if (nws->r == NULL)
4619                                         unmap_window(parent);
4620
4621                                 /* Transfer */
4622                                 TAILQ_REMOVE(&ws->winlist, parent, entry);
4623                                 TAILQ_INSERT_TAIL(&nws->winlist, parent, entry);
4624                                 parent->ws = nws;
4625
4626                                 DNPRINTF(SWM_D_PROP, "send_to_ws: set "
4627                                     "property: _SWM_WS: %s\n", ws_idx_str);
4628                                 xcb_change_property(conn, XCB_PROP_MODE_REPLACE,
4629                                     parent->id, a_swm_ws, XCB_ATOM_STRING, 8,
4630                                     strlen(ws_idx_str), ws_idx_str);
4631                         }
4632                 }
4633
4634                 unfocus_win(win);
4635
4636                 /* Don't unmap if new ws is visible */
4637                 if (nws->r == NULL)
4638                         unmap_window(win);
4639
4640                 /* Transfer */
4641                 TAILQ_REMOVE(&ws->winlist, win, entry);
4642                 TAILQ_INSERT_TAIL(&nws->winlist, win, entry);
4643                 win->ws = nws;
4644
4645                 /* Set focus on new ws. */
4646                 unfocus_win(nws->focus);
4647                 nws->focus = win;
4648
4649                 DNPRINTF(SWM_D_PROP, "send_to_ws: set property: _SWM_WS: %s\n",
4650                     ws_idx_str);
4651                 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
4652                     a_swm_ws, XCB_ATOM_STRING, 8, strlen(ws_idx_str),
4653                     ws_idx_str);
4654
4655                 /* Restack and set new focus. */
4656                 stack();
4657
4658                 if (focus_mode != SWM_FOCUS_FOLLOW) {
4659                         focus_win(ws->focus_pending);
4660                         ws->focus_pending = NULL;
4661                 }
4662
4663                 focus_flush();
4664         }
4665
4666         DNPRINTF(SWM_D_MOVE, "send_to_ws: done.\n");
4667 }
4668
4669 void
4670 pressbutton(struct swm_region *r, union arg *args)
4671 {
4672         /* suppress unused warning since var is needed */
4673         (void)r;
4674
4675         xcb_test_fake_input(conn, XCB_BUTTON_PRESS, args->id,
4676             XCB_CURRENT_TIME, XCB_WINDOW_NONE, 0, 0, 0);
4677         xcb_test_fake_input(conn, XCB_BUTTON_RELEASE, args->id,
4678             XCB_CURRENT_TIME, XCB_WINDOW_NONE, 0, 0, 0);
4679 }
4680
4681 void
4682 raise_toggle(struct swm_region *r, union arg *args)
4683 {
4684         /* suppress unused warning since var is needed */
4685         (void)args;
4686
4687         if (r == NULL || r->ws == NULL)
4688                 return;
4689
4690         r->ws->always_raise = !r->ws->always_raise;
4691
4692         /* bring floaters back to top */
4693         if (!r->ws->always_raise)
4694                 stack();
4695
4696         focus_flush();
4697 }
4698
4699 void
4700 iconify(struct swm_region *r, union arg *args)
4701 {
4702         /* suppress unused warning since var is needed */
4703         (void)args;
4704
4705         if (r->ws->focus == NULL)
4706                 return;
4707
4708         set_swm_iconic(r->ws->focus, 1);
4709
4710         xcb_flush(conn);
4711 }
4712
4713 char *
4714 get_win_name(xcb_window_t win)
4715 {
4716         char                            *name = NULL;
4717         xcb_get_property_cookie_t       c;
4718         xcb_get_property_reply_t        *r;
4719
4720         /* First try _NET_WM_NAME for UTF-8. */
4721         c = xcb_get_property(conn, 0, win, a_netwmname,
4722             XCB_GET_PROPERTY_TYPE_ANY, 0, UINT_MAX);
4723         r = xcb_get_property_reply(conn, c, NULL);
4724
4725         if (r) {
4726                 if (r->type == XCB_NONE) {
4727                         free(r);
4728                         /* Use WM_NAME instead; no UTF-8. */
4729                         c = xcb_get_property(conn, 0, win, XCB_ATOM_WM_NAME,
4730                             XCB_GET_PROPERTY_TYPE_ANY, 0, UINT_MAX);
4731                         r = xcb_get_property_reply(conn, c, NULL);
4732
4733                         if (!r)
4734                                 return (NULL);
4735                         if (r->type == XCB_NONE) {
4736                                 free(r);
4737                                 return (NULL);
4738                         }
4739                 }
4740                 if (r->length > 0)
4741                         name = strndup(xcb_get_property_value(r),
4742                             xcb_get_property_value_length(r));
4743
4744                 free(r);
4745         }
4746
4747         return (name);
4748 }
4749
4750 void
4751 uniconify(struct swm_region *r, union arg *args)
4752 {
4753         struct ws_win           *win;
4754         FILE                    *lfile;
4755         char                    *name;
4756         int                     count = 0;
4757
4758         DNPRINTF(SWM_D_MISC, "uniconify\n");
4759
4760         if (r == NULL || r->ws == NULL)
4761                 return;
4762
4763         /* make sure we have anything to uniconify */
4764         TAILQ_FOREACH(win, &r->ws->winlist, entry) {
4765                 if (win->ws == NULL)
4766                         continue; /* should never happen */
4767                 if (!win->iconic)
4768                         continue;
4769                 count++;
4770         }
4771         if (count == 0)
4772                 return;
4773
4774         search_r = r;
4775         search_resp_action = SWM_SEARCH_UNICONIFY;
4776
4777         spawn_select(r, args, "search", &searchpid);
4778
4779         if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
4780                 return;
4781
4782         TAILQ_FOREACH(win, &r->ws->winlist, entry) {
4783                 if (win->ws == NULL)
4784                         continue; /* should never happen */
4785                 if (!win->iconic)
4786                         continue;
4787
4788                 name = get_win_name(win->id);
4789                 if (name == NULL)
4790                         continue;
4791                 fprintf(lfile, "%s.%u\n", name, win->id);
4792                 free(name);
4793         }
4794
4795         fclose(lfile);
4796 }
4797
4798 void
4799 name_workspace(struct swm_region *r, union arg *args)
4800 {
4801         FILE                    *lfile;
4802
4803         DNPRINTF(SWM_D_MISC, "name_workspace\n");
4804
4805         if (r == NULL)
4806                 return;
4807
4808         search_r = r;
4809         search_resp_action = SWM_SEARCH_NAME_WORKSPACE;
4810
4811         spawn_select(r, args, "name_workspace", &searchpid);
4812
4813         if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
4814                 return;
4815
4816         fprintf(lfile, "%s", "");
4817         fclose(lfile);
4818 }
4819
4820 void
4821 search_workspace(struct swm_region *r, union arg *args)
4822 {
4823         int                     i;
4824         struct workspace        *ws;
4825         FILE                    *lfile;
4826
4827         DNPRINTF(SWM_D_MISC, "search_workspace\n");
4828
4829         if (r == NULL)
4830                 return;
4831
4832         search_r = r;
4833         search_resp_action = SWM_SEARCH_SEARCH_WORKSPACE;
4834
4835         spawn_select(r, args, "search", &searchpid);
4836
4837         if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
4838                 return;
4839
4840         for (i = 0; i < workspace_limit; i++) {
4841                 ws = &r->s->ws[i];
4842                 if (ws == NULL)
4843                         continue;
4844                 fprintf(lfile, "%d%s%s\n", ws->idx + 1,
4845                     (ws->name ? ":" : ""), (ws->name ? ws->name : ""));
4846         }
4847
4848         fclose(lfile);
4849 }
4850
4851 void
4852 search_win_cleanup(void)
4853 {
4854         struct search_window    *sw = NULL;
4855
4856         while ((sw = TAILQ_FIRST(&search_wl)) != NULL) {
4857                 xcb_destroy_window(conn, sw->indicator);
4858                 TAILQ_REMOVE(&search_wl, sw, entry);
4859                 free(sw);
4860         }
4861 }
4862
4863 void
4864 search_win(struct swm_region *r, union arg *args)
4865 {
4866         struct ws_win           *win = NULL;
4867         struct search_window    *sw = NULL;
4868         xcb_window_t            w;
4869         uint32_t                wa[2];
4870         int                     i, width, height;
4871         char                    s[8];
4872         FILE                    *lfile;
4873         size_t                  len;
4874         XftDraw                 *draw;
4875         XGlyphInfo              info;
4876         GC                      l_draw;
4877         XGCValues               l_gcv;
4878         XRectangle              l_ibox, l_lbox;
4879
4880         DNPRINTF(SWM_D_MISC, "search_win\n");
4881
4882         search_r = r;
4883         search_resp_action = SWM_SEARCH_SEARCH_WINDOW;
4884
4885         spawn_select(r, args, "search", &searchpid);
4886
4887         if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
4888                 return;
4889
4890         TAILQ_INIT(&search_wl);
4891
4892         i = 1;
4893         TAILQ_FOREACH(win, &r->ws->winlist, entry) {
4894                 if (win->iconic)
4895                         continue;
4896
4897                 sw = calloc(1, sizeof(struct search_window));
4898                 if (sw == NULL) {
4899                         warn("search_win: calloc");
4900                         fclose(lfile);
4901                         search_win_cleanup();
4902                         return;
4903                 }
4904                 sw->idx = i;
4905                 sw->win = win;
4906
4907                 snprintf(s, sizeof s, "%d", i);
4908                 len = strlen(s);
4909
4910                 w = xcb_generate_id(conn);
4911                 wa[0] = r->s->c[SWM_S_COLOR_FOCUS].pixel;
4912                 wa[1] = r->s->c[SWM_S_COLOR_UNFOCUS].pixel;
4913
4914                 if (bar_font_legacy) {
4915                         XmbTextExtents(bar_fs, s, len, &l_ibox, &l_lbox);
4916                         width = l_lbox.width + 4;
4917                         height = bar_fs_extents->max_logical_extent.height + 4;
4918                 } else {
4919                         XftTextExtentsUtf8(display, bar_font, (FcChar8 *)s, len,
4920                             &info);
4921                         width = info.width + 4;
4922                         height = bar_font->height + 4;
4923                 }
4924
4925                 xcb_create_window(conn, XCB_COPY_FROM_PARENT, w, win->id, 0, 0,
4926                     width, height, 1, XCB_WINDOW_CLASS_INPUT_OUTPUT,
4927                     XCB_COPY_FROM_PARENT, XCB_CW_BACK_PIXEL |
4928                     XCB_CW_BORDER_PIXEL, wa);
4929
4930                 xcb_map_window(conn, w);
4931
4932                 sw->indicator = w;
4933                 TAILQ_INSERT_TAIL(&search_wl, sw, entry);
4934
4935                 if (bar_font_legacy) {
4936                         l_gcv.graphics_exposures = 0;
4937                         l_draw = XCreateGC(display, w, 0, &l_gcv);
4938
4939                         XSetForeground(display, l_draw,
4940                                 r->s->c[SWM_S_COLOR_BAR].pixel);
4941
4942                         DRAWSTRING(display, w, bar_fs, l_draw, 2,
4943                             (bar_fs_extents->max_logical_extent.height -
4944                             l_lbox.height) / 2 - l_lbox.y, s, len);
4945
4946                         XFreeGC(display, l_draw);
4947                 } else {
4948
4949                         draw = XftDrawCreate(display, w,
4950                             DefaultVisual(display, r->s->idx),
4951                             DefaultColormap(display, r->s->idx));
4952
4953                         XftDrawStringUtf8(draw, &bar_font_color, bar_font, 2,
4954                             (HEIGHT(r->bar) + bar_font->height) / 2 -
4955                             bar_font->descent, (FcChar8 *)s, len);
4956
4957                         XftDrawDestroy(draw);
4958                 }
4959
4960                 DNPRINTF(SWM_D_MISC, "search_win: mapped window: 0x%x\n", w);
4961
4962                 fprintf(lfile, "%d\n", i);
4963                 i++;
4964         }
4965
4966         fclose(lfile);
4967
4968         xcb_flush(conn);
4969 }
4970
4971 void
4972 search_resp_uniconify(const char *resp, unsigned long len)
4973 {
4974         char                    *name;
4975         struct ws_win           *win;
4976         char                    *s;
4977
4978         DNPRINTF(SWM_D_MISC, "search_resp_uniconify: resp: %s\n", resp);
4979
4980         TAILQ_FOREACH(win, &search_r->ws->winlist, entry) {
4981                 if (!win->iconic)
4982                         continue;
4983                 name = get_win_name(win->id);
4984                 if (name == NULL)
4985                         continue;
4986                 if (asprintf(&s, "%s.%u", name, win->id) == -1) {
4987                         free(name);
4988                         continue;
4989                 }
4990                 free(name);
4991                 if (strncmp(s, resp, len) == 0) {
4992                         /* XXX this should be a callback to generalize */
4993                         set_swm_iconic(win, 0);
4994                         free(s);
4995                         break;
4996                 }
4997                 free(s);
4998         }
4999 }
5000
5001 void
5002 search_resp_name_workspace(const char *resp, unsigned long len)
5003 {
5004         struct workspace        *ws;
5005
5006         DNPRINTF(SWM_D_MISC, "search_resp_name_workspace: resp: %s\n", resp);
5007
5008         if (search_r->ws == NULL)
5009                 return;
5010         ws = search_r->ws;
5011
5012         if (ws->name) {
5013                 free(search_r->ws->name);
5014                 search_r->ws->name = NULL;
5015         }
5016
5017         if (len > 1) {
5018                 ws->name = strdup(resp);
5019                 if (ws->name == NULL) {
5020                         DNPRINTF(SWM_D_MISC, "search_resp_name_workspace: "
5021                             "strdup: %s", strerror(errno));
5022                         return;
5023                 }
5024         }
5025 }
5026
5027 void
5028 search_resp_search_workspace(const char *resp)
5029 {
5030         char                    *p, *q;
5031         int                     ws_idx;
5032         const char              *errstr;
5033         union arg               a;
5034
5035         DNPRINTF(SWM_D_MISC, "search_resp_search_workspace: resp: %s\n", resp);
5036
5037         q = strdup(resp);
5038         if (!q) {
5039                 DNPRINTF(SWM_D_MISC, "search_resp_search_workspace: strdup: %s",
5040                     strerror(errno));
5041                 return;
5042         }
5043         p = strchr(q, ':');
5044         if (p != NULL)
5045                 *p = '\0';
5046         ws_idx = (int)strtonum(q, 1, workspace_limit, &errstr);
5047         if (errstr) {
5048                 DNPRINTF(SWM_D_MISC, "workspace idx is %s: %s",
5049                     errstr, q);
5050                 free(q);
5051                 return;
5052         }
5053         free(q);
5054         a.id = ws_idx - 1;
5055         switchws(search_r, &a);
5056 }
5057
5058 void
5059 search_resp_search_window(const char *resp)
5060 {
5061         char                    *s;
5062         int                     idx;
5063         const char              *errstr;
5064         struct search_window    *sw;
5065
5066         DNPRINTF(SWM_D_MISC, "search_resp_search_window: resp: %s\n", resp);
5067
5068         s = strdup(resp);
5069         if (!s) {
5070                 DNPRINTF(SWM_D_MISC, "search_resp_search_window: strdup: %s",
5071                     strerror(errno));
5072                 return;
5073         }
5074
5075         idx = (int)strtonum(s, 1, INT_MAX, &errstr);
5076         if (errstr) {
5077                 DNPRINTF(SWM_D_MISC, "window idx is %s: %s",
5078                     errstr, s);
5079                 free(s);
5080                 return;
5081         }
5082         free(s);
5083
5084         TAILQ_FOREACH(sw, &search_wl, entry)
5085                 if (idx == sw->idx) {
5086                         focus_win(sw->win);
5087                         break;
5088                 }
5089 }
5090
5091 #define MAX_RESP_LEN    1024
5092
5093 void
5094 search_do_resp(void)
5095 {
5096         ssize_t                 rbytes;
5097         char                    *resp;
5098         unsigned long           len;
5099
5100         DNPRINTF(SWM_D_MISC, "search_do_resp:\n");
5101
5102         search_resp = 0;
5103         searchpid = 0;
5104
5105         if ((resp = calloc(1, MAX_RESP_LEN + 1)) == NULL) {
5106                 warn("search: calloc");
5107                 goto done;
5108         }
5109
5110         rbytes = read(select_resp_pipe[0], resp, MAX_RESP_LEN);
5111         if (rbytes <= 0) {
5112                 warn("search: read error");
5113                 goto done;
5114         }
5115         resp[rbytes] = '\0';
5116
5117         /* XXX:
5118          * Older versions of dmenu (Atleast pre 4.4.1) do not send a
5119          * newline, so work around that by sanitizing the resp now.
5120          */
5121         resp[strcspn(resp, "\n")] = '\0';
5122         len = strlen(resp);
5123
5124         switch (search_resp_action) {
5125         case SWM_SEARCH_UNICONIFY:
5126                 search_resp_uniconify(resp, len);
5127                 break;
5128         case SWM_SEARCH_NAME_WORKSPACE:
5129                 search_resp_name_workspace(resp, len);
5130                 break;
5131         case SWM_SEARCH_SEARCH_WORKSPACE:
5132                 search_resp_search_workspace(resp);
5133                 break;
5134         case SWM_SEARCH_SEARCH_WINDOW:
5135                 search_resp_search_window(resp);
5136                 break;
5137         }
5138
5139 done:
5140         if (search_resp_action == SWM_SEARCH_SEARCH_WINDOW)
5141                 search_win_cleanup();
5142
5143         search_resp_action = SWM_SEARCH_NONE;
5144         close(select_resp_pipe[0]);
5145         free(resp);
5146
5147         xcb_flush(conn);
5148 }
5149
5150 void
5151 wkill(struct swm_region *r, union arg *args)
5152 {
5153         DNPRINTF(SWM_D_MISC, "wkill: id: %d\n", args->id);
5154
5155         if (r->ws->focus == NULL)
5156                 return;
5157
5158         if (args->id == SWM_ARG_ID_KILLWINDOW)
5159                 xcb_kill_client(conn, r->ws->focus->id);
5160         else
5161                 if (r->ws->focus->can_delete)
5162                         client_msg(r->ws->focus, a_delete, 0);
5163
5164         focus_flush();
5165 }
5166
5167 int
5168 floating_toggle_win(struct ws_win *win)
5169 {
5170         struct swm_region       *r;
5171
5172         if (win == NULL)
5173                 return (0);
5174
5175         if (!win->ws->r)
5176                 return (0);
5177
5178         r = win->ws->r;
5179
5180         /* reject floating toggles in max stack mode */
5181         if (win->ws->cur_layout == &layouts[SWM_MAX_STACK])
5182                 return (0);
5183
5184         if (win->floating) {
5185                 if (!win->floatmaxed) {
5186                         /* retain position for refloat */
5187                         store_float_geom(win, r);
5188                 }
5189                 win->floating = 0;
5190         } else {
5191                 load_float_geom(win, r);
5192                 win->floating = 1;
5193         }
5194
5195         ewmh_update_actions(win);
5196
5197         return (1);
5198 }
5199
5200 void
5201 floating_toggle(struct swm_region *r, union arg *args)
5202 {
5203         struct ws_win           *win = r->ws->focus;
5204
5205         /* suppress unused warning since var is needed */
5206         (void)args;
5207
5208         if (win == NULL)
5209                 return;
5210
5211         if (win->ewmh_flags & EWMH_F_FULLSCREEN)
5212                 return;
5213
5214         ewmh_update_win_state(win, ewmh[_NET_WM_STATE_ABOVE].atom,
5215             _NET_WM_STATE_TOGGLE);
5216
5217         stack();
5218
5219         if (win == win->ws->focus)
5220                 focus_win(win);
5221
5222         focus_flush();
5223 }
5224
5225 void
5226 constrain_window(struct ws_win *win, struct swm_region *r, int resizable)
5227 {
5228         if (MAX_X(win) + BORDER(win) > MAX_X(r)) {
5229                 if (resizable)
5230                         WIDTH(win) = MAX_X(r) - X(win) - BORDER(win);
5231                 else
5232                         X(win) = MAX_X(r)- WIDTH(win) - BORDER(win);
5233         }
5234
5235         if (X(win) + BORDER(win) < X(r)) {
5236                 if (resizable)
5237                         WIDTH(win) -= X(r) - X(win) - BORDER(win);
5238
5239                 X(win) = X(r) - BORDER(win);
5240         }
5241
5242         if (MAX_Y(win) + BORDER(win) > MAX_Y(r)) {
5243                 if (resizable)
5244                         HEIGHT(win) = MAX_Y(r) - Y(win) - BORDER(win);
5245                 else
5246                         Y(win) = MAX_Y(r) - HEIGHT(win) - BORDER(win);
5247         }
5248
5249         if (Y(win) + BORDER(win) < Y(r)) {
5250                 if (resizable)
5251                         HEIGHT(win) -= Y(r) - Y(win) - BORDER(win);
5252
5253                 Y(win) = Y(r) - BORDER(win);
5254         }
5255
5256         if (resizable) {
5257                 if (WIDTH(win) < 1)
5258                         WIDTH(win) = 1;
5259                 if (HEIGHT(win) < 1)
5260                         HEIGHT(win) = 1;
5261         }
5262 }
5263
5264 void
5265 update_window(struct ws_win *win)
5266 {
5267         uint16_t        mask;
5268         uint32_t        wc[5];
5269
5270         mask = XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y |
5271             XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT |
5272             XCB_CONFIG_WINDOW_BORDER_WIDTH;
5273         wc[0] = X(win);
5274         wc[1] = Y(win);
5275         wc[2] = WIDTH(win);
5276         wc[3] = HEIGHT(win);
5277         wc[4] = BORDER(win);
5278
5279         DNPRINTF(SWM_D_EVENT, "update_window: window: 0x%x, (x,y) w x h: "
5280             "(%d,%d) %d x %d, bordered: %s\n", win->id, wc[0], wc[1], wc[2],
5281             wc[3], YESNO(win->bordered));
5282
5283         xcb_configure_window(conn, win->id, mask, wc);
5284 }
5285
5286 #define SWM_RESIZE_STEPS        (50)
5287
5288 void
5289 resize(struct ws_win *win, union arg *args)
5290 {
5291         xcb_timestamp_t         timestamp = 0;
5292         struct swm_region       *r = NULL;
5293         int                     resize_stp = 0;
5294         struct swm_geometry     g;
5295         int                     top = 0, left = 0, resizing;
5296         int                     dx, dy;
5297         xcb_cursor_t                    cursor;
5298         xcb_query_pointer_reply_t       *xpr;
5299         xcb_generic_event_t             *evt;
5300         xcb_motion_notify_event_t       *mne;
5301
5302         if (win == NULL)
5303                 return;
5304         r = win->ws->r;
5305
5306         if (win->ewmh_flags & EWMH_F_FULLSCREEN)
5307                 return;
5308
5309         DNPRINTF(SWM_D_EVENT, "resize: window: 0x%x, floating: %s, "
5310             "transient: 0x%x\n", win->id, YESNO(win->floating),
5311             win->transient);
5312
5313         if (!win->transient && !win->floating)
5314                 return;
5315
5316         /* reject resizes in max mode for floaters (transient ok) */
5317         if (win->floatmaxed)
5318                 return;
5319
5320         win->manual = 1;
5321         ewmh_update_win_state(win, ewmh[_SWM_WM_STATE_MANUAL].atom,
5322             _NET_WM_STATE_ADD);
5323
5324         stack();
5325
5326         focus_flush();
5327
5328         switch (args->id) {
5329         case SWM_ARG_ID_WIDTHSHRINK:
5330                 WIDTH(win) -= SWM_RESIZE_STEPS;
5331                 resize_stp = 1;
5332                 break;
5333         case SWM_ARG_ID_WIDTHGROW:
5334                 WIDTH(win) += SWM_RESIZE_STEPS;
5335                 resize_stp = 1;
5336                 break;
5337         case SWM_ARG_ID_HEIGHTSHRINK:
5338                 HEIGHT(win) -= SWM_RESIZE_STEPS;
5339                 resize_stp = 1;
5340                 break;
5341         case SWM_ARG_ID_HEIGHTGROW:
5342                 HEIGHT(win) += SWM_RESIZE_STEPS;
5343                 resize_stp = 1;
5344                 break;
5345         default:
5346                 break;
5347         }
5348         if (resize_stp) {
5349                 constrain_window(win, r, 1);
5350                 update_window(win);
5351                 store_float_geom(win,r);
5352                 return;
5353         }
5354
5355         /* get cursor offset from window root */
5356         xpr = xcb_query_pointer_reply(conn, xcb_query_pointer(conn, win->id),
5357             NULL);
5358         if (!xpr)
5359                 return;
5360
5361         g = win->g;
5362
5363         if (xpr->win_x < WIDTH(win) / 2)
5364                 left = 1;
5365
5366         if (xpr->win_y < HEIGHT(win) / 2)
5367                 top = 1;
5368
5369         if (args->id == SWM_ARG_ID_CENTER)
5370                 cursor = cursors[XC_SIZING].cid;
5371         else if (top)
5372                 cursor = cursors[left ? XC_TOP_LEFT_CORNER :
5373                     XC_TOP_RIGHT_CORNER].cid;
5374         else
5375                 cursor = cursors[left ? XC_BOTTOM_LEFT_CORNER :
5376                     XC_BOTTOM_RIGHT_CORNER].cid;
5377
5378         xcb_grab_pointer(conn, 0, win->id, MOUSEMASK,
5379             XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC, XCB_WINDOW_NONE, cursor,
5380             XCB_CURRENT_TIME),
5381
5382         xcb_flush(conn);
5383         resizing = 1;
5384         while ((evt = xcb_wait_for_event(conn)) && resizing) {
5385                 switch (XCB_EVENT_RESPONSE_TYPE(evt)) {
5386                 case XCB_BUTTON_RELEASE:
5387                         DNPRINTF(SWM_D_EVENT, "resize: BUTTON_RELEASE\n");
5388                         resizing = 0;
5389                         break;
5390                 case XCB_MOTION_NOTIFY:
5391                         mne = (xcb_motion_notify_event_t *)evt;
5392                         /* cursor offset/delta from start of the operation */
5393                         dx = mne->root_x - xpr->root_x;
5394                         dy = mne->root_y - xpr->root_y;
5395
5396                         /* vertical */
5397                         if (top)
5398                                 dy = -dy;
5399
5400                         if (args->id == SWM_ARG_ID_CENTER) {
5401                                 if (g.h / 2 + dy < 1)
5402                                         dy = 1 - g.h / 2;
5403
5404                                 Y(win) = g.y - dy;
5405                                 HEIGHT(win) = g.h + 2 * dy;
5406                         } else {
5407                                 if (g.h + dy < 1)
5408                                         dy = 1 - g.h;
5409
5410                                 if (top)
5411                                         Y(win) = g.y - dy;
5412
5413                                 HEIGHT(win) = g.h + dy;
5414                         }
5415
5416                         /* horizontal */
5417                         if (left)
5418                                 dx = -dx;
5419
5420                         if (args->id == SWM_ARG_ID_CENTER) {
5421                                 if (g.w / 2 + dx < 1)
5422                                         dx = 1 - g.w / 2;
5423
5424                                 X(win) = g.x - dx;
5425                                 WIDTH(win) = g.w + 2 * dx;
5426                         } else {
5427                                 if (g.w + dx < 1)
5428                                         dx = 1 - g.w;
5429
5430                                 if (left)
5431                                         X(win) = g.x - dx;
5432
5433                                 WIDTH(win) = g.w + dx;
5434                         }
5435
5436                         constrain_window(win, r, 1);
5437
5438                         /* not free, don't sync more than 120 times / second */
5439                         if ((mne->time - timestamp) > (1000 / 120) ) {
5440                                 timestamp = mne->time;
5441                                 update_window(win);
5442                                 xcb_flush(conn);
5443                         }
5444                         break;
5445                 default:
5446                         event_handle(evt);
5447                         break;
5448                 }
5449                 free(evt);
5450         }
5451         if (timestamp) {
5452                 update_window(win);
5453                 xcb_flush(conn);
5454         }
5455         store_float_geom(win,r);
5456
5457         xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
5458         free(xpr);
5459         DNPRINTF(SWM_D_EVENT, "resize: done.\n");
5460 }
5461
5462 void
5463 resize_step(struct swm_region *r, union arg *args)
5464 {
5465         struct ws_win           *win = NULL;
5466
5467         if (r && r->ws && r->ws->focus)
5468                 win = r->ws->focus;
5469         else
5470                 return;
5471
5472         resize(win, args);
5473         focus_flush();
5474 }
5475
5476 #define SWM_MOVE_STEPS  (50)
5477
5478 void
5479 move(struct ws_win *win, union arg *args)
5480 {
5481         xcb_timestamp_t         timestamp = 0;
5482         int                     move_stp = 0, moving;
5483         struct swm_region       *r = NULL;
5484         xcb_query_pointer_reply_t       *qpr;
5485         xcb_generic_event_t             *evt;
5486         xcb_motion_notify_event_t       *mne;
5487
5488         if (win == NULL)
5489                 return;
5490         r = win->ws->r;
5491
5492         if (win->ewmh_flags & EWMH_F_FULLSCREEN)
5493                 return;
5494
5495         DNPRINTF(SWM_D_EVENT, "move: window: 0x%x, floating: %s, transient: "
5496             "0x%x\n", win->id, YESNO(win->floating), win->transient);
5497
5498         /* in max_stack mode should only move transients */
5499         if (win->ws->cur_layout == &layouts[SWM_MAX_STACK] && !win->transient)
5500                 return;
5501
5502         win->manual = 1;
5503         if (!win->floating && !win->transient) {
5504                 store_float_geom(win, r);
5505                 ewmh_update_win_state(win, ewmh[_NET_WM_STATE_ABOVE].atom,
5506                     _NET_WM_STATE_ADD);
5507         }
5508         ewmh_update_win_state(win, ewmh[_SWM_WM_STATE_MANUAL].atom,
5509             _NET_WM_STATE_ADD);
5510
5511         stack();
5512
5513         focus_flush();
5514
5515         move_stp = 0;
5516         switch (args->id) {
5517         case SWM_ARG_ID_MOVELEFT:
5518                 X(win) -= (SWM_MOVE_STEPS - border_width);
5519                 move_stp = 1;
5520                 break;
5521         case SWM_ARG_ID_MOVERIGHT:
5522                 X(win) += (SWM_MOVE_STEPS - border_width);
5523                 move_stp = 1;
5524                 break;
5525         case SWM_ARG_ID_MOVEUP:
5526                 Y(win) -= (SWM_MOVE_STEPS - border_width);
5527                 move_stp = 1;
5528                 break;
5529         case SWM_ARG_ID_MOVEDOWN:
5530                 Y(win) += (SWM_MOVE_STEPS - border_width);
5531                 move_stp = 1;
5532                 break;
5533         default:
5534                 break;
5535         }
5536         if (move_stp) {
5537                 constrain_window(win, r, 0);
5538                 update_window(win);
5539                 store_float_geom(win, r);
5540                 return;
5541         }
5542
5543         xcb_grab_pointer(conn, 0, win->id, MOUSEMASK,
5544             XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC,
5545             XCB_WINDOW_NONE, cursors[XC_FLEUR].cid, XCB_CURRENT_TIME);
5546
5547         /* get cursor offset from window root */
5548         qpr = xcb_query_pointer_reply(conn, xcb_query_pointer(conn, win->id),
5549                 NULL);
5550         if (!qpr) {
5551                 xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
5552                 return;
5553         }
5554
5555         xcb_flush(conn);
5556         moving = 1;
5557         while ((evt = xcb_wait_for_event(conn)) && moving) {
5558                 switch (XCB_EVENT_RESPONSE_TYPE(evt)) {
5559                 case XCB_BUTTON_RELEASE:
5560                         DNPRINTF(SWM_D_EVENT, "move: BUTTON_RELEASE\n");
5561                         moving = 0;
5562                         break;
5563                 case XCB_MOTION_NOTIFY:
5564                         mne = (xcb_motion_notify_event_t *)evt;
5565                         X(win) = mne->root_x - qpr->win_x - border_width;
5566                         Y(win) = mne->root_y - qpr->win_y - border_width;
5567
5568                         constrain_window(win, r, 0);
5569
5570                         /* not free, don't sync more than 120 times / second */
5571                         if ((mne->time - timestamp) > (1000 / 120) ) {
5572                                 timestamp = mne->time;
5573                                 update_window(win);
5574                                 xcb_flush(conn);
5575                         }
5576                         break;
5577                 default:
5578                         event_handle(evt);
5579                         break;
5580                 }
5581                 free(evt);
5582         }
5583         if (timestamp) {
5584                 update_window(win);
5585                 xcb_flush(conn);
5586         }
5587         store_float_geom(win, r);
5588         free(qpr);
5589         xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
5590         DNPRINTF(SWM_D_EVENT, "move: done.\n");
5591 }
5592
5593 void
5594 move_step(struct swm_region *r, union arg *args)
5595 {
5596         struct ws_win           *win = NULL;
5597
5598         if (r && r->ws && r->ws->focus)
5599                 win = r->ws->focus;
5600         else
5601                 return;
5602
5603         if (!win->transient && !win->floating)
5604                 return;
5605
5606         move(win, args);
5607         focus_flush();
5608 }
5609
5610 /* key definitions */
5611 struct keyfunc {
5612         char                    name[SWM_FUNCNAME_LEN];
5613         void                    (*func)(struct swm_region *r, union arg *);
5614         union arg               args;
5615 } keyfuncs[KF_INVALID + 1] = {
5616         /* name                 function        argument */
5617         { "bar_toggle",         bar_toggle,     {.id = SWM_ARG_ID_BAR_TOGGLE} },
5618         { "bar_toggle_ws",      bar_toggle,     {.id = SWM_ARG_ID_BAR_TOGGLE_WS} },
5619         { "button2",            pressbutton,    {2} },
5620         { "cycle_layout",       cycle_layout,   {0} },
5621         { "flip_layout",        stack_config,   {.id = SWM_ARG_ID_FLIPLAYOUT} },
5622         { "float_toggle",       floating_toggle,{0} },
5623         { "focus_main",         focus,          {.id = SWM_ARG_ID_FOCUSMAIN} },
5624         { "focus_next",         focus,          {.id = SWM_ARG_ID_FOCUSNEXT} },
5625         { "focus_prev",         focus,          {.id = SWM_ARG_ID_FOCUSPREV} },
5626         { "height_grow",        resize_step,    {.id = SWM_ARG_ID_HEIGHTGROW} },
5627         { "height_shrink",      resize_step,    {.id = SWM_ARG_ID_HEIGHTSHRINK} },
5628         { "iconify",            iconify,        {0} },
5629         { "master_shrink",      stack_config,   {.id = SWM_ARG_ID_MASTERSHRINK} },
5630         { "master_grow",        stack_config,   {.id = SWM_ARG_ID_MASTERGROW} },
5631         { "master_add",         stack_config,   {.id = SWM_ARG_ID_MASTERADD} },
5632         { "master_del",         stack_config,   {.id = SWM_ARG_ID_MASTERDEL} },
5633         { "move_down",          move_step,      {.id = SWM_ARG_ID_MOVEDOWN} },
5634         { "move_left",          move_step,      {.id = SWM_ARG_ID_MOVELEFT} },
5635         { "move_right",         move_step,      {.id = SWM_ARG_ID_MOVERIGHT} },
5636         { "move_up",            move_step,      {.id = SWM_ARG_ID_MOVEUP} },
5637         { "mvrg_1",             send_to_rg,     {.id = 0} },
5638         { "mvrg_2",             send_to_rg,     {.id = 1} },
5639         { "mvrg_3",             send_to_rg,     {.id = 2} },
5640         { "mvrg_4",             send_to_rg,     {.id = 3} },
5641         { "mvrg_5",             send_to_rg,     {.id = 4} },
5642         { "mvrg_6",             send_to_rg,     {.id = 5} },
5643         { "mvrg_7",             send_to_rg,     {.id = 6} },
5644         { "mvrg_8",             send_to_rg,     {.id = 7} },
5645         { "mvrg_9",             send_to_rg,     {.id = 8} },
5646         { "mvws_1",             send_to_ws,     {.id = 0} },
5647         { "mvws_2",             send_to_ws,     {.id = 1} },
5648         { "mvws_3",             send_to_ws,     {.id = 2} },
5649         { "mvws_4",             send_to_ws,     {.id = 3} },
5650         { "mvws_5",             send_to_ws,     {.id = 4} },
5651         { "mvws_6",             send_to_ws,     {.id = 5} },
5652         { "mvws_7",             send_to_ws,     {.id = 6} },
5653         { "mvws_8",             send_to_ws,     {.id = 7} },
5654         { "mvws_9",             send_to_ws,     {.id = 8} },
5655         { "mvws_10",            send_to_ws,     {.id = 9} },
5656         { "mvws_11",            send_to_ws,     {.id = 10} },
5657         { "mvws_12",            send_to_ws,     {.id = 11} },
5658         { "mvws_13",            send_to_ws,     {.id = 12} },
5659         { "mvws_14",            send_to_ws,     {.id = 13} },
5660         { "mvws_15",            send_to_ws,     {.id = 14} },
5661         { "mvws_16",            send_to_ws,     {.id = 15} },
5662         { "mvws_17",            send_to_ws,     {.id = 16} },
5663         { "mvws_18",            send_to_ws,     {.id = 17} },
5664         { "mvws_19",            send_to_ws,     {.id = 18} },
5665         { "mvws_20",            send_to_ws,     {.id = 19} },
5666         { "mvws_21",            send_to_ws,     {.id = 20} },
5667         { "mvws_22",            send_to_ws,     {.id = 21} },
5668         { "name_workspace",     name_workspace, {0} },
5669         { "quit",               quit,           {0} },
5670         { "raise_toggle",       raise_toggle,   {0} },
5671         { "restart",            restart,        {0} },
5672         { "rg_1",               focusrg,        {.id = 0} },
5673         { "rg_2",               focusrg,        {.id = 1} },
5674         { "rg_3",               focusrg,        {.id = 2} },
5675         { "rg_4",               focusrg,        {.id = 3} },
5676         { "rg_5",               focusrg,        {.id = 4} },
5677         { "rg_6",               focusrg,        {.id = 5} },
5678         { "rg_7",               focusrg,        {.id = 6} },
5679         { "rg_8",               focusrg,        {.id = 7} },
5680         { "rg_9",               focusrg,        {.id = 8} },
5681         { "rg_next",            cyclerg,        {.id = SWM_ARG_ID_CYCLERG_UP} },
5682         { "rg_prev",            cyclerg,        {.id = SWM_ARG_ID_CYCLERG_DOWN} },
5683         { "screen_next",        cyclerg,        {.id = SWM_ARG_ID_CYCLERG_UP} },
5684         { "screen_prev",        cyclerg,        {.id = SWM_ARG_ID_CYCLERG_DOWN} },
5685         { "search_win",         search_win,     {0} },
5686         { "search_workspace",   search_workspace,       {0} },
5687         { "spawn_custom",       NULL,           {0} },
5688         { "stack_inc",          stack_config,   {.id = SWM_ARG_ID_STACKINC} },
5689         { "stack_dec",          stack_config,   {.id = SWM_ARG_ID_STACKDEC} },
5690         { "stack_reset",        stack_config,   {.id = SWM_ARG_ID_STACKRESET} },
5691         { "swap_main",          swapwin,        {.id = SWM_ARG_ID_SWAPMAIN} },
5692         { "swap_next",          swapwin,        {.id = SWM_ARG_ID_SWAPNEXT} },
5693         { "swap_prev",          swapwin,        {.id = SWM_ARG_ID_SWAPPREV} },
5694         { "uniconify",          uniconify,      {0} },
5695         { "version",            version,        {0} },
5696         { "width_grow",         resize_step,    {.id = SWM_ARG_ID_WIDTHGROW} },
5697         { "width_shrink",       resize_step,    {.id = SWM_ARG_ID_WIDTHSHRINK} },
5698         { "wind_del",           wkill,          {.id = SWM_ARG_ID_DELETEWINDOW} },
5699         { "wind_kill",          wkill,          {.id = SWM_ARG_ID_KILLWINDOW} },
5700         { "ws_1",               switchws,       {.id = 0} },
5701         { "ws_2",               switchws,       {.id = 1} },
5702         { "ws_3",               switchws,       {.id = 2} },
5703         { "ws_4",               switchws,       {.id = 3} },
5704         { "ws_5",               switchws,       {.id = 4} },
5705         { "ws_6",               switchws,       {.id = 5} },
5706         { "ws_7",               switchws,       {.id = 6} },
5707         { "ws_8",               switchws,       {.id = 7} },
5708         { "ws_9",               switchws,       {.id = 8} },
5709         { "ws_10",              switchws,       {.id = 9} },
5710         { "ws_11",              switchws,       {.id = 10} },
5711         { "ws_12",              switchws,       {.id = 11} },
5712         { "ws_13",              switchws,       {.id = 12} },
5713         { "ws_14",              switchws,       {.id = 13} },
5714         { "ws_15",              switchws,       {.id = 14} },
5715         { "ws_16",              switchws,       {.id = 15} },
5716         { "ws_17",              switchws,       {.id = 16} },
5717         { "ws_18",              switchws,       {.id = 17} },
5718         { "ws_19",              switchws,       {.id = 18} },
5719         { "ws_20",              switchws,       {.id = 19} },
5720         { "ws_21",              switchws,       {.id = 20} },
5721         { "ws_22",              switchws,       {.id = 21} },
5722         { "ws_next",            cyclews,        {.id = SWM_ARG_ID_CYCLEWS_UP} },
5723         { "ws_next_all",        cyclews,        {.id = SWM_ARG_ID_CYCLEWS_UP_ALL} },
5724         { "ws_prev",            cyclews,        {.id = SWM_ARG_ID_CYCLEWS_DOWN} },
5725         { "ws_prev_all",        cyclews,        {.id = SWM_ARG_ID_CYCLEWS_DOWN_ALL} },
5726         { "ws_prior",           priorws,        {0} },
5727         { "dumpwins",           dumpwins,       {0} }, /* MUST BE LAST */
5728         { "invalid key func",   NULL,           {0} },
5729 };
5730
5731 int
5732 key_cmp(struct key *kp1, struct key *kp2)
5733 {
5734         if (kp1->keysym < kp2->keysym)
5735                 return (-1);
5736         if (kp1->keysym > kp2->keysym)
5737                 return (1);
5738
5739         if (kp1->mod < kp2->mod)
5740                 return (-1);
5741         if (kp1->mod > kp2->mod)
5742                 return (1);
5743
5744         return (0);
5745 }
5746
5747 /* mouse */
5748 enum { client_click, root_click };
5749 struct button {
5750         unsigned int            action;
5751         unsigned int            mask;
5752         unsigned int            button;
5753         void                    (*func)(struct ws_win *, union arg *);
5754         union arg               args;
5755 } buttons[] = {
5756 #define MODKEY_SHIFT    MODKEY | XCB_MOD_MASK_SHIFT
5757           /* action     key             mouse button    func    args */
5758         { client_click, MODKEY,         XCB_BUTTON_INDEX_3,     resize, {.id = SWM_ARG_ID_DONTCENTER} },
5759         { client_click, MODKEY_SHIFT,   XCB_BUTTON_INDEX_3,     resize, {.id = SWM_ARG_ID_CENTER} },
5760         { client_click, MODKEY,         XCB_BUTTON_INDEX_1,     move,   {0} },
5761 #undef MODKEY_SHIFT
5762 };
5763
5764 void
5765 update_modkey(unsigned int mod)
5766 {
5767         int                     i;
5768         struct key              *kp;
5769
5770         mod_key = mod;
5771         RB_FOREACH(kp, key_tree, &keys)
5772                 if (kp->mod & XCB_MOD_MASK_SHIFT)
5773                         kp->mod = mod | XCB_MOD_MASK_SHIFT;
5774                 else
5775                         kp->mod = mod;
5776
5777         for (i = 0; i < LENGTH(buttons); i++)
5778                 if (buttons[i].mask & XCB_MOD_MASK_SHIFT)
5779                         buttons[i].mask = mod | XCB_MOD_MASK_SHIFT;
5780                 else
5781                         buttons[i].mask = mod;
5782 }
5783
5784 int
5785 spawn_expand(struct swm_region *r, union arg *args, const char *spawn_name,
5786     char ***ret_args)
5787 {
5788         struct spawn_prog       *prog = NULL;
5789         int                     i;
5790         char                    *ap, **real_args;
5791
5792         /* suppress unused warning since var is needed */
5793         (void)args;
5794
5795         DNPRINTF(SWM_D_SPAWN, "spawn_expand: %s\n", spawn_name);
5796
5797         /* find program */
5798         TAILQ_FOREACH(prog, &spawns, entry) {
5799                 if (!strcasecmp(spawn_name, prog->name))
5800                         break;
5801         }
5802         if (prog == NULL) {
5803                 warnx("spawn_custom: program %s not found", spawn_name);
5804                 return (-1);
5805         }
5806
5807         /* make room for expanded args */
5808         if ((real_args = calloc(prog->argc + 1, sizeof(char *))) == NULL)
5809                 err(1, "spawn_custom: calloc real_args");
5810
5811         /* expand spawn_args into real_args */
5812         for (i = 0; i < prog->argc; i++) {
5813                 ap = prog->argv[i];
5814                 DNPRINTF(SWM_D_SPAWN, "spawn_custom: raw arg: %s\n", ap);
5815                 if (!strcasecmp(ap, "$bar_border")) {
5816                         if ((real_args[i] =
5817                             strdup(r->s->c[SWM_S_COLOR_BAR_BORDER].name))
5818                             == NULL)
5819                                 err(1,  "spawn_custom border color");
5820                 } else if (!strcasecmp(ap, "$bar_color")) {
5821                         if ((real_args[i] =
5822                             strdup(r->s->c[SWM_S_COLOR_BAR].name))
5823                             == NULL)
5824                                 err(1, "spawn_custom bar color");
5825                 } else if (!strcasecmp(ap, "$bar_font")) {
5826                         if ((real_args[i] = strdup(bar_fonts))
5827                             == NULL)
5828                                 err(1, "spawn_custom bar fonts");
5829                 } else if (!strcasecmp(ap, "$bar_font_color")) {
5830                         if ((real_args[i] =
5831                             strdup(r->s->c[SWM_S_COLOR_BAR_FONT].name))
5832                             == NULL)
5833                                 err(1, "spawn_custom color font");
5834                 } else if (!strcasecmp(ap, "$color_focus")) {
5835                         if ((real_args[i] =
5836                             strdup(r->s->c[SWM_S_COLOR_FOCUS].name))
5837                             == NULL)
5838                                 err(1, "spawn_custom color focus");
5839                 } else if (!strcasecmp(ap, "$color_unfocus")) {
5840                         if ((real_args[i] =
5841                             strdup(r->s->c[SWM_S_COLOR_UNFOCUS].name))
5842                             == NULL)
5843                                 err(1, "spawn_custom color unfocus");
5844                 } else if (!strcasecmp(ap, "$region_index")) {
5845                         if (asprintf(&real_args[i], "%d",
5846                             get_region_index(r) + 1) < 1)
5847                                 err(1, "spawn_custom region index");
5848                 } else if (!strcasecmp(ap, "$workspace_index")) {
5849                         if (asprintf(&real_args[i], "%d", r->ws->idx + 1) < 1)
5850                                 err(1, "spawn_custom workspace index");
5851                 } else {
5852                         /* no match --> copy as is */
5853                         if ((real_args[i] = strdup(ap)) == NULL)
5854                                 err(1, "spawn_custom strdup(ap)");
5855                 }
5856                 DNPRINTF(SWM_D_SPAWN, "spawn_custom: cooked arg: %s\n",
5857                     real_args[i]);
5858         }
5859
5860 #ifdef SWM_DEBUG
5861         DNPRINTF(SWM_D_SPAWN, "spawn_custom: result: ");
5862         for (i = 0; i < prog->argc; i++)
5863                 DNPRINTF(SWM_D_SPAWN, "\"%s\" ", real_args[i]);
5864         DNPRINTF(SWM_D_SPAWN, "\n");
5865 #endif
5866         *ret_args = real_args;
5867         return (prog->argc);
5868 }
5869
5870 void
5871 spawn_custom(struct swm_region *r, union arg *args, const char *spawn_name)
5872 {
5873         union arg               a;
5874         char                    **real_args;
5875         int                     spawn_argc, i;
5876
5877         if ((spawn_argc = spawn_expand(r, args, spawn_name, &real_args)) < 0)
5878                 return;
5879         a.argv = real_args;
5880         if (fork() == 0)
5881                 spawn(r->ws->idx, &a, 1);
5882
5883         for (i = 0; i < spawn_argc; i++)
5884                 free(real_args[i]);
5885         free(real_args);
5886 }
5887
5888 void
5889 spawn_select(struct swm_region *r, union arg *args, const char *spawn_name,
5890     int *pid)
5891 {
5892         union arg               a;
5893         char                    **real_args;
5894         int                     i, spawn_argc;
5895
5896         if ((spawn_argc = spawn_expand(r, args, spawn_name, &real_args)) < 0)
5897                 return;
5898         a.argv = real_args;
5899
5900         if (pipe(select_list_pipe) == -1)
5901                 err(1, "pipe error");
5902         if (pipe(select_resp_pipe) == -1)
5903                 err(1, "pipe error");
5904
5905         if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
5906                 err(1, "could not disable SIGPIPE");
5907         switch (*pid = fork()) {
5908         case -1:
5909                 err(1, "cannot fork");
5910                 break;
5911         case 0: /* child */
5912                 if (dup2(select_list_pipe[0], STDIN_FILENO) == -1)
5913                         err(1, "dup2");
5914                 if (dup2(select_resp_pipe[1], STDOUT_FILENO) == -1)
5915                         err(1, "dup2");
5916                 close(select_list_pipe[1]);
5917                 close(select_resp_pipe[0]);
5918                 spawn(r->ws->idx, &a, 0);
5919                 break;
5920         default: /* parent */
5921                 close(select_list_pipe[0]);
5922                 close(select_resp_pipe[1]);
5923                 break;
5924         }
5925
5926         for (i = 0; i < spawn_argc; i++)
5927                 free(real_args[i]);
5928         free(real_args);
5929 }
5930
5931 void
5932 spawn_insert(const char *name, const char *args, int flags)
5933 {
5934         char                    *arg, *cp, *ptr;
5935         struct spawn_prog       *sp;
5936
5937         DNPRINTF(SWM_D_SPAWN, "spawn_insert: %s\n", name);
5938
5939         if ((sp = calloc(1, sizeof *sp)) == NULL)
5940                 err(1, "spawn_insert: calloc");
5941         if ((sp->name = strdup(name)) == NULL)
5942                 err(1, "spawn_insert: strdup");
5943
5944         /* convert the arguments to an argument list */
5945         if ((ptr = cp = strdup(args)) == NULL)
5946                 err(1, "spawn_insert: strdup");
5947         while ((arg = strsep(&ptr, " \t")) != NULL) {
5948                 /* empty field; skip it */
5949                 if (*arg == '\0')
5950                         continue;
5951
5952                 sp->argc++;
5953                 if ((sp->argv = realloc(sp->argv, sp->argc *
5954                     sizeof *sp->argv)) == NULL)
5955                         err(1, "spawn_insert: realloc");
5956                 if ((sp->argv[sp->argc - 1] = strdup(arg)) == NULL)
5957                         err(1, "spawn_insert: strdup");
5958         }
5959         free(cp);
5960
5961         sp->flags = flags;
5962
5963         TAILQ_INSERT_TAIL(&spawns, sp, entry);
5964         DNPRINTF(SWM_D_SPAWN, "spawn_insert: leave\n");
5965 }
5966
5967 void
5968 spawn_remove(struct spawn_prog *sp)
5969 {
5970         int                     i;
5971
5972         DNPRINTF(SWM_D_SPAWN, "spawn_remove: %s\n", sp->name);
5973
5974         TAILQ_REMOVE(&spawns, sp, entry);
5975         for (i = 0; i < sp->argc; i++)
5976                 free(sp->argv[i]);
5977         free(sp->argv);
5978         free(sp->name);
5979         free(sp);
5980
5981         DNPRINTF(SWM_D_SPAWN, "spawn_remove: leave\n");
5982 }
5983
5984 void
5985 setspawn(const char *name, const char *args, int flags)
5986 {
5987         struct spawn_prog       *sp;
5988
5989         DNPRINTF(SWM_D_SPAWN, "setspawn: %s\n", name);
5990
5991         if (name == NULL)
5992                 return;
5993
5994         /* Remove any old spawn under the same name. */
5995         TAILQ_FOREACH(sp, &spawns, entry)
5996                 if (!strcmp(sp->name, name)) {
5997                         spawn_remove(sp);
5998                         break;
5999                 }
6000
6001         if (*args != '\0')
6002                 spawn_insert(name, args, flags);
6003         else
6004                 warnx("error: setspawn: cannot find program: %s", name);
6005
6006         DNPRINTF(SWM_D_SPAWN, "setspawn: leave\n");
6007 }
6008
6009 int
6010 setconfspawn(char *selector, char *value, int flags)
6011 {
6012         char            *args;
6013
6014         args = expand_tilde(value);
6015
6016         DNPRINTF(SWM_D_SPAWN, "setconfspawn: [%s] [%s]\n", selector, args);
6017
6018         setspawn(selector, args, flags);
6019         free(args);
6020
6021         DNPRINTF(SWM_D_SPAWN, "setconfspawn: done.\n");
6022         return (0);
6023 }
6024
6025 void
6026 validate_spawns(void)
6027 {
6028         struct spawn_prog       *sp;
6029         char                    which[PATH_MAX];
6030         size_t                  i;
6031
6032         struct key              *kp;
6033
6034         RB_FOREACH(kp, key_tree, &keys) {
6035                 if (kp->funcid != KF_SPAWN_CUSTOM)
6036                         continue;
6037
6038                 /* find program */
6039                 TAILQ_FOREACH(sp, &spawns, entry) {
6040                         if (!strcasecmp(kp->spawn_name, sp->name))
6041                                 break;
6042                 }
6043
6044                 if (sp == NULL || sp->flags & SWM_SPAWN_OPTIONAL)
6045                         continue;
6046
6047                 /* verify we have the goods */
6048                 snprintf(which, sizeof which, "which %s", sp->argv[0]);
6049                 DNPRINTF(SWM_D_CONF, "validate_spawns: which %s\n",
6050                     sp->argv[0]);
6051                 for (i = strlen("which "); i < strlen(which); i++)
6052                         if (which[i] == ' ') {
6053                                 which[i] = '\0';
6054                                 break;
6055                         }
6056                 if (system(which) != 0)
6057                         add_startup_exception("could not find %s",
6058                             &which[strlen("which ")]);
6059         }
6060 }
6061
6062 void
6063 setup_spawn(void)
6064 {
6065         setconfspawn("lock",            "xlock",                0);
6066
6067         setconfspawn("term",            "xterm",                0);
6068         setconfspawn("spawn_term",      "xterm",                0);
6069
6070         setconfspawn("menu",            "dmenu_run"
6071                                         " -fn $bar_font"
6072                                         " -nb $bar_color"
6073                                         " -nf $bar_font_color"
6074                                         " -sb $bar_border"
6075                                         " -sf $bar_color",      0);
6076
6077         setconfspawn("search",          "dmenu"
6078                                         " -i"
6079                                         " -fn $bar_font"
6080                                         " -nb $bar_color"
6081                                         " -nf $bar_font_color"
6082                                         " -sb $bar_border"
6083                                         " -sf $bar_color",      0);
6084
6085         setconfspawn("name_workspace",  "dmenu"
6086                                         " -p Workspace"
6087                                         " -fn $bar_font"
6088                                         " -nb $bar_color"
6089                                         " -nf $bar_font_color"
6090                                         " -sb $bar_border"
6091                                         " -sf $bar_color",      0);
6092
6093          /* These are not verified for existence, even with a binding set. */
6094         setconfspawn("screenshot_all",  "screenshot.sh full",   SWM_SPAWN_OPTIONAL);
6095         setconfspawn("screenshot_wind", "screenshot.sh window", SWM_SPAWN_OPTIONAL);
6096         setconfspawn("initscr",         "initscreen.sh",        SWM_SPAWN_OPTIONAL);
6097 }
6098
6099 /* key bindings */
6100 #define SWM_MODNAME_SIZE        32
6101 #define SWM_KEY_WS              "\n+ \t"
6102 int
6103 parsekeys(char *keystr, unsigned int currmod, unsigned int *mod, KeySym *ks)
6104 {
6105         char                    *cp, *name;
6106         KeySym                  uks;
6107         DNPRINTF(SWM_D_KEY, "parsekeys: enter [%s]\n", keystr);
6108         if (mod == NULL || ks == NULL) {
6109                 DNPRINTF(SWM_D_KEY, "parsekeys: no mod or key vars\n");
6110                 return (1);
6111         }
6112         if (keystr == NULL || strlen(keystr) == 0) {
6113                 DNPRINTF(SWM_D_KEY, "parsekeys: no keystr\n");
6114                 return (1);
6115         }
6116         cp = keystr;
6117         *ks = XCB_NO_SYMBOL;
6118         *mod = 0;
6119         while ((name = strsep(&cp, SWM_KEY_WS)) != NULL) {
6120                 DNPRINTF(SWM_D_KEY, "parsekeys: key [%s]\n", name);
6121                 if (cp)
6122                         cp += (long)strspn(cp, SWM_KEY_WS);
6123                 if (strncasecmp(name, "MOD", SWM_MODNAME_SIZE) == 0)
6124                         *mod |= currmod;
6125                 else if (!strncasecmp(name, "Mod1", SWM_MODNAME_SIZE))
6126                         *mod |= XCB_MOD_MASK_1;
6127                 else if (!strncasecmp(name, "Mod2", SWM_MODNAME_SIZE))
6128                         *mod += XCB_MOD_MASK_2;
6129                 else if (!strncmp(name, "Mod3", SWM_MODNAME_SIZE))
6130                         *mod |= XCB_MOD_MASK_3;
6131                 else if (!strncmp(name, "Mod4", SWM_MODNAME_SIZE))
6132                         *mod |= XCB_MOD_MASK_4;
6133                 else if (strncasecmp(name, "SHIFT", SWM_MODNAME_SIZE) == 0)
6134                         *mod |= XCB_MOD_MASK_SHIFT;
6135                 else if (strncasecmp(name, "CONTROL", SWM_MODNAME_SIZE) == 0)
6136                         *mod |= XCB_MOD_MASK_CONTROL;
6137                 else {
6138                         *ks = XStringToKeysym(name);
6139                         XConvertCase(*ks, ks, &uks);
6140                         if (ks == XCB_NO_SYMBOL) {
6141                                 DNPRINTF(SWM_D_KEY,
6142                                     "parsekeys: invalid key %s\n",
6143                                     name);
6144                                 return (1);
6145                         }
6146                 }
6147         }
6148         DNPRINTF(SWM_D_KEY, "parsekeys: leave ok\n");
6149         return (0);
6150 }
6151
6152 char *
6153 strdupsafe(const char *str)
6154 {
6155         if (str == NULL)
6156                 return (NULL);
6157         else
6158                 return (strdup(str));
6159 }
6160
6161 void
6162 key_insert(unsigned int mod, KeySym ks, enum keyfuncid kfid,
6163     const char *spawn_name)
6164 {
6165         struct key              *kp;
6166
6167         DNPRINTF(SWM_D_KEY, "key_insert: enter %s [%s]\n",
6168             keyfuncs[kfid].name, spawn_name);
6169
6170         if ((kp = malloc(sizeof *kp)) == NULL)
6171                 err(1, "key_insert: malloc");
6172
6173         kp->mod = mod;
6174         kp->keysym = ks;
6175         kp->funcid = kfid;
6176         kp->spawn_name = strdupsafe(spawn_name);
6177         RB_INSERT(key_tree, &keys, kp);
6178
6179         DNPRINTF(SWM_D_KEY, "key_insert: leave\n");
6180 }
6181
6182 struct key *
6183 key_lookup(unsigned int mod, KeySym ks)
6184 {
6185         struct key              kp;
6186
6187         kp.keysym = ks;
6188         kp.mod = mod;
6189
6190         return (RB_FIND(key_tree, &keys, &kp));
6191 }
6192
6193 void
6194 key_remove(struct key *kp)
6195 {
6196         DNPRINTF(SWM_D_KEY, "key_remove: %s\n", keyfuncs[kp->funcid].name);
6197
6198         RB_REMOVE(key_tree, &keys, kp);
6199         free(kp->spawn_name);
6200         free(kp);
6201
6202         DNPRINTF(SWM_D_KEY, "key_remove: leave\n");
6203 }
6204
6205 void
6206 key_replace(struct key *kp, unsigned int mod, KeySym ks, enum keyfuncid kfid,
6207     const char *spawn_name)
6208 {
6209         DNPRINTF(SWM_D_KEY, "key_replace: %s [%s]\n", keyfuncs[kp->funcid].name,
6210             spawn_name);
6211
6212         key_remove(kp);
6213         key_insert(mod, ks, kfid, spawn_name);
6214
6215         DNPRINTF(SWM_D_KEY, "key_replace: leave\n");
6216 }
6217
6218 void
6219 setkeybinding(unsigned int mod, KeySym ks, enum keyfuncid kfid,
6220     const char *spawn_name)
6221 {
6222         struct key              *kp;
6223
6224         DNPRINTF(SWM_D_KEY, "setkeybinding: enter %s [%s]\n",
6225             keyfuncs[kfid].name, spawn_name);
6226
6227         if ((kp = key_lookup(mod, ks)) != NULL) {
6228                 if (kfid == KF_INVALID)
6229                         key_remove(kp);
6230                 else
6231                         key_replace(kp, mod, ks, kfid, spawn_name);
6232                 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
6233                 return;
6234         }
6235         if (kfid == KF_INVALID) {
6236                 warnx("bind: Key combination already unbound.");
6237                 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
6238                 return;
6239         }
6240
6241         key_insert(mod, ks, kfid, spawn_name);
6242         DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
6243 }
6244
6245 int
6246 setconfbinding(char *selector, char *value, int flags)
6247 {
6248         enum keyfuncid          kfid;
6249         unsigned int            mod;
6250         KeySym                  ks;
6251         struct spawn_prog       *sp;
6252
6253         /* suppress unused warning since var is needed */
6254         (void)flags;
6255
6256         DNPRINTF(SWM_D_KEY, "setconfbinding: enter\n");
6257         if (selector == NULL) {
6258                 DNPRINTF(SWM_D_KEY, "setconfbinding: unbind %s\n", value);
6259                 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
6260                         kfid = KF_INVALID;
6261                         setkeybinding(mod, ks, kfid, NULL);
6262                         return (0);
6263                 } else
6264                         return (1);
6265         }
6266         /* search by key function name */
6267         for (kfid = 0; kfid < KF_INVALID; (kfid)++) {
6268                 if (strncasecmp(selector, keyfuncs[kfid].name,
6269                     SWM_FUNCNAME_LEN) == 0) {
6270                         DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match\n",
6271                             selector);
6272                         if (parsekeys(value, mod_key, &mod, &ks) == 0) {
6273                                 setkeybinding(mod, ks, kfid, NULL);
6274                                 return (0);
6275                         } else
6276                                 return (1);
6277                 }
6278         }
6279         /* search by custom spawn name */
6280         TAILQ_FOREACH(sp, &spawns, entry) {
6281                 if (strcasecmp(selector, sp->name) == 0) {
6282                         DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match\n",
6283                             selector);
6284                         if (parsekeys(value, mod_key, &mod, &ks) == 0) {
6285                                 setkeybinding(mod, ks, KF_SPAWN_CUSTOM,
6286                                     sp->name);
6287                                 /* Custom binding; validate spawn. */
6288                                 sp->flags ^= SWM_SPAWN_OPTIONAL;
6289                                 return (0);
6290                         } else
6291                                 return (1);
6292                 }
6293         }
6294         DNPRINTF(SWM_D_KEY, "setconfbinding: no match\n");
6295         return (1);
6296 }
6297
6298 void
6299 setup_keys(void)
6300 {
6301 #define MODKEY_SHIFT    MODKEY | XCB_MOD_MASK_SHIFT
6302         setkeybinding(MODKEY,           XK_b,           KF_BAR_TOGGLE,  NULL);
6303         setkeybinding(MODKEY_SHIFT,     XK_b,           KF_BAR_TOGGLE_WS,NULL);
6304         setkeybinding(MODKEY,           XK_v,           KF_BUTTON2,     NULL);
6305         setkeybinding(MODKEY,           XK_space,       KF_CYCLE_LAYOUT,NULL);
6306         setkeybinding(MODKEY_SHIFT,     XK_backslash,   KF_FLIP_LAYOUT, NULL);
6307         setkeybinding(MODKEY,           XK_t,           KF_FLOAT_TOGGLE,NULL);
6308         setkeybinding(MODKEY,           XK_m,           KF_FOCUS_MAIN,  NULL);
6309         setkeybinding(MODKEY,           XK_j,           KF_FOCUS_NEXT,  NULL);
6310         setkeybinding(MODKEY,           XK_Tab,         KF_FOCUS_NEXT,  NULL);
6311         setkeybinding(MODKEY,           XK_k,           KF_FOCUS_PREV,  NULL);
6312         setkeybinding(MODKEY_SHIFT,     XK_Tab,         KF_FOCUS_PREV,  NULL);
6313         setkeybinding(MODKEY_SHIFT,     XK_equal,       KF_HEIGHT_GROW,NULL);
6314         setkeybinding(MODKEY_SHIFT,     XK_minus,       KF_HEIGHT_SHRINK,NULL);
6315         setkeybinding(MODKEY,           XK_w,           KF_ICONIFY,     NULL);
6316         setkeybinding(MODKEY,           XK_h,           KF_MASTER_SHRINK, NULL);
6317         setkeybinding(MODKEY,           XK_l,           KF_MASTER_GROW, NULL);
6318         setkeybinding(MODKEY,           XK_comma,       KF_MASTER_ADD,  NULL);
6319         setkeybinding(MODKEY,           XK_period,      KF_MASTER_DEL,  NULL);
6320         setkeybinding(MODKEY_SHIFT,     XK_bracketright,KF_MOVE_DOWN,NULL);
6321         setkeybinding(MODKEY,           XK_bracketleft, KF_MOVE_LEFT,NULL);
6322         setkeybinding(MODKEY,           XK_bracketright,KF_MOVE_RIGHT,NULL);
6323         setkeybinding(MODKEY_SHIFT,     XK_bracketleft, KF_MOVE_UP,     NULL);
6324         setkeybinding(MODKEY_SHIFT,     XK_KP_End,      KF_MVRG_1,      NULL);
6325         setkeybinding(MODKEY_SHIFT,     XK_KP_Down,     KF_MVRG_2,      NULL);
6326         setkeybinding(MODKEY_SHIFT,     XK_KP_Next,     KF_MVRG_3,      NULL);
6327         setkeybinding(MODKEY_SHIFT,     XK_KP_Left,     KF_MVRG_4,      NULL);
6328         setkeybinding(MODKEY_SHIFT,     XK_KP_Begin,    KF_MVRG_5,      NULL);
6329         setkeybinding(MODKEY_SHIFT,     XK_KP_Right,    KF_MVRG_6,      NULL);
6330         setkeybinding(MODKEY_SHIFT,     XK_KP_Home,     KF_MVRG_7,      NULL);
6331         setkeybinding(MODKEY_SHIFT,     XK_KP_Up,       KF_MVRG_8,      NULL);
6332         setkeybinding(MODKEY_SHIFT,     XK_KP_Prior,    KF_MVRG_9,      NULL);
6333         setkeybinding(MODKEY_SHIFT,     XK_1,           KF_MVWS_1,      NULL);
6334         setkeybinding(MODKEY_SHIFT,     XK_2,           KF_MVWS_2,      NULL);
6335         setkeybinding(MODKEY_SHIFT,     XK_3,           KF_MVWS_3,      NULL);
6336         setkeybinding(MODKEY_SHIFT,     XK_4,           KF_MVWS_4,      NULL);
6337         setkeybinding(MODKEY_SHIFT,     XK_5,           KF_MVWS_5,      NULL);
6338         setkeybinding(MODKEY_SHIFT,     XK_6,           KF_MVWS_6,      NULL);
6339         setkeybinding(MODKEY_SHIFT,     XK_7,           KF_MVWS_7,      NULL);
6340         setkeybinding(MODKEY_SHIFT,     XK_8,           KF_MVWS_8,      NULL);
6341         setkeybinding(MODKEY_SHIFT,     XK_9,           KF_MVWS_9,      NULL);
6342         setkeybinding(MODKEY_SHIFT,     XK_0,           KF_MVWS_10,     NULL);
6343         setkeybinding(MODKEY_SHIFT,     XK_F1,          KF_MVWS_11,     NULL);
6344         setkeybinding(MODKEY_SHIFT,     XK_F2,          KF_MVWS_12,     NULL);
6345         setkeybinding(MODKEY_SHIFT,     XK_F3,          KF_MVWS_13,     NULL);
6346         setkeybinding(MODKEY_SHIFT,     XK_F4,          KF_MVWS_14,     NULL);
6347         setkeybinding(MODKEY_SHIFT,     XK_F5,          KF_MVWS_15,     NULL);
6348         setkeybinding(MODKEY_SHIFT,     XK_F6,          KF_MVWS_16,     NULL);
6349         setkeybinding(MODKEY_SHIFT,     XK_F7,          KF_MVWS_17,     NULL);
6350         setkeybinding(MODKEY_SHIFT,     XK_F8,          KF_MVWS_18,     NULL);
6351         setkeybinding(MODKEY_SHIFT,     XK_F9,          KF_MVWS_19,     NULL);
6352         setkeybinding(MODKEY_SHIFT,     XK_F10,         KF_MVWS_20,     NULL);
6353         setkeybinding(MODKEY_SHIFT,     XK_F11,         KF_MVWS_21,     NULL);
6354         setkeybinding(MODKEY_SHIFT,     XK_F12,         KF_MVWS_22,     NULL);
6355         setkeybinding(MODKEY_SHIFT,     XK_slash,       KF_NAME_WORKSPACE,NULL);
6356         setkeybinding(MODKEY_SHIFT,     XK_q,           KF_QUIT,        NULL);
6357         setkeybinding(MODKEY_SHIFT,     XK_r,           KF_RAISE_TOGGLE,NULL);
6358         setkeybinding(MODKEY,           XK_q,           KF_RESTART,     NULL);
6359         setkeybinding(MODKEY,           XK_KP_End,      KF_RG_1,        NULL);
6360         setkeybinding(MODKEY,           XK_KP_Down,     KF_RG_2,        NULL);
6361         setkeybinding(MODKEY,           XK_KP_Next,     KF_RG_3,        NULL);
6362         setkeybinding(MODKEY,           XK_KP_Left,     KF_RG_4,        NULL);
6363         setkeybinding(MODKEY,           XK_KP_Begin,    KF_RG_5,        NULL);
6364         setkeybinding(MODKEY,           XK_KP_Right,    KF_RG_6,        NULL);
6365         setkeybinding(MODKEY,           XK_KP_Home,     KF_RG_7,        NULL);
6366         setkeybinding(MODKEY,           XK_KP_Up,       KF_RG_8,        NULL);
6367         setkeybinding(MODKEY,           XK_KP_Prior,    KF_RG_9,        NULL);
6368         setkeybinding(MODKEY_SHIFT,     XK_Right,       KF_RG_NEXT,     NULL);
6369         setkeybinding(MODKEY_SHIFT,     XK_Left,        KF_RG_PREV,     NULL);
6370         setkeybinding(MODKEY,           XK_f,           KF_SEARCH_WIN,  NULL);
6371         setkeybinding(MODKEY,           XK_slash,       KF_SEARCH_WORKSPACE,NULL);
6372         setkeybinding(MODKEY_SHIFT,     XK_i,           KF_SPAWN_CUSTOM,"initscr");
6373         setkeybinding(MODKEY_SHIFT,     XK_Delete,      KF_SPAWN_CUSTOM,"lock");
6374         setkeybinding(MODKEY,           XK_p,           KF_SPAWN_CUSTOM,"menu");
6375         setkeybinding(MODKEY,           XK_s,           KF_SPAWN_CUSTOM,"screenshot_all");
6376         setkeybinding(MODKEY_SHIFT,     XK_s,           KF_SPAWN_CUSTOM,"screenshot_wind");
6377         setkeybinding(MODKEY_SHIFT,     XK_Return,      KF_SPAWN_CUSTOM,"term");
6378         setkeybinding(MODKEY_SHIFT,     XK_comma,       KF_STACK_INC,   NULL);
6379         setkeybinding(MODKEY_SHIFT,     XK_period,      KF_STACK_DEC,   NULL);
6380         setkeybinding(MODKEY_SHIFT,     XK_space,       KF_STACK_RESET, NULL);
6381         setkeybinding(MODKEY,           XK_Return,      KF_SWAP_MAIN,   NULL);
6382         setkeybinding(MODKEY_SHIFT,     XK_j,           KF_SWAP_NEXT,   NULL);
6383         setkeybinding(MODKEY_SHIFT,     XK_k,           KF_SWAP_PREV,   NULL);
6384         setkeybinding(MODKEY_SHIFT,     XK_w,           KF_UNICONIFY,   NULL);
6385         setkeybinding(MODKEY_SHIFT,     XK_v,           KF_VERSION,     NULL);
6386         setkeybinding(MODKEY,           XK_equal,       KF_WIDTH_GROW,  NULL);
6387         setkeybinding(MODKEY,           XK_minus,       KF_WIDTH_SHRINK,NULL);
6388         setkeybinding(MODKEY,           XK_x,           KF_WIND_DEL,    NULL);
6389         setkeybinding(MODKEY_SHIFT,     XK_x,           KF_WIND_KILL,   NULL);
6390         setkeybinding(MODKEY,           XK_1,           KF_WS_1,        NULL);
6391         setkeybinding(MODKEY,           XK_2,           KF_WS_2,        NULL);
6392         setkeybinding(MODKEY,           XK_3,           KF_WS_3,        NULL);
6393         setkeybinding(MODKEY,           XK_4,           KF_WS_4,        NULL);
6394         setkeybinding(MODKEY,           XK_5,           KF_WS_5,        NULL);
6395         setkeybinding(MODKEY,           XK_6,           KF_WS_6,        NULL);
6396         setkeybinding(MODKEY,           XK_7,           KF_WS_7,        NULL);
6397         setkeybinding(MODKEY,           XK_8,           KF_WS_8,        NULL);
6398         setkeybinding(MODKEY,           XK_9,           KF_WS_9,        NULL);
6399         setkeybinding(MODKEY,           XK_0,           KF_WS_10,       NULL);
6400         setkeybinding(MODKEY,           XK_F1,          KF_WS_11,       NULL);
6401         setkeybinding(MODKEY,           XK_F2,          KF_WS_12,       NULL);
6402         setkeybinding(MODKEY,           XK_F3,          KF_WS_13,       NULL);
6403         setkeybinding(MODKEY,           XK_F4,          KF_WS_14,       NULL);
6404         setkeybinding(MODKEY,           XK_F5,          KF_WS_15,       NULL);
6405         setkeybinding(MODKEY,           XK_F6,          KF_WS_16,       NULL);
6406         setkeybinding(MODKEY,           XK_F7,          KF_WS_17,       NULL);
6407         setkeybinding(MODKEY,           XK_F8,          KF_WS_18,       NULL);
6408         setkeybinding(MODKEY,           XK_F9,          KF_WS_19,       NULL);
6409         setkeybinding(MODKEY,           XK_F10,         KF_WS_20,       NULL);
6410         setkeybinding(MODKEY,           XK_F11,         KF_WS_21,       NULL);
6411         setkeybinding(MODKEY,           XK_F12,         KF_WS_22,       NULL);
6412         setkeybinding(MODKEY,           XK_Right,       KF_WS_NEXT,     NULL);
6413         setkeybinding(MODKEY,           XK_Left,        KF_WS_PREV,     NULL);
6414         setkeybinding(MODKEY,           XK_Up,          KF_WS_NEXT_ALL, NULL);
6415         setkeybinding(MODKEY,           XK_Down,        KF_WS_PREV_ALL, NULL);
6416         setkeybinding(MODKEY,           XK_a,           KF_WS_PRIOR,    NULL);
6417 #ifdef SWM_DEBUG
6418         setkeybinding(MODKEY_SHIFT,     XK_d,           KF_DUMPWINS,    NULL);
6419 #endif
6420 #undef MODKEY_SHIFT
6421 }
6422
6423 void
6424 clear_keys(void)
6425 {
6426         struct key              *kp;
6427
6428         while (RB_EMPTY(&keys) == 0) {
6429                 kp = RB_ROOT(&keys);
6430                 key_remove(kp);
6431         }
6432 }
6433
6434 int
6435 setkeymapping(char *selector, char *value, int flags)
6436 {
6437         char                    keymapping_file[PATH_MAX];
6438
6439         /* suppress unused warnings since vars are needed */
6440         (void)selector;
6441         (void)flags;
6442
6443         DNPRINTF(SWM_D_KEY, "setkeymapping: enter\n");
6444         if (value[0] == '~')
6445                 snprintf(keymapping_file, sizeof keymapping_file, "%s/%s",
6446                     pwd->pw_dir, &value[1]);
6447         else
6448                 strlcpy(keymapping_file, value, sizeof keymapping_file);
6449         clear_keys();
6450         /* load new key bindings; if it fails, revert to default bindings */
6451         if (conf_load(keymapping_file, SWM_CONF_KEYMAPPING)) {
6452                 clear_keys();
6453                 setup_keys();
6454         }
6455         DNPRINTF(SWM_D_KEY, "setkeymapping: leave\n");
6456         return (0);
6457 }
6458
6459 void
6460 updatenumlockmask(void)
6461 {
6462         unsigned int                            i, j;
6463         xcb_get_modifier_mapping_reply_t        *modmap_r;
6464         xcb_keycode_t                           *modmap, kc, *keycode;
6465
6466         numlockmask = 0;
6467
6468         modmap_r = xcb_get_modifier_mapping_reply(conn,
6469             xcb_get_modifier_mapping(conn),
6470             NULL);
6471         if (modmap_r) {
6472                 modmap = xcb_get_modifier_mapping_keycodes(modmap_r);
6473                 for (i = 0; i < 8; i++) {
6474                         for (j = 0; j < modmap_r->keycodes_per_modifier; j++) {
6475                                 kc = modmap[i * modmap_r->keycodes_per_modifier
6476                                     + j];
6477                                 keycode = xcb_key_symbols_get_keycode(syms,
6478                                                 XK_Num_Lock);
6479                                 if (kc == *keycode)
6480                                         numlockmask = (1 << i);
6481                                 free(keycode);
6482                         }
6483                 }
6484                 free(modmap_r);
6485         }
6486         DNPRINTF(SWM_D_MISC, "updatenumlockmask: %d\n", numlockmask);
6487 }
6488
6489 void
6490 grabkeys(void)
6491 {
6492         struct key              *kp;
6493         int                     num_screens, k, j;
6494         unsigned int            modifiers[4];
6495         xcb_keycode_t           *code;
6496
6497         DNPRINTF(SWM_D_MISC, "grabkeys\n");
6498         updatenumlockmask();
6499
6500         modifiers[0] = 0;
6501         modifiers[1] = numlockmask;
6502         modifiers[2] = XCB_MOD_MASK_LOCK;
6503         modifiers[3] = numlockmask | XCB_MOD_MASK_LOCK;
6504
6505         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
6506         for (k = 0; k < num_screens; k++) {
6507                 if (TAILQ_EMPTY(&screens[k].rl))
6508                         continue;
6509                 xcb_ungrab_key(conn, XCB_GRAB_ANY, screens[k].root,
6510                         XCB_MOD_MASK_ANY);
6511                 RB_FOREACH(kp, key_tree, &keys) {
6512                         if ((code = xcb_key_symbols_get_keycode(syms,
6513                                         kp->keysym))) {
6514                                 for (j = 0; j < LENGTH(modifiers); j++)
6515                                         xcb_grab_key(conn, 1,
6516                                             screens[k].root,
6517                                             kp->mod | modifiers[j],
6518                                             *code, XCB_GRAB_MODE_SYNC,
6519                                             XCB_GRAB_MODE_SYNC);
6520                                 free(code);
6521                         }
6522                 }
6523         }
6524 }
6525
6526 void
6527 grabbuttons(struct ws_win *win)
6528 {
6529         unsigned int    modifiers[4];
6530         int             i, j;
6531
6532         DNPRINTF(SWM_D_MOUSE, "grabbuttons: win 0x%x\n", win->id);
6533         updatenumlockmask();
6534
6535         modifiers[0] = 0;
6536         modifiers[1] = numlockmask;
6537         modifiers[2] = XCB_MOD_MASK_LOCK;
6538         modifiers[3] = numlockmask | XCB_MOD_MASK_LOCK;
6539
6540         for (i = 0; i < LENGTH(buttons); i++)
6541                 if (buttons[i].action == client_click)
6542                         for (j = 0; j < LENGTH(modifiers); ++j)
6543                                 xcb_grab_button(conn, 0, win->id, BUTTONMASK,
6544                                     XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC,
6545                                     XCB_WINDOW_NONE, XCB_CURSOR_NONE,
6546                                     buttons[i].button, buttons[i].mask |
6547                                     modifiers[j]);
6548 }
6549
6550 const char *quirkname[] = {
6551         "NONE",         /* config string for "no value" */
6552         "FLOAT",
6553         "TRANSSZ",
6554         "ANYWHERE",
6555         "XTERM_FONTADJ",
6556         "FULLSCREEN",
6557         "FOCUSPREV",
6558 };
6559
6560 /* SWM_Q_WS: retain '|' for back compat for now (2009-08-11) */
6561 #define SWM_Q_WS                "\n|+ \t"
6562 int
6563 parsequirks(char *qstr, unsigned long *quirk)
6564 {
6565         char                    *cp, *name;
6566         int                     i;
6567
6568         if (quirk == NULL)
6569                 return (1);
6570
6571         cp = qstr;
6572         *quirk = 0;
6573         while ((name = strsep(&cp, SWM_Q_WS)) != NULL) {
6574                 if (cp)
6575                         cp += (long)strspn(cp, SWM_Q_WS);
6576                 for (i = 0; i < LENGTH(quirkname); i++) {
6577                         if (!strncasecmp(name, quirkname[i], SWM_QUIRK_LEN)) {
6578                                 DNPRINTF(SWM_D_QUIRK,
6579                                     "parsequirks: %s\n", name);
6580                                 if (i == 0) {
6581                                         *quirk = 0;
6582                                         return (0);
6583                                 }
6584                                 *quirk |= 1 << (i-1);
6585                                 break;
6586                         }
6587                 }
6588                 if (i >= LENGTH(quirkname)) {
6589                         DNPRINTF(SWM_D_QUIRK,
6590                             "parsequirks: invalid quirk [%s]\n", name);
6591                         return (1);
6592                 }
6593         }
6594         return (0);
6595 }
6596
6597 void
6598 quirk_insert(const char *class, const char *name, unsigned long quirk)
6599 {
6600         struct quirk            *qp;
6601
6602         DNPRINTF(SWM_D_QUIRK, "quirk_insert: %s:%s [%lu]\n", class, name,
6603             quirk);
6604
6605         if ((qp = malloc(sizeof *qp)) == NULL)
6606                 err(1, "quirk_insert: malloc");
6607         if ((qp->class = strdup(class)) == NULL)
6608                 err(1, "quirk_insert: strdup");
6609         if ((qp->name = strdup(name)) == NULL)
6610                 err(1, "quirk_insert: strdup");
6611
6612         qp->quirk = quirk;
6613         TAILQ_INSERT_TAIL(&quirks, qp, entry);
6614
6615         DNPRINTF(SWM_D_QUIRK, "quirk_insert: leave\n");
6616 }
6617
6618 void
6619 quirk_remove(struct quirk *qp)
6620 {
6621         DNPRINTF(SWM_D_QUIRK, "quirk_remove: %s:%s [%lu]\n", qp->class,
6622             qp->name, qp->quirk);
6623
6624         TAILQ_REMOVE(&quirks, qp, entry);
6625         free(qp->class);
6626         free(qp->name);
6627         free(qp);
6628
6629         DNPRINTF(SWM_D_QUIRK, "quirk_remove: leave\n");
6630 }
6631
6632 void
6633 quirk_replace(struct quirk *qp, const char *class, const char *name,
6634     unsigned long quirk)
6635 {
6636         DNPRINTF(SWM_D_QUIRK, "quirk_replace: %s:%s [%lu]\n", qp->class,
6637             qp->name, qp->quirk);
6638
6639         quirk_remove(qp);
6640         quirk_insert(class, name, quirk);
6641
6642         DNPRINTF(SWM_D_QUIRK, "quirk_replace: leave\n");
6643 }
6644
6645 void
6646 setquirk(const char *class, const char *name, unsigned long quirk)
6647 {
6648         struct quirk            *qp;
6649
6650         DNPRINTF(SWM_D_QUIRK, "setquirk: enter %s:%s [%lu]\n", class, name,
6651            quirk);
6652
6653         /* Remove/replace existing quirk. */
6654         TAILQ_FOREACH(qp, &quirks, entry) {
6655                 if (!strcmp(qp->class, class) && !strcmp(qp->name, name)) {
6656                         if (!quirk)
6657                                 quirk_remove(qp);
6658                         else
6659                                 quirk_replace(qp, class, name, quirk);
6660                         DNPRINTF(SWM_D_QUIRK, "setquirk: leave\n");
6661                         return;
6662                 }
6663         }
6664
6665         /* Only insert if quirk is not NONE. */
6666         if (quirk)
6667                 quirk_insert(class, name, quirk);
6668
6669         DNPRINTF(SWM_D_QUIRK, "setquirk: leave\n");
6670 }
6671
6672 int
6673 setconfquirk(char *selector, char *value, int flags)
6674 {
6675         char                    *cp, *class, *name;
6676         int                     retval;
6677         unsigned long           qrks;
6678
6679         /* suppress unused warning since var is needed */
6680         (void)flags;
6681
6682         if (selector == NULL)
6683                 return (0);
6684         if ((cp = strchr(selector, ':')) == NULL)
6685                 return (0);
6686         *cp = '\0';
6687         class = selector;
6688         name = cp + 1;
6689         if ((retval = parsequirks(value, &qrks)) == 0)
6690                 setquirk(class, name, qrks);
6691         return (retval);
6692 }
6693
6694 void
6695 setup_quirks(void)
6696 {
6697         setquirk("MPlayer",             "xv",           SWM_Q_FLOAT | SWM_Q_FULLSCREEN | SWM_Q_FOCUSPREV);
6698         setquirk("OpenOffice.org 3.2",  "VCLSalFrame",  SWM_Q_FLOAT);
6699         setquirk("Firefox-bin",         "firefox-bin",  SWM_Q_TRANSSZ);
6700         setquirk("Firefox",             "Dialog",       SWM_Q_FLOAT);
6701         setquirk("Gimp",                "gimp",         SWM_Q_FLOAT | SWM_Q_ANYWHERE);
6702         setquirk("XTerm",               "xterm",        SWM_Q_XTERM_FONTADJ);
6703         setquirk("xine",                "Xine Window",  SWM_Q_FLOAT | SWM_Q_ANYWHERE);
6704         setquirk("Xitk",                "Xitk Combo",   SWM_Q_FLOAT | SWM_Q_ANYWHERE);
6705         setquirk("xine",                "xine Panel",   SWM_Q_FLOAT | SWM_Q_ANYWHERE);
6706         setquirk("Xitk",                "Xine Window",  SWM_Q_FLOAT | SWM_Q_ANYWHERE);
6707         setquirk("xine",                "xine Video Fullscreen Window", SWM_Q_FULLSCREEN | SWM_Q_FLOAT);
6708         setquirk("pcb",                 "pcb",          SWM_Q_FLOAT);
6709         setquirk("SDL_App",             "SDL_App",      SWM_Q_FLOAT | SWM_Q_FULLSCREEN);
6710 }
6711
6712 /* conf file stuff */
6713 #define SWM_CONF_FILE           "spectrwm.conf"
6714 #define SWM_CONF_FILE_OLD       "scrotwm.conf"
6715
6716 enum {
6717         SWM_S_BAR_ACTION,
6718         SWM_S_BAR_AT_BOTTOM,
6719         SWM_S_BAR_BORDER_WIDTH,
6720         SWM_S_BAR_DELAY,
6721         SWM_S_BAR_ENABLED,
6722         SWM_S_BAR_ENABLED_WS,
6723         SWM_S_BAR_FONT,
6724         SWM_S_BAR_FORMAT,
6725         SWM_S_BAR_JUSTIFY,
6726         SWM_S_BORDER_WIDTH,
6727         SWM_S_CLOCK_ENABLED,
6728         SWM_S_CLOCK_FORMAT,
6729         SWM_S_CYCLE_EMPTY,
6730         SWM_S_CYCLE_VISIBLE,
6731         SWM_S_DIALOG_RATIO,
6732         SWM_S_DISABLE_BORDER,
6733         SWM_S_FOCUS_CLOSE,
6734         SWM_S_FOCUS_CLOSE_WRAP,
6735         SWM_S_FOCUS_DEFAULT,
6736         SWM_S_FOCUS_MODE,
6737         SWM_S_REGION_PADDING,
6738         SWM_S_SPAWN_ORDER,
6739         SWM_S_SPAWN_TERM,
6740         SWM_S_SS_APP,
6741         SWM_S_SS_ENABLED,
6742         SWM_S_STACK_ENABLED,
6743         SWM_S_TERM_WIDTH,
6744         SWM_S_TILE_GAP,
6745         SWM_S_TITLE_CLASS_ENABLED,
6746         SWM_S_TITLE_NAME_ENABLED,
6747         SWM_S_URGENT_ENABLED,
6748         SWM_S_VERBOSE_LAYOUT,
6749         SWM_S_WINDOW_NAME_ENABLED,
6750         SWM_S_WORKSPACE_LIMIT
6751 };
6752
6753 int
6754 setconfvalue(char *selector, char *value, int flags)
6755 {
6756         struct workspace        *ws;
6757         int                     i, ws_id, num_screens;
6758         char                    *b;
6759
6760         /* suppress unused warning since var is needed */
6761         (void)selector;
6762
6763         switch (flags) {
6764         case SWM_S_BAR_ACTION:
6765                 free(bar_argv[0]);
6766                 if ((bar_argv[0] = expand_tilde(value)) == NULL)
6767                         err(1, "setconfvalue: bar_action");
6768                 break;
6769         case SWM_S_BAR_AT_BOTTOM:
6770                 bar_at_bottom = atoi(value);
6771                 break;
6772         case SWM_S_BAR_BORDER_WIDTH:
6773                 bar_border_width = atoi(value);
6774                 if (bar_border_width < 0)
6775                         bar_border_width = 0;
6776                 break;
6777         case SWM_S_BAR_DELAY:
6778                 /* No longer needed; leave to not break old conf files. */
6779                 break;
6780         case SWM_S_BAR_ENABLED:
6781                 bar_enabled = atoi(value);
6782                 break;
6783         case SWM_S_BAR_ENABLED_WS:
6784                 ws_id = atoi(selector) - 1;
6785                 if (ws_id < 0 || ws_id >= workspace_limit)
6786                         errx(1, "setconfvalue: bar_enabled_ws: invalid "
6787                             "workspace %d.", ws_id + 1);
6788
6789                 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
6790                 for (i = 0; i < num_screens; i++) {
6791                         ws = (struct workspace *)&screens[i].ws;
6792                         ws[ws_id].bar_enabled = atoi(value);
6793                 }
6794                 break;
6795         case SWM_S_BAR_FONT:
6796                 b = bar_fonts;
6797                 if (asprintf(&bar_fonts, "%s,%s", value, bar_fonts) == -1)
6798                         err(1, "setconfvalue: asprintf: failed to allocate "
6799                                 "memory for bar_fonts.");
6800                 free(b);
6801
6802                 /* If already in xft mode, then we are done. */
6803                 if (!bar_font_legacy)
6804                         break;
6805
6806                 /* If there are any non-XLFD entries, switch to Xft mode. */
6807                 while ((b = strsep(&value, ",")) != NULL) {
6808                         if (*b == '\0')
6809                                 continue;
6810                         if (!isxlfd(b)) {
6811                                 bar_font_legacy = 0;
6812                                 break;
6813                         }
6814                 }
6815                 break;
6816         case SWM_S_BAR_FORMAT:
6817                 free(bar_format);
6818                 if ((bar_format = strdup(value)) == NULL)
6819                         err(1, "setconfvalue: bar_format");
6820                 break;
6821         case SWM_S_BAR_JUSTIFY:
6822                 if (!strcmp(value, "left"))
6823                         bar_justify = SWM_BAR_JUSTIFY_LEFT;
6824                 else if (!strcmp(value, "center"))
6825                         bar_justify = SWM_BAR_JUSTIFY_CENTER;
6826                 else if (!strcmp(value, "right"))
6827                         bar_justify = SWM_BAR_JUSTIFY_RIGHT;
6828                 else
6829                         errx(1, "invalid bar_justify");
6830                 break;
6831         case SWM_S_BORDER_WIDTH:
6832                 border_width = atoi(value);
6833                 if (border_width < 0)
6834                         border_width = 0;
6835                 break;
6836         case SWM_S_CLOCK_ENABLED:
6837                 clock_enabled = atoi(value);
6838                 break;
6839         case SWM_S_CLOCK_FORMAT:
6840 #ifndef SWM_DENY_CLOCK_FORMAT
6841                 free(clock_format);
6842                 if ((clock_format = strdup(value)) == NULL)
6843                         err(1, "setconfvalue: clock_format");
6844 #endif
6845                 break;
6846         case SWM_S_CYCLE_EMPTY:
6847                 cycle_empty = atoi(value);
6848                 break;
6849         case SWM_S_CYCLE_VISIBLE:
6850                 cycle_visible = atoi(value);
6851                 break;
6852         case SWM_S_DIALOG_RATIO:
6853                 dialog_ratio = atof(value);
6854                 if (dialog_ratio > 1.0 || dialog_ratio <= .3)
6855                         dialog_ratio = .6;
6856                 break;
6857         case SWM_S_DISABLE_BORDER:
6858                 disable_border = atoi(value);
6859                 break;
6860         case SWM_S_FOCUS_CLOSE:
6861                 if (!strcmp(value, "first"))
6862                         focus_close = SWM_STACK_BOTTOM;
6863                 else if (!strcmp(value, "last"))
6864                         focus_close = SWM_STACK_TOP;
6865                 else if (!strcmp(value, "next"))
6866                         focus_close = SWM_STACK_ABOVE;
6867                 else if (!strcmp(value, "previous"))
6868                         focus_close = SWM_STACK_BELOW;
6869                 else
6870                         errx(1, "focus_close");
6871                 break;
6872         case SWM_S_FOCUS_CLOSE_WRAP:
6873                 focus_close_wrap = atoi(value);
6874                 break;
6875         case SWM_S_FOCUS_DEFAULT:
6876                 if (!strcmp(value, "last"))
6877                         focus_default = SWM_STACK_TOP;
6878                 else if (!strcmp(value, "first"))
6879                         focus_default = SWM_STACK_BOTTOM;
6880                 else
6881                         errx(1, "focus_default");
6882                 break;
6883         case SWM_S_FOCUS_MODE:
6884                 if (!strcmp(value, "default"))
6885                         focus_mode = SWM_FOCUS_DEFAULT;
6886                 else if (!strcmp(value, "follow") ||
6887                     !strcmp(value, "follow_cursor"))
6888                         focus_mode = SWM_FOCUS_FOLLOW;
6889                 else if (!strcmp(value, "manual"))
6890                         focus_mode = SWM_FOCUS_MANUAL;
6891                 else
6892                         errx(1, "focus_mode");
6893                 break;
6894         case SWM_S_REGION_PADDING:
6895                 region_padding = atoi(value);
6896                 if (region_padding < 0)
6897                         region_padding = 0;
6898                 break;
6899         case SWM_S_SPAWN_ORDER:
6900                 if (!strcmp(value, "first"))
6901                         spawn_position = SWM_STACK_BOTTOM;
6902                 else if (!strcmp(value, "last"))
6903                         spawn_position = SWM_STACK_TOP;
6904                 else if (!strcmp(value, "next"))
6905                         spawn_position = SWM_STACK_ABOVE;
6906                 else if (!strcmp(value, "previous"))
6907                         spawn_position = SWM_STACK_BELOW;
6908                 else
6909                         errx(1, "spawn_position");
6910                 break;
6911         case SWM_S_SPAWN_TERM:
6912                 setconfspawn("term", value, 0);
6913                 setconfspawn("spawn_term", value, 0);
6914                 break;
6915         case SWM_S_SS_APP:
6916                 /* No longer needed; leave to not break old conf files. */
6917                 break;
6918         case SWM_S_SS_ENABLED:
6919                 /* No longer needed; leave to not break old conf files. */
6920                 break;
6921         case SWM_S_STACK_ENABLED:
6922                 stack_enabled = atoi(value);
6923                 break;
6924         case SWM_S_TERM_WIDTH:
6925                 term_width = atoi(value);
6926                 if (term_width < 0)
6927                         term_width = 0;
6928                 break;
6929         case SWM_S_TILE_GAP:
6930                 tile_gap = atoi(value);
6931                 if (tile_gap < 0)
6932                         tile_gap = 0;
6933                 break;
6934         case SWM_S_TITLE_CLASS_ENABLED:
6935                 title_class_enabled = atoi(value);
6936                 break;
6937         case SWM_S_TITLE_NAME_ENABLED:
6938                 title_name_enabled = atoi(value);
6939                 break;
6940         case SWM_S_URGENT_ENABLED:
6941                 urgent_enabled = atoi(value);
6942                 break;
6943         case SWM_S_VERBOSE_LAYOUT:
6944                 verbose_layout = atoi(value);
6945                 for (i = 0; layouts[i].l_stack != NULL; i++) {
6946                         if (verbose_layout)
6947                                 layouts[i].l_string = fancy_stacker;
6948                         else
6949                                 layouts[i].l_string = plain_stacker;
6950                 }
6951                 break;
6952         case SWM_S_WINDOW_NAME_ENABLED:
6953                 window_name_enabled = atoi(value);
6954                 break;
6955         case SWM_S_WORKSPACE_LIMIT:
6956                 workspace_limit = atoi(value);
6957                 if (workspace_limit > SWM_WS_MAX)
6958                         workspace_limit = SWM_WS_MAX;
6959                 else if (workspace_limit < 1)
6960                         workspace_limit = 1;
6961                 break;
6962         default:
6963                 return (1);
6964         }
6965         return (0);
6966 }
6967
6968 int
6969 setconfmodkey(char *selector, char *value, int flags)
6970 {
6971         /* suppress unused warnings since vars are needed */
6972         (void)selector;
6973         (void)flags;
6974
6975         if (!strncasecmp(value, "Mod1", strlen("Mod1")))
6976                 update_modkey(XCB_MOD_MASK_1);
6977         else if (!strncasecmp(value, "Mod2", strlen("Mod2")))
6978                 update_modkey(XCB_MOD_MASK_2);
6979         else if (!strncasecmp(value, "Mod3", strlen("Mod3")))
6980                 update_modkey(XCB_MOD_MASK_3);
6981         else if (!strncasecmp(value, "Mod4", strlen("Mod4")))
6982                 update_modkey(XCB_MOD_MASK_4);
6983         else
6984                 return (1);
6985         return (0);
6986 }
6987
6988 int
6989 setconfcolor(char *selector, char *value, int flags)
6990 {
6991         setscreencolor(value, ((selector == NULL)?-1:atoi(selector)), flags);
6992         return (0);
6993 }
6994
6995 int
6996 setconfregion(char *selector, char *value, int flags)
6997 {
6998         /* suppress unused warnings since vars are needed */
6999         (void)selector;
7000         (void)flags;
7001
7002         custom_region(value);
7003         return (0);
7004 }
7005
7006 int
7007 setautorun(char *selector, char *value, int flags)
7008 {
7009         int                     ws_id;
7010         char                    s[1024];
7011         char                    *ap, *sp;
7012         union arg               a;
7013         int                     argc = 0;
7014         pid_t                   pid;
7015         struct pid_e            *p;
7016
7017         /* suppress unused warnings since vars are needed */
7018         (void)selector;
7019         (void)flags;
7020
7021         if (getenv("SWM_STARTED"))
7022                 return (0);
7023
7024         bzero(s, sizeof s);
7025         if (sscanf(value, "ws[%d]:%1023c", &ws_id, s) != 2)
7026                 errx(1, "invalid autorun entry, should be 'ws[<idx>]:command'");
7027         ws_id--;
7028         if (ws_id < 0 || ws_id >= workspace_limit)
7029                 errx(1, "autorun: invalid workspace %d", ws_id + 1);
7030
7031         sp = expand_tilde((char *)&s);
7032
7033         /*
7034          * This is a little intricate
7035          *
7036          * If the pid already exists we simply reuse it because it means it was
7037          * used before AND not claimed by manage_window.  We get away with
7038          * altering it in the parent after INSERT because this can not be a race
7039          */
7040         a.argv = NULL;
7041         while ((ap = strsep(&sp, " \t")) != NULL) {
7042                 if (*ap == '\0')
7043                         continue;
7044                 DNPRINTF(SWM_D_SPAWN, "setautorun: arg [%s]\n", ap);
7045                 argc++;
7046                 if ((a.argv = realloc(a.argv, argc * sizeof(char *))) == NULL)
7047                         err(1, "setautorun: realloc");
7048                 a.argv[argc - 1] = ap;
7049         }
7050         free(sp);
7051
7052         if ((a.argv = realloc(a.argv, (argc + 1) * sizeof(char *))) == NULL)
7053                 err(1, "setautorun: realloc");
7054         a.argv[argc] = NULL;
7055
7056         if ((pid = fork()) == 0) {
7057                 spawn(ws_id, &a, 1);
7058                 /* NOTREACHED */
7059                 _exit(1);
7060         }
7061         free(a.argv);
7062
7063         /* parent */
7064         p = find_pid(pid);
7065         if (p == NULL) {
7066                 p = calloc(1, sizeof *p);
7067                 if (p == NULL)
7068                         return (1);
7069                 TAILQ_INSERT_TAIL(&pidlist, p, entry);
7070         }
7071
7072         p->pid = pid;
7073         p->ws = ws_id;
7074
7075         return (0);
7076 }
7077
7078 int
7079 setlayout(char *selector, char *value, int flags)
7080 {
7081         int                     ws_id, i, x, mg, ma, si, ar, f = 0;
7082         int                     st = SWM_V_STACK, num_screens;
7083         char                    s[1024];
7084         struct workspace        *ws;
7085
7086         /* suppress unused warnings since vars are needed */
7087         (void)selector;
7088         (void)flags;
7089
7090         if (getenv("SWM_STARTED"))
7091                 return (0);
7092
7093         bzero(s, sizeof s);
7094         if (sscanf(value, "ws[%d]:%d:%d:%d:%d:%1023c",
7095             &ws_id, &mg, &ma, &si, &ar, s) != 6)
7096                 errx(1, "invalid layout entry, should be 'ws[<idx>]:"
7097                     "<master_grow>:<master_add>:<stack_inc>:<always_raise>:"
7098                     "<type>'");
7099         ws_id--;
7100         if (ws_id < 0 || ws_id >= workspace_limit)
7101                 errx(1, "layout: invalid workspace %d", ws_id + 1);
7102
7103         if (!strcasecmp(s, "vertical"))
7104                 st = SWM_V_STACK;
7105         else if (!strcasecmp(s, "vertical_flip")) {
7106                 st = SWM_V_STACK;
7107                 f = 1;
7108         } else if (!strcasecmp(s, "horizontal"))
7109                 st = SWM_H_STACK;
7110         else if (!strcasecmp(s, "horizontal_flip")) {
7111                 st = SWM_H_STACK;
7112                 f = 1;
7113         } else if (!strcasecmp(s, "fullscreen"))
7114                 st = SWM_MAX_STACK;
7115         else
7116                 errx(1, "invalid layout entry, should be 'ws[<idx>]:"
7117                     "<master_grow>:<master_add>:<stack_inc>:<always_raise>:"
7118                     "<type>'");
7119
7120         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7121         for (i = 0; i < num_screens; i++) {
7122                 ws = (struct workspace *)&screens[i].ws;
7123                 ws[ws_id].cur_layout = &layouts[st];
7124
7125                 ws[ws_id].always_raise = ar;
7126                 if (st == SWM_MAX_STACK)
7127                         continue;
7128
7129                 /* master grow */
7130                 for (x = 0; x < abs(mg); x++) {
7131                         ws[ws_id].cur_layout->l_config(&ws[ws_id],
7132                             mg >= 0 ?  SWM_ARG_ID_MASTERGROW :
7133                             SWM_ARG_ID_MASTERSHRINK);
7134                         stack();
7135                 }
7136                 /* master add */
7137                 for (x = 0; x < abs(ma); x++) {
7138                         ws[ws_id].cur_layout->l_config(&ws[ws_id],
7139                             ma >= 0 ?  SWM_ARG_ID_MASTERADD :
7140                             SWM_ARG_ID_MASTERDEL);
7141                         stack();
7142                 }
7143                 /* stack inc */
7144                 for (x = 0; x < abs(si); x++) {
7145                         ws[ws_id].cur_layout->l_config(&ws[ws_id],
7146                             si >= 0 ?  SWM_ARG_ID_STACKINC :
7147                             SWM_ARG_ID_STACKDEC);
7148                         stack();
7149                 }
7150                 /* Apply flip */
7151                 if (f) {
7152                         ws[ws_id].cur_layout->l_config(&ws[ws_id],
7153                             SWM_ARG_ID_FLIPLAYOUT);
7154                         stack();
7155                 }
7156         }
7157
7158         focus_flush();
7159
7160         return (0);
7161 }
7162
7163 /* config options */
7164 struct config_option {
7165         char                    *optname;
7166         int                     (*func)(char*, char*, int);
7167         int                     funcflags;
7168 };
7169 struct config_option configopt[] = {
7170         { "autorun",                    setautorun,     0 },
7171         { "bar_action",                 setconfvalue,   SWM_S_BAR_ACTION },
7172         { "bar_at_bottom",              setconfvalue,   SWM_S_BAR_AT_BOTTOM },
7173         { "bar_border",                 setconfcolor,   SWM_S_COLOR_BAR_BORDER },
7174         { "bar_border_unfocus",         setconfcolor,   SWM_S_COLOR_BAR_BORDER_UNFOCUS },
7175         { "bar_border_width",           setconfvalue,   SWM_S_BAR_BORDER_WIDTH },
7176         { "bar_color",                  setconfcolor,   SWM_S_COLOR_BAR },
7177         { "bar_delay",                  setconfvalue,   SWM_S_BAR_DELAY },
7178         { "bar_enabled",                setconfvalue,   SWM_S_BAR_ENABLED },
7179         { "bar_enabled_ws",             setconfvalue,   SWM_S_BAR_ENABLED_WS },
7180         { "bar_font",                   setconfvalue,   SWM_S_BAR_FONT },
7181         { "bar_font_color",             setconfcolor,   SWM_S_COLOR_BAR_FONT },
7182         { "bar_format",                 setconfvalue,   SWM_S_BAR_FORMAT },
7183         { "bar_justify",                setconfvalue,   SWM_S_BAR_JUSTIFY },
7184         { "bind",                       setconfbinding, 0 },
7185         { "border_width",               setconfvalue,   SWM_S_BORDER_WIDTH },
7186         { "clock_enabled",              setconfvalue,   SWM_S_CLOCK_ENABLED },
7187         { "clock_format",               setconfvalue,   SWM_S_CLOCK_FORMAT },
7188         { "color_focus",                setconfcolor,   SWM_S_COLOR_FOCUS },
7189         { "color_unfocus",              setconfcolor,   SWM_S_COLOR_UNFOCUS },
7190         { "cycle_empty",                setconfvalue,   SWM_S_CYCLE_EMPTY },
7191         { "cycle_visible",              setconfvalue,   SWM_S_CYCLE_VISIBLE },
7192         { "dialog_ratio",               setconfvalue,   SWM_S_DIALOG_RATIO },
7193         { "disable_border",             setconfvalue,   SWM_S_DISABLE_BORDER },
7194         { "focus_close",                setconfvalue,   SWM_S_FOCUS_CLOSE },
7195         { "focus_close_wrap",           setconfvalue,   SWM_S_FOCUS_CLOSE_WRAP },
7196         { "focus_default",              setconfvalue,   SWM_S_FOCUS_DEFAULT },
7197         { "focus_mode",                 setconfvalue,   SWM_S_FOCUS_MODE },
7198         { "keyboard_mapping",           setkeymapping,  0 },
7199         { "layout",                     setlayout,      0 },
7200         { "modkey",                     setconfmodkey,  0 },
7201         { "program",                    setconfspawn,   0 },
7202         { "quirk",                      setconfquirk,   0 },
7203         { "region",                     setconfregion,  0 },
7204         { "region_padding",             setconfvalue,   SWM_S_REGION_PADDING },
7205         { "screenshot_app",             setconfvalue,   SWM_S_SS_APP },
7206         { "screenshot_enabled",         setconfvalue,   SWM_S_SS_ENABLED },
7207         { "spawn_position",             setconfvalue,   SWM_S_SPAWN_ORDER },
7208         { "spawn_term",                 setconfvalue,   SWM_S_SPAWN_TERM },
7209         { "stack_enabled",              setconfvalue,   SWM_S_STACK_ENABLED },
7210         { "term_width",                 setconfvalue,   SWM_S_TERM_WIDTH },
7211         { "tile_gap",                   setconfvalue,   SWM_S_TILE_GAP },
7212         { "title_class_enabled",        setconfvalue,   SWM_S_TITLE_CLASS_ENABLED },
7213         { "title_name_enabled",         setconfvalue,   SWM_S_TITLE_NAME_ENABLED },
7214         { "urgent_enabled",             setconfvalue,   SWM_S_URGENT_ENABLED },
7215         { "verbose_layout",             setconfvalue,   SWM_S_VERBOSE_LAYOUT },
7216         { "window_name_enabled",        setconfvalue,   SWM_S_WINDOW_NAME_ENABLED },
7217         { "workspace_limit",            setconfvalue,   SWM_S_WORKSPACE_LIMIT },
7218 };
7219
7220 void
7221 _add_startup_exception(const char *fmt, va_list ap)
7222 {
7223         if (vasprintf(&startup_exception, fmt, ap) == -1)
7224                 warn("%s: asprintf", __func__);
7225 }
7226
7227 void
7228 add_startup_exception(const char *fmt, ...)
7229 {
7230         va_list ap;
7231
7232         nr_exceptions++;
7233
7234         if (startup_exception)
7235                 return;
7236
7237         /* force bar to be enabled due to exception */
7238         bar_enabled = 1;
7239
7240         va_start(ap, fmt);
7241         _add_startup_exception(fmt, ap);
7242         va_end(ap);
7243 }
7244
7245 int
7246 conf_load(const char *filename, int keymapping)
7247 {
7248         FILE                    *config;
7249         char                    *line = NULL, *cp, *optsub, *optval = NULL;
7250         size_t                  linelen, lineno = 0;
7251         int                     wordlen, i, optidx;
7252         struct config_option    *opt = NULL;
7253
7254         DNPRINTF(SWM_D_CONF, "conf_load: begin\n");
7255
7256         if (filename == NULL) {
7257                 warnx("conf_load: no filename");
7258                 return (1);
7259         }
7260         if ((config = fopen(filename, "r")) == NULL) {
7261                 warn("conf_load: fopen: %s", filename);
7262                 return (1);
7263         }
7264
7265         while (!feof(config)) {
7266                 if (line)
7267                         free(line);
7268
7269                 if ((line = fparseln(config, &linelen, &lineno, NULL,
7270                     FPARSELN_UNESCCOMM | FPARSELN_UNESCCONT)) == NULL) {
7271                         if (ferror(config))
7272                                 err(1, "%s", filename);
7273                         else
7274                                 continue;
7275                 }
7276                 cp = line;
7277                 cp += strspn(cp, " \t\n"); /* eat whitespace */
7278                 if (cp[0] == '\0') {
7279                         /* empty line */
7280                         continue;
7281                 }
7282                 /* get config option */
7283                 wordlen = strcspn(cp, "=[ \t\n");
7284                 if (wordlen == 0) {
7285                         add_startup_exception("%s: line %zd: no option found",
7286                             filename, lineno);
7287                         continue;
7288                 }
7289                 optidx = -1;
7290                 for (i = 0; i < LENGTH(configopt); i++) {
7291                         opt = &configopt[i];
7292                         if (!strncasecmp(cp, opt->optname, wordlen) &&
7293                             (int)strlen(opt->optname) == wordlen) {
7294                                 optidx = i;
7295                                 break;
7296                         }
7297                 }
7298                 if (optidx == -1) {
7299                         add_startup_exception("%s: line %zd: unknown option "
7300                             "%.*s", filename, lineno, wordlen, cp);
7301                         continue;
7302                 }
7303                 if (keymapping && opt && strcmp(opt->optname, "bind")) {
7304                         add_startup_exception("%s: line %zd: invalid option "
7305                             "%.*s", filename, lineno, wordlen, cp);
7306                         continue;
7307                 }
7308                 cp += wordlen;
7309                 cp += strspn(cp, " \t\n"); /* eat whitespace */
7310
7311                 /* from here on out we call goto invalid to continue */
7312
7313                 /* get [selector] if any */
7314                 optsub = NULL;
7315                 if (*cp == '[') {
7316                         cp++;
7317                         wordlen = strcspn(cp, "]");
7318                         if (*cp != ']') {
7319                                 if (wordlen == 0) {
7320                                         add_startup_exception("%s: line %zd: "
7321                                             "syntax error", filename, lineno);
7322                                         goto invalid;
7323                                 }
7324
7325                                 if (asprintf(&optsub, "%.*s", wordlen, cp) ==
7326                                     -1) {
7327                                         add_startup_exception("%s: line %zd: "
7328                                             "unable to allocatememory for "
7329                                             "selector", filename, lineno);
7330                                         goto invalid;
7331                                 }
7332                         }
7333                         cp += wordlen;
7334                         cp += strspn(cp, "] \t\n"); /* eat trailing */
7335                 }
7336                 cp += strspn(cp, "= \t\n"); /* eat trailing */
7337                 /* get RHS value */
7338                 optval = strdup(cp);
7339                 if (strlen(optval) == 0) {
7340                         add_startup_exception("%s: line %zd: must supply value "
7341                             "to %s", filename, lineno,
7342                             configopt[optidx].optname);
7343                         goto invalid;
7344                 }
7345                 /* call function to deal with it all */
7346                 if (configopt[optidx].func(optsub, optval,
7347                     configopt[optidx].funcflags) != 0) {
7348                         add_startup_exception("%s: line %zd: invalid data for "
7349                             "%s", filename, lineno, configopt[optidx].optname);
7350                         goto invalid;
7351                 }
7352 invalid:
7353                 if (optval) {
7354                         free(optval);
7355                         optval = NULL;
7356                 }
7357                 if (optsub) {
7358                         free(optsub);
7359                         optsub = NULL;
7360                 }
7361         }
7362
7363         if (line)
7364                 free(line);
7365         fclose(config);
7366         DNPRINTF(SWM_D_CONF, "conf_load: end\n");
7367
7368         return (0);
7369 }
7370
7371 void
7372 set_child_transient(struct ws_win *win, xcb_window_t *trans)
7373 {
7374         struct ws_win           *parent, *w;
7375         struct swm_region       *r;
7376         struct workspace        *ws;
7377         xcb_icccm_wm_hints_t    wmh;
7378
7379         parent = find_window(win->transient);
7380         if (parent)
7381                 parent->focus_child = win;
7382         else {
7383                 DNPRINTF(SWM_D_MISC, "set_child_transient: parent doesn't exist"
7384                     " for 0x%x trans 0x%x\n", win->id, win->transient);
7385
7386                 r = root_to_region(win->wa->root, SWM_CK_ALL);
7387                 ws = r->ws;
7388                 /* parent doen't exist in our window list */
7389                 TAILQ_FOREACH(w, &ws->winlist, entry) {
7390                         if (xcb_icccm_get_wm_hints_reply(conn,
7391                             xcb_icccm_get_wm_hints(conn, w->id),
7392                             &wmh, NULL) != 1) {
7393                                 warnx("can't get hints for 0x%x", w->id);
7394                                 continue;
7395                         }
7396
7397                         if (win->hints.window_group != wmh.window_group)
7398                                 continue;
7399
7400                         w->focus_child = win;
7401                         win->transient = w->id;
7402                         *trans = w->id;
7403                         DNPRINTF(SWM_D_MISC, "set_child_transient: adjusting "
7404                             "transient to 0x%x\n", win->transient);
7405                         break;
7406                 }
7407         }
7408 }
7409
7410 pid_t
7411 window_get_pid(xcb_window_t win)
7412 {
7413         pid_t                           ret = 0;
7414         const char                      *errstr;
7415         xcb_atom_t                      apid;
7416         xcb_get_property_cookie_t       pc;
7417         xcb_get_property_reply_t        *pr;
7418
7419         apid = get_atom_from_string("_NET_WM_PID");
7420         if (apid == XCB_ATOM_NONE)
7421                 goto tryharder;
7422
7423         pc = xcb_get_property(conn, 0, win, apid, XCB_ATOM_CARDINAL, 0, 1);
7424         pr = xcb_get_property_reply(conn, pc, NULL);
7425         if (!pr)
7426                 goto tryharder;
7427         if (pr->type != XCB_ATOM_CARDINAL) {
7428                 free(pr);
7429                 goto tryharder;
7430         }
7431
7432         if (pr->type == apid && pr->format == 32)
7433                 ret = *((pid_t *)xcb_get_property_value(pr));
7434         free(pr);
7435
7436         return (ret);
7437
7438 tryharder:
7439         apid = get_atom_from_string("_SWM_PID");
7440         pc = xcb_get_property(conn, 0, win, apid, XCB_ATOM_STRING,
7441             0, SWM_PROPLEN);
7442         pr = xcb_get_property_reply(conn, pc, NULL);
7443         if (!pr)
7444                 return (0);
7445         if (pr->type != apid) {
7446                 free(pr);
7447                 return (0);
7448         }
7449
7450         ret = (pid_t)strtonum(xcb_get_property_value(pr), 0, INT_MAX, &errstr);
7451         free(pr);
7452
7453         return (ret);
7454 }
7455
7456 int
7457 get_ws_idx(xcb_window_t id)
7458 {
7459         int                     ws_idx = -1;
7460         char                    *prop = NULL;
7461         size_t                  proplen;
7462         const char              *errstr;
7463         xcb_get_property_reply_t        *gpr;
7464
7465         gpr = xcb_get_property_reply(conn,
7466                 xcb_get_property(conn, 0, id, a_swm_ws,
7467                     XCB_ATOM_STRING, 0, SWM_PROPLEN),
7468                 NULL);
7469         if (!gpr)
7470                 return (-1);
7471         if (gpr->type) {
7472                 proplen = xcb_get_property_value_length(gpr);
7473                 if (proplen > 0) {
7474                         prop = malloc(proplen + 1);
7475                         if (prop) {
7476                                 memcpy(prop,
7477                                     xcb_get_property_value(gpr),
7478                                     proplen);
7479                                 prop[proplen] = '\0';
7480                         }
7481                 }
7482         }
7483         free(gpr);
7484
7485         if (prop) {
7486                 DNPRINTF(SWM_D_PROP, "get_ws_idx: _SWM_WS: %s\n", prop);
7487                 ws_idx = (int)strtonum(prop, 0, workspace_limit - 1, &errstr);
7488                 if (errstr) {
7489                         DNPRINTF(SWM_D_PROP, "get_ws_idx: window: #%s: %s",
7490                             errstr, prop);
7491                 }
7492                 free(prop);
7493         }
7494
7495         return ws_idx;
7496 }
7497
7498 struct ws_win *
7499 manage_window(xcb_window_t id, uint16_t mapped)
7500 {
7501         xcb_window_t            trans = XCB_WINDOW_NONE;
7502         struct ws_win           *win, *ww;
7503         int                     ws_idx;
7504         char                    ws_idx_str[SWM_PROPLEN];
7505         struct swm_region       *r;
7506         struct pid_e            *p;
7507         struct quirk            *qp;
7508         uint32_t                i, wa[2];
7509         xcb_icccm_get_wm_protocols_reply_t      wpr;
7510
7511         if ((win = find_window(id)) != NULL) {
7512                 DNPRINTF(SWM_D_MISC, "manage_window: win 0x%x already "
7513                     "managed; skipping.)\n", id);
7514                 return (win);   /* Already managed. */
7515         }
7516
7517         /* See if window is on the unmanaged list. */
7518         if ((win = find_unmanaged_window(id)) != NULL) {
7519                 DNPRINTF(SWM_D_MISC, "manage_window: win 0x%x found on "
7520                     "unmanaged list.\n", id);
7521                 TAILQ_REMOVE(&win->ws->unmanagedlist, win, entry);
7522
7523                 if (win->transient)
7524                         set_child_transient(win, &trans);
7525
7526                 goto out;
7527         } else {
7528                 DNPRINTF(SWM_D_MISC, "manage_window: win 0x%x is new.\n", id);
7529         }
7530
7531         /* Create and initialize ws_win object. */
7532         if ((win = calloc(1, sizeof(struct ws_win))) == NULL)
7533                 err(1, "manage_window: calloc: failed to allocate memory for "
7534                     "new window");
7535
7536         win->id = id;
7537
7538         /* Get window geometry. */
7539         win->wa = xcb_get_geometry_reply(conn,
7540             xcb_get_geometry(conn, win->id),
7541             NULL);
7542
7543         /* Figure out which region the window belongs to. */
7544         r = root_to_region(win->wa->root, SWM_CK_ALL);
7545
7546         /* Ignore window border if there is one. */
7547         WIDTH(win) = win->wa->width;
7548         HEIGHT(win) = win->wa->height;
7549         X(win) = win->wa->x + win->wa->border_width - border_width;
7550         Y(win) = win->wa->y + win->wa->border_width - border_width;
7551         win->bordered = 1;
7552         win->mapped = mapped;
7553         win->floatmaxed = 0;
7554         win->ewmh_flags = 0;
7555         win->s = r->s;  /* this never changes */
7556
7557         store_float_geom(win, r);
7558
7559         /* Get WM_SIZE_HINTS. */
7560         xcb_icccm_get_wm_normal_hints_reply(conn,
7561             xcb_icccm_get_wm_normal_hints(conn, win->id),
7562             &win->sh, NULL);
7563
7564         /* Get WM_HINTS. */
7565         xcb_icccm_get_wm_hints_reply(conn,
7566             xcb_icccm_get_wm_hints(conn, win->id),
7567             &win->hints, NULL);
7568
7569         /* Get WM_TRANSIENT_FOR; see if window is a transient. */
7570         xcb_icccm_get_wm_transient_for_reply(conn,
7571             xcb_icccm_get_wm_transient_for(conn, win->id),
7572             &trans, NULL);
7573         if (trans) {
7574                 win->transient = trans;
7575                 set_child_transient(win, &win->transient);
7576         }
7577
7578         /* Get supported protocols. */
7579         if (xcb_icccm_get_wm_protocols_reply(conn,
7580             xcb_icccm_get_wm_protocols(conn, win->id, a_prot),
7581             &wpr, NULL)) {
7582                 for (i = 0; i < wpr.atoms_len; i++) {
7583                         if (wpr.atoms[i] == a_takefocus)
7584                                 win->take_focus = 1;
7585                         if (wpr.atoms[i] == a_delete)
7586                                 win->can_delete = 1;
7587                 }
7588                 xcb_icccm_get_wm_protocols_reply_wipe(&wpr);
7589         }
7590
7591         win->iconic = get_swm_iconic(win);
7592
7593         /* Figure out which workspace the window belongs to. */
7594         if ((p = find_pid(window_get_pid(win->id))) != NULL) {
7595                 win->ws = &r->s->ws[p->ws];
7596                 TAILQ_REMOVE(&pidlist, p, entry);
7597                 free(p);
7598                 p = NULL;
7599         } else if ((ws_idx = get_ws_idx(win->id)) != -1 &&
7600             !win->transient) {
7601                 /* _SWM_WS is set; use that. */
7602                 win->ws = &r->s->ws[ws_idx];
7603         } else if (trans && (ww = find_window(trans)) != NULL) {
7604                 /* Launch transients in the same ws as parent. */
7605                 win->ws = ww->ws;
7606         } else {
7607                 win->ws = r->ws;
7608         }
7609
7610         /* Set the _SWM_WS atom so we can remember this after reincarnation. */
7611         if (snprintf(ws_idx_str, SWM_PROPLEN, "%d", win->ws->idx) <
7612             SWM_PROPLEN) {
7613                 DNPRINTF(SWM_D_PROP, "manage_window: set _SWM_WS: %s\n",
7614                     ws_idx_str);
7615                 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
7616                     a_swm_ws, XCB_ATOM_STRING, 8, strlen(ws_idx_str),
7617                     ws_idx_str);
7618         }
7619
7620         /* Handle EWMH */
7621         ewmh_autoquirk(win);
7622
7623         /* Determine initial quirks. */
7624         if (xcb_icccm_get_wm_class_reply(conn,
7625             xcb_icccm_get_wm_class(conn, win->id),
7626             &win->ch, NULL)) {
7627                 DNPRINTF(SWM_D_CLASS, "manage_window: class: %s, name: %s\n",
7628                     win->ch.class_name, win->ch.instance_name);
7629
7630                 /* java is retarded so treat it special */
7631                 if (strstr(win->ch.instance_name, "sun-awt")) {
7632                         DNPRINTF(SWM_D_CLASS, "manage_window: java window "
7633                             "detected.\n");
7634                         win->java = 1;
7635                 }
7636
7637                 TAILQ_FOREACH(qp, &quirks, entry) {
7638                         if (!strcmp(win->ch.class_name, qp->class) &&
7639                             !strcmp(win->ch.instance_name, qp->name)) {
7640                                 DNPRINTF(SWM_D_CLASS, "manage_window: on quirks"
7641                                     "list; mask: 0x%lx\n", qp->quirk);
7642                                 if (qp->quirk & SWM_Q_FLOAT)
7643                                         win->floating = 1;
7644                                 win->quirks = qp->quirk;
7645                         }
7646                 }
7647         }
7648
7649         /* Alter window position if quirky */
7650         if (win->quirks & SWM_Q_ANYWHERE)
7651                 win->manual = 1;
7652
7653         /* Reset font sizes (the bruteforce way; no default keybinding). */
7654         if (win->quirks & SWM_Q_XTERM_FONTADJ) {
7655                 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
7656                         fake_keypress(win, XK_KP_Subtract, XCB_MOD_MASK_SHIFT);
7657                 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
7658                         fake_keypress(win, XK_KP_Add, XCB_MOD_MASK_SHIFT);
7659         }
7660
7661         /* Make sure window is positioned inside its region, if its active. */
7662         if (win->ws->r) {
7663                 constrain_window(win, win->ws->r, 0);
7664                 update_window(win);
7665         }
7666
7667         /* Select which X events to monitor and set border pixel color. */
7668         wa[0] = win->s->c[SWM_S_COLOR_UNFOCUS].pixel;
7669         wa[1] = XCB_EVENT_MASK_ENTER_WINDOW | XCB_EVENT_MASK_PROPERTY_CHANGE |
7670             XCB_EVENT_MASK_STRUCTURE_NOTIFY;
7671 #ifdef SWM_DEBUG
7672         wa[1] |= XCB_EVENT_MASK_LEAVE_WINDOW | XCB_EVENT_MASK_FOCUS_CHANGE;
7673 #endif
7674
7675         xcb_change_window_attributes(conn, win->id, XCB_CW_BORDER_PIXEL |
7676             XCB_CW_EVENT_MASK, wa);
7677
7678 out:
7679         /* Figure out where to stack the window in the workspace. */
7680         if (trans && (ww = find_window(trans)))
7681                 TAILQ_INSERT_AFTER(&win->ws->winlist, ww, win, entry);
7682         else if (win->ws->focus && spawn_position == SWM_STACK_ABOVE)
7683                 TAILQ_INSERT_AFTER(&win->ws->winlist, win->ws->focus, win,
7684                     entry);
7685         else if (win->ws->focus && spawn_position == SWM_STACK_BELOW)
7686                 TAILQ_INSERT_BEFORE(win->ws->focus, win, entry);
7687         else switch (spawn_position) {
7688         default:
7689         case SWM_STACK_TOP:
7690         case SWM_STACK_ABOVE:
7691                 TAILQ_INSERT_TAIL(&win->ws->winlist, win, entry);
7692                 break;
7693         case SWM_STACK_BOTTOM:
7694         case SWM_STACK_BELOW:
7695                 TAILQ_INSERT_HEAD(&win->ws->winlist, win, entry);
7696         }
7697
7698         /* Get initial _NET_WM_STATE */
7699         ewmh_get_win_state(win);
7700         /* Set initial _NET_WM_ALLOWED_ACTIONS */
7701         ewmh_update_actions(win);
7702
7703         grabbuttons(win);
7704
7705         DNPRINTF(SWM_D_MISC, "manage_window: done. window: 0x%x, (x,y) w x h: "
7706             "(%d,%d) %d x %d, ws: %d, iconic: %s, transient: 0x%x\n", win->id,
7707             X(win), Y(win), WIDTH(win), HEIGHT(win), win->ws->idx,
7708             YESNO(win->iconic), win->transient);
7709
7710         return (win);
7711 }
7712
7713 void
7714 free_window(struct ws_win *win)
7715 {
7716         DNPRINTF(SWM_D_MISC, "free_window: window: 0x%x\n", win->id);
7717
7718         if (win == NULL)
7719                 return;
7720
7721         TAILQ_REMOVE(&win->ws->unmanagedlist, win, entry);
7722
7723         if (win->wa)
7724                 free(win->wa);
7725
7726         xcb_icccm_get_wm_class_reply_wipe(&win->ch);
7727
7728         kill_refs(win);
7729
7730         /* paint memory */
7731         memset(win, 0xff, sizeof *win); /* XXX kill later */
7732
7733         free(win);
7734         DNPRINTF(SWM_D_MISC, "free_window: done.\n");
7735 }
7736
7737 void
7738 unmanage_window(struct ws_win *win)
7739 {
7740         struct ws_win           *parent;
7741
7742         if (win == NULL)
7743                 return;
7744
7745         DNPRINTF(SWM_D_MISC, "unmanage_window: window: 0x%x\n", win->id);
7746
7747         if (win->transient) {
7748                 parent = find_window(win->transient);
7749                 if (parent)
7750                         parent->focus_child = NULL;
7751         }
7752
7753         TAILQ_REMOVE(&win->ws->winlist, win, entry);
7754         TAILQ_INSERT_TAIL(&win->ws->unmanagedlist, win, entry);
7755 }
7756
7757 void
7758 expose(xcb_expose_event_t *e)
7759 {
7760         int                     i, num_screens;
7761         struct swm_region       *r;
7762
7763         DNPRINTF(SWM_D_EVENT, "expose: window: 0x%x\n", e->window);
7764
7765         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7766         for (i = 0; i < num_screens; i++)
7767                 TAILQ_FOREACH(r, &screens[i].rl, entry)
7768                         if (e->window == WINID(r->bar))
7769                                 bar_draw();
7770
7771         xcb_flush(conn);
7772 }
7773
7774 #ifdef SWM_DEBUG
7775 void
7776 focusin(xcb_focus_in_event_t *e)
7777 {
7778         DNPRINTF(SWM_D_EVENT, "focusin: window: 0x%x, mode: %s(%u), "
7779             "detail: %s(%u)\n", e->event, get_notify_mode_label(e->mode),
7780             e->mode, get_notify_detail_label(e->detail), e->detail);
7781 }
7782
7783 void
7784 focusout(xcb_focus_out_event_t *e)
7785 {
7786         DNPRINTF(SWM_D_EVENT, "focusout: window: 0x%x, mode: %s(%u), "
7787             "detail: %s(%u)\n", e->event, get_notify_mode_label(e->mode),
7788             e->mode, get_notify_detail_label(e->detail), e->detail);
7789 }
7790 #endif
7791
7792 void
7793 keypress(xcb_key_press_event_t *e)
7794 {
7795         xcb_keysym_t            keysym;
7796         struct key              *kp;
7797
7798         keysym = xcb_key_press_lookup_keysym(syms, e, 0);
7799
7800         DNPRINTF(SWM_D_EVENT, "keypress: keysym: %u, win (x,y): 0x%x (%d,%d), "
7801             "detail: %u, time: %u, root (x,y): 0x%x (%d,%d), child: 0x%x, "
7802             "state: %u, same_screen: %s\n", keysym, e->event, e->event_x,
7803             e->event_y, e->detail, e->time, e->root, e->root_x, e->root_y,
7804             e->child, e->state, YESNO(e->same_screen));
7805
7806         if ((kp = key_lookup(CLEANMASK(e->state), keysym)) == NULL)
7807                 goto out;
7808
7809         last_event_time = e->time;
7810
7811         if (kp->funcid == KF_SPAWN_CUSTOM)
7812                 spawn_custom(root_to_region(e->root, SWM_CK_ALL),
7813                     &(keyfuncs[kp->funcid].args), kp->spawn_name);
7814         else if (keyfuncs[kp->funcid].func)
7815                 keyfuncs[kp->funcid].func(root_to_region(e->root, SWM_CK_ALL),
7816                     &(keyfuncs[kp->funcid].args));
7817
7818 out:
7819         /* Unfreeze grab events. */
7820         xcb_allow_events(conn, XCB_ALLOW_ASYNC_KEYBOARD, e->time);
7821         xcb_flush(conn);
7822
7823         DNPRINTF(SWM_D_EVENT, "keypress: done.\n");
7824 }
7825
7826 void
7827 buttonpress(xcb_button_press_event_t *e)
7828 {
7829         struct ws_win           *win = NULL;
7830         struct swm_region       *r, *old_r;
7831         int                     i;
7832         int                     handled = 0;
7833
7834         DNPRINTF(SWM_D_EVENT, "buttonpress: win (x,y): 0x%x (%d,%d), "
7835             "detail: %u, time: %u, root (x,y): 0x%x (%d,%d), child: 0x%x, "
7836             "state: %u, same_screen: %s\n", e->event, e->event_x, e->event_y,
7837             e->detail, e->time, e->root, e->root_x, e->root_y, e->child,
7838             e->state, YESNO(e->same_screen));
7839
7840         if (e->event == e->root) {
7841                 if (e->child != 0) {
7842                         win = find_window(e->child);
7843                         /* Pass ButtonPress to window if it isn't managed. */
7844                         if (win == NULL)
7845                                 goto out;
7846                 } else {
7847                         /* Focus on empty region */
7848                         /* If no windows on region if its empty. */
7849                         r = root_to_region(e->root, SWM_CK_POINTER);
7850                         if (r == NULL) {
7851                                 DNPRINTF(SWM_D_EVENT, "buttonpress: "
7852                                     "NULL region; ignoring.\n");
7853                                 goto out;
7854                         }
7855
7856                         if (TAILQ_EMPTY(&r->ws->winlist)) {
7857                                 old_r = root_to_region(e->root, SWM_CK_FOCUS);
7858                                 if (old_r && old_r != r)
7859                                         unfocus_win(old_r->ws->focus);
7860
7861                                 xcb_set_input_focus(conn,
7862                                     XCB_INPUT_FOCUS_PARENT, e->root, e->time);
7863
7864                                 /* Clear bar since empty. */
7865                                 bar_draw();
7866
7867                                 handled = 1;
7868                                 goto out;
7869                         }
7870                 }
7871         } else {
7872                 win = find_window(e->event);
7873         }
7874
7875         if (win == NULL)
7876                 goto out;
7877
7878         last_event_time = e->time;
7879
7880         focus_win(get_focus_magic(win));
7881
7882         for (i = 0; i < LENGTH(buttons); i++)
7883                 if (client_click == buttons[i].action && buttons[i].func &&
7884                     buttons[i].button == e->detail &&
7885                     CLEANMASK(buttons[i].mask) == CLEANMASK(e->state)) {
7886                         buttons[i].func(win, &buttons[i].args);
7887                         handled = 1;
7888                 }
7889
7890 out:
7891         if (!handled) {
7892                 DNPRINTF(SWM_D_EVENT, "buttonpress: passing to window.\n");
7893                 /* Replay event to event window */
7894                 xcb_allow_events(conn, XCB_ALLOW_REPLAY_POINTER, e->time);
7895         } else {
7896                 DNPRINTF(SWM_D_EVENT, "buttonpress: handled.\n");
7897                 /* Unfreeze grab events. */
7898                 xcb_allow_events(conn, XCB_ALLOW_SYNC_POINTER, e->time);
7899         }
7900
7901         xcb_flush(conn);
7902 }
7903
7904 #ifdef SWM_DEBUG
7905 void
7906 print_win_geom(xcb_window_t w)
7907 {
7908         xcb_get_geometry_reply_t        *wa;
7909
7910         wa = xcb_get_geometry_reply(conn, xcb_get_geometry(conn, w), NULL);
7911
7912         if (!wa) {
7913                 DNPRINTF(SWM_D_MISC, "print_win_geom: window not found: 0x%x\n",
7914                     w);
7915                 return;
7916         }
7917
7918         DNPRINTF(SWM_D_MISC, "print_win_geom: window: 0x%x, root: 0x%x, "
7919             "depth: %u, (x,y) w x h: (%d,%d) %d x %d, border: %d\n",
7920             w, wa->root, wa->depth, wa->x,  wa->y, wa->width, wa->height,
7921             wa->border_width);
7922
7923         free(wa);
7924 }
7925 #endif
7926
7927 #ifdef SWM_DEBUG
7928 char *
7929 get_stack_mode_name(uint8_t mode)
7930 {
7931         char    *name;
7932
7933         switch(mode) {
7934         case XCB_STACK_MODE_ABOVE:
7935                 name = "Above";
7936                 break;
7937         case XCB_STACK_MODE_BELOW:
7938                 name = "Below";
7939                 break;
7940         case XCB_STACK_MODE_TOP_IF:
7941                 name = "TopIf";
7942                 break;
7943         case XCB_STACK_MODE_BOTTOM_IF:
7944                 name = "BottomIf";
7945                 break;
7946         case XCB_STACK_MODE_OPPOSITE:
7947                 name = "Opposite";
7948                 break;
7949         default:
7950                 name = "Unknown";
7951         }
7952
7953         return name;
7954 }
7955 #endif
7956
7957 void
7958 configurerequest(xcb_configure_request_event_t *e)
7959 {
7960         struct ws_win           *win;
7961         struct swm_region       *r = NULL;
7962         int                     new = 0, i = 0;
7963         uint16_t                mask = 0;
7964         uint32_t                wc[7] = {0};
7965
7966         if ((win = find_window(e->window)) == NULL)
7967                 if ((win = find_unmanaged_window(e->window)) == NULL)
7968                         new = 1;
7969
7970 #ifdef SWM_DEBUG
7971         if (swm_debug & SWM_D_EVENT) {
7972                 print_win_geom(e->window);
7973
7974                 DNPRINTF(SWM_D_EVENT, "configurerequest: window: 0x%x, "
7975                     "parent: 0x%x, new: %s, value_mask: %u { ", e->window,
7976                     e->parent, YESNO(new), e->value_mask);
7977                 if (e->value_mask & XCB_CONFIG_WINDOW_X)
7978                         DPRINTF("X: %d ", e->x);
7979                 if (e->value_mask & XCB_CONFIG_WINDOW_Y)
7980                         DPRINTF("Y: %d ", e->y);
7981                 if (e->value_mask & XCB_CONFIG_WINDOW_WIDTH)
7982                         DPRINTF("W: %u ", e->width);
7983                 if (e->value_mask & XCB_CONFIG_WINDOW_HEIGHT)
7984                         DPRINTF("H: %u ", e->height);
7985                 if (e->value_mask & XCB_CONFIG_WINDOW_BORDER_WIDTH)
7986                         DPRINTF("Border: %u ", e->border_width);
7987                 if (e->value_mask & XCB_CONFIG_WINDOW_SIBLING)
7988                         DPRINTF("Sibling: 0x%x ", e->sibling);
7989                 if (e->value_mask & XCB_CONFIG_WINDOW_STACK_MODE)
7990                         DPRINTF("StackMode: %s(%u) ",
7991                             get_stack_mode_name(e->stack_mode), e->stack_mode);
7992                 DPRINTF("}\n");
7993         }
7994 #endif
7995
7996         if (new) {
7997                 if (e->value_mask & XCB_CONFIG_WINDOW_X) {
7998                         mask |= XCB_CONFIG_WINDOW_X;
7999                         wc[i++] = e->x;
8000                 }
8001                 if (e->value_mask & XCB_CONFIG_WINDOW_Y) {
8002                         mask |= XCB_CONFIG_WINDOW_Y;
8003                         wc[i++] = e->y;
8004                 }
8005                 if (e->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
8006                         mask |= XCB_CONFIG_WINDOW_WIDTH;
8007                         wc[i++] = e->width;
8008                 }
8009                 if (e->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
8010                         mask |= XCB_CONFIG_WINDOW_HEIGHT;
8011                         wc[i++] = e->height;
8012                 }
8013                 if (e->value_mask & XCB_CONFIG_WINDOW_BORDER_WIDTH) {
8014                         mask |= XCB_CONFIG_WINDOW_BORDER_WIDTH;
8015                         wc[i++] = e->border_width;
8016                 }
8017                 if (e->value_mask & XCB_CONFIG_WINDOW_SIBLING) {
8018                         mask |= XCB_CONFIG_WINDOW_SIBLING;
8019                         wc[i++] = e->sibling;
8020                 }
8021                 if (e->value_mask & XCB_CONFIG_WINDOW_STACK_MODE) {
8022                         mask |= XCB_CONFIG_WINDOW_STACK_MODE;
8023                         wc[i++] = e->stack_mode;
8024                 }
8025
8026                 if (mask != 0) {
8027                         xcb_configure_window(conn, e->window, mask, wc);
8028                         xcb_flush(conn);
8029                 }
8030         } else if ((!win->manual || win->quirks & SWM_Q_ANYWHERE) &&
8031             !(win->ewmh_flags & EWMH_F_FULLSCREEN)) {
8032                 if (win->ws->r)
8033                         r = win->ws->r;
8034                 else if (win->ws->old_r)
8035                         r = win->ws->old_r;
8036
8037                 /* windows are centered unless ANYWHERE quirk is set. */
8038                 if (win->quirks & SWM_Q_ANYWHERE) {
8039                         if (e->value_mask & XCB_CONFIG_WINDOW_X) {
8040                                 win->g_float.x = e->x;
8041                                 if (r)
8042                                         win->g_float.x -= X(r);
8043                         }
8044
8045                         if (e->value_mask & XCB_CONFIG_WINDOW_Y) {
8046                                 win->g_float.y = e->y;
8047                                 if (r)
8048                                         win->g_float.y -= Y(r);
8049                         }
8050                 }
8051
8052                 if (e->value_mask & XCB_CONFIG_WINDOW_WIDTH)
8053                         win->g_float.w = e->width;
8054
8055                 if (e->value_mask & XCB_CONFIG_WINDOW_HEIGHT)
8056                         win->g_float.h = e->height;
8057
8058                 win->g_floatvalid = 1;
8059
8060                 if (win->floating && r && (win->transient ||
8061                     win->ws->cur_layout != &layouts[SWM_MAX_STACK])) {
8062                         WIDTH(win) = win->g_float.w;
8063                         HEIGHT(win) = win->g_float.h;
8064
8065                         if (r) {
8066                                 stack_floater(win, r);
8067                                 focus_flush();
8068                         }
8069                 } else {
8070                         config_win(win, e);
8071                         xcb_flush(conn);
8072                 }
8073         } else {
8074                 config_win(win, e);
8075                 xcb_flush(conn);
8076         }
8077
8078         DNPRINTF(SWM_D_EVENT, "configurerequest: done.\n");
8079 }
8080
8081 void
8082 configurenotify(xcb_configure_notify_event_t *e)
8083 {
8084         struct ws_win           *win;
8085
8086         DNPRINTF(SWM_D_EVENT, "configurenotify: win 0x%x, event win: 0x%x, "
8087             "(x,y) WxH: (%d,%d) %ux%u, border: %u, above_sibling: 0x%x, "
8088             "override_redirect: %s\n", e->window, e->event, e->x, e->y,
8089             e->width, e->height, e->border_width, e->above_sibling,
8090             YESNO(e->override_redirect));
8091
8092         win = find_window(e->window);
8093         if (win) {
8094                 xcb_icccm_get_wm_normal_hints_reply(conn,
8095                     xcb_icccm_get_wm_normal_hints(conn, win->id),
8096                     &win->sh, NULL);
8097                 adjust_font(win);
8098                 if (font_adjusted) {
8099                         stack();
8100                         xcb_flush(conn);
8101                 }
8102         }
8103 }
8104
8105 void
8106 destroynotify(xcb_destroy_notify_event_t *e)
8107 {
8108         struct ws_win           *win;
8109
8110         DNPRINTF(SWM_D_EVENT, "destroynotify: window: 0x%x\n", e->window);
8111
8112         if ((win = find_window(e->window)) == NULL) {
8113                 if ((win = find_unmanaged_window(e->window)) == NULL)
8114                         return;
8115                 free_window(win);
8116                 return;
8117         }
8118
8119         if (focus_mode != SWM_FOCUS_FOLLOW) {
8120                 /* If we were focused, make sure we focus on something else. */
8121                 if (win == win->ws->focus)
8122                         win->ws->focus_pending = get_focus_prev(win);
8123         }
8124
8125         unmanage_window(win);
8126         stack();
8127
8128         if (focus_mode != SWM_FOCUS_FOLLOW) {
8129                 if (win->ws->focus_pending) {
8130                         focus_win(win->ws->focus_pending);
8131                         win->ws->focus_pending = NULL;
8132                 }
8133         }
8134
8135         free_window(win);
8136
8137         focus_flush();
8138 }
8139
8140 #ifdef SWM_DEBUG
8141 char *
8142 get_notify_detail_label(uint8_t detail)
8143 {
8144         char *label;
8145
8146         switch (detail) {
8147         case XCB_NOTIFY_DETAIL_ANCESTOR:
8148                 label = "Ancestor";
8149                 break;
8150         case XCB_NOTIFY_DETAIL_VIRTUAL:
8151                 label = "Virtual";
8152                 break;
8153         case XCB_NOTIFY_DETAIL_INFERIOR:
8154                 label = "Inferior";
8155                 break;
8156         case XCB_NOTIFY_DETAIL_NONLINEAR:
8157                 label = "Nonlinear";
8158                 break;
8159         case XCB_NOTIFY_DETAIL_NONLINEAR_VIRTUAL:
8160                 label = "NonlinearVirtual";
8161                 break;
8162         case XCB_NOTIFY_DETAIL_POINTER:
8163                 label = "Pointer";
8164                 break;
8165         case XCB_NOTIFY_DETAIL_POINTER_ROOT:
8166                 label = "PointerRoot";
8167                 break;
8168         case XCB_NOTIFY_DETAIL_NONE:
8169                 label = "None";
8170                 break;
8171         default:
8172                 label = "Unknown";
8173         }
8174
8175         return label;
8176 }
8177
8178 char *
8179 get_notify_mode_label(uint8_t mode)
8180 {
8181         char *label;
8182
8183         switch (mode) {
8184         case XCB_NOTIFY_MODE_NORMAL:
8185                 label = "Normal";
8186                 break;
8187         case XCB_NOTIFY_MODE_GRAB:
8188                 label = "Grab";
8189                 break;
8190         case XCB_NOTIFY_MODE_UNGRAB:
8191                 label = "Ungrab";
8192                 break;
8193         case XCB_NOTIFY_MODE_WHILE_GRABBED:
8194                 label = "WhileGrabbed";
8195                 break;
8196         default:
8197                 label = "Unknown";
8198         }
8199
8200         return label;
8201 }
8202 #endif
8203
8204 void
8205 enternotify(xcb_enter_notify_event_t *e)
8206 {
8207         struct ws_win           *win;
8208         struct swm_region       *r;
8209
8210         DNPRINTF(SWM_D_FOCUS, "enternotify: time: %u, win (x,y): 0x%x "
8211             "(%d,%d), mode: %s(%d), detail: %s(%d), root (x,y): 0x%x (%d,%d), "
8212             "child: 0x%x, same_screen_focus: %s, state: %d\n",
8213             e->time, e->event, e->event_x, e->event_y,
8214             get_notify_mode_label(e->mode), e->mode,
8215             get_notify_detail_label(e->detail), e->detail,
8216             e->root, e->root_x, e->root_y, e->child,
8217             YESNO(e->same_screen_focus), e->state);
8218
8219         if (focus_mode == SWM_FOCUS_MANUAL &&
8220             e->mode == XCB_NOTIFY_MODE_NORMAL) {
8221                 DNPRINTF(SWM_D_EVENT, "enternotify: manual focus; ignoring.\n");
8222                 return;
8223         }
8224
8225         last_event_time = e->time;
8226
8227         if ((win = find_window(e->event)) == NULL) {
8228                 if (e->event == e->root) {
8229                         /* If no windows on pointer region, then focus root. */
8230                         r = root_to_region(e->root, SWM_CK_POINTER);
8231                         if (r == NULL) {
8232                                 DNPRINTF(SWM_D_EVENT, "enternotify: "
8233                                     "NULL region; ignoring.\n");
8234                                 return;
8235                         }
8236
8237                         focus_region(r);
8238                 } else {
8239                         DNPRINTF(SWM_D_EVENT, "enternotify: window is NULL; "
8240                             "ignoring\n");
8241                         return;
8242                 }
8243         } else {
8244                 focus_win(get_focus_magic(win));
8245         }
8246
8247         xcb_flush(conn);
8248 }
8249
8250 #ifdef SWM_DEBUG
8251 void
8252 leavenotify(xcb_leave_notify_event_t *e)
8253 {
8254         DNPRINTF(SWM_D_FOCUS, "leavenotify: time: %u, win (x,y): 0x%x "
8255             "(%d,%d), mode: %s(%d), detail: %s(%d), root (x,y): 0x%x (%d,%d), "
8256             "child: 0x%x, same_screen_focus: %s, state: %d\n",
8257             e->time, e->event, e->event_x, e->event_y,
8258             get_notify_mode_label(e->mode), e->mode,
8259             get_notify_detail_label(e->detail), e->detail,
8260             e->root, e->root_x, e->root_y, e->child,
8261             YESNO(e->same_screen_focus), e->state);
8262 }
8263 #endif
8264
8265 void
8266 mapnotify(xcb_map_notify_event_t *e)
8267 {
8268         struct ws_win           *win;
8269
8270         DNPRINTF(SWM_D_EVENT, "mapnotify: window: 0x%x\n", e->window);
8271
8272         if ((win = find_window(e->window)) == NULL)
8273                 win = manage_window(e->window, 1);
8274
8275         win->mapped = 1;
8276         set_win_state(win, XCB_ICCCM_WM_STATE_NORMAL);
8277
8278         if (focus_mode != SWM_FOCUS_FOLLOW) {
8279                 if (win->ws->focus_pending == win) {
8280                         focus_win(win);
8281                         win->ws->focus_pending = NULL;
8282                         focus_flush();
8283                 }
8284         }
8285
8286         xcb_flush(conn);
8287 }
8288
8289 void
8290 mappingnotify(xcb_mapping_notify_event_t *e)
8291 {
8292         xcb_refresh_keyboard_mapping(syms, e);
8293
8294         if (e->request == XCB_MAPPING_KEYBOARD)
8295                 grabkeys();
8296 }
8297
8298 void
8299 maprequest(xcb_map_request_event_t *e)
8300 {
8301         struct ws_win           *win;
8302         xcb_get_window_attributes_reply_t *war;
8303
8304         DNPRINTF(SWM_D_EVENT, "maprequest: win 0x%x\n",
8305             e->window);
8306
8307         war = xcb_get_window_attributes_reply(conn,
8308             xcb_get_window_attributes(conn, e->window),
8309             NULL);
8310         if (war == NULL) {
8311                 DNPRINTF(SWM_D_EVENT, "maprequest: window lost.\n");
8312                 goto out;
8313         }
8314
8315         if (war->override_redirect) {
8316                 DNPRINTF(SWM_D_EVENT, "maprequest: override_redirect; "
8317                     "skipping.\n");
8318                 goto out;
8319         }
8320
8321         win = manage_window(e->window,
8322             (war->map_state == XCB_MAP_STATE_VIEWABLE));
8323
8324         /* The new window should get focus; prepare. */
8325         if (focus_mode != SWM_FOCUS_FOLLOW)
8326                 win->ws->focus_pending = get_focus_magic(win);
8327
8328         /* All windows need to be mapped if they are in the current workspace.*/
8329         if (win->ws->r)
8330                 stack();
8331
8332         /* Ignore EnterNotify to handle the mapnotify without interference. */
8333         if (focus_mode == SWM_FOCUS_DEFAULT)
8334                 event_drain(XCB_ENTER_NOTIFY);
8335 out:
8336         free(war);
8337         DNPRINTF(SWM_D_EVENT, "maprequest: done.\n");
8338 }
8339
8340 void
8341 motionnotify(xcb_motion_notify_event_t *e)
8342 {
8343         struct swm_region       *r;
8344         int                     i, num_screens;
8345
8346         DNPRINTF(SWM_D_FOCUS, "motionnotify: time: %u, win (x,y): 0x%x "
8347             "(%d,%d), detail: %s(%d), root (x,y): 0x%x (%d,%d), "
8348             "child: 0x%x, same_screen_focus: %s, state: %d\n",
8349             e->time, e->event, e->event_x, e->event_y,
8350             get_notify_detail_label(e->detail), e->detail,
8351             e->root, e->root_x, e->root_y, e->child,
8352             YESNO(e->same_screen), e->state);
8353
8354         last_event_time = e->time;
8355
8356         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
8357         for (i = 0; i < num_screens; i++)
8358                 if (screens[i].root == e->root)
8359                         break;
8360
8361         TAILQ_FOREACH(r, &screens[i].rl, entry)
8362                 if (X(r) <= e->root_x && e->root_x < MAX_X(r) &&
8363                     Y(r) <= e->root_y && e->root_y < MAX_Y(r))
8364                         break;
8365
8366         focus_region(r);
8367 }
8368
8369 #ifdef SWM_DEBUG
8370 char *
8371 get_atom_name(xcb_atom_t atom)
8372 {
8373         char                            *name = NULL;
8374 #if 0
8375         /*
8376          * This should be disabled during most debugging since
8377          * xcb_get_* causes an xcb_flush.
8378          */
8379         size_t                          len;
8380         xcb_get_atom_name_reply_t       *r;
8381
8382         r = xcb_get_atom_name_reply(conn,
8383             xcb_get_atom_name(conn, atom),
8384             NULL);
8385         if (r) {
8386                 len = xcb_get_atom_name_name_length(r);
8387                 if (len > 0) {
8388                         name = malloc(len + 1);
8389                         if (name) {
8390                                 memcpy(name, xcb_get_atom_name_name(r), len);
8391                                 name[len] = '\0';
8392                         }
8393                 }
8394                 free(r);
8395         }
8396 #else
8397         (void)atom;
8398 #endif
8399         return (name);
8400 }
8401 #endif
8402
8403 void
8404 propertynotify(xcb_property_notify_event_t *e)
8405 {
8406         struct ws_win           *win;
8407 #ifdef SWM_DEBUG
8408         char                    *name;
8409
8410         name = get_atom_name(e->atom);
8411         DNPRINTF(SWM_D_EVENT, "propertynotify: window: 0x%x, atom: %s(%u), "
8412             "time: %#x, state: %u\n", e->window, name, e->atom, e->time,
8413             e->state);
8414         free(name);
8415 #endif
8416         win = find_window(e->window);
8417         if (win == NULL)
8418                 return;
8419
8420         last_event_time = e->time;
8421
8422         if (e->atom == a_swm_iconic) {
8423                 if (e->state == XCB_PROPERTY_NEW_VALUE) {
8424                         if (focus_mode != SWM_FOCUS_FOLLOW)
8425                                 win->ws->focus_pending = get_focus_prev(win);
8426
8427                         unfocus_win(win);
8428                         unmap_window(win);
8429
8430                         if (win->ws->r) {
8431                                 stack();
8432                                 if (focus_mode != SWM_FOCUS_FOLLOW) {
8433                                         focus_win(win->ws->focus_pending);
8434                                         win->ws->focus_pending = NULL;
8435                                 }
8436                                 focus_flush();
8437                         }
8438                 } else if (e->state == XCB_PROPERTY_DELETE) {
8439                         /* The window is no longer iconic, restack ws. */
8440                         if (focus_mode != SWM_FOCUS_FOLLOW)
8441                                 win->ws->focus_pending = get_focus_magic(win);
8442
8443                         stack();
8444
8445                         /* Flush EnterNotify for mapnotify, if needed. */
8446                         focus_flush();
8447                 }
8448         } else if (e->atom == a_state) {
8449                 /* State just changed, make sure it gets focused if mapped. */
8450                 if (e->state == XCB_PROPERTY_NEW_VALUE) {
8451                         if (focus_mode != SWM_FOCUS_FOLLOW) {
8452                                 if (win->mapped &&
8453                                     win->ws->focus_pending == win) {
8454                                         focus_win(win->ws->focus_pending);
8455                                         win->ws->focus_pending = NULL;
8456                                 }
8457                         }
8458                 }
8459         } else if (e->atom == XCB_ATOM_WM_CLASS ||
8460             e->atom == XCB_ATOM_WM_NAME) {
8461                 bar_draw();
8462         }
8463
8464         xcb_flush(conn);
8465 }
8466
8467 void
8468 unmapnotify(xcb_unmap_notify_event_t *e)
8469 {
8470         struct ws_win           *win;
8471         struct workspace        *ws;
8472
8473         DNPRINTF(SWM_D_EVENT, "unmapnotify: window: 0x%x\n", e->window);
8474
8475         /* If we aren't managing the window, then ignore. */
8476         win = find_window(e->window);
8477         if (win == NULL || win->id != e->window)
8478                 return;
8479
8480         ws = win->ws;
8481
8482         if (getstate(e->window) != XCB_ICCCM_WM_STATE_ICONIC)
8483                 set_win_state(win, XCB_ICCCM_WM_STATE_ICONIC);
8484
8485         if (win->mapped) {
8486                 /* window unmapped itself */
8487                 /* do unmap/unfocus/restack and unmanage */
8488                 win->mapped = 0;
8489
8490                 /* If win was focused, make sure to focus on something else. */
8491                 if (win == ws->focus) {
8492                         if (focus_mode != SWM_FOCUS_FOLLOW) {
8493                                 ws->focus_pending = get_focus_prev(win);
8494                                 DNPRINTF(SWM_D_EVENT, "unmapnotify: "
8495                                     "focus_pending: 0x%x\n",
8496                                     WINID(ws->focus_pending));
8497                         }
8498
8499                         unfocus_win(win);
8500                 }
8501
8502                 unmanage_window(win);
8503
8504                 if (ws->r)
8505                         stack();
8506
8507                 if (focus_mode == SWM_FOCUS_FOLLOW) {
8508                         if (ws->r)
8509                                 focus_win(get_pointer_win(ws->r->s->root));
8510                 } else {
8511                         if (ws->focus_pending) {
8512                                 focus_win(ws->focus_pending);
8513                                 ws->focus_pending = NULL;
8514                         }
8515                 }
8516         }
8517
8518         if (getstate(e->window) == XCB_ICCCM_WM_STATE_NORMAL)
8519                 set_win_state(win, XCB_ICCCM_WM_STATE_ICONIC);
8520
8521         focus_flush();
8522 }
8523
8524 #if 0
8525 void
8526 visibilitynotify(xcb_visibility_notify_event_t *e)
8527 {
8528         DNPRINTF(SWM_D_EVENT, "visibilitynotify: window: 0x%x\n",
8529             e->window);
8530 }
8531 #endif
8532
8533 void
8534 clientmessage(xcb_client_message_event_t *e)
8535 {
8536         struct ws_win *win;
8537         xcb_map_request_event_t mre;
8538 #ifdef SWM_DEBUG
8539         char                    *name;
8540
8541         name = get_atom_name(e->type);
8542         DNPRINTF(SWM_D_EVENT, "clientmessage: window: 0x%x, atom: %s(%u)\n",
8543             e->window, name, e->type);
8544         free(name);
8545 #endif
8546         win = find_window(e->window);
8547
8548         if (win == NULL) {
8549                 if (e->type == ewmh[_NET_ACTIVE_WINDOW].atom) {
8550                         /* Manage the window with maprequest. */
8551                         DNPRINTF(SWM_D_EVENT, "clientmessage: request focus on "
8552                             "unmanaged window.\n");
8553                         mre.window = e->window;
8554                         maprequest(&mre);
8555                 }
8556                 return;
8557         }
8558
8559         if (e->type == ewmh[_NET_ACTIVE_WINDOW].atom) {
8560                 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_ACTIVE_WINDOW\n");
8561                 focus_win(win);
8562         }
8563         if (e->type == ewmh[_NET_CLOSE_WINDOW].atom) {
8564                 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_CLOSE_WINDOW\n");
8565                 if (win->can_delete)
8566                         client_msg(win, a_delete, 0);
8567                 else
8568                         xcb_kill_client(conn, win->id);
8569         }
8570         if (e->type == ewmh[_NET_MOVERESIZE_WINDOW].atom) {
8571                 DNPRINTF(SWM_D_EVENT,
8572                     "clientmessage: _NET_MOVERESIZE_WINDOW\n");
8573                 if (win->floating) {
8574                         if (e->data.data32[0] & (1<<8)) /* x */
8575                                 X(win) = e->data.data32[1];
8576                         if (e->data.data32[0] & (1<<9)) /* y */
8577                                 Y(win) = e->data.data32[2];
8578                         if (e->data.data32[0] & (1<<10)) /* width */
8579                                 WIDTH(win) = e->data.data32[3];
8580                         if (e->data.data32[0] & (1<<11)) /* height */
8581                                 HEIGHT(win) = e->data.data32[4];
8582
8583                         update_window(win);
8584                 }
8585                 else {
8586                         /* TODO: Change stack sizes */
8587                         /* notify no change was made. */
8588                         config_win(win, NULL);
8589                 }
8590         }
8591         if (e->type == ewmh[_NET_WM_STATE].atom) {
8592                 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_WM_STATE\n");
8593                 ewmh_update_win_state(win, e->data.data32[1], e->data.data32[0]);
8594                 if (e->data.data32[2])
8595                         ewmh_update_win_state(win, e->data.data32[2],
8596                             e->data.data32[0]);
8597
8598                 stack();
8599         }
8600
8601         focus_flush();
8602 }
8603
8604 void
8605 check_conn(void)
8606 {
8607         int      errcode = xcb_connection_has_error(conn);
8608 #ifdef XCB_CONN_ERROR
8609         char    *s;
8610         switch (errcode) {
8611         case XCB_CONN_ERROR:
8612                 s = "Socket error, pipe error or other stream error.";
8613                 break;
8614         case XCB_CONN_CLOSED_EXT_NOTSUPPORTED:
8615                 s = "Extension not supported.";
8616                 break;
8617         case XCB_CONN_CLOSED_MEM_INSUFFICIENT:
8618                 s = "Insufficient memory.";
8619                 break;
8620         case XCB_CONN_CLOSED_REQ_LEN_EXCEED:
8621                 s = "Request length was exceeded.";
8622                 break;
8623         case XCB_CONN_CLOSED_PARSE_ERR:
8624                 s = "Error parsing display string.";
8625                 break;
8626         default:
8627                 s = "Unknown error.";
8628         }
8629         if (errcode)
8630                 errx(errcode, "X CONNECTION ERROR: %s", s);
8631 #else
8632         if (errcode)
8633                 errx(errcode, "X CONNECTION ERROR");
8634 #endif
8635 }
8636
8637 int
8638 enable_wm(void)
8639 {
8640         int                     num_screens, i;
8641         const uint32_t          val = XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT |
8642             XCB_EVENT_MASK_ENTER_WINDOW;
8643         xcb_screen_t            *sc;
8644         xcb_void_cookie_t       wac;
8645         xcb_generic_error_t     *error;
8646
8647         /* this causes an error if some other window manager is running */
8648         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
8649         for (i = 0; i < num_screens; i++) {
8650                 if ((sc = get_screen(i)) == NULL)
8651                         errx(1, "ERROR: can't get screen %d.", i);
8652                 DNPRINTF(SWM_D_INIT, "enable_wm: screen %d, root: 0x%x\n",
8653                     i, sc->root);
8654                 wac = xcb_change_window_attributes_checked(conn, sc->root,
8655                     XCB_CW_EVENT_MASK, &val);
8656                 if ((error = xcb_request_check(conn, wac))) {
8657                         DNPRINTF(SWM_D_INIT, "enable_wm: error_code: %u\n",
8658                             error->error_code);
8659                         free(error);
8660                         return 1;
8661                 }
8662
8663                 /* click to focus on empty region */
8664                 xcb_grab_button(conn, 1, sc->root, BUTTONMASK,
8665                     XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC, XCB_WINDOW_NONE,
8666                     XCB_CURSOR_NONE, XCB_BUTTON_INDEX_1, XCB_BUTTON_MASK_ANY);
8667         }
8668
8669         return 0;
8670 }
8671
8672 void
8673 new_region(struct swm_screen *s, int x, int y, int w, int h)
8674 {
8675         struct swm_region       *r, *n;
8676         struct workspace        *ws = NULL;
8677         int                     i;
8678         uint32_t                wa[1];
8679
8680         DNPRINTF(SWM_D_MISC, "new region: screen[%d]:%dx%d+%d+%d\n",
8681              s->idx, w, h, x, y);
8682
8683         /* remove any conflicting regions */
8684         n = TAILQ_FIRST(&s->rl);
8685         while (n) {
8686                 r = n;
8687                 n = TAILQ_NEXT(r, entry);
8688                 if (X(r) < (x + w) && (X(r) + WIDTH(r)) > x &&
8689                     Y(r) < (y + h) && (Y(r) + HEIGHT(r)) > y) {
8690                         if (r->ws->r != NULL)
8691                                 r->ws->old_r = r->ws->r;
8692                         r->ws->r = NULL;
8693                         bar_cleanup(r);
8694                         xcb_destroy_window(conn, r->id);
8695                         TAILQ_REMOVE(&s->rl, r, entry);
8696                         TAILQ_INSERT_TAIL(&s->orl, r, entry);
8697                 }
8698         }
8699
8700         /* search old regions for one to reuse */
8701
8702         /* size + location match */
8703         TAILQ_FOREACH(r, &s->orl, entry)
8704                 if (X(r) == x && Y(r) == y &&
8705                     HEIGHT(r) == h && WIDTH(r) == w)
8706                         break;
8707
8708         /* size match */
8709         TAILQ_FOREACH(r, &s->orl, entry)
8710                 if (HEIGHT(r) == h && WIDTH(r) == w)
8711                         break;
8712
8713         if (r != NULL) {
8714                 TAILQ_REMOVE(&s->orl, r, entry);
8715                 /* try to use old region's workspace */
8716                 if (r->ws->r == NULL)
8717                         ws = r->ws;
8718         } else
8719                 if ((r = calloc(1, sizeof(struct swm_region))) == NULL)
8720                         err(1, "new_region: calloc: failed to allocate memory "
8721                             "for screen");
8722
8723         /* if we don't have a workspace already, find one */
8724         if (ws == NULL) {
8725                 for (i = 0; i < workspace_limit; i++)
8726                         if (s->ws[i].r == NULL) {
8727                                 ws = &s->ws[i];
8728                                 break;
8729                         }
8730         }
8731
8732         if (ws == NULL)
8733                 errx(1, "new_region: no free workspaces");
8734
8735         X(r) = x;
8736         Y(r) = y;
8737         WIDTH(r) = w;
8738         HEIGHT(r) = h;
8739         r->s = s;
8740         r->ws = ws;
8741         r->ws_prior = NULL;
8742         ws->r = r;
8743         outputs++;
8744         TAILQ_INSERT_TAIL(&s->rl, r, entry);
8745
8746         /* Invisible region window to detect pointer events on empty regions. */
8747         r->id = xcb_generate_id(conn);
8748         wa[0] = XCB_EVENT_MASK_POINTER_MOTION |
8749             XCB_EVENT_MASK_POINTER_MOTION_HINT;
8750
8751         xcb_create_window(conn, XCB_COPY_FROM_PARENT, r->id, r->s->root,
8752             X(r), Y(r), WIDTH(r), HEIGHT(r), 0, XCB_WINDOW_CLASS_INPUT_ONLY,
8753             XCB_COPY_FROM_PARENT, XCB_CW_EVENT_MASK, wa);
8754
8755         xcb_map_window(conn, r->id);
8756 }
8757
8758 void
8759 scan_xrandr(int i)
8760 {
8761 #ifdef SWM_XRR_HAS_CRTC
8762         int                                             c;
8763         int                                             ncrtc = 0;
8764 #endif /* SWM_XRR_HAS_CRTC */
8765         struct swm_region                               *r;
8766         struct ws_win                                   *win;
8767         int                                             num_screens;
8768         xcb_randr_get_screen_resources_current_cookie_t src;
8769         xcb_randr_get_screen_resources_current_reply_t  *srr;
8770         xcb_randr_get_crtc_info_cookie_t                cic;
8771         xcb_randr_get_crtc_info_reply_t                 *cir = NULL;
8772         xcb_randr_crtc_t                                *crtc;
8773         xcb_screen_t                                    *screen;
8774
8775         DNPRINTF(SWM_D_MISC, "scan_xrandr: screen: %d\n", i);
8776
8777         if ((screen = get_screen(i)) == NULL)
8778                 errx(1, "ERROR: can't get screen %d.", i);
8779
8780         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
8781         if (i >= num_screens)
8782                 errx(1, "scan_xrandr: invalid screen");
8783
8784         /* remove any old regions */
8785         while ((r = TAILQ_FIRST(&screens[i].rl)) != NULL) {
8786                 r->ws->old_r = r->ws->r = NULL;
8787                 bar_cleanup(r);
8788                 xcb_destroy_window(conn, r->id);
8789                 TAILQ_REMOVE(&screens[i].rl, r, entry);
8790                 TAILQ_INSERT_TAIL(&screens[i].orl, r, entry);
8791         }
8792         outputs = 0;
8793
8794         /* map virtual screens onto physical screens */
8795 #ifdef SWM_XRR_HAS_CRTC
8796         if (xrandr_support) {
8797                 src = xcb_randr_get_screen_resources_current(conn,
8798                     screens[i].root);
8799                 srr = xcb_randr_get_screen_resources_current_reply(conn, src,
8800                     NULL);
8801                 if (srr == NULL) {
8802                         new_region(&screens[i], 0, 0,
8803                             screen->width_in_pixels,
8804                             screen->height_in_pixels);
8805                         goto out;
8806                 } else
8807                         ncrtc = srr->num_crtcs;
8808
8809                 crtc = xcb_randr_get_screen_resources_current_crtcs(srr);
8810                 for (c = 0; c < ncrtc; c++) {
8811                         cic = xcb_randr_get_crtc_info(conn, crtc[c],
8812                             XCB_CURRENT_TIME);
8813                         cir = xcb_randr_get_crtc_info_reply(conn, cic, NULL);
8814                         if (cir == NULL)
8815                                 continue;
8816                         if (cir->num_outputs == 0) {
8817                                 free(cir);
8818                                 continue;
8819                         }
8820
8821                         if (cir->mode == 0)
8822                                 new_region(&screens[i], 0, 0,
8823                                     screen->width_in_pixels,
8824                                     screen->height_in_pixels);
8825                         else
8826                                 new_region(&screens[i],
8827                                     cir->x, cir->y, cir->width, cir->height);
8828                         free(cir);
8829                 }
8830                 free(srr);
8831         }
8832 #endif /* SWM_XRR_HAS_CRTC */
8833
8834         /* If detection failed, create a single region that spans the screen. */
8835         if (TAILQ_EMPTY(&screens[i].rl))
8836                 new_region(&screens[i], 0, 0, screen->width_in_pixels,
8837                     screen->height_in_pixels);
8838
8839 out:
8840         /* Cleanup unused previously visible workspaces. */
8841         TAILQ_FOREACH(r, &screens[i].orl, entry) {
8842                 TAILQ_FOREACH(win, &r->ws->winlist, entry)
8843                         unmap_window(win);
8844
8845                 /* The screen shouldn't focus on an unused region. */
8846                 if (screens[i].r_focus == r)
8847                         screens[i].r_focus = NULL;
8848         }
8849
8850         DNPRINTF(SWM_D_MISC, "scan_xrandr: done.\n");
8851 }
8852
8853 void
8854 screenchange(xcb_randr_screen_change_notify_event_t *e)
8855 {
8856         struct swm_region               *r;
8857         int                             i, num_screens;
8858
8859         DNPRINTF(SWM_D_EVENT, "screenchange: root: 0x%x\n", e->root);
8860
8861         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
8862         /* silly event doesn't include the screen index */
8863         for (i = 0; i < num_screens; i++)
8864                 if (screens[i].root == e->root)
8865                         break;
8866         if (i >= num_screens)
8867                 errx(1, "screenchange: screen not found");
8868
8869         /* brute force for now, just re-enumerate the regions */
8870         scan_xrandr(i);
8871
8872 #ifdef SWM_DEBUG
8873         print_win_geom(e->root);
8874 #endif
8875         /* add bars to all regions */
8876         for (i = 0; i < num_screens; i++) {
8877                 TAILQ_FOREACH(r, &screens[i].rl, entry)
8878                         bar_setup(r);
8879         }
8880
8881         stack();
8882
8883         /* Make sure a region has focus on each screen. */
8884         for (i = 0; i < num_screens; i++) {
8885                 if (screens[i].r_focus == NULL) {
8886                         r = TAILQ_FIRST(&screens[i].rl);
8887                         if (r != NULL)
8888                                 focus_region(r);
8889                 }
8890         }
8891
8892         bar_draw();
8893         focus_flush();
8894 }
8895
8896 void
8897 grab_windows(void)
8898 {
8899         struct swm_region       *r = NULL;
8900         xcb_window_t            *wins = NULL, trans;
8901         int                     no;
8902         int                     i, j, num_screens;
8903         uint16_t                state, manage, mapped;
8904
8905         xcb_query_tree_cookie_t                 qtc;
8906         xcb_query_tree_reply_t                  *qtr;
8907         xcb_get_window_attributes_cookie_t      gac;
8908         xcb_get_window_attributes_reply_t       *gar;
8909         xcb_get_property_cookie_t               pc;
8910
8911         DNPRINTF(SWM_D_INIT, "grab_windows: begin\n");
8912         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
8913         for (i = 0; i < num_screens; i++) {
8914                 qtc = xcb_query_tree(conn, screens[i].root);
8915                 qtr = xcb_query_tree_reply(conn, qtc, NULL);
8916                 if (!qtr)
8917                         continue;
8918                 wins = xcb_query_tree_children(qtr);
8919                 no = xcb_query_tree_children_length(qtr);
8920                 /* attach windows to a region */
8921                 /* normal windows */
8922                 DNPRINTF(SWM_D_INIT, "grab_windows: grab top level windows.\n");
8923                 for (j = 0; j < no; j++) {
8924                         TAILQ_FOREACH(r, &screens[i].rl, entry) {
8925                                 if (r->id == wins[j]) {
8926                                         DNPRINTF(SWM_D_INIT, "grab_windows: "
8927                                             "skip %#x; region input window.\n",
8928                                             wins[j]);
8929                                         break;
8930                                 }
8931                         }
8932
8933                         if (r)
8934                                 continue;
8935
8936                         gac = xcb_get_window_attributes(conn, wins[j]);
8937                         gar = xcb_get_window_attributes_reply(conn, gac, NULL);
8938                         if (!gar) {
8939                                 DNPRINTF(SWM_D_INIT, "grab_windows: skip %#x; "
8940                                     "doesn't exist.\n", wins[j]);
8941                                 continue;
8942                         }
8943
8944                         if (gar->override_redirect) {
8945                                 DNPRINTF(SWM_D_INIT, "grab_windows: skip %#x; "
8946                                     "override_redirect set.\n", wins[j]);
8947                                 free(gar);
8948                                 continue;
8949                         }
8950
8951                         pc = xcb_icccm_get_wm_transient_for(conn, wins[j]);
8952                         if (xcb_icccm_get_wm_transient_for_reply(conn, pc,
8953                             &trans, NULL)) {
8954                                 DNPRINTF(SWM_D_INIT, "grab_windows: skip %#x; "
8955                                     "is transient for %#x.\n", wins[j], trans);
8956                                 free(gar);
8957                                 continue;
8958                         }
8959
8960                         state = getstate(wins[j]);
8961                         manage = state != XCB_ICCCM_WM_STATE_WITHDRAWN;
8962                         mapped = gar->map_state != XCB_MAP_STATE_UNMAPPED;
8963                         if (mapped || manage)
8964                                 manage_window(wins[j], mapped);
8965                         free(gar);
8966                 }
8967                 /* transient windows */
8968                 DNPRINTF(SWM_D_INIT, "grab_windows: grab transient windows.\n");
8969                 for (j = 0; j < no; j++) {
8970                         gac = xcb_get_window_attributes(conn, wins[j]);
8971                         gar = xcb_get_window_attributes_reply(conn, gac, NULL);
8972                         if (!gar) {
8973                                 DNPRINTF(SWM_D_INIT, "grab_windows: skip %#x; "
8974                                     "doesn't exist.\n", wins[j]);
8975                                 continue;
8976                         }
8977
8978                         if (gar->override_redirect) {
8979                                 DNPRINTF(SWM_D_INIT, "grab_windows: skip %#x; "
8980                                     "override_redirect set.\n", wins[j]);
8981                                 free(gar);
8982                                 continue;
8983                         }
8984
8985                         state = getstate(wins[j]);
8986                         manage = state != XCB_ICCCM_WM_STATE_WITHDRAWN;
8987                         mapped = gar->map_state != XCB_MAP_STATE_UNMAPPED;
8988                         pc = xcb_icccm_get_wm_transient_for(conn, wins[j]);
8989                         if (xcb_icccm_get_wm_transient_for_reply(conn, pc,
8990                             &trans, NULL) && manage)
8991                                 manage_window(wins[j], mapped);
8992                         free(gar);
8993                 }
8994                 free(qtr);
8995         }
8996         DNPRINTF(SWM_D_INIT, "grab_windows: done.\n");
8997 }
8998
8999 void
9000 setup_screens(void)
9001 {
9002         int                     i, j, k, num_screens;
9003         struct workspace        *ws;
9004         uint32_t                gcv[1], wa[1];
9005         const xcb_query_extension_reply_t *qep;
9006         xcb_screen_t                            *screen;
9007         xcb_randr_query_version_cookie_t        c;
9008         xcb_randr_query_version_reply_t         *r;
9009
9010         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
9011         if ((screens = calloc(num_screens,
9012              sizeof(struct swm_screen))) == NULL)
9013                 err(1, "setup_screens: calloc: failed to allocate memory for "
9014                     "screens");
9015
9016         /* initial Xrandr setup */
9017         xrandr_support = 0;
9018         qep = xcb_get_extension_data(conn, &xcb_randr_id);
9019         if (qep->present) {
9020                 c = xcb_randr_query_version(conn, 1, 1);
9021                 r = xcb_randr_query_version_reply(conn, c, NULL);
9022                 if (r) {
9023                         if (r->major_version >= 1) {
9024                                 xrandr_support = 1;
9025                                 xrandr_eventbase = qep->first_event;
9026                         }
9027                         free(r);
9028                 }
9029         }
9030
9031         wa[0] = cursors[XC_LEFT_PTR].cid;
9032
9033         /* map physical screens */
9034         for (i = 0; i < num_screens; i++) {
9035                 DNPRINTF(SWM_D_WS, "setup_screens: init screen: %d\n", i);
9036                 screens[i].idx = i;
9037                 screens[i].r_focus = NULL;
9038
9039                 TAILQ_INIT(&screens[i].rl);
9040                 TAILQ_INIT(&screens[i].orl);
9041                 if ((screen = get_screen(i)) == NULL)
9042                         errx(1, "ERROR: can't get screen %d.", i);
9043                 screens[i].root = screen->root;
9044
9045                 /* set default colors */
9046                 setscreencolor("red", i + 1, SWM_S_COLOR_FOCUS);
9047                 setscreencolor("rgb:88/88/88", i + 1, SWM_S_COLOR_UNFOCUS);
9048                 setscreencolor("rgb:00/80/80", i + 1, SWM_S_COLOR_BAR_BORDER);
9049                 setscreencolor("rgb:00/40/40", i + 1,
9050                     SWM_S_COLOR_BAR_BORDER_UNFOCUS);
9051                 setscreencolor("black", i + 1, SWM_S_COLOR_BAR);
9052                 setscreencolor("rgb:a0/a0/a0", i + 1, SWM_S_COLOR_BAR_FONT);
9053
9054                 /* create graphics context on screen */
9055                 screens[i].bar_gc = xcb_generate_id(conn);
9056                 gcv[0] = 0;
9057                 xcb_create_gc(conn, screens[i].bar_gc, screens[i].root,
9058                     XCB_GC_GRAPHICS_EXPOSURES, gcv);
9059
9060                 /* set default cursor */
9061                 xcb_change_window_attributes(conn, screens[i].root,
9062                     XCB_CW_CURSOR, wa);
9063
9064                 /* init all workspaces */
9065                 /* XXX these should be dynamically allocated too */
9066                 for (j = 0; j < SWM_WS_MAX; j++) {
9067                         ws = &screens[i].ws[j];
9068                         ws->idx = j;
9069                         ws->name = NULL;
9070                         ws->bar_enabled = 1;
9071                         ws->focus = NULL;
9072                         ws->focus_prev = NULL;
9073                         ws->focus_pending = NULL;
9074                         ws->r = NULL;
9075                         ws->old_r = NULL;
9076                         TAILQ_INIT(&ws->winlist);
9077                         TAILQ_INIT(&ws->unmanagedlist);
9078
9079                         for (k = 0; layouts[k].l_stack != NULL; k++)
9080                                 if (layouts[k].l_config != NULL)
9081                                         layouts[k].l_config(ws,
9082                                             SWM_ARG_ID_STACKINIT);
9083                         ws->cur_layout = &layouts[0];
9084                         ws->cur_layout->l_string(ws);
9085                 }
9086
9087                 scan_xrandr(i);
9088
9089                 if (xrandr_support)
9090                         xcb_randr_select_input(conn, screens[i].root,
9091                             XCB_RANDR_NOTIFY_MASK_SCREEN_CHANGE);
9092         }
9093 }
9094
9095 void
9096 setup_globals(void)
9097 {
9098         if ((bar_fonts = strdup(SWM_BAR_FONTS)) == NULL)
9099                 err(1, "setup_globals: strdup: failed to allocate memory.");
9100
9101         if ((clock_format = strdup("%a %b %d %R %Z %Y")) == NULL)
9102                 err(1, "setup_globals: strdup: failed to allocate memory.");
9103
9104         if ((syms = xcb_key_symbols_alloc(conn)) == NULL)
9105                 errx(1, "unable to allocate key symbols");
9106
9107         a_state = get_atom_from_string("WM_STATE");
9108         a_prot = get_atom_from_string("WM_PROTOCOLS");
9109         a_delete = get_atom_from_string("WM_DELETE_WINDOW");
9110         a_takefocus = get_atom_from_string("WM_TAKE_FOCUS");
9111         a_wmname = get_atom_from_string("WM_NAME");
9112         a_netwmname = get_atom_from_string("_NET_WM_NAME");
9113         a_utf8_string = get_atom_from_string("UTF8_STRING");
9114         a_string = get_atom_from_string("STRING");
9115         a_swm_iconic = get_atom_from_string("_SWM_ICONIC");
9116         a_swm_ws = get_atom_from_string("_SWM_WS");
9117 }
9118
9119 void
9120 workaround(void)
9121 {
9122         int                     i, num_screens;
9123         xcb_atom_t              netwmcheck;
9124         xcb_window_t            root, win;
9125
9126         /* work around sun jdk bugs, code from wmname */
9127         netwmcheck = get_atom_from_string("_NET_SUPPORTING_WM_CHECK");
9128
9129         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
9130         for (i = 0; i < num_screens; i++) {
9131                 root = screens[i].root;
9132
9133                 win = xcb_generate_id(conn);
9134                 xcb_create_window(conn, XCB_COPY_FROM_PARENT, win, root,
9135                     0, 0, 1, 1, 0, XCB_WINDOW_CLASS_INPUT_OUTPUT,
9136                     XCB_COPY_FROM_PARENT, 0, NULL);
9137
9138                 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root,
9139                     netwmcheck, XCB_ATOM_WINDOW, 32, 1, &win);
9140                 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win,
9141                     netwmcheck, XCB_ATOM_WINDOW, 32, 1, &win);
9142                 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win,
9143                     a_netwmname, a_utf8_string, 8, strlen("LG3D"), "LG3D");
9144         }
9145 }
9146
9147 void
9148 shutdown_cleanup(void)
9149 {
9150         int i, num_screens;
9151
9152         /* disable alarm because the following code may not be interrupted */
9153         alarm(0);
9154         if (signal(SIGALRM, SIG_IGN) == SIG_ERR)
9155                 err(1, "can't disable alarm");
9156
9157         bar_extra_stop();
9158         unmap_all();
9159
9160         cursors_cleanup();
9161
9162         teardown_ewmh();
9163
9164         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
9165         for (i = 0; i < num_screens; ++i) {
9166                 if (screens[i].bar_gc != 0)
9167                         xcb_free_gc(conn, screens[i].bar_gc);
9168                 if (!bar_font_legacy)
9169                         XftColorFree(display, DefaultVisual(display, i),
9170                             DefaultColormap(display, i), &bar_font_color);
9171         }
9172
9173         if (bar_font_legacy)
9174                 XFreeFontSet(display, bar_fs);
9175         else {
9176                 XftFontClose(display, bar_font);
9177         }
9178
9179         xcb_key_symbols_free(syms);
9180         xcb_flush(conn);
9181         xcb_disconnect(conn);
9182 }
9183
9184 void
9185 event_error(xcb_generic_error_t *e)
9186 {
9187         (void)e;
9188
9189         DNPRINTF(SWM_D_EVENT, "event_error: %s(%u) from %s(%u), sequence: %u, "
9190             "resource_id: %u, minor_code: %u\n",
9191             xcb_event_get_error_label(e->error_code), e->error_code,
9192             xcb_event_get_request_label(e->major_code), e->major_code,
9193             e->sequence, e->resource_id, e->minor_code);
9194 }
9195
9196 void
9197 event_handle(xcb_generic_event_t *evt)
9198 {
9199         uint8_t type = XCB_EVENT_RESPONSE_TYPE(evt);
9200
9201         DNPRINTF(SWM_D_EVENT, "XCB Event: %s(%d), seq %u\n",
9202             xcb_event_get_label(XCB_EVENT_RESPONSE_TYPE(evt)),
9203             XCB_EVENT_RESPONSE_TYPE(evt), evt->sequence);
9204
9205         switch (type) {
9206 #define EVENT(type, callback) case type: callback((void *)evt); return
9207         EVENT(0, event_error);
9208         EVENT(XCB_BUTTON_PRESS, buttonpress);
9209         /*EVENT(XCB_BUTTON_RELEASE, buttonpress);*/
9210         /*EVENT(XCB_CIRCULATE_NOTIFY, );*/
9211         /*EVENT(XCB_CIRCULATE_REQUEST, );*/
9212         EVENT(XCB_CLIENT_MESSAGE, clientmessage);
9213         /*EVENT(XCB_COLORMAP_NOTIFY, );*/
9214         EVENT(XCB_CONFIGURE_NOTIFY, configurenotify);
9215         EVENT(XCB_CONFIGURE_REQUEST, configurerequest);
9216         /*EVENT(XCB_CREATE_NOTIFY, );*/
9217         EVENT(XCB_DESTROY_NOTIFY, destroynotify);
9218         EVENT(XCB_ENTER_NOTIFY, enternotify);
9219         EVENT(XCB_EXPOSE, expose);
9220 #ifdef SWM_DEBUG
9221         EVENT(XCB_FOCUS_IN, focusin);
9222         EVENT(XCB_FOCUS_OUT, focusout);
9223 #endif
9224         /*EVENT(XCB_GRAPHICS_EXPOSURE, );*/
9225         /*EVENT(XCB_GRAVITY_NOTIFY, );*/
9226         EVENT(XCB_KEY_PRESS, keypress);
9227         /*EVENT(XCB_KEY_RELEASE, keypress);*/
9228         /*EVENT(XCB_KEYMAP_NOTIFY, );*/
9229 #ifdef SWM_DEBUG
9230         EVENT(XCB_LEAVE_NOTIFY, leavenotify);
9231 #endif
9232         EVENT(XCB_MAP_NOTIFY, mapnotify);
9233         EVENT(XCB_MAP_REQUEST, maprequest);
9234         EVENT(XCB_MAPPING_NOTIFY, mappingnotify);
9235         EVENT(XCB_MOTION_NOTIFY, motionnotify);
9236         /*EVENT(XCB_NO_EXPOSURE, );*/
9237         EVENT(XCB_PROPERTY_NOTIFY, propertynotify);
9238         /*EVENT(XCB_REPARENT_NOTIFY, );*/
9239         /*EVENT(XCB_RESIZE_REQUEST, );*/
9240         /*EVENT(XCB_SELECTION_CLEAR, );*/
9241         /*EVENT(XCB_SELECTION_NOTIFY, );*/
9242         /*EVENT(XCB_SELECTION_REQUEST, );*/
9243         EVENT(XCB_UNMAP_NOTIFY, unmapnotify);
9244         /*EVENT(XCB_VISIBILITY_NOTIFY, visibilitynotify);*/
9245 #undef EVENT
9246         }
9247         if (type - xrandr_eventbase == XCB_RANDR_SCREEN_CHANGE_NOTIFY)
9248                 screenchange((void *)evt);
9249 }
9250
9251 int
9252 main(int argc, char *argv[])
9253 {
9254         struct swm_region       *r;
9255         char                    conf[PATH_MAX], *cfile = NULL;
9256         struct stat             sb;
9257         int                     xfd, i, num_screens, startup = 1;
9258         struct sigaction        sact;
9259         xcb_generic_event_t     *evt;
9260         struct timeval          tv;
9261         fd_set                  rd;
9262         int                     rd_max;
9263         int                     stdin_ready = 0;
9264         int                     num_readable;
9265
9266         /* suppress unused warning since var is needed */
9267         (void)argc;
9268
9269         time_started = time(NULL);
9270
9271         start_argv = argv;
9272         warnx("Welcome to spectrwm V%s Build: %s", SPECTRWM_VERSION, buildstr);
9273         if (!setlocale(LC_CTYPE, "") || !setlocale(LC_TIME, ""))
9274                 warnx("no locale support");
9275
9276         /* handle some signals */
9277         bzero(&sact, sizeof(sact));
9278         sigemptyset(&sact.sa_mask);
9279         sact.sa_flags = 0;
9280         sact.sa_handler = sighdlr;
9281         sigaction(SIGINT, &sact, NULL);
9282         sigaction(SIGQUIT, &sact, NULL);
9283         sigaction(SIGTERM, &sact, NULL);
9284         sigaction(SIGHUP, &sact, NULL);
9285
9286         sact.sa_handler = sighdlr;
9287         sact.sa_flags = SA_NOCLDSTOP;
9288         sigaction(SIGCHLD, &sact, NULL);
9289
9290         if (!(display = XOpenDisplay(0)))
9291                 errx(1, "can not open display");
9292
9293         conn = XGetXCBConnection(display);
9294         if (xcb_connection_has_error(conn))
9295                 errx(1, "can not get XCB connection");
9296
9297         XSetEventQueueOwner(display, XCBOwnsEventQueue);
9298
9299         xcb_prefetch_extension_data(conn, &xcb_randr_id);
9300         xfd = xcb_get_file_descriptor(conn);
9301
9302         /* look for local and global conf file */
9303         pwd = getpwuid(getuid());
9304         if (pwd == NULL)
9305                 errx(1, "invalid user: %d", getuid());
9306
9307         xcb_grab_server(conn);
9308         xcb_aux_sync(conn);
9309
9310         /* flush all events */
9311         while ((evt = xcb_poll_for_event(conn))) {
9312                 if (XCB_EVENT_RESPONSE_TYPE(evt) == 0)
9313                         event_handle(evt);
9314                 free(evt);
9315         }
9316
9317         if (enable_wm() != 0)
9318                 errx(1, "another window manager is currently running");
9319
9320         /* Load Xcursors and/or cursorfont glyph cursors. */
9321         cursors_load();
9322
9323         xcb_aux_sync(conn);
9324
9325         setup_globals();
9326         setup_screens();
9327         setup_keys();
9328         setup_quirks();
9329         setup_spawn();
9330
9331         /* load config */
9332         for (i = 0; ; i++) {
9333                 conf[0] = '\0';
9334                 switch (i) {
9335                 case 0:
9336                         /* ~ */
9337                         snprintf(conf, sizeof conf, "%s/.%s",
9338                             pwd->pw_dir, SWM_CONF_FILE);
9339                         break;
9340                 case 1:
9341                         /* global */
9342                         snprintf(conf, sizeof conf, "/etc/%s",
9343                             SWM_CONF_FILE);
9344                         break;
9345                 case 2:
9346                         /* ~ compat */
9347                         snprintf(conf, sizeof conf, "%s/.%s",
9348                             pwd->pw_dir, SWM_CONF_FILE_OLD);
9349                         break;
9350                 case 3:
9351                         /* global compat */
9352                         snprintf(conf, sizeof conf, "/etc/%s",
9353                             SWM_CONF_FILE_OLD);
9354                         break;
9355                 default:
9356                         goto noconfig;
9357                 }
9358
9359                 if (strlen(conf) && stat(conf, &sb) != -1)
9360                         if (S_ISREG(sb.st_mode)) {
9361                                 cfile = conf;
9362                                 break;
9363                         }
9364         }
9365 noconfig:
9366
9367         /* load conf (if any) */
9368         if (cfile)
9369                 conf_load(cfile, SWM_CONF_DEFAULT);
9370
9371         validate_spawns();
9372
9373         setup_ewmh();
9374         /* set some values to work around bad programs */
9375         workaround();
9376         /* grab existing windows (before we build the bars) */
9377         grab_windows();
9378
9379         if (getenv("SWM_STARTED") == NULL)
9380                 setenv("SWM_STARTED", "YES", 1);
9381
9382         /* setup all bars */
9383         num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
9384         for (i = 0; i < num_screens; i++)
9385                 TAILQ_FOREACH(r, &screens[i].rl, entry)
9386                         bar_setup(r);
9387
9388         grabkeys();
9389         stack();
9390         bar_draw();
9391
9392         xcb_ungrab_server(conn);
9393         xcb_flush(conn);
9394
9395         rd_max = xfd > STDIN_FILENO ? xfd : STDIN_FILENO;
9396
9397         while (running) {
9398                 while ((evt = xcb_poll_for_event(conn))) {
9399                         if (!running)
9400                                 goto done;
9401                         event_handle(evt);
9402                         free(evt);
9403                 }
9404
9405                 /* If just (re)started, set default focus if needed. */
9406                 if (startup) {
9407                         startup = 0;
9408
9409                         if (focus_mode != SWM_FOCUS_FOLLOW) {
9410                                 r = TAILQ_FIRST(&screens[0].rl);
9411                                 if (r) {
9412                                         focus_region(r);
9413                                         focus_flush();
9414                                 }
9415                                 continue;
9416                         }
9417                 }
9418
9419                 FD_ZERO(&rd);
9420
9421                 if (bar_extra)
9422                         FD_SET(STDIN_FILENO, &rd);
9423
9424                 FD_SET(xfd, &rd);
9425                 tv.tv_sec = 1;
9426                 tv.tv_usec = 0;
9427                 num_readable = select(rd_max + 1, &rd, NULL, NULL, &tv);
9428                 if (num_readable == -1 && errno != EINTR) {
9429                         DNPRINTF(SWM_D_MISC, "select failed");
9430                 } else if (num_readable > 0 && FD_ISSET(STDIN_FILENO, &rd)) {
9431                         stdin_ready = 1;
9432                 }
9433
9434                 if (restart_wm)
9435                         restart(NULL, NULL);
9436
9437                 if (search_resp)
9438                         search_do_resp();
9439
9440                 if (!running)
9441                         goto done;
9442
9443                 if (stdin_ready) {
9444                         stdin_ready = 0;
9445                         if (bar_extra_update()) {
9446                                 bar_draw();
9447                                 xcb_flush(conn);
9448                         }
9449                 }
9450         }
9451 done:
9452         shutdown_cleanup();
9453
9454         return (0);
9455 }