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