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