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