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