JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Use cut instead of awk for some sort of mem saving.
[spectrwm.git] / scrotwm.c
1 /* $scrotwm$ */
2 /*
3  * Copyright (c) 2009 Marco Peereboom <marco@peereboom.us>
4  * Copyright (c) 2009 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  *
8  * Permission to use, copy, modify, and distribute this software for any
9  * purpose with or without fee is hereby granted, provided that the above
10  * copyright notice and this permission notice appear in all copies.
11  *
12  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19  */
20 /*
21  * Much code and ideas taken from dwm under the following license:
22  * MIT/X Consortium License
23  *
24  * 2006-2008 Anselm R Garbe <garbeam at gmail dot com>
25  * 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
26  * 2006-2007 Jukka Salmi <jukka at salmi dot ch>
27  * 2007 Premysl Hruby <dfenze at gmail dot com>
28  * 2007 Szabolcs Nagy <nszabolcs at gmail dot com>
29  * 2007 Christof Musik <christof at sendfax dot de>
30  * 2007-2008 Enno Gottox Boland <gottox at s01 dot de>
31  * 2007-2008 Peter Hartlich <sgkkr at hartlich dot com>
32  * 2008 Martin Hurton <martin dot hurton at gmail dot com>
33  *
34  * Permission is hereby granted, free of charge, to any person obtaining a
35  * copy of this software and associated documentation files (the "Software"),
36  * to deal in the Software without restriction, including without limitation
37  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
38  * and/or sell copies of the Software, and to permit persons to whom the
39  * Software is furnished to do so, subject to the following conditions:
40  *
41  * The above copyright notice and this permission notice shall be included in
42  * all copies or substantial portions of the Software.
43  *
44  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
45  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
46  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
47  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
48  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
49  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
50  * DEALINGS IN THE SOFTWARE.
51  */
52
53 static const char       *cvstag = "$scrotwm$";
54
55 #define SWM_VERSION     "0.9.9"
56
57 #include <stdio.h>
58 #include <stdlib.h>
59 #include <err.h>
60 #include <errno.h>
61 #include <fcntl.h>
62 #include <locale.h>
63 #include <unistd.h>
64 #include <time.h>
65 #include <signal.h>
66 #include <string.h>
67 #include <util.h>
68 #include <pwd.h>
69 #include <ctype.h>
70
71 #include <sys/types.h>
72 #include <sys/time.h>
73 #include <sys/stat.h>
74 #include <sys/wait.h>
75 #include <sys/queue.h>
76 #include <sys/param.h>
77 #include <sys/select.h>
78
79 #include <X11/cursorfont.h>
80 #include <X11/keysym.h>
81 #include <X11/Xatom.h>
82 #include <X11/Xlib.h>
83 #include <X11/Xproto.h>
84 #include <X11/Xutil.h>
85 #include <X11/extensions/Xrandr.h>
86
87 #if RANDR_MAJOR < 1
88 #  error XRandR versions less than 1.0 are not supported
89 #endif
90
91 #if RANDR_MAJOR >= 1
92 #if RANDR_MINOR >= 2
93 #define SWM_XRR_HAS_CRTC
94 #endif
95 #endif
96
97 /* #define SWM_DEBUG */
98 #ifdef SWM_DEBUG
99 #define DPRINTF(x...)           do { if (swm_debug) fprintf(stderr, x); } while(0)
100 #define DNPRINTF(n,x...)        do { if (swm_debug & n) fprintf(stderr, x); } while(0)
101 #define SWM_D_MISC              0x0001
102 #define SWM_D_EVENT             0x0002
103 #define SWM_D_WS                0x0004
104 #define SWM_D_FOCUS             0x0008
105 #define SWM_D_MOVE              0x0010
106 #define SWM_D_STACK             0x0020
107 #define SWM_D_MOUSE             0x0040
108 #define SWM_D_PROP              0x0080
109 #define SWM_D_CLASS             0x0100
110 #define SWM_D_KEY               0x0200
111 #define SWM_D_QUIRK             0x0400
112 #define SWM_D_SPAWN             0x0800
113 #define SWM_D_EVENTQ            0x1000
114 #define SWM_D_CONF              0x2000
115
116 u_int32_t               swm_debug = 0
117                             | SWM_D_MISC
118                             | SWM_D_EVENT
119                             | SWM_D_WS
120                             | SWM_D_FOCUS
121                             | SWM_D_MOVE
122                             | SWM_D_STACK
123                             | SWM_D_MOUSE
124                             | SWM_D_PROP
125                             | SWM_D_CLASS
126                             | SWM_D_KEY
127                             | SWM_D_QUIRK
128                             | SWM_D_SPAWN
129                             | SWM_D_EVENTQ
130                             | SWM_D_CONF
131                             ;
132 #else
133 #define DPRINTF(x...)
134 #define DNPRINTF(n,x...)
135 #endif
136
137 #define LENGTH(x)               (sizeof x / sizeof x[0])
138 #define MODKEY                  Mod1Mask
139 #define CLEANMASK(mask)         (mask & ~(numlockmask | LockMask))
140 #define BUTTONMASK              (ButtonPressMask|ButtonReleaseMask)
141 #define MOUSEMASK               (BUTTONMASK|PointerMotionMask)
142 #define SWM_PROPLEN             (16)
143 #define SWM_FUNCNAME_LEN        (32)
144 #define SWM_KEYS_LEN            (255)
145 #define SWM_QUIRK_LEN           (64)
146 #define X(r)                    (r)->g.x
147 #define Y(r)                    (r)->g.y
148 #define WIDTH(r)                (r)->g.w
149 #define HEIGHT(r)               (r)->g.h
150 #define SWM_MAX_FONT_STEPS      (3)
151
152 #ifndef SWM_LIB
153 #define SWM_LIB                 "/usr/local/lib/libswmhack.so"
154 #endif
155
156 char                    **start_argv;
157 Atom                    astate;
158 Atom                    aprot;
159 Atom                    adelete;
160 volatile sig_atomic_t   running = 1;
161 int                     outputs = 0;
162 int                     (*xerrorxlib)(Display *, XErrorEvent *);
163 int                     other_wm;
164 int                     ss_enabled = 0;
165 int                     xrandr_support;
166 int                     xrandr_eventbase;
167 int                     ignore_enter = 0;
168 unsigned int            numlockmask = 0;
169 Display                 *display;
170
171 int                     cycle_empty = 0;
172 int                     cycle_visible = 0;
173 int                     term_width = 0;
174 int                     font_adjusted = 0;
175 unsigned int            mod_key = MODKEY;
176
177 /* dialog windows */
178 double                  dialog_ratio = .6;
179 /* status bar */
180 #define SWM_BAR_MAX     (256)
181 char                    *bar_argv[] = { NULL, NULL };
182 int                     bar_pipe[2];
183 char                    bar_ext[SWM_BAR_MAX];
184 char                    bar_vertext[SWM_BAR_MAX];
185 int                     bar_version = 0;
186 sig_atomic_t            bar_alarm = 0;
187 int                     bar_delay = 30;
188 int                     bar_enabled = 1;
189 int                     bar_extra = 1;
190 int                     bar_extra_running = 0;
191 int                     bar_verbose = 1;
192 int                     bar_height = 0;
193 int                     clock_enabled = 1;
194 int                     title_name_enabled = 0;
195 int                     title_class_enabled = 0;
196 pid_t                   bar_pid;
197 GC                      bar_gc;
198 XGCValues               bar_gcv;
199 int                     bar_fidx = 0;
200 XFontStruct             *bar_fs;
201 char                    *bar_fonts[] = { NULL, NULL, NULL };    /* XXX Make fully dynamic */
202 char                    *spawn_term[] = { NULL, NULL };         /* XXX Make fully dynamic */
203
204 #define SWM_MENU_FN     (2)
205 #define SWM_MENU_NB     (4)
206 #define SWM_MENU_NF     (6)
207 #define SWM_MENU_SB     (8)
208 #define SWM_MENU_SF     (10)
209
210 /* layout manager data */
211 struct swm_geometry {
212         int                     x;
213         int                     y;
214         int                     w;
215         int                     h;
216 };
217
218 struct swm_screen;
219 struct workspace;
220
221 /* virtual "screens" */
222 struct swm_region {
223         TAILQ_ENTRY(swm_region) entry;
224         struct swm_geometry     g;
225         struct workspace        *ws;    /* current workspace on this region */
226         struct swm_screen       *s;     /* screen idx */
227         Window                  bar_window;
228 };
229 TAILQ_HEAD(swm_region_list, swm_region);
230
231 struct ws_win {
232         TAILQ_ENTRY(ws_win)     entry;
233         Window                  id;
234         struct swm_geometry     g;
235         int                     floating;
236         int                     transient;
237         int                     manual;
238         int                     font_size_boundary[SWM_MAX_FONT_STEPS];
239         int                     font_steps;
240         int                     last_inc;
241         int                     can_delete;
242         unsigned long           quirks;
243         struct workspace        *ws;    /* always valid */
244         struct swm_screen       *s;     /* always valid, never changes */
245         XWindowAttributes       wa;
246         XSizeHints              sh;
247         XClassHint              ch;
248 };
249 TAILQ_HEAD(ws_win_list, ws_win);
250
251 /* user/key callable function IDs */
252 enum keyfuncid {
253         kf_cycle_layout,
254         kf_stack_reset,
255         kf_master_shrink,
256         kf_master_grow,
257         kf_master_add,
258         kf_master_del,
259         kf_stack_inc,
260         kf_stack_dec,
261         kf_swap_main,
262         kf_focus_next,
263         kf_focus_prev,
264         kf_swap_next,
265         kf_swap_prev,
266         kf_spawn_term,
267         kf_spawn_menu,
268         kf_quit,
269         kf_restart,
270         kf_focus_main,
271         kf_ws_1,
272         kf_ws_2,
273         kf_ws_3,
274         kf_ws_4,
275         kf_ws_5,
276         kf_ws_6,
277         kf_ws_7,
278         kf_ws_8,
279         kf_ws_9,
280         kf_ws_10,
281         kf_ws_next,
282         kf_ws_prev,
283         kf_screen_next,
284         kf_screen_prev,
285         kf_mvws_1,
286         kf_mvws_2,
287         kf_mvws_3,
288         kf_mvws_4,
289         kf_mvws_5,
290         kf_mvws_6,
291         kf_mvws_7,
292         kf_mvws_8,
293         kf_mvws_9,
294         kf_mvws_10,
295         kf_bar_toggle,
296         kf_wind_kill,
297         kf_wind_del,
298         kf_screenshot_all,
299         kf_screenshot_wind,
300         kf_float_toggle,
301         kf_version,
302         kf_spawn_lock,
303         kf_spawn_initscr,
304         kf_spawn_custom,
305         kf_invalid
306 };
307
308 /* layout handlers */
309 void    stack(void);
310 void    vertical_config(struct workspace *, int);
311 void    vertical_stack(struct workspace *, struct swm_geometry *);
312 void    horizontal_config(struct workspace *, int);
313 void    horizontal_stack(struct workspace *, struct swm_geometry *);
314 void    max_stack(struct workspace *, struct swm_geometry *);
315
316 void    grabbuttons(struct ws_win *, int);
317 void    new_region(struct swm_screen *, int, int, int, int);
318
319 struct layout {
320         void            (*l_stack)(struct workspace *, struct swm_geometry *);
321         void            (*l_config)(struct workspace *, int);
322 } layouts[] =  {
323         /* stack,               configure */
324         { vertical_stack,       vertical_config},
325         { horizontal_stack,     horizontal_config},
326         { max_stack,            NULL},
327         { NULL,                 NULL},
328 };
329
330 #define SWM_H_SLICE             (32)
331 #define SWM_V_SLICE             (32)
332
333 /* define work spaces */
334 struct workspace {
335         int                     idx;            /* workspace index */
336         int                     restack;        /* restack on switch */
337         struct layout           *cur_layout;    /* current layout handlers */
338         struct ws_win           *focus;         /* may be NULL */
339         struct ws_win           *focus_prev;    /* may be NULL */
340         struct swm_region       *r;             /* may be NULL */
341         struct ws_win_list      winlist;        /* list of windows in ws */
342
343         /* stacker state */
344         struct {
345                                 int horizontal_msize;
346                                 int horizontal_mwin;
347                                 int horizontal_stacks;
348                                 int vertical_msize;
349                                 int vertical_mwin;
350                                 int vertical_stacks;
351         } l_state;
352 };
353
354 enum    { SWM_S_COLOR_BAR, SWM_S_COLOR_BAR_BORDER, SWM_S_COLOR_BAR_FONT,
355           SWM_S_COLOR_FOCUS, SWM_S_COLOR_UNFOCUS, SWM_S_COLOR_MAX };
356
357 /* physical screen mapping */
358 #define SWM_WS_MAX              (10)            /* XXX Too small? */
359 struct swm_screen {
360         int                     idx;            /* screen index */
361         struct swm_region_list  rl;     /* list of regions on this screen */
362         struct swm_region_list  orl;    /* list of old regions */
363         Window                  root;
364         struct workspace        ws[SWM_WS_MAX];
365
366         /* colors */
367         struct {
368                 unsigned long   color;
369                 char            *name;
370         } c[SWM_S_COLOR_MAX];
371 };
372 struct swm_screen       *screens;
373 int                     num_screens;
374
375 /* args to functions */
376 union arg {
377         int                     id;
378 #define SWM_ARG_ID_FOCUSNEXT    (0)
379 #define SWM_ARG_ID_FOCUSPREV    (1)
380 #define SWM_ARG_ID_FOCUSMAIN    (2)
381 #define SWM_ARG_ID_SWAPNEXT     (3)
382 #define SWM_ARG_ID_SWAPPREV     (4)
383 #define SWM_ARG_ID_SWAPMAIN     (5)
384 #define SWM_ARG_ID_MASTERSHRINK (6)
385 #define SWM_ARG_ID_MASTERGROW   (7)
386 #define SWM_ARG_ID_MASTERADD    (8)
387 #define SWM_ARG_ID_MASTERDEL    (9)
388 #define SWM_ARG_ID_STACKRESET   (10)
389 #define SWM_ARG_ID_STACKINIT    (11)
390 #define SWM_ARG_ID_CYCLEWS_UP   (12)
391 #define SWM_ARG_ID_CYCLEWS_DOWN (13)
392 #define SWM_ARG_ID_CYCLESC_UP   (14)
393 #define SWM_ARG_ID_CYCLESC_DOWN (15)
394 #define SWM_ARG_ID_STACKINC     (16)
395 #define SWM_ARG_ID_STACKDEC     (17)
396 #define SWM_ARG_ID_SS_ALL       (0)
397 #define SWM_ARG_ID_SS_WINDOW    (1)
398 #define SWM_ARG_ID_DONTCENTER   (0)
399 #define SWM_ARG_ID_CENTER       (1)
400 #define SWM_ARG_ID_KILLWINDOW   (0)
401 #define SWM_ARG_ID_DELETEWINDOW (1)
402         char                    **argv;
403 };
404
405 /* quirks */
406 struct quirk {
407         char                    *class;
408         char                    *name;
409         unsigned long           quirk;
410 #define SWM_Q_FLOAT             (1<<0)  /* float this window */
411 #define SWM_Q_TRANSSZ           (1<<1)  /* transiend window size too small */
412 #define SWM_Q_ANYWHERE          (1<<2)  /* don't position this window */
413 #define SWM_Q_XTERM_FONTADJ     (1<<3)  /* adjust xterm fonts when resizing */
414 #define SWM_Q_FULLSCREEN        (1<<4)  /* remove border */
415 };
416 int                             quirks_size = 0, quirks_length = 0;
417 struct quirk                    *quirks = NULL;
418
419 /* events */
420 #ifdef SWM_DEBUG
421 void
422 dumpevent(XEvent *e)
423 {
424         char                    *name = NULL;
425
426         switch (e->type) {
427         case KeyPress:
428                 name = "KeyPress";
429                 break;
430         case KeyRelease:
431                 name = "KeyRelease";
432                 break;
433         case ButtonPress:
434                 name = "ButtonPress";
435                 break;
436         case ButtonRelease:
437                 name = "ButtonRelease";
438                 break;
439         case MotionNotify:
440                 name = "MotionNotify";
441                 break;
442         case EnterNotify:
443                 name = "EnterNotify";
444                 break;
445         case LeaveNotify:
446                 name = "LeaveNotify";
447                 break;
448         case FocusIn:
449                 name = "FocusIn";
450                 break;
451         case FocusOut:
452                 name = "FocusOut";
453                 break;
454         case KeymapNotify:
455                 name = "KeymapNotify";
456                 break;
457         case Expose:
458                 name = "Expose";
459                 break;
460         case GraphicsExpose:
461                 name = "GraphicsExpose";
462                 break;
463         case NoExpose:
464                 name = "NoExpose";
465                 break;
466         case VisibilityNotify:
467                 name = "VisibilityNotify";
468                 break;
469         case CreateNotify:
470                 name = "CreateNotify";
471                 break;
472         case DestroyNotify:
473                 name = "DestroyNotify";
474                 break;
475         case UnmapNotify:
476                 name = "UnmapNotify";
477                 break;
478         case MapNotify:
479                 name = "MapNotify";
480                 break;
481         case MapRequest:
482                 name = "MapRequest";
483                 break;
484         case ReparentNotify:
485                 name = "ReparentNotify";
486                 break;
487         case ConfigureNotify:
488                 name = "ConfigureNotify";
489                 break;
490         case ConfigureRequest:
491                 name = "ConfigureRequest";
492                 break;
493         case GravityNotify:
494                 name = "GravityNotify";
495                 break;
496         case ResizeRequest:
497                 name = "ResizeRequest";
498                 break;
499         case CirculateNotify:
500                 name = "CirculateNotify";
501                 break;
502         case CirculateRequest:
503                 name = "CirculateRequest";
504                 break;
505         case PropertyNotify:
506                 name = "PropertyNotify";
507                 break;
508         case SelectionClear:
509                 name = "SelectionClear";
510                 break;
511         case SelectionRequest:
512                 name = "SelectionRequest";
513                 break;
514         case SelectionNotify:
515                 name = "SelectionNotify";
516                 break;
517         case ColormapNotify:
518                 name = "ColormapNotify";
519                 break;
520         case ClientMessage:
521                 name = "ClientMessage";
522                 break;
523         case MappingNotify:
524                 name = "MappingNotify";
525                 break;
526         }
527
528         if (name)
529                 DNPRINTF(SWM_D_EVENTQ ,"window: %lu event: %s (%d), %d "
530                     "remaining\n",
531                     e->xany.window, name, e->type, QLength(display));
532         else
533                 DNPRINTF(SWM_D_EVENTQ, "window: %lu unknown event %d, %d "
534                     "remaining\n",
535                     e->xany.window, e->type, QLength(display));
536 }
537 #else
538 #define dumpevent(e)
539 #endif /* SWM_DEBUG */
540
541 void                    expose(XEvent *);
542 void                    keypress(XEvent *);
543 void                    buttonpress(XEvent *);
544 void                    configurerequest(XEvent *);
545 void                    configurenotify(XEvent *);
546 void                    destroynotify(XEvent *);
547 void                    enternotify(XEvent *);
548 void                    focusin(XEvent *);
549 void                    focusout(XEvent *);
550 void                    mappingnotify(XEvent *);
551 void                    maprequest(XEvent *);
552 void                    propertynotify(XEvent *);
553 void                    unmapnotify(XEvent *);
554 void                    visibilitynotify(XEvent *);
555
556 void                    (*handler[LASTEvent])(XEvent *) = {
557                                 [Expose] = expose,
558                                 [KeyPress] = keypress,
559                                 [ButtonPress] = buttonpress,
560                                 [ConfigureRequest] = configurerequest,
561                                 [ConfigureNotify] = configurenotify,
562                                 [DestroyNotify] = destroynotify,
563                                 [EnterNotify] = enternotify,
564                                 [FocusIn] = focusin,
565                                 [FocusOut] = focusout,
566                                 [MappingNotify] = mappingnotify,
567                                 [MapRequest] = maprequest,
568                                 [PropertyNotify] = propertynotify,
569                                 [UnmapNotify] = unmapnotify,
570                                 [VisibilityNotify] = visibilitynotify,
571 };
572
573 void
574 sighdlr(int sig)
575 {
576         pid_t                   pid;
577
578         switch (sig) {
579         case SIGCHLD:
580                 while ((pid = waitpid(WAIT_ANY, NULL, WNOHANG)) != -1) {
581                         DNPRINTF(SWM_D_MISC, stderr, "reaping: %d\n", pid);
582                         if (pid <= 0)
583                                 break;
584                 }
585                 break;
586         case SIGINT:
587         case SIGTERM:
588         case SIGHUP:
589         case SIGQUIT:
590                 running = 0;
591                 break;
592         }
593 }
594
595 void
596 installsignal(int sig, char *name)
597 {
598         struct sigaction        sa;
599
600         sa.sa_handler = sighdlr;
601         sigemptyset(&sa.sa_mask);
602         sa.sa_flags = 0;
603         if (sigaction(sig, &sa, NULL) == -1)
604                 err(1, "could not install %s handler", name);
605 }
606
607 unsigned long
608 name_to_color(char *colorname)
609 {
610         Colormap                cmap;
611         Status                  status;
612         XColor                  screen_def, exact_def;
613         unsigned long           result = 0;
614         char                    cname[32] = "#";
615
616         cmap = DefaultColormap(display, screens[0].idx);
617         status = XAllocNamedColor(display, cmap, colorname,
618             &screen_def, &exact_def);
619         if (!status) {
620                 strlcat(cname, colorname + 2, sizeof cname - 1);
621                 status = XAllocNamedColor(display, cmap, cname, &screen_def,
622                     &exact_def);
623         }
624         if (status)
625                 result = screen_def.pixel;
626         else
627                 fprintf(stderr, "color '%s' not found.\n", colorname);
628
629         return (result);
630 }
631
632 void
633 setscreencolor(char *val, int i, int c)
634 {
635         if (i > 0 && i <= ScreenCount(display)) {
636                 screens[i - 1].c[c].color = name_to_color(val);
637                 free(screens[i - 1].c[c].name);
638                 if ((screens[i - 1].c[c].name = strdup(val)) == NULL)
639                         errx(1, "strdup");
640         } else if (i == -1) {
641                 for (i = 0; i < ScreenCount(display); i++) {
642                         screens[i].c[c].color = name_to_color(val);
643                         free(screens[i].c[c].name);
644                         if ((screens[i].c[c].name = strdup(val)) == NULL)
645                                 errx(1, "strdup");
646                 }
647         } else
648                 errx(1, "invalid screen index: %d out of bounds (maximum %d)\n",
649                     i, ScreenCount(display));
650 }
651
652 void
653 custom_region(char *val)
654 {
655         unsigned int                    sidx, x, y, w, h;
656
657         if (sscanf(val, "screen[%u]:%ux%u+%u+%u", &sidx, &w, &h, &x, &y) != 5)
658                 errx(1, "invalid custom region, "
659                     "should be 'screen[<n>]:<n>x<n>+<n>+<n>\n");
660         if (sidx < 1 || sidx > ScreenCount(display))
661                 errx(1, "invalid screen index: %d out of bounds (maximum %d)\n",
662                     sidx, ScreenCount(display));
663         sidx--;
664
665         if (w < 1 || h < 1)
666                 errx(1, "region %ux%u+%u+%u too small\n", w, h, x, y);
667
668         if (x  < 0 || x > DisplayWidth(display, sidx) ||
669             y < 0 || y > DisplayHeight(display, sidx) ||
670             w + x > DisplayWidth(display, sidx) ||
671             h + y > DisplayHeight(display, sidx))
672                 errx(1, "region %ux%u+%u+%u not within screen boundaries "
673                     "(%ux%u)\n", w, h, x, y,
674                     DisplayWidth(display, sidx), DisplayHeight(display, sidx));
675
676         new_region(&screens[sidx], x, y, w, h);
677 }
678
679 void
680 socket_setnonblock(int fd)
681 {
682         int                     flags;
683
684         if ((flags = fcntl(fd, F_GETFL, 0)) == -1)
685                 err(1, "fcntl F_GETFL");
686         flags |= O_NONBLOCK;
687         if ((flags = fcntl(fd, F_SETFL, flags)) == -1)
688                 err(1, "fcntl F_SETFL");
689 }
690
691 void
692 bar_print(struct swm_region *r, char *s)
693 {
694         XClearWindow(display, r->bar_window);
695         XSetForeground(display, bar_gc, r->s->c[SWM_S_COLOR_BAR_FONT].color);
696         XDrawString(display, r->bar_window, bar_gc, 4, bar_fs->ascent, s,
697             strlen(s));
698 }
699
700 void
701 bar_extra_stop(void)
702 {
703         if (bar_pipe[0]) {
704                 close(bar_pipe[0]);
705                 bzero(bar_pipe, sizeof bar_pipe);
706         }
707         if (bar_pid) {
708                 kill(bar_pid, SIGTERM);
709                 bar_pid = 0;
710         }
711         strlcpy(bar_ext, "", sizeof bar_ext);
712         bar_extra = 0;
713 }
714
715 void
716 bar_class_name(char *s, ssize_t sz, struct ws_win *cur_focus)
717 {
718         int                     do_class, do_name;
719         Status                  status;
720         XClassHint              *xch = NULL;
721
722         if ((title_name_enabled == 1 || title_class_enabled == 1) &&
723             cur_focus != NULL) {
724                 if ((xch = XAllocClassHint()) == NULL)
725                         goto out;
726                 status = XGetClassHint(display, cur_focus->id, xch);
727                 if (status == BadWindow || status == BadAlloc)
728                         goto out;
729                 do_class = (title_class_enabled && xch->res_class != NULL);
730                 do_name = (title_name_enabled && xch->res_name != NULL);
731                 if (do_class)
732                         strlcat(s, xch->res_class, sz);
733                 if (do_class && do_name)
734                         strlcat(s, ":", sz);
735                 if (do_name)
736                         strlcat(s, xch->res_name, sz);
737                 strlcat(s, "    ", sz);
738         }
739 out:
740         if (xch)
741                 XFree(xch);
742 }
743
744 void
745 bar_update(void)
746 {
747         time_t                  tmt;
748         struct tm               tm;
749         struct swm_region       *r;
750         int                     i, x;
751         size_t                  len;
752         char                    s[SWM_BAR_MAX];
753         char                    loc[SWM_BAR_MAX];
754         char                    *b;
755
756         if (bar_enabled == 0)
757                 return;
758         if (bar_extra && bar_extra_running) {
759                 /* ignore short reads; it'll correct itself */
760                 while ((b = fgetln(stdin, &len)) != NULL)
761                         if (b && b[len - 1] == '\n') {
762                                 b[len - 1] = '\0';
763                                 strlcpy(bar_ext, b, sizeof bar_ext);
764                         }
765                 if (b == NULL && errno != EAGAIN) {
766                         fprintf(stderr, "bar_extra failed: errno: %d %s\n",
767                             errno, strerror(errno));
768                         bar_extra_stop();
769                 }
770         } else
771                 strlcpy(bar_ext, "", sizeof bar_ext);
772
773         if (clock_enabled == 0)
774                 strlcpy(s, "", sizeof s);
775         else {
776                 time(&tmt);
777                 localtime_r(&tmt, &tm);
778                 strftime(s, sizeof s, "%a %b %d %R %Z %Y    ", &tm);
779         }
780
781         for (i = 0; i < ScreenCount(display); i++) {
782                 x = 1;
783                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
784                         if (r && r->ws)
785                                 bar_class_name(s, sizeof s, r->ws->focus);
786
787                         snprintf(loc, sizeof loc, "%d:%d    %s %s    %s",
788                             x++, r->ws->idx + 1, s, bar_ext, bar_vertext);
789                         bar_print(r, loc);
790                 }
791         }
792         XSync(display, False);
793         alarm(bar_delay);
794 }
795
796 void
797 bar_signal(int sig)
798 {
799         bar_alarm = 1;
800 }
801
802 void
803 bar_toggle(struct swm_region *r, union arg *args)
804 {
805         struct swm_region       *tmpr;
806         int                     i, j, sc = ScreenCount(display);
807
808         DNPRINTF(SWM_D_MISC, "bar_toggle\n");
809
810         if (bar_enabled)
811                 for (i = 0; i < sc; i++)
812                         TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
813                                 XUnmapWindow(display, tmpr->bar_window);
814         else
815                 for (i = 0; i < sc; i++)
816                         TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
817                                 XMapRaised(display, tmpr->bar_window);
818
819         bar_enabled = !bar_enabled;
820         for (i = 0; i < sc; i++)
821                 for (j = 0; j < SWM_WS_MAX; j++)
822                         screens[i].ws[j].restack = 1;
823
824         stack();
825         /* must be after stack */
826         bar_update();
827 }
828
829 void
830 bar_refresh(void)
831 {
832         XSetWindowAttributes    wa;
833         struct swm_region       *r;
834         int                     i;
835
836         /* do this here because the conf file is in memory */
837         if (bar_extra && bar_extra_running == 0 && bar_argv[0]) {
838                 /* launch external status app */
839                 bar_extra_running = 1;
840                 if (pipe(bar_pipe) == -1)
841                         err(1, "pipe error");
842                 socket_setnonblock(bar_pipe[0]);
843                 socket_setnonblock(bar_pipe[1]); /* XXX hmmm, really? */
844                 if (dup2(bar_pipe[0], 0) == -1)
845                         errx(1, "dup2");
846                 if (dup2(bar_pipe[1], 1) == -1)
847                         errx(1, "dup2");
848                 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
849                         err(1, "could not disable SIGPIPE");
850                 switch (bar_pid = fork()) {
851                 case -1:
852                         err(1, "cannot fork");
853                         break;
854                 case 0: /* child */
855                         close(bar_pipe[0]);
856                         execvp(bar_argv[0], bar_argv);
857                         err(1, "%s external app failed", bar_argv[0]);
858                         break;
859                 default: /* parent */
860                         close(bar_pipe[1]);
861                         break;
862                 }
863         }
864
865         bzero(&wa, sizeof wa);
866         for (i = 0; i < ScreenCount(display); i++)
867                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
868                         wa.border_pixel =
869                             screens[i].c[SWM_S_COLOR_BAR_BORDER].color;
870                         wa.background_pixel =
871                             screens[i].c[SWM_S_COLOR_BAR].color;
872                         XChangeWindowAttributes(display, r->bar_window,
873                             CWBackPixel | CWBorderPixel, &wa);
874                 }
875         bar_update();
876 }
877
878 void
879 bar_setup(struct swm_region *r)
880 {
881         int                     i;
882
883         for (i = 0; bar_fonts[i] != NULL; i++) {
884                 bar_fs = XLoadQueryFont(display, bar_fonts[i]);
885                 if (bar_fs) {
886                         bar_fidx = i;
887                         break;
888                 }
889         }
890         if (bar_fonts[i] == NULL)
891                         errx(1, "couldn't load font");
892         bar_height = bar_fs->ascent + bar_fs->descent + 3;
893
894         r->bar_window = XCreateSimpleWindow(display,
895             r->s->root, X(r), Y(r), WIDTH(r) - 2, bar_height - 2,
896             1, r->s->c[SWM_S_COLOR_BAR_BORDER].color,
897             r->s->c[SWM_S_COLOR_BAR].color);
898         bar_gc = XCreateGC(display, r->bar_window, 0, &bar_gcv);
899         XSetFont(display, bar_gc, bar_fs->fid);
900         XSelectInput(display, r->bar_window, VisibilityChangeMask);
901         if (bar_enabled)
902                 XMapRaised(display, r->bar_window);
903         DNPRINTF(SWM_D_MISC, "bar_setup: bar_window %lu\n", r->bar_window);
904
905         if (signal(SIGALRM, bar_signal) == SIG_ERR)
906                 err(1, "could not install bar_signal");
907         bar_refresh();
908 }
909
910 void
911 version(struct swm_region *r, union arg *args)
912 {
913         bar_version = !bar_version;
914         if (bar_version)
915                 snprintf(bar_vertext, sizeof bar_vertext, "Version: %s CVS: %s",
916                     SWM_VERSION, cvstag);
917         else
918                 strlcpy(bar_vertext, "", sizeof bar_vertext);
919         bar_update();
920 }
921
922 void
923 client_msg(struct ws_win *win, Atom a)
924 {
925         XClientMessageEvent     cm;
926
927         bzero(&cm, sizeof cm);
928         cm.type = ClientMessage;
929         cm.window = win->id;
930         cm.message_type = aprot;
931         cm.format = 32;
932         cm.data.l[0] = a;
933         cm.data.l[1] = CurrentTime;
934         XSendEvent(display, win->id, False, 0L, (XEvent *)&cm);
935 }
936
937 void
938 config_win(struct ws_win *win)
939 {
940         XConfigureEvent         ce;
941
942         DNPRINTF(SWM_D_MISC, "config_win: win %lu x %d y %d w %d h %d\n",
943             win->id, win->g.x, win->g.y, win->g.w, win->g.h);
944         ce.type = ConfigureNotify;
945         ce.display = display;
946         ce.event = win->id;
947         ce.window = win->id;
948         ce.x = win->g.x;
949         ce.y = win->g.y;
950         ce.width = win->g.w;
951         ce.height = win->g.h;
952         ce.border_width = 1; /* XXX store this! */
953         ce.above = None;
954         ce.override_redirect = False;
955         XSendEvent(display, win->id, False, StructureNotifyMask, (XEvent *)&ce);
956 }
957
958 int
959 count_win(struct workspace *ws, int count_transient)
960 {
961         struct ws_win           *win;
962         int                     count = 0;
963
964         TAILQ_FOREACH(win, &ws->winlist, entry) {
965                 if (count_transient == 0 && win->floating)
966                         continue;
967                 if (count_transient == 0 && win->transient)
968                         continue;
969                 count++;
970         }
971         DNPRINTF(SWM_D_MISC, "count_win: %d\n", count);
972
973         return (count);
974 }
975
976 void
977 quit(struct swm_region *r, union arg *args)
978 {
979         DNPRINTF(SWM_D_MISC, "quit\n");
980         running = 0;
981 }
982
983 void
984 unmap_all(void)
985 {
986         struct ws_win           *win;
987         int                     i, j;
988
989         for (i = 0; i < ScreenCount(display); i++)
990                 for (j = 0; j < SWM_WS_MAX; j++)
991                         TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
992                                 XUnmapWindow(display, win->id);
993 }
994
995 void
996 fake_keypress(struct ws_win *win, int keysym, int modifiers)
997 {
998         XKeyEvent event;
999
1000         event.display = display;        /* Ignored, but what the hell */
1001         event.window = win->id;
1002         event.root = win->s->root;
1003         event.subwindow = None;
1004         event.time = CurrentTime;
1005         event.x = win->g.x;
1006         event.y = win->g.y;
1007         event.x_root = 1;
1008         event.y_root = 1;
1009         event.same_screen = True;
1010         event.keycode = XKeysymToKeycode(display, keysym);
1011         event.state = modifiers;
1012
1013         event.type = KeyPress;
1014         XSendEvent(event.display, event.window, True,
1015             KeyPressMask, (XEvent *)&event);
1016
1017         event.type = KeyRelease;
1018         XSendEvent(event.display, event.window, True,
1019             KeyPressMask, (XEvent *)&event);
1020
1021 }
1022
1023 void
1024 restart(struct swm_region *r, union arg *args)
1025 {
1026         DNPRINTF(SWM_D_MISC, "restart: %s\n", start_argv[0]);
1027
1028         /* disable alarm because the following code may not be interrupted */
1029         alarm(0);
1030         if (signal(SIGALRM, SIG_IGN) == SIG_ERR)
1031                 errx(1, "can't disable alarm");
1032
1033         bar_extra_stop();
1034         bar_extra = 1;
1035         unmap_all();
1036         XCloseDisplay(display);
1037         execvp(start_argv[0], start_argv);
1038         fprintf(stderr, "execvp failed\n");
1039         perror(" failed");
1040         quit(NULL, NULL);
1041 }
1042
1043 struct swm_region *
1044 root_to_region(Window root)
1045 {
1046         struct swm_region       *r = NULL;
1047         Window                  rr, cr;
1048         int                     i, x, y, wx, wy;
1049         unsigned int            mask;
1050
1051         for (i = 0; i < ScreenCount(display); i++)
1052                 if (screens[i].root == root)
1053                         break;
1054
1055         if (XQueryPointer(display, screens[i].root,
1056             &rr, &cr, &x, &y, &wx, &wy, &mask) != False) {
1057                 /* choose a region based on pointer location */
1058                 TAILQ_FOREACH(r, &screens[i].rl, entry)
1059                         if (x >= X(r) && x <= X(r) + WIDTH(r) &&
1060                             y >= Y(r) && y <= Y(r) + HEIGHT(r))
1061                                 break;
1062         }
1063
1064         if (r == NULL)
1065                 r = TAILQ_FIRST(&screens[i].rl);
1066
1067         return (r);
1068 }
1069
1070 struct ws_win *
1071 find_window(Window id)
1072 {
1073         struct ws_win           *win;
1074         int                     i, j;
1075
1076         for (i = 0; i < ScreenCount(display); i++)
1077                 for (j = 0; j < SWM_WS_MAX; j++)
1078                         TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
1079                                 if (id == win->id)
1080                                         return (win);
1081         return (NULL);
1082 }
1083
1084 void
1085 spawn(struct swm_region *r, union arg *args)
1086 {
1087         char                    *ret;
1088         int                     si;
1089
1090         DNPRINTF(SWM_D_MISC, "spawn: %s\n", args->argv[0]);
1091         /*
1092          * The double-fork construct avoids zombie processes and keeps the code
1093          * clean from stupid signal handlers.
1094          */
1095         if (fork() == 0) {
1096                 if (fork() == 0) {
1097                         if (display)
1098                                 close(ConnectionNumber(display));
1099                         setenv("LD_PRELOAD", SWM_LIB, 1);
1100                         if (asprintf(&ret, "%d", r->ws->idx)) {
1101                                 setenv("_SWM_WS", ret, 1);
1102                                 free(ret);
1103                         }
1104                         if (asprintf(&ret, "%d", getpid())) {
1105                                 setenv("_SWM_PID", ret, 1);
1106                                 free(ret);
1107                         }
1108                         setsid();
1109                         /* kill stdin, mplayer, ssh-add etc. need that */
1110                         si = open("/dev/null", O_RDONLY, 0);
1111                         if (si == -1)
1112                                 err(1, "open /dev/null");
1113                         if (dup2(si, 0) == -1)
1114                                 err(1, "dup2 /dev/null");
1115                         execvp(args->argv[0], args->argv);
1116                         fprintf(stderr, "execvp failed\n");
1117                         perror(" failed");
1118                 }
1119                 exit(0);
1120         }
1121         wait(0);
1122 }
1123
1124 void
1125 spawnterm(struct swm_region *r, union arg *args)
1126 {
1127         DNPRINTF(SWM_D_MISC, "spawnterm\n");
1128
1129         if (term_width)
1130                 setenv("_SWM_XTERM_FONTADJ", "", 1);
1131         spawn(r, args);
1132 }
1133
1134 void
1135 unfocus_win(struct ws_win *win)
1136 {
1137         if (win == NULL)
1138                 return;
1139
1140         if (win->ws->r == NULL)
1141                 return;
1142
1143         grabbuttons(win, 0);
1144         XSetWindowBorder(display, win->id,
1145             win->ws->r->s->c[SWM_S_COLOR_UNFOCUS].color);
1146
1147         if (win->ws->focus == win) {
1148                 win->ws->focus = NULL;
1149                 win->ws->focus_prev = win;
1150         }
1151 }
1152
1153 void
1154 unfocus_all(void)
1155 {
1156         struct ws_win           *win;
1157         int                     i, j;
1158
1159         DNPRINTF(SWM_D_FOCUS, "unfocus_all:\n");
1160
1161         for (i = 0; i < ScreenCount(display); i++)
1162                 for (j = 0; j < SWM_WS_MAX; j++)
1163                         TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
1164                                 unfocus_win(win);
1165         XSync(display, False);
1166 }
1167
1168 void
1169 focus_win(struct ws_win *win)
1170 {
1171         DNPRINTF(SWM_D_FOCUS, "focus_win: id: %lu\n", win ? win->id : 0);
1172
1173         if (win == NULL)
1174                 return;
1175
1176         /* use big hammer to make sure it works under all use cases */
1177         unfocus_all();
1178         win->ws->focus = win;
1179
1180         if (win->ws->r != NULL) {
1181                 XSetWindowBorder(display, win->id,
1182                     win->ws->r->s->c[SWM_S_COLOR_FOCUS].color);
1183                 grabbuttons(win, 1);
1184                 XSetInputFocus(display, win->id,
1185                     RevertToPointerRoot, CurrentTime);
1186                 XSync(display, False);
1187         }
1188 }
1189
1190 void
1191 switchws(struct swm_region *r, union arg *args)
1192 {
1193         int                     wsid = args->id;
1194         struct swm_region       *this_r, *other_r;
1195         struct ws_win           *win, *winfocus = NULL;
1196         struct workspace        *new_ws, *old_ws;
1197
1198         this_r = r;
1199         old_ws = this_r->ws;
1200         new_ws = &this_r->s->ws[wsid];
1201
1202         DNPRINTF(SWM_D_WS, "switchws screen[%d]:%dx%d+%d+%d: "
1203             "%d -> %d\n", r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r),
1204             old_ws->idx, wsid);
1205
1206         /* get focus window */
1207         if (new_ws->focus)
1208                 winfocus = new_ws->focus;
1209         else if (new_ws->focus_prev)
1210                 winfocus = new_ws->focus_prev;
1211
1212         if (new_ws->focus)
1213                 winfocus = new_ws->focus;
1214         else if (new_ws->focus_prev)
1215                 winfocus = new_ws->focus_prev;
1216
1217         if (new_ws == old_ws)
1218                 return;
1219
1220         other_r = new_ws->r;
1221         if (!other_r) {
1222                 /* if the other workspace is hidden, switch windows */
1223                 /* map new window first to prevent ugly blinking */
1224                 old_ws->r = NULL;
1225                 old_ws->restack = 1;
1226
1227                 TAILQ_FOREACH(win, &new_ws->winlist, entry)
1228                         XMapRaised(display, win->id);
1229
1230                 TAILQ_FOREACH(win, &old_ws->winlist, entry)
1231                         XUnmapWindow(display, win->id);
1232         } else {
1233                 other_r->ws = old_ws;
1234                 old_ws->r = other_r;
1235         }
1236         this_r->ws = new_ws;
1237         new_ws->r = this_r;
1238
1239         ignore_enter = 1;
1240         stack();
1241         focus_win(winfocus);
1242         bar_update();
1243 }
1244
1245 void
1246 cyclews(struct swm_region *r, union arg *args)
1247 {
1248         union                   arg a;
1249         struct swm_screen       *s = r->s;
1250
1251         DNPRINTF(SWM_D_WS, "cyclews id %d "
1252             "in screen[%d]:%dx%d+%d+%d ws %d\n", args->id,
1253             r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
1254
1255         a.id = r->ws->idx;
1256         do {
1257                 switch (args->id) {
1258                 case SWM_ARG_ID_CYCLEWS_UP:
1259                         if (a.id < SWM_WS_MAX - 1)
1260                                 a.id++;
1261                         else
1262                                 a.id = 0;
1263                         break;
1264                 case SWM_ARG_ID_CYCLEWS_DOWN:
1265                         if (a.id > 0)
1266                                 a.id--;
1267                         else
1268                                 a.id = SWM_WS_MAX - 1;
1269                         break;
1270                 default:
1271                         return;
1272                 };
1273
1274                 if (cycle_empty == 0 && TAILQ_EMPTY(&s->ws[a.id].winlist))
1275                         continue;
1276                 if (cycle_visible == 0 && s->ws[a.id].r != NULL)
1277                         continue;
1278
1279                 switchws(r, &a);
1280         } while (a.id != r->ws->idx);
1281 }
1282
1283 void
1284 cyclescr(struct swm_region *r, union arg *args)
1285 {
1286         struct swm_region       *rr;
1287         int                     i;
1288
1289         i = r->s->idx;
1290         switch (args->id) {
1291         case SWM_ARG_ID_CYCLESC_UP:
1292                 rr = TAILQ_NEXT(r, entry);
1293                 if (rr == NULL)
1294                         rr = TAILQ_FIRST(&screens[i].rl);
1295                 break;
1296         case SWM_ARG_ID_CYCLESC_DOWN:
1297                 rr = TAILQ_PREV(r, swm_region_list, entry);
1298                 if (rr == NULL)
1299                         rr = TAILQ_LAST(&screens[i].rl, swm_region_list);
1300                 break;
1301         default:
1302                 return;
1303         };
1304         unfocus_all();
1305         XSetInputFocus(display, PointerRoot, RevertToPointerRoot, CurrentTime);
1306         XWarpPointer(display, None, rr->s[i].root, 0, 0, 0, 0, rr->g.x,
1307             rr->g.y + bar_enabled ? bar_height : 0);
1308 }
1309
1310 void
1311 swapwin(struct swm_region *r, union arg *args)
1312 {
1313         struct ws_win           *target, *source;
1314         struct ws_win           *cur_focus;
1315         struct ws_win_list      *wl;
1316
1317
1318         DNPRINTF(SWM_D_WS, "swapwin id %d "
1319             "in screen %d region %dx%d+%d+%d ws %d\n", args->id,
1320             r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
1321
1322         cur_focus = r->ws->focus;
1323         if (cur_focus == NULL)
1324                 return;
1325
1326         source = cur_focus;
1327         wl = &source->ws->winlist;
1328
1329         switch (args->id) {
1330         case SWM_ARG_ID_SWAPPREV:
1331                 target = TAILQ_PREV(source, ws_win_list, entry);
1332                 TAILQ_REMOVE(wl, cur_focus, entry);
1333                 if (target == NULL)
1334                         TAILQ_INSERT_TAIL(wl, source, entry);
1335                 else
1336                         TAILQ_INSERT_BEFORE(target, source, entry);
1337                 break;
1338         case SWM_ARG_ID_SWAPNEXT:
1339                 target = TAILQ_NEXT(source, entry);
1340                 TAILQ_REMOVE(wl, source, entry);
1341                 if (target == NULL)
1342                         TAILQ_INSERT_HEAD(wl, source, entry);
1343                 else
1344                         TAILQ_INSERT_AFTER(wl, target, source, entry);
1345                 break;
1346         case SWM_ARG_ID_SWAPMAIN:
1347                 target = TAILQ_FIRST(wl);
1348                 if (target == source) {
1349                         if (source->ws->focus_prev != NULL &&
1350                             source->ws->focus_prev != target)
1351
1352                                 source = source->ws->focus_prev;
1353                         else
1354                                 return;
1355                 }
1356                 source->ws->focus_prev = target;
1357                 TAILQ_REMOVE(wl, target, entry);
1358                 TAILQ_INSERT_BEFORE(source, target, entry);
1359                 TAILQ_REMOVE(wl, source, entry);
1360                 TAILQ_INSERT_HEAD(wl, source, entry);
1361                 break;
1362         default:
1363                 DNPRINTF(SWM_D_MOVE, "invalid id: %d\n", args->id);
1364                 return;
1365         }
1366
1367         ignore_enter = 1;
1368         stack();
1369 }
1370
1371 void
1372 focus(struct swm_region *r, union arg *args)
1373 {
1374         struct ws_win           *winfocus, *winlostfocus;
1375         struct ws_win_list      *wl;
1376         struct ws_win           *cur_focus;
1377
1378         DNPRINTF(SWM_D_FOCUS, "focus: id %d\n", args->id);
1379
1380         cur_focus = r->ws->focus;
1381         if (cur_focus == NULL)
1382                 return;
1383
1384         wl = &cur_focus->ws->winlist;
1385
1386         winlostfocus = cur_focus;
1387
1388         switch (args->id) {
1389         case SWM_ARG_ID_FOCUSPREV:
1390                 winfocus = TAILQ_PREV(cur_focus, ws_win_list, entry);
1391                 if (winfocus == NULL)
1392                         winfocus = TAILQ_LAST(wl, ws_win_list);
1393                 break;
1394
1395         case SWM_ARG_ID_FOCUSNEXT:
1396                 winfocus = TAILQ_NEXT(cur_focus, entry);
1397                 if (winfocus == NULL)
1398                         winfocus = TAILQ_FIRST(wl);
1399                 break;
1400
1401         case SWM_ARG_ID_FOCUSMAIN:
1402                 winfocus = TAILQ_FIRST(wl);
1403                 if (winfocus == cur_focus)
1404                         winfocus = cur_focus->ws->focus_prev;
1405                 if (winfocus == NULL)
1406                         return;
1407                 break;
1408
1409         default:
1410                 return;
1411         }
1412
1413         if (winfocus == winlostfocus || winfocus == NULL)
1414                 return;
1415
1416         XMapRaised(display, winfocus->id);
1417         focus_win(winfocus);
1418         XSync(display, False);
1419 }
1420
1421 void
1422 cycle_layout(struct swm_region *r, union arg *args)
1423 {
1424         struct workspace        *ws = r->ws;
1425
1426         DNPRINTF(SWM_D_EVENT, "cycle_layout: workspace: %d\n", ws->idx);
1427
1428         ws->cur_layout++;
1429         if (ws->cur_layout->l_stack == NULL)
1430                 ws->cur_layout = &layouts[0];
1431         ignore_enter = 1;
1432         stack();
1433 }
1434
1435 void
1436 stack_config(struct swm_region *r, union arg *args)
1437 {
1438         struct workspace        *ws = r->ws;
1439
1440         DNPRINTF(SWM_D_STACK, "stack_config for workspace %d (id %d\n",
1441             args->id, ws->idx);
1442
1443         if (ws->cur_layout->l_config != NULL)
1444                 ws->cur_layout->l_config(ws, args->id);
1445
1446         if (args->id != SWM_ARG_ID_STACKINIT);
1447                 stack();
1448 }
1449
1450 void
1451 stack(void) {
1452         struct swm_geometry     g;
1453         struct swm_region       *r;
1454         int                     i, j;
1455
1456         DNPRINTF(SWM_D_STACK, "stack\n");
1457
1458         for (i = 0; i < ScreenCount(display); i++) {
1459                 j = 0;
1460                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
1461                         DNPRINTF(SWM_D_STACK, "stacking workspace %d "
1462                             "(screen %d, region %d)\n", r->ws->idx, i, j++);
1463
1464                         /* start with screen geometry, adjust for bar */
1465                         g = r->g;
1466                         g.w -= 2;
1467                         g.h -= 2;
1468                         if (bar_enabled) {
1469                                 g.y += bar_height;
1470                                 g.h -= bar_height;
1471                         }
1472
1473                         r->ws->restack = 0;
1474                         r->ws->cur_layout->l_stack(r->ws, &g);
1475                 }
1476         }
1477         if (font_adjusted)
1478                 font_adjusted--;
1479         XSync(display, False);
1480 }
1481
1482 void
1483 stack_floater(struct ws_win *win, struct swm_region *r)
1484 {
1485         unsigned int            mask;
1486         XWindowChanges          wc;
1487
1488         bzero(&wc, sizeof wc);
1489         mask = CWX | CWY | CWBorderWidth | CWWidth | CWHeight;
1490         if ((win->quirks & SWM_Q_FULLSCREEN) && (win->g.w == WIDTH(r)) &&
1491             (win->g.h == HEIGHT(r)))
1492                 wc.border_width = 0;
1493         else
1494                 wc.border_width = 1;
1495         if (win->transient && (win->quirks & SWM_Q_TRANSSZ)) {
1496                 win->g.w = (double)WIDTH(r) * dialog_ratio;
1497                 win->g.h = (double)HEIGHT(r) * dialog_ratio;
1498         }
1499         wc.width = win->g.w;
1500         wc.height = win->g.h;
1501         if (win->manual) {
1502                 wc.x = win->g.x;
1503                 wc.y = win->g.y;
1504         } else {
1505                 wc.x = (WIDTH(r) - win->g.w) / 2;
1506                 wc.y = (HEIGHT(r) - win->g.h) / 2;
1507         }
1508
1509         DNPRINTF(SWM_D_STACK, "stack_floater: win %lu x %d y %d w %d h %d\n",
1510             win->id, wc.x, wc.y, wc.width, wc.height);
1511
1512         XConfigureWindow(display, win->id, mask, &wc);
1513 }
1514
1515 /*
1516  * Send keystrokes to terminal to decrease/increase the font size as the
1517  * window size changes.
1518  */
1519 void
1520 adjust_font(struct ws_win *win)
1521 {
1522         if (!(win->quirks & SWM_Q_XTERM_FONTADJ) ||
1523             win->floating || win->transient)
1524                 return;
1525
1526         if (win->sh.width_inc && win->last_inc != win->sh.width_inc &&
1527             win->g.w / win->sh.width_inc < term_width &&
1528             win->font_steps < SWM_MAX_FONT_STEPS) {
1529                 win->font_size_boundary[win->font_steps] =
1530                     (win->sh.width_inc * term_width) + win->sh.base_width;
1531                 win->font_steps++;
1532                 font_adjusted++;
1533                 win->last_inc = win->sh.width_inc;
1534                 fake_keypress(win, XK_KP_Subtract, ShiftMask);
1535         } else if (win->font_steps && win->last_inc != win->sh.width_inc &&
1536             win->g.w > win->font_size_boundary[win->font_steps - 1]) {
1537                 win->font_steps--;
1538                 font_adjusted++;
1539                 win->last_inc = win->sh.width_inc;
1540                 fake_keypress(win, XK_KP_Add, ShiftMask);
1541         }
1542 }
1543
1544 #define SWAPXY(g)       do {                            \
1545         int tmp;                                        \
1546         tmp = (g)->y; (g)->y = (g)->x; (g)->x = tmp;    \
1547         tmp = (g)->h; (g)->h = (g)->w; (g)->w = tmp;    \
1548 } while (0)
1549 void
1550 stack_master(struct workspace *ws, struct swm_geometry *g, int rot, int flip)
1551 {
1552         XWindowChanges          wc;
1553         struct swm_geometry     win_g, r_g = *g;
1554         struct ws_win           *win;
1555         int                     i, j, s, stacks;
1556         int                     w_inc = 1, h_inc, w_base = 1, h_base;
1557         int                     hrh, extra = 0, h_slice, last_h = 0;
1558         int                     split, colno, winno, mwin, msize, mscale;
1559         int                     remain, missing, v_slice;
1560         unsigned int            mask;
1561
1562         DNPRINTF(SWM_D_STACK, "stack_master: workspace: %d\n rot=%s flip=%s",
1563             ws->idx, rot ? "yes" : "no", flip ? "yes" : "no");
1564
1565         winno = count_win(ws, 0);
1566         if (winno == 0 && count_win(ws, 1) == 0)
1567                 return;
1568
1569         TAILQ_FOREACH(win, &ws->winlist, entry)
1570                 if (win->transient == 0 && win->floating == 0)
1571                         break;
1572
1573         if (win == NULL)
1574                 goto notiles;
1575
1576         if (rot) {
1577                 w_inc = win->sh.width_inc;
1578                 w_base = win->sh.base_width;
1579                 mwin = ws->l_state.horizontal_mwin;
1580                 mscale = ws->l_state.horizontal_msize;
1581                 stacks = ws->l_state.horizontal_stacks;
1582                 SWAPXY(&r_g);
1583         } else {
1584                 w_inc = win->sh.height_inc;
1585                 w_base = win->sh.base_height;
1586                 mwin = ws->l_state.vertical_mwin;
1587                 mscale = ws->l_state.vertical_msize;
1588                 stacks = ws->l_state.vertical_stacks;
1589         }
1590         win_g = r_g;
1591
1592         if (stacks > winno - mwin)
1593                 stacks = winno - mwin;
1594         if (stacks < 1)
1595                 stacks = 1;
1596
1597         h_slice = r_g.h / SWM_H_SLICE;
1598         if (mwin && winno > mwin) {
1599                 v_slice = r_g.w / SWM_V_SLICE;
1600
1601                 split = mwin;
1602                 colno = split;
1603                 win_g.w = v_slice * mscale;
1604
1605                 if (w_inc > 1 && w_inc < v_slice) {
1606                         /* adjust for window's requested size increment */
1607                         remain = (win_g.w - w_base) % w_inc;
1608                         missing = w_inc - remain;
1609                         win_g.w -= remain;
1610                         extra += remain;
1611                 }
1612
1613                 msize = win_g.w;
1614                 if (flip)
1615                         win_g.x += r_g.w - msize;
1616         } else {
1617                 msize = -2;
1618                 colno = split = winno / stacks;
1619                 win_g.w = ((r_g.w - (stacks * 2) + 2) / stacks);
1620         }
1621         hrh = r_g.h / colno;
1622         extra = r_g.h - (colno * hrh);
1623         win_g.h = hrh - 2;
1624
1625         /*  stack all the tiled windows */
1626         i = j = 0, s = stacks;
1627         TAILQ_FOREACH(win, &ws->winlist, entry) {
1628                 if (win->transient != 0 || win->floating != 0)
1629                         continue;
1630
1631                 if (split && i == split) {
1632                         colno = (winno - mwin) / stacks;
1633                         if (s <= (winno - mwin) % stacks)
1634                                 colno++;
1635                         split = split + colno;
1636                         hrh = (r_g.h / colno);
1637                         extra = r_g.h - (colno * hrh);
1638                         if (flip)
1639                                 win_g.x = r_g.x;
1640                         else
1641                                 win_g.x += win_g.w + 2;
1642                         win_g.w = (r_g.w - msize - (stacks * 2)) / stacks;
1643                         if (s == 1)
1644                                 win_g.w += (r_g.w - msize - (stacks * 2)) %
1645                                     stacks;
1646                         s--;
1647                         j = 0;
1648                 }
1649                 win_g.h = hrh - 2;
1650                 if (rot) {
1651                         h_inc = win->sh.width_inc;
1652                         h_base = win->sh.base_width;
1653                 } else {
1654                         h_inc = win->sh.height_inc;
1655                         h_base = win->sh.base_height;
1656                 }
1657                 if (j == colno - 1) {
1658                         win_g.h = hrh + extra;
1659                 } else if (h_inc > 1 && h_inc < h_slice) {
1660                         /* adjust for window's requested size increment */
1661                         remain = (win_g.h - h_base) % h_inc;
1662                         missing = h_inc - remain;
1663
1664                         if (missing <= extra || j == 0) {
1665                                 extra -= missing;
1666                                 win_g.h += missing;
1667                         } else {
1668                                 win_g.h -= remain;
1669                                 extra += remain;
1670                         }
1671                 }
1672
1673                 if (j == 0)
1674                         win_g.y = r_g.y;
1675                 else
1676                         win_g.y += last_h + 2;
1677
1678                 bzero(&wc, sizeof wc);
1679                 wc.border_width = 1;
1680                 if (rot) {
1681                         win->g.x = wc.x = win_g.y;
1682                         win->g.y = wc.y = win_g.x;
1683                         win->g.w = wc.width = win_g.h;
1684                         win->g.h = wc.height = win_g.w;
1685                 } else {
1686                         win->g.x = wc.x = win_g.x;
1687                         win->g.y = wc.y = win_g.y;
1688                         win->g.w = wc.width = win_g.w;
1689                         win->g.h = wc.height = win_g.h;
1690                 }
1691                 adjust_font(win);
1692                 mask = CWX | CWY | CWWidth | CWHeight | CWBorderWidth;
1693                 XConfigureWindow(display, win->id, mask, &wc);
1694                 XMapRaised(display, win->id);
1695
1696                 last_h = win_g.h;
1697                 i++;
1698                 j++;
1699         }
1700
1701  notiles:
1702         /* now, stack all the floaters and transients */
1703         TAILQ_FOREACH(win, &ws->winlist, entry) {
1704                 if (win->transient == 0 && win->floating == 0)
1705                         continue;
1706
1707                 stack_floater(win, ws->r);
1708                 XMapRaised(display, win->id);
1709         }
1710 }
1711
1712 void
1713 vertical_config(struct workspace *ws, int id)
1714 {
1715         DNPRINTF(SWM_D_STACK, "vertical_resize: workspace: %d\n", ws->idx);
1716
1717         switch (id) {
1718         case SWM_ARG_ID_STACKRESET:
1719         case SWM_ARG_ID_STACKINIT:
1720                 ws->l_state.vertical_msize = SWM_V_SLICE / 2;
1721                 ws->l_state.vertical_mwin = 1;
1722                 ws->l_state.vertical_stacks = 1;
1723                 break;
1724         case SWM_ARG_ID_MASTERSHRINK:
1725                 if (ws->l_state.vertical_msize > 1)
1726                         ws->l_state.vertical_msize--;
1727                 break;
1728         case SWM_ARG_ID_MASTERGROW:
1729                 if (ws->l_state.vertical_msize < SWM_V_SLICE - 1)
1730                         ws->l_state.vertical_msize++;
1731                 break;
1732         case SWM_ARG_ID_MASTERADD:
1733                 ws->l_state.vertical_mwin++;
1734                 break;
1735         case SWM_ARG_ID_MASTERDEL:
1736                 if (ws->l_state.vertical_mwin > 0)
1737                         ws->l_state.vertical_mwin--;
1738                 break;
1739         case SWM_ARG_ID_STACKINC:
1740                 ws->l_state.vertical_stacks++;
1741                 break;
1742         case SWM_ARG_ID_STACKDEC:
1743                 if (ws->l_state.vertical_stacks > 1)
1744                         ws->l_state.vertical_stacks--;
1745                 break;
1746         default:
1747                 return;
1748         }
1749 }
1750
1751 void
1752 vertical_stack(struct workspace *ws, struct swm_geometry *g)
1753 {
1754         DNPRINTF(SWM_D_STACK, "vertical_stack: workspace: %d\n", ws->idx);
1755
1756         stack_master(ws, g, 0, 0);
1757 }
1758
1759 void
1760 horizontal_config(struct workspace *ws, int id)
1761 {
1762         DNPRINTF(SWM_D_STACK, "horizontal_config: workspace: %d\n", ws->idx);
1763
1764         switch (id) {
1765         case SWM_ARG_ID_STACKRESET:
1766         case SWM_ARG_ID_STACKINIT:
1767                 ws->l_state.horizontal_mwin = 1;
1768                 ws->l_state.horizontal_msize = SWM_H_SLICE / 2;
1769                 ws->l_state.horizontal_stacks = 1;
1770                 break;
1771         case SWM_ARG_ID_MASTERSHRINK:
1772                 if (ws->l_state.horizontal_msize > 1)
1773                         ws->l_state.horizontal_msize--;
1774                 break;
1775         case SWM_ARG_ID_MASTERGROW:
1776                 if (ws->l_state.horizontal_msize < SWM_H_SLICE - 1)
1777                         ws->l_state.horizontal_msize++;
1778                 break;
1779         case SWM_ARG_ID_MASTERADD:
1780                 ws->l_state.horizontal_mwin++;
1781                 break;
1782         case SWM_ARG_ID_MASTERDEL:
1783                 if (ws->l_state.horizontal_mwin > 0)
1784                         ws->l_state.horizontal_mwin--;
1785                 break;
1786         case SWM_ARG_ID_STACKINC:
1787                 ws->l_state.horizontal_stacks++;
1788                 break;
1789         case SWM_ARG_ID_STACKDEC:
1790                 if (ws->l_state.horizontal_stacks > 1)
1791                         ws->l_state.horizontal_stacks--;
1792                 break;
1793         default:
1794                 return;
1795         }
1796 }
1797
1798 void
1799 horizontal_stack(struct workspace *ws, struct swm_geometry *g)
1800 {
1801         DNPRINTF(SWM_D_STACK, "vertical_stack: workspace: %d\n", ws->idx);
1802
1803         stack_master(ws, g, 1, 0);
1804 }
1805
1806 /* fullscreen view */
1807 void
1808 max_stack(struct workspace *ws, struct swm_geometry *g)
1809 {
1810         XWindowChanges          wc;
1811         struct swm_geometry     gg = *g;
1812         struct ws_win           *win, *winfocus;
1813         unsigned int            mask;
1814         int                     winno;
1815
1816         /* XXX this function needs to be rewritten it sucks crap */
1817
1818         DNPRINTF(SWM_D_STACK, "max_stack: workspace: %d\n", ws->idx);
1819
1820         winno = count_win(ws, 0);
1821         if (winno == 0 && count_win(ws, 1) == 0)
1822                 return;
1823
1824         if (ws->focus == NULL)
1825                 ws->focus = TAILQ_FIRST(&ws->winlist);
1826         winfocus = ws->focus;
1827
1828         TAILQ_FOREACH(win, &ws->winlist, entry) {
1829                 if (win->transient != 0 || win->floating != 0) {
1830                         if (win == ws->focus) {
1831                                 /* XXX maximize? */
1832                                 stack_floater(win, ws->r);
1833                                 XMapRaised(display, win->id);
1834                         } else {
1835                                 /* XXX this sucks */
1836                                 XUnmapWindow(display, win->id);
1837                         }
1838                 } else {
1839                         bzero(&wc, sizeof wc);
1840                         wc.border_width = 1;
1841                         win->g.x = wc.x = gg.x;
1842                         win->g.y = wc.y = gg.y;
1843                         win->g.w = wc.width = gg.w;
1844                         win->g.h = wc.height = gg.h;
1845                         mask = CWX | CWY | CWWidth | CWHeight | CWBorderWidth;
1846                         XConfigureWindow(display, win->id, mask, &wc);
1847
1848                         if (win == ws->focus) {
1849                                 XMapRaised(display, win->id);
1850                         } else
1851                                 XUnmapWindow(display, win->id);
1852                 }
1853         }
1854
1855         if (winfocus)
1856                 focus_win(winfocus); /* has to be done outside of the loop */
1857 }
1858
1859 void
1860 send_to_ws(struct swm_region *r, union arg *args)
1861 {
1862         int                     wsid = args->id;
1863         struct ws_win           *win = r->ws->focus;
1864         struct workspace        *ws, *nws;
1865         Atom                    ws_idx_atom = 0;
1866         unsigned char           ws_idx_str[SWM_PROPLEN];
1867
1868         if (win == NULL)
1869                 return;
1870
1871         DNPRINTF(SWM_D_MOVE, "send_to_ws: win: %lu\n", win->id);
1872
1873         ws = win->ws;
1874         nws = &win->s->ws[wsid];
1875
1876         XUnmapWindow(display, win->id);
1877
1878         /* find a window to focus */
1879         ws->focus = TAILQ_PREV(win, ws_win_list, entry);
1880         if (ws->focus == NULL)
1881                 ws->focus = TAILQ_FIRST(&ws->winlist);
1882         if (ws->focus == win)
1883                 ws->focus = NULL;
1884
1885         TAILQ_REMOVE(&ws->winlist, win, entry);
1886
1887         TAILQ_INSERT_TAIL(&nws->winlist, win, entry);
1888         win->ws = nws;
1889
1890         /* Try to update the window's workspace property */
1891         ws_idx_atom = XInternAtom(display, "_SWM_WS", False);
1892         if (ws_idx_atom &&
1893             snprintf(ws_idx_str, SWM_PROPLEN, "%d", nws->idx) < SWM_PROPLEN) {
1894                 DNPRINTF(SWM_D_PROP, "setting property _SWM_WS to %s\n",
1895                     ws_idx_str);
1896                 XChangeProperty(display, win->id, ws_idx_atom, XA_STRING, 8,
1897                     PropModeReplace, ws_idx_str, SWM_PROPLEN);
1898         }
1899
1900         if (count_win(nws, 1) == 1)
1901                 nws->focus = win;
1902         ws->restack = 1;
1903         nws->restack = 1;
1904
1905         stack();
1906 }
1907
1908 void
1909 wkill(struct swm_region *r, union arg *args)
1910 {
1911         DNPRINTF(SWM_D_MISC, "wkill %d\n", args->id);
1912
1913         if(r->ws->focus == NULL)
1914                 return;
1915
1916         if (args->id == SWM_ARG_ID_KILLWINDOW)
1917                 XKillClient(display, r->ws->focus->id);
1918         else
1919                 if (r->ws->focus->can_delete)
1920                         client_msg(r->ws->focus, adelete);
1921 }
1922
1923 void
1924 floating_toggle(struct swm_region *r, union arg *args)
1925 {
1926         struct ws_win   *win = r->ws->focus;
1927
1928         if (win == NULL)
1929                 return;
1930
1931         win->floating = !win->floating;
1932         win->manual = 0;
1933         stack();
1934         focus_win(win);
1935 }
1936
1937 void
1938 resize_window(struct ws_win *win, int center)
1939 {
1940         unsigned int            mask;
1941         XWindowChanges          wc;
1942         struct swm_region       *r;
1943
1944         r = root_to_region(win->wa.root);
1945         bzero(&wc, sizeof wc);
1946         mask = CWBorderWidth | CWWidth | CWHeight;
1947         wc.border_width = 1;
1948         wc.width = win->g.w;
1949         wc.height = win->g.h;
1950         if (center == SWM_ARG_ID_CENTER) {
1951                 wc.x = (WIDTH(r) - win->g.w) / 2;
1952                 wc.y = (HEIGHT(r) - win->g.h) / 2;
1953                 mask |= CWX | CWY;
1954         }
1955
1956         DNPRINTF(SWM_D_STACK, "resize_window: win %lu x %d y %d w %d h %d\n",
1957             win->id, wc.x, wc.y, wc.width, wc.height);
1958
1959         XConfigureWindow(display, win->id, mask, &wc);
1960         config_win(win);
1961 }
1962
1963 void
1964 resize(struct ws_win *win, union arg *args)
1965 {
1966         XEvent                  ev;
1967         Time                    time = 0;
1968
1969         DNPRINTF(SWM_D_MOUSE, "resize: win %lu floating %d trans %d\n",
1970             win->id, win->floating, win->transient);
1971
1972         if (!(win->transient != 0 || win->floating != 0))
1973                 return;
1974
1975         if (XGrabPointer(display, win->id, False, MOUSEMASK, GrabModeAsync,
1976             GrabModeAsync, None, None /* cursor */, CurrentTime) != GrabSuccess)
1977                 return;
1978         XWarpPointer(display, None, win->id, 0, 0, 0, 0, win->g.w, win->g.h);
1979         do {
1980                 XMaskEvent(display, MOUSEMASK | ExposureMask |
1981                     SubstructureRedirectMask, &ev);
1982                 switch(ev.type) {
1983                 case ConfigureRequest:
1984                 case Expose:
1985                 case MapRequest:
1986                         handler[ev.type](&ev);
1987                         break;
1988                 case MotionNotify:
1989                         if (ev.xmotion.x <= 1)
1990                                 ev.xmotion.x = 1;
1991                         if (ev.xmotion.y <= 1)
1992                                 ev.xmotion.y = 1;
1993                         win->g.w = ev.xmotion.x;
1994                         win->g.h = ev.xmotion.y;
1995
1996                         /* not free, don't sync more than 60 times / second */
1997                         if ((ev.xmotion.time - time) > (1000 / 60) ) {
1998                                 time = ev.xmotion.time;
1999                                 XSync(display, False);
2000                                 resize_window(win, args->id);
2001                         }
2002                         break;
2003                 }
2004         } while (ev.type != ButtonRelease);
2005         if (time) {
2006                 XSync(display, False);
2007                 resize_window(win, args->id);
2008         }
2009         XWarpPointer(display, None, win->id, 0, 0, 0, 0, win->g.w - 1,
2010             win->g.h - 1);
2011         XUngrabPointer(display, CurrentTime);
2012
2013         /* drain events */
2014         while (XCheckMaskEvent(display, EnterWindowMask, &ev));
2015 }
2016
2017 void
2018 move_window(struct ws_win *win)
2019 {
2020         unsigned int            mask;
2021         XWindowChanges          wc;
2022         struct swm_region       *r;
2023
2024         r = root_to_region(win->wa.root);
2025         bzero(&wc, sizeof wc);
2026         mask = CWX | CWY;
2027         wc.x = win->g.x;
2028         wc.y = win->g.y;
2029
2030         DNPRINTF(SWM_D_STACK, "move_window: win %lu x %d y %d w %d h %d\n",
2031             win->id, wc.x, wc.y, wc.width, wc.height);
2032
2033         XConfigureWindow(display, win->id, mask, &wc);
2034         config_win(win);
2035 }
2036
2037 void
2038 move(struct ws_win *win, union arg *args)
2039 {
2040         XEvent                  ev;
2041         Time                    time = 0;
2042         int                     restack = 0;
2043
2044         DNPRINTF(SWM_D_MOUSE, "move: win %lu floating %d trans %d\n",
2045             win->id, win->floating, win->transient);
2046
2047         if (win->floating == 0) {
2048                 win->floating = 1;
2049                 win->manual = 1;
2050                 restack = 1;
2051         }
2052
2053         if (XGrabPointer(display, win->id, False, MOUSEMASK, GrabModeAsync,
2054             GrabModeAsync, None, None /* cursor */, CurrentTime) != GrabSuccess)
2055                 return;
2056         XWarpPointer(display, None, win->id, 0, 0, 0, 0, 0, 0);
2057         do {
2058                 XMaskEvent(display, MOUSEMASK | ExposureMask |
2059                     SubstructureRedirectMask, &ev);
2060                 switch(ev.type) {
2061                 case ConfigureRequest:
2062                 case Expose:
2063                 case MapRequest:
2064                         handler[ev.type](&ev);
2065                         break;
2066                 case MotionNotify:
2067                         win->g.x = ev.xmotion.x_root;
2068                         win->g.y = ev.xmotion.y_root;
2069
2070                         /* not free, don't sync more than 60 times / second */
2071                         if ((ev.xmotion.time - time) > (1000 / 60) ) {
2072                                 time = ev.xmotion.time;
2073                                 XSync(display, False);
2074                                 move_window(win);
2075                         }
2076                         break;
2077                 }
2078         } while (ev.type != ButtonRelease);
2079         if (time) {
2080                 XSync(display, False);
2081                 move_window(win);
2082         }
2083         XWarpPointer(display, None, win->id, 0, 0, 0, 0, 0, 0);
2084         XUngrabPointer(display, CurrentTime);
2085         if (restack)
2086                 stack();
2087
2088         /* drain events */
2089         while (XCheckMaskEvent(display, EnterWindowMask, &ev));
2090 }
2091
2092 /* key definitions */
2093 void dummykeyfunc(struct swm_region *r, union arg *args) {};
2094 void legacyfunc(struct swm_region *r, union arg *args) {};
2095
2096 struct keyfunc {
2097         char                    name[SWM_FUNCNAME_LEN];
2098         void                    (*func)(struct swm_region *r, union arg *);
2099         union arg               args;
2100 } keyfuncs[kf_invalid + 1] = {
2101         /* name                 function        argument */
2102         { "cycle_layout",       cycle_layout,   {0} },
2103         { "stack_reset",        stack_config,   {.id = SWM_ARG_ID_STACKRESET} },
2104         { "master_shrink",      stack_config,   {.id = SWM_ARG_ID_MASTERSHRINK} },
2105         { "master_grow",        stack_config,   {.id = SWM_ARG_ID_MASTERGROW} },
2106         { "master_add",         stack_config,   {.id = SWM_ARG_ID_MASTERADD} },
2107         { "master_del",         stack_config,   {.id = SWM_ARG_ID_MASTERDEL} },
2108         { "stack_inc",          stack_config,   {.id = SWM_ARG_ID_STACKINC} },
2109         { "stack_dec",          stack_config,   {.id = SWM_ARG_ID_STACKDEC} },
2110         { "swap_main",          swapwin,        {.id = SWM_ARG_ID_SWAPMAIN} },
2111         { "focus_next",         focus,          {.id = SWM_ARG_ID_FOCUSNEXT} },
2112         { "focus_prev",         focus,          {.id = SWM_ARG_ID_FOCUSPREV} },
2113         { "swap_next",          swapwin,        {.id = SWM_ARG_ID_SWAPNEXT} },
2114         { "swap_prev",          swapwin,        {.id = SWM_ARG_ID_SWAPPREV} },
2115         { "spawn_term",         spawnterm,      {.argv = spawn_term} },
2116         { "spawn_menu",         legacyfunc,     {0} },
2117         { "quit",               quit,           {0} },
2118         { "restart",            restart,        {0} },
2119         { "focus_main",         focus,          {.id = SWM_ARG_ID_FOCUSMAIN} },
2120         { "ws_1",               switchws,       {.id = 0} },
2121         { "ws_2",               switchws,       {.id = 1} },
2122         { "ws_3",               switchws,       {.id = 2} },
2123         { "ws_4",               switchws,       {.id = 3} },
2124         { "ws_5",               switchws,       {.id = 4} },
2125         { "ws_6",               switchws,       {.id = 5} },
2126         { "ws_7",               switchws,       {.id = 6} },
2127         { "ws_8",               switchws,       {.id = 7} },
2128         { "ws_9",               switchws,       {.id = 8} },
2129         { "ws_10",              switchws,       {.id = 9} },
2130         { "ws_next",            cyclews,        {.id = SWM_ARG_ID_CYCLEWS_UP} },
2131         { "ws_prev",            cyclews,        {.id = SWM_ARG_ID_CYCLEWS_DOWN} },
2132         { "screen_next",        cyclescr,       {.id = SWM_ARG_ID_CYCLESC_UP} },
2133         { "screen_prev",        cyclescr,       {.id = SWM_ARG_ID_CYCLESC_DOWN} },
2134         { "mvws_1",             send_to_ws,     {.id = 0} },
2135         { "mvws_2",             send_to_ws,     {.id = 1} },
2136         { "mvws_3",             send_to_ws,     {.id = 2} },
2137         { "mvws_4",             send_to_ws,     {.id = 3} },
2138         { "mvws_5",             send_to_ws,     {.id = 4} },
2139         { "mvws_6",             send_to_ws,     {.id = 5} },
2140         { "mvws_7",             send_to_ws,     {.id = 6} },
2141         { "mvws_8",             send_to_ws,     {.id = 7} },
2142         { "mvws_9",             send_to_ws,     {.id = 8} },
2143         { "mvws_10",            send_to_ws,     {.id = 9} },
2144         { "bar_toggle",         bar_toggle,     {0} },
2145         { "wind_kill",          wkill,          {.id = SWM_ARG_ID_KILLWINDOW} },
2146         { "wind_del",           wkill,          {.id = SWM_ARG_ID_DELETEWINDOW} },
2147         { "screenshot_all",     legacyfunc,     {0} },
2148         { "screenshot_wind",    legacyfunc,     {0} },
2149         { "float_toggle",       floating_toggle,{0} },
2150         { "version",            version,        {0} },
2151         { "spawn_lock",         legacyfunc,     {0} },
2152         { "spawn_initscr",      legacyfunc,     {0} },
2153         { "spawn_custom",       dummykeyfunc,   {0} },
2154         { "invalid key func",   NULL,           {0} },
2155 };
2156 struct key {
2157         unsigned int            mod;
2158         KeySym                  keysym;
2159         enum keyfuncid          funcid;
2160         char                    *spawn_name;
2161 };
2162 int                             keys_size = 0, keys_length = 0;
2163 struct key                      *keys = NULL;
2164
2165 /* mouse */
2166 enum { client_click, root_click };
2167 struct button {
2168         unsigned int            action;
2169         unsigned int            mask;
2170         unsigned int            button;
2171         void                    (*func)(struct ws_win *, union arg *);
2172         union arg               args;
2173 } buttons[] = {
2174           /* action     key             mouse button    func    args */
2175         { client_click, MODKEY,         Button3,        resize, {.id = SWM_ARG_ID_DONTCENTER} },
2176         { client_click, MODKEY | ShiftMask, Button3,    resize, {.id = SWM_ARG_ID_CENTER} },
2177         { client_click, MODKEY,         Button1,        move,   {0} },
2178 };
2179
2180 void
2181 update_modkey(unsigned int mod)
2182 {
2183         int                     i;
2184
2185         mod_key = mod;
2186         for (i = 0; i < keys_length; i++)
2187                 if (keys[i].mod & ShiftMask)
2188                         keys[i].mod = mod | ShiftMask;
2189                 else
2190                         keys[i].mod = mod;
2191
2192         for (i = 0; i < LENGTH(buttons); i++)
2193                 if (buttons[i].mask & ShiftMask)
2194                         buttons[i].mask = mod | ShiftMask;
2195                 else
2196                         buttons[i].mask = mod;
2197 }
2198
2199 /* spawn */
2200 struct spawn_prog {
2201         char                    *name;
2202         int                     argc;
2203         char                    **argv;
2204 };
2205
2206 int                             spawns_size = 0, spawns_length = 0;
2207 struct spawn_prog               *spawns = NULL;
2208
2209 void
2210 spawn_custom(struct swm_region *r, union arg *args, char *spawn_name)
2211 {
2212         union arg               a;
2213         struct spawn_prog       *prog = NULL;
2214         int                     i;
2215         char                    *ap, **real_args;
2216
2217         DNPRINTF(SWM_D_SPAWN, "spawn_custom %s\n", spawn_name);
2218
2219         /* find program */
2220         for (i = 0; i < spawns_length; i++) {
2221                 if (!strcasecmp(spawn_name, spawns[i].name))
2222                         prog = &spawns[i];
2223         }
2224         if (prog == NULL) {
2225                 fprintf(stderr, "spawn_custom: program %s not found\n",
2226                     spawn_name);
2227                 return;
2228         }
2229
2230         /* make room for expanded args */
2231         if ((real_args = calloc(prog->argc + 1, sizeof(char *))) == NULL)
2232                 err(1, "spawn_custom: calloc real_args");
2233
2234         /* expand spawn_args into real_args */
2235         for (i = 0; i < prog->argc; i++) {
2236                 ap = prog->argv[i];
2237                 DNPRINTF(SWM_D_SPAWN, "spawn_custom: raw arg = %s\n", ap);
2238                 if (!strcasecmp(ap, "$bar_border")) {
2239                         if ((real_args[i] =
2240                             strdup(r->s->c[SWM_S_COLOR_BAR_BORDER].name))
2241                             == NULL)
2242                                 err(1,  "spawn_custom border color");
2243                 } else if (!strcasecmp(ap, "$bar_color")) {
2244                         if ((real_args[i] =
2245                             strdup(r->s->c[SWM_S_COLOR_BAR].name))
2246                             == NULL)
2247                                 err(1, "spawn_custom bar color");
2248                 } else if (!strcasecmp(ap, "$bar_font")) {
2249                         if ((real_args[i] = strdup(bar_fonts[bar_fidx]))
2250                             == NULL)
2251                                 err(1, "spawn_custom bar fonts");
2252                 } else if (!strcasecmp(ap, "$bar_font_color")) {
2253                         if ((real_args[i] =
2254                             strdup(r->s->c[SWM_S_COLOR_BAR_FONT].name))
2255                             == NULL)
2256                                 err(1, "spawn_custom color font");
2257                 } else if (!strcasecmp(ap, "$color_focus")) {
2258                         if ((real_args[i] =
2259                             strdup(r->s->c[SWM_S_COLOR_FOCUS].name))
2260                             == NULL)
2261                                 err(1, "spawn_custom color focus");
2262                 } else if (!strcasecmp(ap, "$color_unfocus")) {
2263                         if ((real_args[i] =
2264                             strdup(r->s->c[SWM_S_COLOR_UNFOCUS].name))
2265                             == NULL)
2266                                 err(1, "spawn_custom color unfocus");
2267                 } else {
2268                         /* no match --> copy as is */
2269                         if ((real_args[i] = strdup(ap)) == NULL)
2270                                 err(1, "spawn_custom strdup(ap)");
2271                 }
2272                 DNPRINTF(SWM_D_SPAWN, "spawn_custom: cooked arg = %s\n",
2273                     real_args[i]);
2274         }
2275
2276 #ifdef SWM_DEBUG
2277         if ((swm_debug & SWM_D_SPAWN) != 0) {
2278                 fprintf(stderr, "spawn_custom: result = ");
2279                 for (i = 0; i < prog->argc; i++)
2280                         fprintf(stderr, "\"%s\" ", real_args[i]);
2281                 fprintf(stderr, "\n");
2282         }
2283 #endif
2284
2285         a.argv = real_args;
2286         spawn(r, &a);
2287         for (i = 0; i < prog->argc; i++)
2288                 free(real_args[i]);
2289         free(real_args);
2290 }
2291
2292 void
2293 setspawn(struct spawn_prog *prog)
2294 {
2295         int                     i, j;
2296
2297         if (prog == NULL || prog->name == NULL)
2298                 return;
2299
2300         /* find existing */
2301         for (i = 0; i < spawns_length; i++) {
2302                 if (!strcmp(spawns[i].name, prog->name)) {
2303                         /* found */
2304                         if (prog->argv == NULL) {
2305                                 /* delete */
2306                                 DNPRINTF(SWM_D_SPAWN,
2307                                     "setspawn: delete #%d %s\n",
2308                                     i, spawns[i].name);
2309                                 free(spawns[i].name);
2310                                 for (j = 0; j < spawns[i].argc; j++)
2311                                         free(spawns[i].argv[j]);
2312                                 free(spawns[i].argv);
2313                                 j = spawns_length - 1;
2314                                 if (i < j)
2315                                         spawns[i] = spawns[j];
2316                                 spawns_length--;
2317                                 free(prog->name);
2318                         } else {
2319                                 /* replace */
2320                                 DNPRINTF(SWM_D_SPAWN,
2321                                     "setspawn: replace #%d %s\n",
2322                                     i, spawns[i].name);
2323                                 free(spawns[i].name);
2324                                 for (j = 0; j < spawns[i].argc; j++)
2325                                         free(spawns[i].argv[j]);
2326                                 free(spawns[i].argv);
2327                                 spawns[i] = *prog;
2328                         }
2329                         /* found case handled */
2330                         free(prog);
2331                         return;
2332                 }
2333         }
2334
2335         if (prog->argv == NULL) {
2336                 fprintf(stderr,
2337                     "error: setspawn: cannot find program %s", prog->name);
2338                 free(prog);
2339                 return;
2340         }
2341
2342         /* not found: add */
2343         if (spawns_size == 0 || spawns == NULL) {
2344                 spawns_size = 4;
2345                 DNPRINTF(SWM_D_SPAWN, "setspawn: init list %d\n", spawns_size);
2346                 spawns = malloc((size_t)spawns_size *
2347                     sizeof(struct spawn_prog));
2348                 if (spawns == NULL) {
2349                         fprintf(stderr, "setspawn: malloc failed\n");
2350                         perror(" failed");
2351                         quit(NULL, NULL);
2352                 }
2353         } else if (spawns_length == spawns_size) {
2354                 spawns_size *= 2;
2355                 DNPRINTF(SWM_D_SPAWN, "setspawn: grow list %d\n", spawns_size);
2356                 spawns = realloc(spawns, (size_t)spawns_size *
2357                     sizeof(struct spawn_prog));
2358                 if (spawns == NULL) {
2359                         fprintf(stderr, "setspawn: realloc failed\n");
2360                         perror(" failed");
2361                         quit(NULL, NULL);
2362                 }
2363         }
2364
2365         if (spawns_length < spawns_size) {
2366                 DNPRINTF(SWM_D_SPAWN, "setspawn: add #%d %s\n",
2367                     spawns_length, prog->name);
2368                 i = spawns_length++;
2369                 spawns[i] = *prog;
2370         } else {
2371                 fprintf(stderr, "spawns array problem?\n");
2372                 if (spawns == NULL) {
2373                         fprintf(stderr, "spawns array is NULL!\n");
2374                         quit(NULL, NULL);
2375                 }
2376         }
2377         free(prog);
2378 }
2379
2380 int
2381 setconfspawn(char *selector, char *value, int flags)
2382 {
2383         struct spawn_prog       *prog;
2384         char                    *vp, *cp, *word;
2385
2386         DNPRINTF(SWM_D_SPAWN, "setconfspawn: [%s] [%s]\n", selector, value);
2387         if ((prog = calloc(1, sizeof *prog)) == NULL)
2388                 err(1, "setconfspawn: calloc prog");
2389         prog->name = strdup(selector);
2390         if (prog->name == NULL)
2391                 err(1, "setconfspawn prog->name");
2392         if ((cp = vp = strdup(value)) == NULL)
2393                 err(1, "setconfspawn: strdup(value) ");
2394         while ((word = strsep(&cp, " \t")) != NULL) {
2395                 DNPRINTF(SWM_D_SPAWN, "setconfspawn: arg [%s]\n", word);
2396                 if (cp)
2397                         cp += (long)strspn(cp, " \t");
2398                 if (strlen(word) > 0) {
2399                         prog->argc++;
2400                         prog->argv = realloc(prog->argv,
2401                             prog->argc * sizeof(char *));
2402                         if ((prog->argv[prog->argc - 1] = strdup(word)) == NULL)
2403                                 err(1, "setconfspawn: strdup");
2404                 }
2405         }
2406         free(vp);
2407
2408         setspawn(prog);
2409
2410         DNPRINTF(SWM_D_SPAWN, "setconfspawn: done\n");
2411         return (0);
2412 }
2413
2414 void
2415 setup_spawn(void)
2416 {
2417         setconfspawn("term",            "xterm",                0);
2418         setconfspawn("screenshot_all",  "screenshot.sh full",   0);
2419         setconfspawn("screenshot_wind", "screenshot.sh window", 0);
2420         setconfspawn("lock",            "xlock",                0);
2421         setconfspawn("initscr",         "initscreen.sh",        0);
2422         setconfspawn("menu",            "dmenu_run"
2423                                         " -fn $bar_font"
2424                                         " -nb $bar_color"
2425                                         " -nf $bar_font_color"
2426                                         " -sb $bar_border"
2427                                         " -sf $bar_color",      0);
2428 }
2429
2430 /* key bindings */
2431 #define SWM_MODNAME_SIZE        32
2432 #define SWM_KEY_WS              "\n+ \t"
2433 int
2434 parsekeys(char *keystr, unsigned int currmod, unsigned int *mod, KeySym *ks)
2435 {
2436         char                    *cp, *name;
2437         KeySym                  uks;
2438         DNPRINTF(SWM_D_KEY, "parsekeys: enter [%s]\n", keystr);
2439         if (mod == NULL || ks == NULL) {
2440                 DNPRINTF(SWM_D_KEY, "parsekeys: no mod or key vars\n");
2441                 return (1);
2442         }
2443         if (keystr == NULL || strlen(keystr) == 0) {
2444                 DNPRINTF(SWM_D_KEY, "parsekeys: no keystr\n");
2445                 return (1);
2446         }
2447         cp = keystr;
2448         *ks = NoSymbol;
2449         *mod = 0;
2450         while ((name = strsep(&cp, SWM_KEY_WS)) != NULL) {
2451                 DNPRINTF(SWM_D_KEY, "parsekeys: key [%s]\n", name);
2452                 if (cp)
2453                         cp += (long)strspn(cp, SWM_KEY_WS);
2454                 if (strncasecmp(name, "MOD", SWM_MODNAME_SIZE) == 0)
2455                         *mod |= currmod;
2456                 else if (!strncasecmp(name, "Mod1", SWM_MODNAME_SIZE))
2457                         *mod |= Mod1Mask;
2458                 else if (!strncasecmp(name, "Mod2", SWM_MODNAME_SIZE))
2459                         *mod += Mod2Mask;
2460                 else if (!strncmp(name, "Mod3", SWM_MODNAME_SIZE))
2461                         *mod |= Mod3Mask;
2462                 else if (!strncmp(name, "Mod4", SWM_MODNAME_SIZE))
2463                         *mod |= Mod4Mask;
2464                 else if (strncasecmp(name, "SHIFT", SWM_MODNAME_SIZE) == 0)
2465                         *mod |= ShiftMask;
2466                 else if (strncasecmp(name, "CONTROL", SWM_MODNAME_SIZE) == 0)
2467                         *mod |= ControlMask;
2468                 else {
2469                         *ks = XStringToKeysym(name);
2470                         XConvertCase(*ks, ks, &uks);
2471                         if (ks == NoSymbol) {
2472                                 DNPRINTF(SWM_D_KEY,
2473                                     "parsekeys: invalid key %s\n",
2474                                     name);
2475                                 return (1);
2476                         }
2477                 }
2478         }
2479         DNPRINTF(SWM_D_KEY, "parsekeys: leave ok\n");
2480         return (0);
2481 }
2482 char *
2483 strdupsafe(char *str)
2484 {
2485         if (str == NULL)
2486                 return (NULL);
2487         else
2488                 return (strdup(str));
2489 }
2490 void
2491 setkeybinding(unsigned int mod, KeySym ks, enum keyfuncid kfid, char *spawn_name)
2492 {
2493         int                     i, j;
2494         DNPRINTF(SWM_D_KEY, "setkeybinding: enter %s [%s]\n",
2495             keyfuncs[kfid].name, spawn_name);
2496         /* find existing */
2497         for (i = 0; i < keys_length; i++) {
2498                 if (keys[i].mod == mod && keys[i].keysym == ks) {
2499                         if (kfid == kf_invalid) {
2500                                 /* found: delete */
2501                                 DNPRINTF(SWM_D_KEY,
2502                                     "setkeybinding: delete #%d %s\n",
2503                                     i, keyfuncs[keys[i].funcid].name);
2504                                 free(keys[i].spawn_name);
2505                                 j = keys_length - 1;
2506                                 if (i < j)
2507                                         keys[i] = keys[j];
2508                                 keys_length--;
2509                                 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
2510                                 return;
2511                         } else {
2512                                 /* found: replace */
2513                                 DNPRINTF(SWM_D_KEY,
2514                                     "setkeybinding: replace #%d %s %s\n",
2515                                     i, keyfuncs[keys[i].funcid].name,
2516                                     spawn_name);
2517                                 free(keys[i].spawn_name);
2518                                 keys[i].mod = mod;
2519                                 keys[i].keysym = ks;
2520                                 keys[i].funcid = kfid;
2521                                 keys[i].spawn_name = strdupsafe(spawn_name);
2522                                 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
2523                                 return;
2524                         }
2525                 }
2526         }
2527         if (kfid == kf_invalid) {
2528                 fprintf(stderr,
2529                     "error: setkeybinding: cannot find mod/key combination");
2530                 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
2531                 return;
2532         }
2533         /* not found: add */
2534         if (keys_size == 0 || keys == NULL) {
2535                 keys_size = 4;
2536                 DNPRINTF(SWM_D_KEY, "setkeybinding: init list %d\n", keys_size);
2537                 keys = malloc((size_t)keys_size * sizeof(struct key));
2538                 if (!keys) {
2539                         fprintf(stderr, "malloc failed\n");
2540                         perror(" failed");
2541                         quit(NULL, NULL);
2542                 }
2543         } else if (keys_length == keys_size) {
2544                 keys_size *= 2;
2545                 DNPRINTF(SWM_D_KEY, "setkeybinding: grow list %d\n", keys_size);
2546                 keys = realloc(keys, (size_t)keys_size * sizeof(struct key));
2547                 if (!keys) {
2548                         fprintf(stderr, "realloc failed\n");
2549                         perror(" failed");
2550                         quit(NULL, NULL);
2551                 }
2552         }
2553         if (keys_length < keys_size) {
2554                 j = keys_length++;
2555                 DNPRINTF(SWM_D_KEY, "setkeybinding: add #%d %s %s\n",
2556                     j, keyfuncs[kfid].name, spawn_name);
2557                 keys[j].mod = mod;
2558                 keys[j].keysym = ks;
2559                 keys[j].funcid = kfid;
2560                 keys[j].spawn_name = strdupsafe(spawn_name);
2561         } else {
2562                 fprintf(stderr, "keys array problem?\n");
2563                 if (!keys) {
2564                         fprintf(stderr, "keys array problem\n");
2565                         quit(NULL, NULL);
2566                 }
2567         }
2568         DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
2569 }
2570 int
2571 setconfbinding(char *selector, char *value, int flags)
2572 {
2573         enum keyfuncid          kfid;
2574         unsigned int            mod;
2575         KeySym                  ks;
2576         int                     i;
2577         DNPRINTF(SWM_D_KEY, "setconfbinding: enter\n");
2578         if (selector == NULL) {
2579                 DNPRINTF(SWM_D_KEY, "setconfbinding: unbind %s\n", value);
2580                 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
2581                         kfid = kf_invalid;
2582                         setkeybinding(mod, ks, kfid, NULL);
2583                         return (0);
2584                 } else
2585                         return (1);
2586         }
2587         /* search by key function name */
2588         for (kfid = 0; kfid < kf_invalid; (kfid)++) {
2589                 if (strncasecmp(selector, keyfuncs[kfid].name,
2590                     SWM_FUNCNAME_LEN) == 0) {
2591                         DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match\n",
2592                             selector);
2593                         if (parsekeys(value, mod_key, &mod, &ks) == 0) {
2594                                 setkeybinding(mod, ks, kfid, NULL);
2595                                 return (0);
2596                         } else
2597                                 return (1);
2598                 }
2599         }
2600         /* search by custom spawn name */
2601         for (i = 0; i < spawns_length; i++) {
2602                 if (strcasecmp(selector, spawns[i].name) == 0) {
2603                         DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match\n",
2604                             selector);
2605                         if (parsekeys(value, mod_key, &mod, &ks) == 0) {
2606                                 setkeybinding(mod, ks, kf_spawn_custom,
2607                                     spawns[i].name);
2608                                 return (0);
2609                         } else
2610                                 return (1);
2611                 }
2612         }
2613         DNPRINTF(SWM_D_KEY, "setconfbinding: no match\n");
2614         return (1);
2615 }
2616 void
2617 setup_keys(void)
2618 {
2619         setkeybinding(MODKEY,           XK_space,       kf_cycle_layout,NULL);
2620         setkeybinding(MODKEY|ShiftMask, XK_space,       kf_stack_reset, NULL);
2621         setkeybinding(MODKEY,           XK_h,           kf_master_shrink,NULL);
2622         setkeybinding(MODKEY,           XK_l,           kf_master_grow, NULL);
2623         setkeybinding(MODKEY,           XK_comma,       kf_master_add,  NULL);
2624         setkeybinding(MODKEY,           XK_period,      kf_master_del,  NULL);
2625         setkeybinding(MODKEY|ShiftMask, XK_comma,       kf_stack_inc,   NULL);
2626         setkeybinding(MODKEY|ShiftMask, XK_period,      kf_stack_dec,   NULL);
2627         setkeybinding(MODKEY,           XK_Return,      kf_swap_main,   NULL);
2628         setkeybinding(MODKEY,           XK_j,           kf_focus_next,  NULL);
2629         setkeybinding(MODKEY,           XK_k,           kf_focus_prev,  NULL);
2630         setkeybinding(MODKEY|ShiftMask, XK_j,           kf_swap_next,   NULL);
2631         setkeybinding(MODKEY|ShiftMask, XK_k,           kf_swap_prev,   NULL);
2632         setkeybinding(MODKEY|ShiftMask, XK_Return,      kf_spawn_term,  NULL);
2633         setkeybinding(MODKEY,           XK_p,           kf_spawn_custom,        "menu");
2634         setkeybinding(MODKEY|ShiftMask, XK_q,           kf_quit,        NULL);
2635         setkeybinding(MODKEY,           XK_q,           kf_restart,     NULL);
2636         setkeybinding(MODKEY,           XK_m,           kf_focus_main,  NULL);
2637         setkeybinding(MODKEY,           XK_1,           kf_ws_1,        NULL);
2638         setkeybinding(MODKEY,           XK_2,           kf_ws_2,        NULL);
2639         setkeybinding(MODKEY,           XK_3,           kf_ws_3,        NULL);
2640         setkeybinding(MODKEY,           XK_4,           kf_ws_4,        NULL);
2641         setkeybinding(MODKEY,           XK_5,           kf_ws_5,        NULL);
2642         setkeybinding(MODKEY,           XK_6,           kf_ws_6,        NULL);
2643         setkeybinding(MODKEY,           XK_7,           kf_ws_7,        NULL);
2644         setkeybinding(MODKEY,           XK_8,           kf_ws_8,        NULL);
2645         setkeybinding(MODKEY,           XK_9,           kf_ws_9,        NULL);
2646         setkeybinding(MODKEY,           XK_0,           kf_ws_10,       NULL);
2647         setkeybinding(MODKEY,           XK_Right,       kf_ws_next,     NULL);
2648         setkeybinding(MODKEY,           XK_Left,        kf_ws_prev,     NULL);
2649         setkeybinding(MODKEY|ShiftMask, XK_Right,       kf_screen_next, NULL);
2650         setkeybinding(MODKEY|ShiftMask, XK_Left,        kf_screen_prev, NULL);
2651         setkeybinding(MODKEY|ShiftMask, XK_1,           kf_mvws_1,      NULL);
2652         setkeybinding(MODKEY|ShiftMask, XK_2,           kf_mvws_2,      NULL);
2653         setkeybinding(MODKEY|ShiftMask, XK_3,           kf_mvws_3,      NULL);
2654         setkeybinding(MODKEY|ShiftMask, XK_4,           kf_mvws_4,      NULL);
2655         setkeybinding(MODKEY|ShiftMask, XK_5,           kf_mvws_5,      NULL);
2656         setkeybinding(MODKEY|ShiftMask, XK_6,           kf_mvws_6,      NULL);
2657         setkeybinding(MODKEY|ShiftMask, XK_7,           kf_mvws_7,      NULL);
2658         setkeybinding(MODKEY|ShiftMask, XK_8,           kf_mvws_8,      NULL);
2659         setkeybinding(MODKEY|ShiftMask, XK_9,           kf_mvws_9,      NULL);
2660         setkeybinding(MODKEY|ShiftMask, XK_0,           kf_mvws_10,     NULL);
2661         setkeybinding(MODKEY,           XK_b,           kf_bar_toggle,  NULL);
2662         setkeybinding(MODKEY,           XK_Tab,         kf_focus_next,  NULL);
2663         setkeybinding(MODKEY|ShiftMask, XK_Tab,         kf_focus_prev,  NULL);
2664         setkeybinding(MODKEY|ShiftMask, XK_x,           kf_wind_kill,   NULL);
2665         setkeybinding(MODKEY,           XK_x,           kf_wind_del,    NULL);
2666         setkeybinding(MODKEY,           XK_s,           kf_spawn_custom,        "screenshot_all");
2667         setkeybinding(MODKEY|ShiftMask, XK_s,           kf_spawn_custom,        "screenshot_wind");
2668         setkeybinding(MODKEY,           XK_t,           kf_float_toggle,NULL);
2669         setkeybinding(MODKEY|ShiftMask, XK_v,           kf_version,     NULL);
2670         setkeybinding(MODKEY|ShiftMask, XK_Delete,      kf_spawn_custom,        "lock");
2671         setkeybinding(MODKEY|ShiftMask, XK_i,           kf_spawn_custom,        "initscr");
2672 }
2673 void
2674 updatenumlockmask(void)
2675 {
2676         unsigned int            i, j;
2677         XModifierKeymap         *modmap;
2678
2679         DNPRINTF(SWM_D_MISC, "updatenumlockmask\n");
2680         numlockmask = 0;
2681         modmap = XGetModifierMapping(display);
2682         for (i = 0; i < 8; i++)
2683                 for (j = 0; j < modmap->max_keypermod; j++)
2684                         if (modmap->modifiermap[i * modmap->max_keypermod + j]
2685                           == XKeysymToKeycode(display, XK_Num_Lock))
2686                                 numlockmask = (1 << i);
2687
2688         XFreeModifiermap(modmap);
2689 }
2690
2691 void
2692 grabkeys(void)
2693 {
2694         unsigned int            i, j, k;
2695         KeyCode                 code;
2696         unsigned int            modifiers[] =
2697             { 0, LockMask, numlockmask, numlockmask | LockMask };
2698
2699         DNPRINTF(SWM_D_MISC, "grabkeys\n");
2700         updatenumlockmask();
2701
2702         for (k = 0; k < ScreenCount(display); k++) {
2703                 if (TAILQ_EMPTY(&screens[k].rl))
2704                         continue;
2705                 XUngrabKey(display, AnyKey, AnyModifier, screens[k].root);
2706                 for (i = 0; i < keys_length; i++) {
2707                         if ((code = XKeysymToKeycode(display, keys[i].keysym)))
2708                                 for (j = 0; j < LENGTH(modifiers); j++)
2709                                         XGrabKey(display, code,
2710                                             keys[i].mod | modifiers[j],
2711                                             screens[k].root, True,
2712                                             GrabModeAsync, GrabModeAsync);
2713                 }
2714         }
2715 }
2716
2717 void
2718 grabbuttons(struct ws_win *win, int focused)
2719 {
2720         unsigned int            i, j;
2721         unsigned int            modifiers[] =
2722             { 0, LockMask, numlockmask, numlockmask|LockMask };
2723
2724         updatenumlockmask();
2725         XUngrabButton(display, AnyButton, AnyModifier, win->id);
2726         if(focused) {
2727                 for (i = 0; i < LENGTH(buttons); i++)
2728                         if (buttons[i].action == client_click)
2729                                 for (j = 0; j < LENGTH(modifiers); j++)
2730                                         XGrabButton(display, buttons[i].button,
2731                                             buttons[i].mask | modifiers[j],
2732                                             win->id, False, BUTTONMASK,
2733                                             GrabModeAsync, GrabModeSync, None,
2734                                             None);
2735         } else
2736                 XGrabButton(display, AnyButton, AnyModifier, win->id, False,
2737                     BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
2738 }
2739
2740 void
2741 expose(XEvent *e)
2742 {
2743         DNPRINTF(SWM_D_EVENT, "expose: window: %lu\n", e->xexpose.window);
2744 }
2745
2746 void
2747 keypress(XEvent *e)
2748 {
2749         unsigned int            i;
2750         KeySym                  keysym;
2751         XKeyEvent               *ev = &e->xkey;
2752
2753         DNPRINTF(SWM_D_EVENT, "keypress: window: %lu\n", ev->window);
2754
2755         keysym = XKeycodeToKeysym(display, (KeyCode)ev->keycode, 0);
2756         for (i = 0; i < keys_length; i++)
2757                 if (keysym == keys[i].keysym
2758                    && CLEANMASK(keys[i].mod) == CLEANMASK(ev->state)
2759                    && keyfuncs[keys[i].funcid].func) {
2760                         if (keys[i].funcid == kf_spawn_custom)
2761                                 spawn_custom(
2762                                     root_to_region(ev->root),
2763                                     &(keyfuncs[keys[i].funcid].args),
2764                                     keys[i].spawn_name
2765                                     );
2766                         else
2767                                 keyfuncs[keys[i].funcid].func(
2768                                     root_to_region(ev->root),
2769                                     &(keyfuncs[keys[i].funcid].args)
2770                                     );
2771                 }
2772 }
2773
2774 void
2775 buttonpress(XEvent *e)
2776 {
2777         XButtonPressedEvent     *ev = &e->xbutton;
2778
2779         struct ws_win           *win;
2780         int                     i, action;
2781
2782         DNPRINTF(SWM_D_EVENT, "buttonpress: window: %lu\n", ev->window);
2783
2784         action = root_click;
2785         if ((win = find_window(ev->window)) == NULL)
2786                 return;
2787         else {
2788                 focus_win(win);
2789                 action = client_click;
2790         }
2791
2792         for (i = 0; i < LENGTH(buttons); i++)
2793                 if (action == buttons[i].action && buttons[i].func &&
2794                     buttons[i].button == ev->button &&
2795                     CLEANMASK(buttons[i].mask) == CLEANMASK(ev->state))
2796                         buttons[i].func(win, &buttons[i].args);
2797 }
2798
2799 void
2800 set_win_state(struct ws_win *win, long state)
2801 {
2802         long                    data[] = {state, None};
2803
2804         DNPRINTF(SWM_D_EVENT, "set_win_state: window: %lu\n", win->id);
2805
2806         XChangeProperty(display, win->id, astate, astate, 32, PropModeReplace,
2807             (unsigned char *)data, 2);
2808 }
2809
2810 const char *quirkname[] = {
2811         "NONE",         /* config string for "no value" */
2812         "FLOAT",
2813         "TRANSSZ",
2814         "ANYWHERE",
2815         "XTERM_FONTADJ",
2816         "FULLSCREEN",
2817 };
2818
2819 /* SWM_Q_WS: retain '|' for back compat for now (2009-08-11) */
2820 #define SWM_Q_WS                "\n|+ \t"
2821 int
2822 parsequirks(char *qstr, unsigned long *quirk)
2823 {
2824         char                    *cp, *name;
2825         int                     i;
2826         if (quirk == NULL)
2827                 return (1);
2828         cp = qstr;
2829         *quirk = 0;
2830         while ((name = strsep(&cp, SWM_Q_WS)) != NULL) {
2831                 if (cp)
2832                         cp += (long)strspn(cp, SWM_Q_WS);
2833                 for (i = 0; i < LENGTH(quirkname); i++) {
2834                         if (!strncasecmp(name, quirkname[i], SWM_QUIRK_LEN)) {
2835                                 DNPRINTF(SWM_D_QUIRK, "parsequirks: %s\n", name);
2836                                 if (i == 0) {
2837                                         *quirk = 0;
2838                                         return (0);
2839                                 }
2840                                 *quirk |= 1 << (i-1);
2841                                 break;
2842                         }
2843                 }
2844                 if (i >= LENGTH(quirkname)) {
2845                         DNPRINTF(SWM_D_QUIRK,
2846                             "parsequirks: invalid quirk [%s]\n", name);
2847                         return (1);
2848                 }
2849         }
2850         return (0);
2851 }
2852 void
2853 setquirk(const char *class, const char *name, const int quirk)
2854 {
2855         int                     i, j;
2856         /* find existing */
2857         for (i = 0; i < quirks_length; i++) {
2858                 if (!strcmp(quirks[i].class, class) &&
2859                     !strcmp(quirks[i].name, name)) {
2860                         if (!quirk) {
2861                                 /* found: delete */
2862                                 DNPRINTF(SWM_D_QUIRK,
2863                                     "setquirk: delete #%d %s:%s\n",
2864                                     i, quirks[i].class, quirks[i].name);
2865                                 free(quirks[i].class);
2866                                 free(quirks[i].name);
2867                                 j = quirks_length - 1;
2868                                 if (i < j)
2869                                         quirks[i] = quirks[j];
2870                                 quirks_length--;
2871                                 return;
2872                         } else {
2873                                 /* found: replace */
2874                                 DNPRINTF(SWM_D_QUIRK,
2875                                     "setquirk: replace #%d %s:%s\n",
2876                                     i, quirks[i].class, quirks[i].name);
2877                                 free(quirks[i].class);
2878                                 free(quirks[i].name);
2879                                 quirks[i].class = strdup(class);
2880                                 quirks[i].name = strdup(name);
2881                                 quirks[i].quirk = quirk;
2882                                 return;
2883                         }
2884                 }
2885         }
2886         if (!quirk) {
2887                 fprintf(stderr,
2888                     "error: setquirk: cannot find class/name combination");
2889                 return;
2890         }
2891         /* not found: add */
2892         if (quirks_size == 0 || quirks == NULL) {
2893                 quirks_size = 4;
2894                 DNPRINTF(SWM_D_QUIRK, "setquirk: init list %d\n", quirks_size);
2895                 quirks = malloc((size_t)quirks_size * sizeof(struct quirk));
2896                 if (!quirks) {
2897                         fprintf(stderr, "setquirk: malloc failed\n");
2898                         perror(" failed");
2899                         quit(NULL, NULL);
2900                 }
2901         } else if (quirks_length == quirks_size) {
2902                 quirks_size *= 2;
2903                 DNPRINTF(SWM_D_QUIRK, "setquirk: grow list %d\n", quirks_size);
2904                 quirks = realloc(quirks, (size_t)quirks_size * sizeof(struct quirk));
2905                 if (!quirks) {
2906                         fprintf(stderr, "setquirk: realloc failed\n");
2907                         perror(" failed");
2908                         quit(NULL, NULL);
2909                 }
2910         }
2911         if (quirks_length < quirks_size) {
2912                 DNPRINTF(SWM_D_QUIRK, "setquirk: add %d\n", quirks_length);
2913                 j = quirks_length++;
2914                 quirks[j].class = strdup(class);
2915                 quirks[j].name = strdup(name);
2916                 quirks[j].quirk = quirk;
2917         } else {
2918                 fprintf(stderr, "quirks array problem?\n");
2919                 if (!quirks) {
2920                         fprintf(stderr, "quirks array problem!\n");
2921                         quit(NULL, NULL);
2922                 }
2923         }
2924 }
2925 int
2926 setconfquirk(char *selector, char *value, int flags)
2927 {
2928         char                    *cp, *class, *name;
2929         int                     retval;
2930         unsigned long           quirks;
2931         if (selector == NULL)
2932                 return (0);
2933         if ((cp = strchr(selector, ':')) == NULL)
2934                 return (0);
2935         *cp = '\0';
2936         class = selector;
2937         name = cp + 1;
2938         if ((retval = parsequirks(value, &quirks)) == 0)
2939                 setquirk(class, name, quirks);
2940         return (retval);
2941 }
2942
2943 void
2944 setup_quirks(void)
2945 {
2946         setquirk("MPlayer",             "xv",           SWM_Q_FLOAT | SWM_Q_FULLSCREEN);
2947         setquirk("OpenOffice.org 2.4",  "VCLSalFrame",  SWM_Q_FLOAT);
2948         setquirk("OpenOffice.org 3.0",  "VCLSalFrame",  SWM_Q_FLOAT);
2949         setquirk("Firefox-bin",         "firefox-bin",  SWM_Q_TRANSSZ);
2950         setquirk("Firefox",             "Dialog",       SWM_Q_FLOAT);
2951         setquirk("Gimp",                "gimp",         SWM_Q_FLOAT | SWM_Q_ANYWHERE);
2952         setquirk("XTerm",               "xterm",        SWM_Q_XTERM_FONTADJ);
2953         setquirk("xine",                "Xine Window",  SWM_Q_FLOAT | SWM_Q_ANYWHERE);
2954         setquirk("Xitk",                "Xitk Combo",   SWM_Q_FLOAT | SWM_Q_ANYWHERE);
2955         setquirk("xine",                "xine Panel",   SWM_Q_FLOAT | SWM_Q_ANYWHERE);
2956         setquirk("Xitk",                "Xine Window",  SWM_Q_FLOAT | SWM_Q_ANYWHERE);
2957         setquirk("xine",                "xine Video Fullscreen Window", SWM_Q_FULLSCREEN | SWM_Q_FLOAT);
2958         setquirk("pcb",                 "pcb",          SWM_Q_FLOAT);
2959 }
2960
2961 /* conf file stuff */
2962 #define SWM_CONF_FILE   "scrotwm.conf"
2963
2964 enum    { SWM_S_BAR_DELAY, SWM_S_BAR_ENABLED, SWM_S_CLOCK_ENABLED,
2965           SWM_S_CYCLE_EMPTY, SWM_S_CYCLE_VISIBLE, SWM_S_SS_ENABLED,
2966           SWM_S_TERM_WIDTH, SWM_S_TITLE_CLASS_ENABLED, SWM_S_TITLE_NAME_ENABLED,
2967           SWM_S_BAR_FONT, SWM_S_BAR_ACTION, SWM_S_SPAWN_TERM, SWM_S_SS_APP,
2968           SWM_S_DIALOG_RATIO };
2969
2970 int
2971 setconfvalue(char *selector, char *value, int flags)
2972 {
2973         switch (flags) {
2974         case SWM_S_BAR_DELAY:
2975                 bar_delay = atoi(value);
2976                 break;
2977         case SWM_S_BAR_ENABLED:
2978                 bar_enabled = atoi(value);
2979                 break;
2980         case SWM_S_CLOCK_ENABLED:
2981                 clock_enabled = atoi(value);
2982                 break;
2983         case SWM_S_CYCLE_EMPTY:
2984                 cycle_empty = atoi(value);
2985                 break;
2986         case SWM_S_CYCLE_VISIBLE:
2987                 cycle_visible = atoi(value);
2988                 break;
2989         case SWM_S_SS_ENABLED:
2990                 ss_enabled = atoi(value);
2991                 break;
2992         case SWM_S_TERM_WIDTH:
2993                 term_width = atoi(value);
2994                 break;
2995         case SWM_S_TITLE_CLASS_ENABLED:
2996                 title_class_enabled = atoi(value);
2997                 break;
2998         case SWM_S_TITLE_NAME_ENABLED:
2999                 title_name_enabled = atoi(value);
3000                 break;
3001         case SWM_S_BAR_FONT:
3002                 free(bar_fonts[0]);
3003                 if ((bar_fonts[0] = strdup(value)) == NULL)
3004                         err(1, "setconfvalue: bar_font");
3005                 break;
3006         case SWM_S_BAR_ACTION:
3007                 free(bar_argv[0]);
3008                 if ((bar_argv[0] = strdup(value)) == NULL)
3009                         err(1, "setconfvalue: bar_action");
3010                 break;
3011         case SWM_S_SPAWN_TERM:
3012                 free(spawn_term[0]);
3013                 if ((spawn_term[0] = strdup(value)) == NULL)
3014                         err(1, "setconfvalue: spawn_term");
3015                 break;
3016         case SWM_S_SS_APP:
3017                 break;
3018         case SWM_S_DIALOG_RATIO:
3019                 dialog_ratio = atof(value);
3020                 if (dialog_ratio > 1.0 || dialog_ratio <= .3)
3021                         dialog_ratio = .6;
3022                 break;
3023         default:
3024                 return (1);
3025         }
3026         return (0);
3027 }
3028
3029 int
3030 setconfmodkey(char *selector, char *value, int flags)
3031 {
3032         if (!strncasecmp(value, "Mod1", strlen("Mod1")))
3033                 update_modkey(Mod1Mask);
3034         else if (!strncasecmp(value, "Mod2", strlen("Mod2")))
3035                 update_modkey(Mod2Mask);
3036         else if (!strncasecmp(value, "Mod3", strlen("Mod3")))
3037                 update_modkey(Mod3Mask);
3038         else if (!strncasecmp(value, "Mod4", strlen("Mod4")))
3039                 update_modkey(Mod4Mask);
3040         else
3041                 return (1);
3042         return (0);
3043 }
3044
3045 int
3046 setconfcolor(char *selector, char *value, int flags)
3047 {
3048         setscreencolor(value, ((selector == NULL)?-1:atoi(selector)), flags);
3049         return (0);
3050 }
3051
3052 int
3053 setconfregion(char *selector, char *value, int flags)
3054 {
3055         custom_region(value);
3056         return (0);
3057 }
3058
3059 /* config options */
3060 struct config_option {
3061         char                    *optname;
3062         int (*func)(char*, char*, int);
3063         int funcflags;
3064 };
3065 struct config_option configopt[] = {
3066         { "bar_enabled",                setconfvalue,   SWM_S_BAR_ENABLED },
3067         { "bar_border",                 setconfcolor,   SWM_S_COLOR_BAR_BORDER },
3068         { "bar_color",                  setconfcolor,   SWM_S_COLOR_BAR },
3069         { "bar_font_color",             setconfcolor,   SWM_S_COLOR_BAR_FONT },
3070         { "bar_font",                   setconfvalue,   SWM_S_BAR_FONT },
3071         { "bar_action",                 setconfvalue,   SWM_S_BAR_ACTION },
3072         { "bar_delay",                  setconfvalue,   SWM_S_BAR_DELAY },
3073         { "bind",                       setconfbinding, 0 },
3074         { "clock_enabled",              setconfvalue,   SWM_S_CLOCK_ENABLED },
3075         { "color_focus",                setconfcolor,   SWM_S_COLOR_FOCUS },
3076         { "color_unfocus",              setconfcolor,   SWM_S_COLOR_UNFOCUS },
3077         { "cycle_empty",                setconfvalue,   SWM_S_CYCLE_EMPTY },
3078         { "cycle_visible",              setconfvalue,   SWM_S_CYCLE_VISIBLE },
3079         { "dialog_ratio",               setconfvalue,   SWM_S_DIALOG_RATIO },
3080         { "modkey",                     setconfmodkey,  0 },
3081         { "program",                    setconfspawn,   0 },
3082         { "quirk",                      setconfquirk,   0 },
3083         { "region",                     setconfregion,  0 },
3084         { "spawn_term",                 setconfvalue,   SWM_S_SPAWN_TERM },
3085         { "screenshot_enabled",         setconfvalue,   SWM_S_SS_ENABLED },
3086         { "screenshot_app",             setconfvalue,   SWM_S_SS_APP },
3087         { "term_width",                 setconfvalue,   SWM_S_TERM_WIDTH },
3088         { "title_class_enabled",        setconfvalue,   SWM_S_TITLE_CLASS_ENABLED },
3089         { "title_name_enabled",         setconfvalue,   SWM_S_TITLE_NAME_ENABLED }
3090 };
3091
3092
3093 int
3094 conf_load(char *filename)
3095 {
3096         FILE                    *config;
3097         char                    *line, *cp, *optsub, *optval;
3098         size_t                  linelen, lineno = 0;
3099         int                     wordlen, i, optind;
3100         struct config_option    *opt;
3101
3102         DNPRINTF(SWM_D_CONF, "conf_load begin\n");
3103
3104         if (filename == NULL) {
3105                 fprintf(stderr, "conf_load: no filename\n");
3106                 return (1);
3107         }
3108         if ((config = fopen(filename, "r")) == NULL) {
3109                 warn("conf_load: fopen");
3110                 return (1);
3111         }
3112
3113         while (!feof(config)) {
3114                 if ((line = fparseln(config, &linelen, &lineno, NULL, 0))
3115                     == NULL) {
3116                         if (ferror(config))
3117                                 err(1, "%s", filename);
3118                         else
3119                                 continue;
3120                 }
3121                 cp = line;
3122                 cp += strspn(cp, " \t\n"); /* eat whitespace */
3123                 if (cp[0] == '\0') {
3124                         /* empty line */
3125                         free(line);
3126                         continue;
3127                 }
3128                 /* get config option */
3129                 wordlen = strcspn(cp, "=[ \t\n");
3130                 if (wordlen == 0) {
3131                         warnx("%s: line %zd: no option found",
3132                             filename, lineno);
3133                         return (1);
3134                 }
3135                 optind = -1;
3136                 for (i = 0; i < LENGTH(configopt); i++) {
3137                         opt = &configopt[i];
3138                         if (!strncasecmp(cp, opt->optname, wordlen) &&
3139                             strlen(opt->optname) == wordlen) {
3140                                 optind = i;
3141                                 break;
3142                         }
3143                 }
3144                 if (optind == -1) {
3145                         warnx("%s: line %zd: unknown option %.*s",
3146                             filename, lineno, wordlen, cp);
3147                         return (1);
3148                 }
3149                 cp += wordlen;
3150                 cp += strspn(cp, " \t\n"); /* eat whitespace */
3151                 /* get [selector] if any */
3152                 optsub = NULL;
3153                 if (*cp == '[') {
3154                         cp++;
3155                         wordlen = strcspn(cp, "]");
3156                         if (*cp != ']') {
3157                                 if (wordlen == 0) {
3158                                         warnx("%s: line %zd: syntax error",
3159                                             filename, lineno);
3160                                         return (1);
3161                                 }
3162                                 asprintf(&optsub, "%.*s", wordlen, cp);
3163                         }
3164                         cp += wordlen;
3165                         cp += strspn(cp, "] \t\n"); /* eat trailing */
3166                 }
3167                 cp += strspn(cp, "= \t\n"); /* eat trailing */
3168                 /* get RHS value */
3169                 optval = strdup(cp);
3170                 /* call function to deal with it all */
3171                 if (configopt[optind].func(optsub, optval,
3172                     configopt[optind].funcflags) != 0) {
3173                         fprintf(stderr, "%s line %zd: %s\n",
3174                             filename, lineno, line);
3175                         errx(1, "%s: line %zd: invalid data for %s",
3176                             filename, lineno, configopt[optind].optname);
3177                 }
3178                 free(optval);
3179                 free(optsub);
3180                 free(line);
3181         }
3182
3183         fclose(config);
3184         DNPRINTF(SWM_D_CONF, "conf_load end\n");
3185
3186         return (0);
3187 }
3188
3189 struct ws_win *
3190 manage_window(Window id)
3191 {
3192         Window                  trans;
3193         struct workspace        *ws;
3194         struct ws_win           *win, *ww;
3195         int                     format, i, ws_idx, n;
3196         unsigned long           nitems, bytes;
3197         Atom                    ws_idx_atom = 0, type;
3198         Atom                    *prot = NULL, *pp;
3199         unsigned char           ws_idx_str[SWM_PROPLEN], *prop = NULL;
3200         struct swm_region       *r;
3201         long                    mask;
3202         const char              *errstr;
3203         XWindowChanges          wc;
3204
3205         if ((win = find_window(id)) != NULL)
3206                         return (win);   /* already being managed */
3207
3208         if ((win = calloc(1, sizeof(struct ws_win))) == NULL)
3209                 errx(1, "calloc: failed to allocate memory for new window");
3210
3211         /* Get all the window data in one shot */
3212         ws_idx_atom = XInternAtom(display, "_SWM_WS", False);
3213         if (ws_idx_atom)
3214                 XGetWindowProperty(display, id, ws_idx_atom, 0, SWM_PROPLEN,
3215                     False, XA_STRING, &type, &format, &nitems, &bytes, &prop);
3216         XGetWindowAttributes(display, id, &win->wa);
3217         XGetTransientForHint(display, id, &trans);
3218         XGetWMNormalHints(display, id, &win->sh, &mask); /* XXX function? */
3219         if (trans) {
3220                 win->transient = trans;
3221                 DNPRINTF(SWM_D_MISC, "manage_window: win %u transient %u\n",
3222                     (unsigned)win->id, win->transient);
3223         }
3224         /* get supported protocols */
3225         if (XGetWMProtocols(display, id, &prot, &n)) {
3226                 for (i = 0, pp = prot; i < n; i++, pp++)
3227                         if (*pp == adelete)
3228                                 win->can_delete = 1;
3229                 if (prot)
3230                         XFree(prot);
3231         }
3232
3233         /*
3234          * Figure out where to put the window. If it was previously assigned to
3235          * a workspace (either by spawn() or manually moving), and isn't
3236          * transient, * put it in the same workspace
3237          */
3238         r = root_to_region(win->wa.root);
3239         if (prop && win->transient == 0) {
3240                 DNPRINTF(SWM_D_PROP, "got property _SWM_WS=%s\n", prop);
3241                 ws_idx = strtonum(prop, 0, 9, &errstr);
3242                 if (errstr) {
3243                         DNPRINTF(SWM_D_EVENT, "window idx is %s: %s",
3244                             errstr, prop);
3245                 }
3246                 ws = &r->s->ws[ws_idx];
3247         } else {
3248                 ws = r->ws;
3249                 /* this should launch transients in the same ws as parent */
3250                 /* XXX doesn't work for intel xrandr */
3251                 if (id && trans) {
3252                         if ((ww = find_window(trans)) != NULL) {
3253                                 ws = ww->ws;
3254                                 r = ws->r;
3255                         }
3256                 }
3257         }
3258
3259         /* set up the window layout */
3260         win->id = id;
3261         win->ws = ws;
3262         win->s = r->s;  /* this never changes */
3263         TAILQ_INSERT_TAIL(&ws->winlist, win, entry);
3264
3265         win->g.w = win->wa.width;
3266         win->g.h = win->wa.height;
3267         win->g.x = win->wa.x;
3268         win->g.y = win->wa.y;
3269
3270         /* Set window properties so we can remember this after reincarnation */
3271         if (ws_idx_atom && prop == NULL &&
3272             snprintf(ws_idx_str, SWM_PROPLEN, "%d", ws->idx) < SWM_PROPLEN) {
3273                 DNPRINTF(SWM_D_PROP, "setting property _SWM_WS to %s\n",
3274                     ws_idx_str);
3275                 XChangeProperty(display, win->id, ws_idx_atom, XA_STRING, 8,
3276                     PropModeReplace, ws_idx_str, SWM_PROPLEN);
3277         }
3278         XFree(prop);
3279
3280         if (XGetClassHint(display, win->id, &win->ch)) {
3281                 DNPRINTF(SWM_D_CLASS, "class: %s name: %s\n",
3282                     win->ch.res_class, win->ch.res_name);
3283                 for (i = 0; i < quirks_length; i++){
3284                         if (!strcmp(win->ch.res_class, quirks[i].class) &&
3285                             !strcmp(win->ch.res_name, quirks[i].name)) {
3286                                 DNPRINTF(SWM_D_CLASS, "found: %s name: %s\n",
3287                                     win->ch.res_class, win->ch.res_name);
3288                                 if (quirks[i].quirk & SWM_Q_FLOAT)
3289                                         win->floating = 1;
3290                                 win->quirks = quirks[i].quirk;
3291                         }
3292                 }
3293         }
3294
3295         /* alter window position if quirky */
3296         if (win->quirks & SWM_Q_ANYWHERE) {
3297                 win->manual = 1; /* don't center the quirky windows */
3298                 bzero(&wc, sizeof wc);
3299                 mask = 0;
3300                 if (win->g.y < bar_height) {
3301                         win->g.y = wc.y = bar_height;
3302                         mask |= CWY;
3303                 }
3304                 if (win->g.w + win->g.x > WIDTH(r)) {
3305                         win->g.x = wc.x = WIDTH(win->ws->r) - win->g.w - 2;
3306                         mask |= CWX;
3307                 }
3308                 wc.border_width = 1;
3309                 mask |= CWBorderWidth;
3310                 XConfigureWindow(display, win->id, mask, &wc);
3311         }
3312
3313         /* Reset font sizes (the bruteforce way; no default keybinding). */
3314         if (win->quirks & SWM_Q_XTERM_FONTADJ) {
3315                 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
3316                         fake_keypress(win, XK_KP_Subtract, ShiftMask);
3317                 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
3318                         fake_keypress(win, XK_KP_Add, ShiftMask);
3319         }
3320
3321         XSelectInput(display, id, EnterWindowMask | FocusChangeMask |
3322             PropertyChangeMask | StructureNotifyMask);
3323
3324         set_win_state(win, NormalState);
3325
3326         /* floaters need to be mapped if they are in the current workspace */
3327         if (win->floating && (ws->idx == r->ws->idx))
3328                 XMapRaised(display, win->id);
3329
3330         return (win);
3331 }
3332
3333 void
3334 unmanage_window(struct ws_win *win)
3335 {
3336         struct workspace        *ws;
3337
3338         if (win == NULL)
3339                 return;
3340
3341         DNPRINTF(SWM_D_MISC, "unmanage_window:  %lu\n", win->id);
3342
3343         ws = win->ws;
3344         TAILQ_REMOVE(&win->ws->winlist, win, entry);
3345         set_win_state(win, WithdrawnState);
3346         if (win->ch.res_class)
3347                 XFree(win->ch.res_class);
3348         if (win->ch.res_name)
3349                 XFree(win->ch.res_name);
3350         free(win);
3351 }
3352
3353 void
3354 configurerequest(XEvent *e)
3355 {
3356         XConfigureRequestEvent  *ev = &e->xconfigurerequest;
3357         struct ws_win           *win;
3358         int                     new = 0;
3359         XWindowChanges          wc;
3360
3361         if ((win = find_window(ev->window)) == NULL)
3362                 new = 1;
3363
3364         if (new) {
3365                 DNPRINTF(SWM_D_EVENT, "configurerequest: new window: %lu\n",
3366                     ev->window);
3367                 bzero(&wc, sizeof wc);
3368                 wc.x = ev->x;
3369                 wc.y = ev->y;
3370                 wc.width = ev->width;
3371                 wc.height = ev->height;
3372                 wc.border_width = ev->border_width;
3373                 wc.sibling = ev->above;
3374                 wc.stack_mode = ev->detail;
3375                 XConfigureWindow(display, ev->window, ev->value_mask, &wc);
3376         } else {
3377                 DNPRINTF(SWM_D_EVENT, "configurerequest: change window: %lu\n",
3378                     ev->window);
3379                 if (win->floating) {
3380                         if (ev->value_mask & CWX)
3381                                 win->g.x = ev->x;
3382                         if (ev->value_mask & CWY)
3383                                 win->g.y = ev->y;
3384                         if (ev->value_mask & CWWidth)
3385                                 win->g.w = ev->width;
3386                         if (ev->value_mask & CWHeight)
3387                                 win->g.h = ev->height;
3388                         if (win->ws->r != NULL) {
3389                                 /* this seems to be full screen */
3390                                 if (win->g.w >= WIDTH(win->ws->r)) {
3391                                         win->g.x = 0;
3392                                         win->g.w = WIDTH(win->ws->r);
3393                                         ev->value_mask |= CWX | CWWidth;
3394                                 }
3395                                 if (win->g.h >= HEIGHT(win->ws->r)) {
3396                                         /* kill border */
3397                                         win->g.y = 0;
3398                                         win->g.h = HEIGHT(win->ws->r);
3399                                         ev->value_mask |= CWY | CWHeight;
3400                                 }
3401                         }
3402                         if ((ev->value_mask & (CWX | CWY)) &&
3403                             !(ev->value_mask & (CWWidth | CWHeight)))
3404                                 config_win(win);
3405                         XMoveResizeWindow(display, win->id,
3406                             win->g.x, win->g.y, win->g.w, win->g.h);
3407                 } else
3408                         config_win(win);
3409         }
3410 }
3411
3412 void
3413 configurenotify(XEvent *e)
3414 {
3415         struct ws_win           *win;
3416         long                    mask;
3417
3418         DNPRINTF(SWM_D_EVENT, "configurenotify: window: %lu\n",
3419             e->xconfigure.window);
3420
3421         XMapWindow(display, e->xconfigure.window);
3422         win = find_window(e->xconfigure.window);
3423         if (win) {
3424                 XGetWMNormalHints(display, win->id, &win->sh, &mask);
3425                 adjust_font(win);
3426                 XMapWindow(display, win->id);
3427                 if (font_adjusted)
3428                         stack();
3429         }
3430 }
3431
3432 void
3433 destroynotify(XEvent *e)
3434 {
3435         struct ws_win           *win, *winfocus = NULL;
3436         struct workspace        *ws;
3437         struct ws_win_list      *wl;
3438
3439         XDestroyWindowEvent     *ev = &e->xdestroywindow;
3440
3441         DNPRINTF(SWM_D_EVENT, "destroynotify: window %lu\n", ev->window);
3442
3443         if ((win = find_window(ev->window)) != NULL) {
3444                 /* find a window to focus */
3445                 ws = win->ws;
3446                 wl = &ws->winlist;
3447                 if (ws->focus == win) {
3448                         if (TAILQ_FIRST(wl) == win)
3449                                 winfocus = TAILQ_NEXT(win, entry);
3450                         else {
3451                                 winfocus = TAILQ_PREV(ws->focus, ws_win_list, entry);
3452                                 if (winfocus == NULL)
3453                                         winfocus = TAILQ_LAST(wl, ws_win_list);
3454                         }
3455                 }
3456
3457                 unmanage_window(win);
3458                 stack();
3459                 if (winfocus)
3460                         focus_win(winfocus);
3461         }
3462 }
3463
3464 void
3465 enternotify(XEvent *e)
3466 {
3467         XCrossingEvent          *ev = &e->xcrossing;
3468         struct ws_win           *win;
3469
3470         DNPRINTF(SWM_D_EVENT, "enternotify: window: %lu\n", ev->window);
3471
3472         if (ignore_enter) {
3473                 /* eat event(r) to prevent autofocus */
3474                 ignore_enter--;
3475                 return;
3476         }
3477         /*
3478          * happens when a window is created or destroyed and the border
3479          * crosses the mouse pointer
3480          */
3481         if (QLength(display))
3482                 return;
3483
3484         if ((win = find_window(ev->window)) != NULL)
3485                 focus_win(win);
3486 }
3487
3488 void
3489 focusin(XEvent *e)
3490 {
3491         DNPRINTF(SWM_D_EVENT, "focusin: window: %lu\n", e->xfocus.window);
3492 }
3493
3494 void
3495 focusout(XEvent *e)
3496 {
3497         DNPRINTF(SWM_D_EVENT, "focusout: window: %lu\n", e->xfocus.window);
3498 }
3499
3500 void
3501 mappingnotify(XEvent *e)
3502 {
3503         XMappingEvent           *ev = &e->xmapping;
3504
3505         DNPRINTF(SWM_D_EVENT, "mappingnotify: window: %lu\n", ev->window);
3506
3507         XRefreshKeyboardMapping(ev);
3508         if (ev->request == MappingKeyboard)
3509                 grabkeys();
3510 }
3511
3512 void
3513 maprequest(XEvent *e)
3514 {
3515         XMapRequestEvent        *ev = &e->xmaprequest;
3516         XWindowAttributes       wa;
3517
3518         DNPRINTF(SWM_D_EVENT, "maprequest: window: %lu\n",
3519             e->xmaprequest.window);
3520
3521         if (!XGetWindowAttributes(display, ev->window, &wa))
3522                 return;
3523         if (wa.override_redirect)
3524                 return;
3525
3526         manage_window(e->xmaprequest.window);
3527
3528         stack();
3529
3530         /* make new win focused */
3531         struct ws_win           *win;
3532         win = find_window(ev->window);
3533         focus_win(win);
3534 }
3535
3536 void
3537 propertynotify(XEvent *e)
3538 {
3539         struct ws_win           *win;
3540         XPropertyEvent          *ev = &e->xproperty;
3541
3542         DNPRINTF(SWM_D_EVENT, "propertynotify: window: %lu\n",
3543             ev->window);
3544
3545         if (ev->state == PropertyDelete)
3546                 return; /* ignore */
3547         win = find_window(ev->window);
3548         if (win == NULL)
3549                 return;
3550
3551         switch (ev->atom) {
3552         case XA_WM_NORMAL_HINTS:
3553 #if 0
3554                 long            mask;
3555                 XGetWMNormalHints(display, win->id, &win->sh, &mask);
3556                 fprintf(stderr, "normal hints: flag 0x%x\n", win->sh.flags);
3557                 if (win->sh.flags & PMinSize) {
3558                         win->g.w = win->sh.min_width;
3559                         win->g.h = win->sh.min_height;
3560                         fprintf(stderr, "min %d %d\n", win->g.w, win->g.h);
3561                 }
3562                 XMoveResizeWindow(display, win->id,
3563                     win->g.x, win->g.y, win->g.w, win->g.h);
3564 #endif
3565                 break;
3566         default:
3567                 break;
3568         }
3569 }
3570
3571 void
3572 unmapnotify(XEvent *e)
3573 {
3574         DNPRINTF(SWM_D_EVENT, "unmapnotify: window: %lu\n", e->xunmap.window);
3575 }
3576
3577 void
3578 visibilitynotify(XEvent *e)
3579 {
3580         int                     i;
3581         struct swm_region       *r;
3582
3583         DNPRINTF(SWM_D_EVENT, "visibilitynotify: window: %lu\n",
3584             e->xvisibility.window);
3585         if (e->xvisibility.state == VisibilityUnobscured)
3586                 for (i = 0; i < ScreenCount(display); i++)
3587                         TAILQ_FOREACH(r, &screens[i].rl, entry)
3588                                 if (e->xvisibility.window == r->bar_window)
3589                                         bar_update();
3590 }
3591
3592 int
3593 xerror_start(Display *d, XErrorEvent *ee)
3594 {
3595         other_wm = 1;
3596         return (-1);
3597 }
3598
3599 int
3600 xerror(Display *d, XErrorEvent *ee)
3601 {
3602         /* fprintf(stderr, "error: %p %p\n", display, ee); */
3603         return (-1);
3604 }
3605
3606 int
3607 active_wm(void)
3608 {
3609         other_wm = 0;
3610         xerrorxlib = XSetErrorHandler(xerror_start);
3611
3612         /* this causes an error if some other window manager is running */
3613         XSelectInput(display, DefaultRootWindow(display),
3614             SubstructureRedirectMask);
3615         XSync(display, False);
3616         if (other_wm)
3617                 return (1);
3618
3619         XSetErrorHandler(xerror);
3620         XSync(display, False);
3621         return (0);
3622 }
3623
3624 long
3625 getstate(Window w)
3626 {
3627         int                     format, status;
3628         long                    result = -1;
3629         unsigned char           *p = NULL;
3630         unsigned long           n, extra;
3631         Atom                    real;
3632
3633         status = XGetWindowProperty(display, w, astate, 0L, 2L, False, astate,
3634             &real, &format, &n, &extra, (unsigned char **)&p);
3635         if (status != Success)
3636                 return (-1);
3637         if (n != 0)
3638                 result = *((long *)p);
3639         XFree(p);
3640         return (result);
3641 }
3642
3643 void
3644 new_region(struct swm_screen *s, int x, int y, int w, int h)
3645 {
3646         struct swm_region       *r, *n;
3647         struct workspace        *ws = NULL;
3648         int                     i;
3649
3650         DNPRINTF(SWM_D_MISC, "new region: screen[%d]:%dx%d+%d+%d\n",
3651              s->idx, w, h, x, y);
3652
3653         /* remove any conflicting regions */
3654         n = TAILQ_FIRST(&s->rl);
3655         while (n) {
3656                 r = n;
3657                 n = TAILQ_NEXT(r, entry);
3658                 if (X(r) < (x + w) &&
3659                     (X(r) + WIDTH(r)) > x &&
3660                     Y(r) < (y + h) &&
3661                     (Y(r) + HEIGHT(r)) > y) {
3662                         XDestroyWindow(display, r->bar_window);
3663                         TAILQ_REMOVE(&s->rl, r, entry);
3664                         TAILQ_INSERT_TAIL(&s->orl, r, entry);
3665                 }
3666         }
3667
3668         /* search old regions for one to reuse */
3669
3670         /* size + location match */
3671         TAILQ_FOREACH(r, &s->orl, entry)
3672                 if (X(r) == x && Y(r) == y &&
3673                     HEIGHT(r) == h && WIDTH(r) == w)
3674                         break;
3675
3676         /* size match */
3677         TAILQ_FOREACH(r, &s->orl, entry)
3678                 if (HEIGHT(r) == h && WIDTH(r) == w)
3679                         break;
3680
3681         if (r != NULL) {
3682                 TAILQ_REMOVE(&s->orl, r, entry);
3683                 /* try to use old region's workspace */
3684                 if (r->ws->r == NULL)
3685                         ws = r->ws;
3686         } else
3687                 if ((r = calloc(1, sizeof(struct swm_region))) == NULL)
3688                         errx(1, "calloc: failed to allocate memory for screen");
3689
3690         /* if we don't have a workspace already, find one */
3691         if (ws == NULL) {
3692                 for (i = 0; i < SWM_WS_MAX; i++)
3693                         if (s->ws[i].r == NULL) {
3694                                 ws = &s->ws[i];
3695                                 break;
3696                         }
3697         }
3698
3699         if (ws == NULL)
3700                 errx(1, "no free workspaces\n");
3701
3702         X(r) = x;
3703         Y(r) = y;
3704         WIDTH(r) = w;
3705         HEIGHT(r) = h;
3706         r->s = s;
3707         r->ws = ws;
3708         ws->r = r;
3709         TAILQ_INSERT_TAIL(&s->rl, r, entry);
3710 }
3711
3712 void
3713 scan_xrandr(int i)
3714 {
3715 #ifdef SWM_XRR_HAS_CRTC
3716         XRRCrtcInfo             *ci;
3717         XRRScreenResources      *sr;
3718         int                     c;
3719         int                     ncrtc = 0;
3720 #endif /* SWM_XRR_HAS_CRTC */
3721         struct swm_region       *r;
3722
3723
3724         if (i >= ScreenCount(display))
3725                 errx(1, "invalid screen");
3726
3727         /* remove any old regions */
3728         while ((r = TAILQ_FIRST(&screens[i].rl)) != NULL) {
3729                 r->ws->r = NULL;
3730                 XDestroyWindow(display, r->bar_window);
3731                 TAILQ_REMOVE(&screens[i].rl, r, entry);
3732                 TAILQ_INSERT_TAIL(&screens[i].orl, r, entry);
3733         }
3734
3735         /* map virtual screens onto physical screens */
3736 #ifdef SWM_XRR_HAS_CRTC
3737         outputs = 0;
3738         if (xrandr_support) {
3739                 sr = XRRGetScreenResources(display, screens[i].root);
3740                 if (sr == NULL)
3741                         new_region(&screens[i], 0, 0,
3742                             DisplayWidth(display, i),
3743                             DisplayHeight(display, i));
3744                 else
3745                         ncrtc = sr->ncrtc;
3746
3747                 for (c = 0, ci = NULL; c < ncrtc; c++) {
3748                         ci = XRRGetCrtcInfo(display, sr, sr->crtcs[c]);
3749                         if (ci->noutput == 0)
3750                                 continue;
3751                         outputs++;
3752
3753                         if (ci != NULL && ci->mode == None)
3754                                 new_region(&screens[i], 0, 0,
3755                                     DisplayWidth(display, i),
3756                                     DisplayHeight(display, i));
3757                         else
3758                                 new_region(&screens[i],
3759                                     ci->x, ci->y, ci->width, ci->height);
3760                 }
3761                 if (ci)
3762                         XRRFreeCrtcInfo(ci);
3763                 XRRFreeScreenResources(sr);
3764         } else
3765 #endif /* SWM_XRR_HAS_CRTC */
3766         {
3767                 new_region(&screens[i], 0, 0, DisplayWidth(display, i),
3768                     DisplayHeight(display, i));
3769         }
3770 }
3771
3772 void
3773 screenchange(XEvent *e) {
3774         XRRScreenChangeNotifyEvent      *xe = (XRRScreenChangeNotifyEvent *)e;
3775         struct swm_region               *r;
3776         struct ws_win                   *win;
3777         int                             i;
3778
3779         DNPRINTF(SWM_D_EVENT, "screenchange: %lu\n", xe->root);
3780
3781         if (!XRRUpdateConfiguration(e))
3782                 return;
3783
3784         /* silly event doesn't include the screen index */
3785         for (i = 0; i < ScreenCount(display); i++)
3786                 if (screens[i].root == xe->root)
3787                         break;
3788         if (i >= ScreenCount(display))
3789                 errx(1, "screenchange: screen not found\n");
3790
3791         /* brute force for now, just re-enumerate the regions */
3792         scan_xrandr(i);
3793
3794         /* hide any windows that went away */
3795         TAILQ_FOREACH(r, &screens[i].rl, entry)
3796                 TAILQ_FOREACH(win, &r->ws->winlist, entry)
3797                         XUnmapWindow(display, win->id);
3798
3799         /* add bars to all regions */
3800         for (i = 0; i < ScreenCount(display); i++)
3801                 TAILQ_FOREACH(r, &screens[i].rl, entry)
3802                         bar_setup(r);
3803         stack();
3804 }
3805
3806 void
3807 setup_screens(void)
3808 {
3809         Window                  d1, d2, *wins = NULL;
3810         XWindowAttributes       wa;
3811         unsigned int            no;
3812         int                     i, j, k;
3813         int                     errorbase, major, minor;
3814         struct workspace        *ws;
3815         int                     ws_idx_atom;
3816
3817
3818         if ((screens = calloc(ScreenCount(display),
3819              sizeof(struct swm_screen))) == NULL)
3820                 errx(1, "calloc: screens");
3821
3822         ws_idx_atom = XInternAtom(display, "_SWM_WS", False);
3823
3824         /* initial Xrandr setup */
3825         xrandr_support = XRRQueryExtension(display,
3826             &xrandr_eventbase, &errorbase);
3827         if (xrandr_support)
3828                 if (XRRQueryVersion(display, &major, &minor) && major < 1)
3829                         xrandr_support = 0;
3830
3831         /* map physical screens */
3832         for (i = 0; i < ScreenCount(display); i++) {
3833                 DNPRINTF(SWM_D_WS, "setup_screens: init screen %d\n", i);
3834                 screens[i].idx = i;
3835                 TAILQ_INIT(&screens[i].rl);
3836                 TAILQ_INIT(&screens[i].orl);
3837                 screens[i].root = RootWindow(display, i);
3838
3839                 /* set default colors */
3840                 setscreencolor("red", i + 1, SWM_S_COLOR_FOCUS);
3841                 setscreencolor("rgb:88/88/88", i + 1, SWM_S_COLOR_UNFOCUS);
3842                 setscreencolor("rgb:00/80/80", i + 1, SWM_S_COLOR_BAR_BORDER);
3843                 setscreencolor("black", i + 1, SWM_S_COLOR_BAR);
3844                 setscreencolor("rgb:a0/a0/a0", i + 1, SWM_S_COLOR_BAR_FONT);
3845
3846                 /* init all workspaces */
3847                 /* XXX these should be dynamically allocated too */
3848                 for (j = 0; j < SWM_WS_MAX; j++) {
3849                         ws = &screens[i].ws[j];
3850                         ws->idx = j;
3851                         ws->restack = 1;
3852                         ws->focus = NULL;
3853                         ws->r = NULL;
3854                         TAILQ_INIT(&ws->winlist);
3855
3856                         for (k = 0; layouts[k].l_stack != NULL; k++)
3857                                 if (layouts[k].l_config != NULL)
3858                                         layouts[k].l_config(ws,
3859                                             SWM_ARG_ID_STACKINIT);
3860                         ws->cur_layout = &layouts[0];
3861                 }
3862                 /* grab existing windows (before we build the bars)*/
3863                 if (!XQueryTree(display, screens[i].root, &d1, &d2, &wins, &no))
3864                         continue;
3865
3866                 scan_xrandr(i);
3867
3868                 if (xrandr_support)
3869                         XRRSelectInput(display, screens[i].root,
3870                             RRScreenChangeNotifyMask);
3871
3872                 /* attach windows to a region */
3873                 /* normal windows */
3874                 for (j = 0; j < no; j++) {
3875                         XGetWindowAttributes(display, wins[j], &wa);
3876                         if (!XGetWindowAttributes(display, wins[j], &wa) ||
3877                             wa.override_redirect ||
3878                             XGetTransientForHint(display, wins[j], &d1))
3879                                 continue;
3880
3881                         if (wa.map_state == IsViewable ||
3882                             getstate(wins[j]) == NormalState)
3883                                 manage_window(wins[j]);
3884                 }
3885                 /* transient windows */
3886                 for (j = 0; j < no; j++) {
3887                         if (!XGetWindowAttributes(display, wins[j], &wa))
3888                                 continue;
3889
3890                         if (XGetTransientForHint(display, wins[j], &d1) &&
3891                             (wa.map_state == IsViewable || getstate(wins[j]) ==
3892                             NormalState))
3893                                 manage_window(wins[j]);
3894                 }
3895                 if (wins) {
3896                         XFree(wins);
3897                         wins = NULL;
3898                 }
3899         }
3900 }
3901 void
3902 setup_globals(void)
3903 {
3904         if ((bar_fonts[0] = strdup("-*-terminus-medium-*-*-*-*-*-*-*-*-*-*-*"))
3905             == NULL)
3906                 err(1, "setup_globals: strdup");
3907         if ((bar_fonts[1] = strdup("-*-times-medium-r-*-*-*-*-*-*-*-*-*-*"))
3908             == NULL)
3909                 err(1, "setup_globals: strdup");
3910         if ((spawn_term[0] = strdup("xterm")) == NULL)
3911                 err(1, "setup_globals: strdup");
3912 }
3913
3914 void
3915 workaround(void)
3916 {
3917         int                     i;
3918         Atom                    netwmcheck, netwmname, utf8_string;
3919         Window                  root;
3920
3921         /* work around sun jdk bugs, code from wmname */
3922         netwmcheck = XInternAtom(display, "_NET_SUPPORTING_WM_CHECK", False);
3923         netwmname = XInternAtom(display, "_NET_WM_NAME", False);
3924         utf8_string = XInternAtom(display, "UTF8_STRING", False);
3925         for (i = 0; i < ScreenCount(display); i++) {
3926                 root = screens[i].root;
3927                 XChangeProperty(display, root, netwmcheck, XA_WINDOW, 32,
3928                     PropModeReplace, (unsigned char *)&root, 1);
3929                 XChangeProperty(display, root, netwmname, utf8_string, 8,
3930                     PropModeReplace, "LG3D", strlen("LG3D"));
3931         }
3932 }
3933
3934 int
3935 main(int argc, char *argv[])
3936 {
3937         struct passwd           *pwd;
3938         struct swm_region       *r, *rr;
3939         struct ws_win           *winfocus = NULL;
3940         char                    conf[PATH_MAX], *cfile = NULL;
3941         struct stat             sb;
3942         XEvent                  e;
3943         int                     xfd, i;
3944         fd_set                  rd;
3945
3946         start_argv = argv;
3947         fprintf(stderr, "Welcome to scrotwm V%s cvs tag: %s\n",
3948             SWM_VERSION, cvstag);
3949         if (!setlocale(LC_CTYPE, "") || !XSupportsLocale())
3950                 warnx("no locale support");
3951
3952         if (!(display = XOpenDisplay(0)))
3953                 errx(1, "can not open display");
3954
3955         if (active_wm())
3956                 errx(1, "other wm running");
3957
3958         /* handle some signale */
3959         installsignal(SIGINT, "INT");
3960         installsignal(SIGHUP, "HUP");
3961         installsignal(SIGQUIT, "QUIT");
3962         installsignal(SIGTERM, "TERM");
3963         installsignal(SIGCHLD, "CHLD");
3964
3965         astate = XInternAtom(display, "WM_STATE", False);
3966         aprot = XInternAtom(display, "WM_PROTOCOLS", False);
3967         adelete = XInternAtom(display, "WM_DELETE_WINDOW", False);
3968
3969         /* look for local and global conf file */
3970         pwd = getpwuid(getuid());
3971         if (pwd == NULL)
3972                 errx(1, "invalid user %d", getuid());
3973
3974         setup_screens();
3975         setup_globals();
3976         setup_keys();
3977         setup_quirks();
3978         setup_spawn();
3979
3980         snprintf(conf, sizeof conf, "%s/.%s", pwd->pw_dir, SWM_CONF_FILE);
3981         if (stat(conf, &sb) != -1) {
3982                 if (S_ISREG(sb.st_mode))
3983                         cfile = conf;
3984         } else {
3985                 /* try global conf file */
3986                 snprintf(conf, sizeof conf, "/etc/%s", SWM_CONF_FILE);
3987                 if (!stat(conf, &sb))
3988                         if (S_ISREG(sb.st_mode))
3989                                 cfile = conf;
3990         }
3991         if (cfile)
3992                 conf_load(cfile);
3993
3994         /* setup all bars */
3995         for (i = 0; i < ScreenCount(display); i++)
3996                 TAILQ_FOREACH(r, &screens[i].rl, entry) {
3997                         if (winfocus == NULL)
3998                                 winfocus = TAILQ_FIRST(&r->ws->winlist);
3999                         bar_setup(r);
4000                 }
4001
4002         /* set some values to work around bad programs */
4003         workaround();
4004
4005         grabkeys();
4006         stack();
4007
4008         xfd = ConnectionNumber(display);
4009         while (running) {
4010                 while (XPending(display)) {
4011                         XNextEvent(display, &e);
4012                         if (e.type < LASTEvent) {
4013                                 dumpevent(&e);
4014                                 if (handler[e.type])
4015                                         handler[e.type](&e);
4016                                 else
4017                                         DNPRINTF(SWM_D_EVENT,
4018                                             "win: %lu unknown event: %d\n",
4019                                             e.xany.window, e.type);
4020                         } else {
4021                                 switch (e.type - xrandr_eventbase) {
4022                                 case RRScreenChangeNotify:
4023                                         screenchange(&e);
4024                                         break;
4025                                 default:
4026                                         DNPRINTF(SWM_D_EVENT,
4027                                             "win: %lu unknown xrandr event: "
4028                                             "%d\n", e.xany.window, e.type);
4029                                         break;
4030                                 }
4031                         }
4032                 }
4033
4034                 /* if we are being restarted go focus on first window */
4035                 if (winfocus) {
4036                         rr = TAILQ_FIRST(&screens[0].rl);
4037                         /* move pointer to first screen */
4038                         if (ScreenCount(display) > 1 || outputs > 1)
4039                                 XWarpPointer(display, None, rr->s[0].root,
4040                                     0, 0, 0, 0, rr->g.x,
4041                                     rr->g.y + bar_enabled ? bar_height : 0);
4042
4043                         focus_win(winfocus);
4044                         winfocus = NULL;
4045                         continue;
4046                 }
4047
4048                 FD_ZERO(&rd);
4049                 FD_SET(xfd, &rd);
4050                 if (select(xfd + 1, &rd, NULL, NULL, NULL) == -1)
4051                         if (errno != EINTR)
4052                                 errx(1, "select failed");
4053                 if (bar_alarm) {
4054                         bar_alarm = 0;
4055                         bar_update();
4056                 }
4057         }
4058
4059         bar_extra_stop();
4060
4061         XCloseDisplay(display);
4062
4063         return (0);
4064 }