]> code.delx.au - spectrwm/blob - spectrwm.c
Remove unused global atom variables.
[spectrwm] / spectrwm.c
1 /*
2 * Copyright (c) 2009-2012 Marco Peereboom <marco@peereboom.us>
3 * Copyright (c) 2009-2011 Ryan McBride <mcbride@countersiege.com>
4 * Copyright (c) 2009 Darrin Chandler <dwchandler@stilyagin.com>
5 * Copyright (c) 2009 Pierre-Yves Ritschard <pyr@spootnik.org>
6 * Copyright (c) 2010 Tuukka Kataja <stuge@xor.fi>
7 * Copyright (c) 2011 Jason L. Wright <jason@thought.net>
8 * Copyright (c) 2011-2013 Reginald Kennedy <rk@rejii.com>
9 * Copyright (c) 2011-2012 Lawrence Teo <lteo@lteo.net>
10 * Copyright (c) 2011-2012 Tiago Cunha <tcunha@gmx.com>
11 * Copyright (c) 2012-2013 David Hill <dhill@mindcry.org>
12 *
13 * Permission to use, copy, modify, and distribute this software for any
14 * purpose with or without fee is hereby granted, provided that the above
15 * copyright notice and this permission notice appear in all copies.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
18 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
20 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
21 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
22 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
23 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
24 */
25 /*
26 * Much code and ideas taken from dwm under the following license:
27 * MIT/X Consortium License
28 *
29 * 2006-2008 Anselm R Garbe <garbeam at gmail dot com>
30 * 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
31 * 2006-2007 Jukka Salmi <jukka at salmi dot ch>
32 * 2007 Premysl Hruby <dfenze at gmail dot com>
33 * 2007 Szabolcs Nagy <nszabolcs at gmail dot com>
34 * 2007 Christof Musik <christof at sendfax dot de>
35 * 2007-2008 Enno Gottox Boland <gottox at s01 dot de>
36 * 2007-2008 Peter Hartlich <sgkkr at hartlich dot com>
37 * 2008 Martin Hurton <martin dot hurton at gmail dot com>
38 *
39 * Permission is hereby granted, free of charge, to any person obtaining a
40 * copy of this software and associated documentation files (the "Software"),
41 * to deal in the Software without restriction, including without limitation
42 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
43 * and/or sell copies of the Software, and to permit persons to whom the
44 * Software is furnished to do so, subject to the following conditions:
45 *
46 * The above copyright notice and this permission notice shall be included in
47 * all copies or substantial portions of the Software.
48 *
49 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
50 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
51 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
52 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
53 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
54 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
55 * DEALINGS IN THE SOFTWARE.
56 */
57
58 /* kernel includes */
59 #include <sys/types.h>
60 #include <sys/time.h>
61 #include <sys/stat.h>
62 #include <sys/wait.h>
63 #include <sys/queue.h>
64 #include <sys/param.h>
65 #include <sys/select.h>
66 #if defined(__linux__)
67 #include "tree.h"
68 #elif defined(__OpenBSD__)
69 #include <sys/tree.h>
70 #elif defined(__FreeBSD__)
71 #include <sys/tree.h>
72 #else
73 #include "tree.h"
74 #endif
75
76 /* /usr/includes */
77 #include <ctype.h>
78 #include <err.h>
79 #include <errno.h>
80 #include <fcntl.h>
81 #include <locale.h>
82 #include <paths.h>
83 #include <pwd.h>
84 #include <signal.h>
85 #include <stdio.h>
86 #include <stdlib.h>
87 #include <string.h>
88 #include <time.h>
89 #include <unistd.h>
90 #include <util.h>
91 #include <X11/cursorfont.h>
92 #include <X11/extensions/Xrandr.h>
93 #include <X11/Xcursor/Xcursor.h>
94 #include <X11/Xft/Xft.h>
95 #include <X11/Xlib-xcb.h>
96 #include <xcb/xcb_atom.h>
97 #include <xcb/xcb_aux.h>
98 #include <xcb/xcb_event.h>
99 #include <xcb/xcb_icccm.h>
100 #include <xcb/xcb_keysyms.h>
101 #include <xcb/xtest.h>
102 #include <xcb/randr.h>
103
104 /* local includes */
105 #include "version.h"
106 #ifdef __OSX__
107 #include <osx.h>
108 #endif
109
110 #ifdef SPECTRWM_BUILDSTR
111 static const char *buildstr = SPECTRWM_BUILDSTR;
112 #else
113 static const char *buildstr = SPECTRWM_VERSION;
114 #endif
115
116 #if !defined(__CYGWIN__) /* cygwin chokes on xrandr stuff */
117 # if RANDR_MAJOR < 1
118 # error XRandR versions less than 1.0 are not supported
119 #endif
120
121 # if RANDR_MAJOR >= 1
122 # if RANDR_MINOR >= 2
123 # define SWM_XRR_HAS_CRTC
124 # endif
125 # endif
126 #endif /* __CYGWIN__ */
127
128 #ifndef XCB_ICCCM_NUM_WM_HINTS_ELEMENTS
129 #define XCB_ICCCM_SIZE_HINT_P_MIN_SIZE XCB_SIZE_HINT_P_MIN_SIZE
130 #define XCB_ICCCM_SIZE_HINT_P_MAX_SIZE XCB_SIZE_HINT_P_MAX_SIZE
131 #define XCB_ICCCM_SIZE_HINT_P_RESIZE_INC XCB_SIZE_HINT_P_RESIZE_INC
132 #define XCB_ICCCM_WM_HINT_INPUT XCB_WM_HINT_INPUT
133 #define XCB_ICCCM_WM_HINT_X_URGENCY XCB_WM_HINT_X_URGENCY
134 #define XCB_ICCCM_WM_STATE_ICONIC XCB_WM_STATE_ICONIC
135 #define XCB_ICCCM_WM_STATE_WITHDRAWN XCB_WM_STATE_WITHDRAWN
136 #define XCB_ICCCM_WM_STATE_NORMAL XCB_WM_STATE_NORMAL
137 #define xcb_icccm_get_text_property_reply_t xcb_get_text_property_reply_t
138 #define xcb_icccm_get_text_property_reply_wipe xcb_get_text_property_reply_wipe
139 #define xcb_icccm_get_wm_class xcb_get_wm_class
140 #define xcb_icccm_get_wm_class_reply xcb_get_wm_class_reply
141 #define xcb_icccm_get_wm_class_reply_t xcb_get_wm_class_reply_t
142 #define xcb_icccm_get_wm_class_reply_wipe xcb_get_wm_class_reply_wipe
143 #define xcb_icccm_get_wm_hints xcb_get_wm_hints
144 #define xcb_icccm_get_wm_hints_reply xcb_get_wm_hints_reply
145 #define xcb_icccm_get_wm_name xcb_get_wm_name
146 #define xcb_icccm_get_wm_name_reply xcb_get_wm_name_reply
147 #define xcb_icccm_get_wm_normal_hints xcb_get_wm_normal_hints
148 #define xcb_icccm_get_wm_normal_hints_reply xcb_get_wm_normal_hints_reply
149 #define xcb_icccm_get_wm_protocols xcb_get_wm_protocols
150 #define xcb_icccm_get_wm_protocols_reply xcb_get_wm_protocols_reply
151 #define xcb_icccm_get_wm_protocols_reply_t xcb_get_wm_protocols_reply_t
152 #define xcb_icccm_get_wm_protocols_reply_wipe xcb_get_wm_protocols_reply_wipe
153 #define xcb_icccm_get_wm_transient_for xcb_get_wm_transient_for
154 #define xcb_icccm_get_wm_transient_for_reply xcb_get_wm_transient_for_reply
155 #define xcb_icccm_wm_hints_t xcb_wm_hints_t
156 #endif
157
158 /*#define SWM_DEBUG*/
159 #ifdef SWM_DEBUG
160 #define DPRINTF(x...) do { \
161 if (swm_debug) \
162 fprintf(stderr, x); \
163 } while (0)
164 #define DNPRINTF(n,x...) do { \
165 if (swm_debug & n) { \
166 fprintf(stderr, "%ld ", (long)(time(NULL) - time_started)); \
167 fprintf(stderr, x); \
168 } \
169 } while (0)
170 #define SWM_D_MISC 0x0001
171 #define SWM_D_EVENT 0x0002
172 #define SWM_D_WS 0x0004
173 #define SWM_D_FOCUS 0x0008
174 #define SWM_D_MOVE 0x0010
175 #define SWM_D_STACK 0x0020
176 #define SWM_D_MOUSE 0x0040
177 #define SWM_D_PROP 0x0080
178 #define SWM_D_CLASS 0x0100
179 #define SWM_D_KEY 0x0200
180 #define SWM_D_QUIRK 0x0400
181 #define SWM_D_SPAWN 0x0800
182 #define SWM_D_EVENTQ 0x1000
183 #define SWM_D_CONF 0x2000
184 #define SWM_D_BAR 0x4000
185 #define SWM_D_INIT 0x8000
186
187 u_int32_t swm_debug = 0
188 | SWM_D_MISC
189 | SWM_D_EVENT
190 | SWM_D_WS
191 | SWM_D_FOCUS
192 | SWM_D_MOVE
193 | SWM_D_STACK
194 | SWM_D_MOUSE
195 | SWM_D_PROP
196 | SWM_D_CLASS
197 | SWM_D_KEY
198 | SWM_D_QUIRK
199 | SWM_D_SPAWN
200 | SWM_D_EVENTQ
201 | SWM_D_CONF
202 | SWM_D_BAR
203 | SWM_D_INIT
204 ;
205 #else
206 #define DPRINTF(x...)
207 #define DNPRINTF(n,x...)
208 #endif
209
210 /* convert 8-bit to 16-bit */
211 #define RGB_8_TO_16(col) ((col) << 8) + (col)
212
213 #define PIXEL_TO_XRENDERCOLOR(px, xrc) \
214 xrc.red = RGB_8_TO_16((px) >> 16 & 0xff); \
215 xrc.green = RGB_8_TO_16((px) >> 8 & 0xff); \
216 xrc.blue = RGB_8_TO_16((px) & 0xff); \
217 xrc.alpha = 0xffff;
218
219 #define LENGTH(x) (int)(sizeof (x) / sizeof (x)[0])
220 #define MODKEY XCB_MOD_MASK_1
221 #define CLEANMASK(mask) ((mask) & ~(numlockmask | XCB_MOD_MASK_LOCK))
222 #define BUTTONMASK (XCB_EVENT_MASK_BUTTON_PRESS | \
223 XCB_EVENT_MASK_BUTTON_RELEASE)
224 #define MOUSEMASK (BUTTONMASK|XCB_EVENT_MASK_POINTER_MOTION)
225 #define SWM_PROPLEN (16)
226 #define SWM_FUNCNAME_LEN (32)
227 #define SWM_KEYS_LEN (255)
228 #define SWM_QUIRK_LEN (64)
229 #define X(r) (r)->g.x
230 #define Y(r) (r)->g.y
231 #define WIDTH(r) (r)->g.w
232 #define HEIGHT(r) (r)->g.h
233 #define BORDER(w) ((w)->bordered ? border_width : 0)
234 #define MAX_X(r) ((r)->g.x + (r)->g.w)
235 #define MAX_Y(r) ((r)->g.y + (r)->g.h)
236 #define SH_MIN(w) (w)->sh.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE
237 #define SH_MIN_W(w) (w)->sh.min_width
238 #define SH_MIN_H(w) (w)->sh.min_height
239 #define SH_MAX(w) (w)->sh.flags & XCB_ICCCM_SIZE_HINT_P_MAX_SIZE
240 #define SH_MAX_W(w) (w)->sh.max_width
241 #define SH_MAX_H(w) (w)->sh.max_height
242 #define SH_INC(w) (w)->sh.flags & XCB_ICCCM_SIZE_HINT_P_RESIZE_INC
243 #define SH_INC_W(w) (w)->sh.width_inc
244 #define SH_INC_H(w) (w)->sh.height_inc
245 #define SWM_MAX_FONT_STEPS (3)
246 #define WINID(w) ((w) ? (w)->id : XCB_WINDOW_NONE)
247 #define YESNO(x) ((x) ? "yes" : "no")
248
249 /* Constrain Window flags */
250 #define SWM_CW_RESIZABLE (0x01)
251 #define SWM_CW_SOFTBOUNDARY (0x02)
252 #define SWM_CW_HARDBOUNDARY (0x04)
253 #define SWM_CW_RIGHT (0x10)
254 #define SWM_CW_LEFT (0x20)
255 #define SWM_CW_BOTTOM (0x40)
256 #define SWM_CW_TOP (0x80)
257 #define SWM_CW_ALLSIDES (0xf0)
258
259 #define SWM_FOCUS_DEFAULT (0)
260 #define SWM_FOCUS_FOLLOW (1)
261 #define SWM_FOCUS_MANUAL (2)
262
263 #define SWM_CK_NONE 0
264 #define SWM_CK_ALL 0xf
265 #define SWM_CK_FOCUS 0x1
266 #define SWM_CK_POINTER 0x2
267 #define SWM_CK_FALLBACK 0x4
268 #define SWM_CK_REGION 0x8
269
270 #define SWM_CONF_DEFAULT (0)
271 #define SWM_CONF_KEYMAPPING (1)
272
273 #ifndef SWM_LIB
274 #define SWM_LIB "/usr/local/lib/libswmhack.so"
275 #endif
276
277 char **start_argv;
278 xcb_atom_t a_state;
279 xcb_atom_t a_prot;
280 xcb_atom_t a_delete;
281 xcb_atom_t a_takefocus;
282 xcb_atom_t a_utf8_string;
283 xcb_atom_t a_swm_iconic;
284 xcb_atom_t a_swm_ws;
285 volatile sig_atomic_t running = 1;
286 volatile sig_atomic_t restart_wm = 0;
287 xcb_timestamp_t last_event_time = 0;
288 int outputs = 0;
289 int other_wm;
290 int xrandr_support;
291 int xrandr_eventbase;
292 unsigned int numlockmask = 0;
293
294 Display *display;
295 xcb_connection_t *conn;
296 xcb_key_symbols_t *syms;
297
298 int boundary_width = 50;
299 int cycle_empty = 0;
300 int cycle_visible = 0;
301 int term_width = 0;
302 int font_adjusted = 0;
303 unsigned int mod_key = MODKEY;
304
305 /* dmenu search */
306 struct swm_region *search_r;
307 int select_list_pipe[2];
308 int select_resp_pipe[2];
309 pid_t searchpid;
310 volatile sig_atomic_t search_resp;
311 int search_resp_action;
312
313 struct search_window {
314 TAILQ_ENTRY(search_window) entry;
315 int idx;
316 struct ws_win *win;
317 xcb_gcontext_t gc;
318 xcb_window_t indicator;
319 };
320 TAILQ_HEAD(search_winlist, search_window);
321 struct search_winlist search_wl;
322
323 /* search actions */
324 enum {
325 SWM_SEARCH_NONE,
326 SWM_SEARCH_UNICONIFY,
327 SWM_SEARCH_NAME_WORKSPACE,
328 SWM_SEARCH_SEARCH_WORKSPACE,
329 SWM_SEARCH_SEARCH_WINDOW
330 };
331
332 #define SWM_STACK_TOP (0)
333 #define SWM_STACK_BOTTOM (1)
334 #define SWM_STACK_ABOVE (2)
335 #define SWM_STACK_BELOW (3)
336
337 /* dialog windows */
338 double dialog_ratio = 0.6;
339 /* status bar */
340 #define SWM_BAR_MAX (256)
341 #define SWM_BAR_JUSTIFY_LEFT (0)
342 #define SWM_BAR_JUSTIFY_CENTER (1)
343 #define SWM_BAR_JUSTIFY_RIGHT (2)
344 #define SWM_BAR_OFFSET (4)
345 #define SWM_BAR_FONTS "-*-terminus-medium-*-*-*-12-*-*-*-*-*-*-*," \
346 "-*-profont-*-*-*-*-12-*-*-*-*-*-*-*," \
347 "-*-times-medium-r-*-*-12-*-*-*-*-*-*-*," \
348 "-misc-fixed-medium-r-*-*-12-*-*-*-*-*-*-*," \
349 "-*-*-*-r-*-*-*-*-*-*-*-*-*-*"
350
351 #ifdef X_HAVE_UTF8_STRING
352 #define DRAWSTRING(x...) Xutf8DrawString(x)
353 #else
354 #define DRAWSTRING(x...) XmbDrawString(x)
355 #endif
356
357 char *bar_argv[] = { NULL, NULL };
358 int bar_pipe[2];
359 char bar_ext[SWM_BAR_MAX];
360 char bar_ext_buf[SWM_BAR_MAX];
361 char bar_vertext[SWM_BAR_MAX];
362 int bar_version = 0;
363 int bar_enabled = 1;
364 int bar_border_width = 1;
365 int bar_at_bottom = 0;
366 int bar_extra = 0;
367 int bar_verbose = 1;
368 int bar_height = 0;
369 int bar_justify = SWM_BAR_JUSTIFY_LEFT;
370 char *bar_format = NULL;
371 int stack_enabled = 1;
372 int clock_enabled = 1;
373 int urgent_enabled = 0;
374 char *clock_format = NULL;
375 int title_name_enabled = 0;
376 int title_class_enabled = 0;
377 int window_name_enabled = 0;
378 int focus_mode = SWM_FOCUS_DEFAULT;
379 int focus_close = SWM_STACK_BELOW;
380 int focus_close_wrap = 1;
381 int focus_default = SWM_STACK_TOP;
382 int spawn_position = SWM_STACK_TOP;
383 int disable_border = 0;
384 int border_width = 1;
385 int region_padding = 0;
386 int tile_gap = 0;
387 int verbose_layout = 0;
388 time_t time_started;
389 pid_t bar_pid;
390 XFontSet bar_fs;
391 XFontSetExtents *bar_fs_extents;
392 XftFont *bar_font;
393 int bar_font_legacy = 1;
394 char *bar_fonts;
395 XftColor bar_font_color;
396 struct passwd *pwd;
397 char *startup_exception;
398 unsigned int nr_exceptions = 0;
399
400 /* layout manager data */
401 struct swm_geometry {
402 int x;
403 int y;
404 int w;
405 int h;
406 };
407
408 struct swm_screen;
409 struct workspace;
410
411 struct swm_bar {
412 xcb_window_t id;
413 xcb_pixmap_t buffer;
414 struct swm_geometry g;
415 };
416
417 /* virtual "screens" */
418 struct swm_region {
419 TAILQ_ENTRY(swm_region) entry;
420 xcb_window_t id;
421 struct swm_geometry g;
422 struct workspace *ws; /* current workspace on this region */
423 struct workspace *ws_prior; /* prior workspace on this region */
424 struct swm_screen *s; /* screen idx */
425 struct swm_bar *bar;
426 };
427 TAILQ_HEAD(swm_region_list, swm_region);
428
429 struct ws_win {
430 TAILQ_ENTRY(ws_win) entry;
431 xcb_window_t id;
432 xcb_window_t transient;
433 struct ws_win *focus_child; /* focus on child transient */
434 struct swm_geometry g; /* current geometry */
435 struct swm_geometry g_float; /* region coordinates */
436 int g_floatvalid; /* g_float geometry validity */
437 int floatmaxed; /* whether maxed by max_stack */
438 int floating;
439 int manual;
440 int32_t mapped;
441 int32_t iconic;
442 int bordered;
443 unsigned int ewmh_flags;
444 int font_size_boundary[SWM_MAX_FONT_STEPS];
445 int font_steps;
446 int last_inc;
447 int can_delete;
448 int take_focus;
449 int java;
450 unsigned long quirks;
451 struct workspace *ws; /* always valid */
452 struct swm_screen *s; /* always valid, never changes */
453 xcb_get_geometry_reply_t *wa;
454 xcb_size_hints_t sh;
455 xcb_icccm_get_wm_class_reply_t ch;
456 xcb_icccm_wm_hints_t hints;
457 };
458 TAILQ_HEAD(ws_win_list, ws_win);
459
460 /* pid goo */
461 struct pid_e {
462 TAILQ_ENTRY(pid_e) entry;
463 pid_t pid;
464 int ws;
465 };
466 TAILQ_HEAD(pid_list, pid_e);
467 struct pid_list pidlist = TAILQ_HEAD_INITIALIZER(pidlist);
468
469 /* layout handlers */
470 void stack(void);
471 void vertical_config(struct workspace *, int);
472 void vertical_stack(struct workspace *, struct swm_geometry *);
473 void horizontal_config(struct workspace *, int);
474 void horizontal_stack(struct workspace *, struct swm_geometry *);
475 void max_stack(struct workspace *, struct swm_geometry *);
476 void plain_stacker(struct workspace *);
477 void fancy_stacker(struct workspace *);
478
479 struct layout {
480 void (*l_stack)(struct workspace *, struct swm_geometry *);
481 void (*l_config)(struct workspace *, int);
482 u_int32_t flags;
483 #define SWM_L_FOCUSPREV (1<<0)
484 #define SWM_L_MAPONFOCUS (1<<1)
485 void (*l_string)(struct workspace *);
486 } layouts[] = {
487 /* stack, configure */
488 { vertical_stack, vertical_config, 0, plain_stacker },
489 { horizontal_stack, horizontal_config, 0, plain_stacker },
490 { max_stack, NULL,
491 SWM_L_MAPONFOCUS | SWM_L_FOCUSPREV, plain_stacker },
492 { NULL, NULL, 0, NULL },
493 };
494
495 /* position of max_stack mode in the layouts array, index into layouts! */
496 #define SWM_V_STACK (0)
497 #define SWM_H_STACK (1)
498 #define SWM_MAX_STACK (2)
499
500 #define SWM_H_SLICE (32)
501 #define SWM_V_SLICE (32)
502
503 /* define work spaces */
504 struct workspace {
505 int idx; /* workspace index */
506 char *name; /* workspace name */
507 int always_raise; /* raise windows on focus */
508 int bar_enabled; /* bar visibility */
509 struct layout *cur_layout; /* current layout handlers */
510 struct ws_win *focus; /* may be NULL */
511 struct ws_win *focus_prev; /* may be NULL */
512 struct ws_win *focus_pending; /* may be NULL */
513 struct swm_region *r; /* may be NULL */
514 struct swm_region *old_r; /* may be NULL */
515 struct ws_win_list winlist; /* list of windows in ws */
516 struct ws_win_list unmanagedlist; /* list of dead windows in ws */
517 char stacker[10]; /* display stacker and layout */
518
519 /* stacker state */
520 struct {
521 int horizontal_msize;
522 int horizontal_mwin;
523 int horizontal_stacks;
524 int horizontal_flip;
525 int vertical_msize;
526 int vertical_mwin;
527 int vertical_stacks;
528 int vertical_flip;
529 } l_state;
530 };
531
532 enum {
533 SWM_S_COLOR_BAR,
534 SWM_S_COLOR_BAR_BORDER,
535 SWM_S_COLOR_BAR_BORDER_UNFOCUS,
536 SWM_S_COLOR_BAR_FONT,
537 SWM_S_COLOR_FOCUS,
538 SWM_S_COLOR_UNFOCUS,
539 SWM_S_COLOR_MAX
540 };
541
542 /* physical screen mapping */
543 #define SWM_WS_MAX (22) /* hard limit */
544 int workspace_limit = 10; /* soft limit */
545
546 struct swm_screen {
547 int idx; /* screen index */
548 struct swm_region_list rl; /* list of regions on this screen */
549 struct swm_region_list orl; /* list of old regions */
550 xcb_window_t root;
551 struct workspace ws[SWM_WS_MAX];
552 struct swm_region *r_focus;
553
554 /* colors */
555 struct {
556 uint32_t pixel;
557 char *name;
558 } c[SWM_S_COLOR_MAX];
559
560 xcb_gcontext_t bar_gc;
561 GC bar_gc_legacy;
562 };
563 struct swm_screen *screens;
564
565 /* args to functions */
566 union arg {
567 int id;
568 #define SWM_ARG_ID_FOCUSNEXT (0)
569 #define SWM_ARG_ID_FOCUSPREV (1)
570 #define SWM_ARG_ID_FOCUSMAIN (2)
571 #define SWM_ARG_ID_SWAPNEXT (10)
572 #define SWM_ARG_ID_SWAPPREV (11)
573 #define SWM_ARG_ID_SWAPMAIN (12)
574 #define SWM_ARG_ID_MOVELAST (13)
575 #define SWM_ARG_ID_MASTERSHRINK (20)
576 #define SWM_ARG_ID_MASTERGROW (21)
577 #define SWM_ARG_ID_MASTERADD (22)
578 #define SWM_ARG_ID_MASTERDEL (23)
579 #define SWM_ARG_ID_FLIPLAYOUT (24)
580 #define SWM_ARG_ID_STACKRESET (30)
581 #define SWM_ARG_ID_STACKINIT (31)
582 #define SWM_ARG_ID_CYCLEWS_UP (40)
583 #define SWM_ARG_ID_CYCLEWS_DOWN (41)
584 #define SWM_ARG_ID_CYCLERG_UP (42)
585 #define SWM_ARG_ID_CYCLERG_DOWN (43)
586 #define SWM_ARG_ID_CYCLEWS_UP_ALL (44)
587 #define SWM_ARG_ID_CYCLEWS_DOWN_ALL (45)
588 #define SWM_ARG_ID_CYCLEWS_MOVE_UP (46)
589 #define SWM_ARG_ID_CYCLEWS_MOVE_DOWN (47)
590 #define SWM_ARG_ID_STACKINC (50)
591 #define SWM_ARG_ID_STACKDEC (51)
592 #define SWM_ARG_ID_SS_ALL (60)
593 #define SWM_ARG_ID_SS_WINDOW (61)
594 #define SWM_ARG_ID_DONTCENTER (70)
595 #define SWM_ARG_ID_CENTER (71)
596 #define SWM_ARG_ID_KILLWINDOW (80)
597 #define SWM_ARG_ID_DELETEWINDOW (81)
598 #define SWM_ARG_ID_WIDTHGROW (90)
599 #define SWM_ARG_ID_WIDTHSHRINK (91)
600 #define SWM_ARG_ID_HEIGHTGROW (92)
601 #define SWM_ARG_ID_HEIGHTSHRINK (93)
602 #define SWM_ARG_ID_MOVEUP (100)
603 #define SWM_ARG_ID_MOVEDOWN (101)
604 #define SWM_ARG_ID_MOVELEFT (102)
605 #define SWM_ARG_ID_MOVERIGHT (103)
606 #define SWM_ARG_ID_BAR_TOGGLE (110)
607 #define SWM_ARG_ID_BAR_TOGGLE_WS (111)
608 char **argv;
609 };
610
611 /* quirks */
612 struct quirk {
613 TAILQ_ENTRY(quirk) entry;
614 char *class;
615 char *name;
616 unsigned long quirk;
617 #define SWM_Q_FLOAT (1<<0) /* float this window */
618 #define SWM_Q_TRANSSZ (1<<1) /* transiend window size too small */
619 #define SWM_Q_ANYWHERE (1<<2) /* don't position this window */
620 #define SWM_Q_XTERM_FONTADJ (1<<3) /* adjust xterm fonts when resizing */
621 #define SWM_Q_FULLSCREEN (1<<4) /* remove border */
622 #define SWM_Q_FOCUSPREV (1<<5) /* focus on caller */
623 #define SWM_Q_NOFOCUSONMAP (1<<6) /* Don't focus on window when mapped. */
624 #define SWM_Q_FOCUSONMAP_SINGLE (1<<7) /* Only focus if single win of type. */
625 };
626 TAILQ_HEAD(quirk_list, quirk);
627 struct quirk_list quirks = TAILQ_HEAD_INITIALIZER(quirks);
628
629 /*
630 * Supported EWMH hints should be added to
631 * both the enum and the ewmh array
632 */
633 enum {
634 _NET_ACTIVE_WINDOW,
635 _NET_CLOSE_WINDOW,
636 _NET_MOVERESIZE_WINDOW,
637 _NET_WM_ACTION_ABOVE,
638 _NET_WM_ACTION_CLOSE,
639 _NET_WM_ACTION_FULLSCREEN,
640 _NET_WM_ACTION_MOVE,
641 _NET_WM_ACTION_RESIZE,
642 _NET_WM_ALLOWED_ACTIONS,
643 _NET_WM_NAME,
644 _NET_WM_STATE,
645 _NET_WM_STATE_ABOVE,
646 _NET_WM_STATE_FULLSCREEN,
647 _NET_WM_STATE_HIDDEN,
648 _NET_WM_STATE_MAXIMIZED_HORZ,
649 _NET_WM_STATE_MAXIMIZED_VERT,
650 _NET_WM_STATE_SKIP_PAGER,
651 _NET_WM_STATE_SKIP_TASKBAR,
652 _NET_WM_WINDOW_TYPE,
653 _NET_WM_WINDOW_TYPE_DIALOG,
654 _NET_WM_WINDOW_TYPE_DOCK,
655 _NET_WM_WINDOW_TYPE_NORMAL,
656 _NET_WM_WINDOW_TYPE_SPLASH,
657 _NET_WM_WINDOW_TYPE_TOOLBAR,
658 _NET_WM_WINDOW_TYPE_UTILITY,
659 _SWM_WM_STATE_MANUAL,
660 SWM_EWMH_HINT_MAX
661 };
662
663 struct ewmh_hint {
664 char *name;
665 xcb_atom_t atom;
666 } ewmh[SWM_EWMH_HINT_MAX] = {
667 /* must be in same order as in the enum */
668 {"_NET_ACTIVE_WINDOW", XCB_ATOM_NONE},
669 {"_NET_CLOSE_WINDOW", XCB_ATOM_NONE},
670 {"_NET_MOVERESIZE_WINDOW", XCB_ATOM_NONE},
671 {"_NET_WM_ACTION_ABOVE", XCB_ATOM_NONE},
672 {"_NET_WM_ACTION_CLOSE", XCB_ATOM_NONE},
673 {"_NET_WM_ACTION_FULLSCREEN", XCB_ATOM_NONE},
674 {"_NET_WM_ACTION_MOVE", XCB_ATOM_NONE},
675 {"_NET_WM_ACTION_RESIZE", XCB_ATOM_NONE},
676 {"_NET_WM_ALLOWED_ACTIONS", XCB_ATOM_NONE},
677 {"_NET_WM_NAME", XCB_ATOM_NONE},
678 {"_NET_WM_STATE", XCB_ATOM_NONE},
679 {"_NET_WM_STATE_ABOVE", XCB_ATOM_NONE},
680 {"_NET_WM_STATE_FULLSCREEN", XCB_ATOM_NONE},
681 {"_NET_WM_STATE_HIDDEN", XCB_ATOM_NONE},
682 {"_NET_WM_STATE_MAXIMIZED_HORZ", XCB_ATOM_NONE},
683 {"_NET_WM_STATE_MAXIMIZED_VERT", XCB_ATOM_NONE},
684 {"_NET_WM_STATE_SKIP_PAGER", XCB_ATOM_NONE},
685 {"_NET_WM_STATE_SKIP_TASKBAR", XCB_ATOM_NONE},
686 {"_NET_WM_WINDOW_TYPE", XCB_ATOM_NONE},
687 {"_NET_WM_WINDOW_TYPE_DIALOG", XCB_ATOM_NONE},
688 {"_NET_WM_WINDOW_TYPE_DOCK", XCB_ATOM_NONE},
689 {"_NET_WM_WINDOW_TYPE_NORMAL", XCB_ATOM_NONE},
690 {"_NET_WM_WINDOW_TYPE_SPLASH", XCB_ATOM_NONE},
691 {"_NET_WM_WINDOW_TYPE_TOOLBAR", XCB_ATOM_NONE},
692 {"_NET_WM_WINDOW_TYPE_UTILITY", XCB_ATOM_NONE},
693 {"_SWM_WM_STATE_MANUAL", XCB_ATOM_NONE},
694 };
695
696 /* Cursors */
697 enum {
698 XC_FLEUR,
699 XC_LEFT_PTR,
700 XC_BOTTOM_LEFT_CORNER,
701 XC_BOTTOM_RIGHT_CORNER,
702 XC_SIZING,
703 XC_TOP_LEFT_CORNER,
704 XC_TOP_RIGHT_CORNER,
705 XC_MAX
706 };
707
708 struct cursors {
709 char *name; /* Name used by Xcursor .*/
710 uint8_t cf_char; /* cursorfont index. */
711 xcb_cursor_t cid;
712 } cursors[XC_MAX] = {
713 {"fleur", XC_fleur, XCB_CURSOR_NONE},
714 {"left_ptr", XC_left_ptr, XCB_CURSOR_NONE},
715 {"bottom_left_corner", XC_bottom_left_corner, XCB_CURSOR_NONE},
716 {"bottom_right_corner", XC_bottom_right_corner, XCB_CURSOR_NONE},
717 {"sizing", XC_sizing, XCB_CURSOR_NONE},
718 {"top_left_corner", XC_top_left_corner, XCB_CURSOR_NONE},
719 {"top_right_corner", XC_top_right_corner, XCB_CURSOR_NONE},
720 };
721
722 #define SWM_SPAWN_OPTIONAL 0x1
723
724 /* spawn */
725 struct spawn_prog {
726 TAILQ_ENTRY(spawn_prog) entry;
727 char *name;
728 int argc;
729 char **argv;
730 int flags;
731 };
732 TAILQ_HEAD(spawn_list, spawn_prog);
733 struct spawn_list spawns = TAILQ_HEAD_INITIALIZER(spawns);
734
735 /* user/key callable function IDs */
736 enum keyfuncid {
737 KF_BAR_TOGGLE,
738 KF_BAR_TOGGLE_WS,
739 KF_BUTTON2,
740 KF_CYCLE_LAYOUT,
741 KF_FLIP_LAYOUT,
742 KF_FLOAT_TOGGLE,
743 KF_FOCUS_MAIN,
744 KF_FOCUS_NEXT,
745 KF_FOCUS_PREV,
746 KF_HEIGHT_GROW,
747 KF_HEIGHT_SHRINK,
748 KF_ICONIFY,
749 KF_MASTER_SHRINK,
750 KF_MASTER_GROW,
751 KF_MASTER_ADD,
752 KF_MASTER_DEL,
753 KF_MOVE_DOWN,
754 KF_MOVE_LEFT,
755 KF_MOVE_RIGHT,
756 KF_MOVE_UP,
757 KF_MVRG_1,
758 KF_MVRG_2,
759 KF_MVRG_3,
760 KF_MVRG_4,
761 KF_MVRG_5,
762 KF_MVRG_6,
763 KF_MVRG_7,
764 KF_MVRG_8,
765 KF_MVRG_9,
766 KF_MVWS_1,
767 KF_MVWS_2,
768 KF_MVWS_3,
769 KF_MVWS_4,
770 KF_MVWS_5,
771 KF_MVWS_6,
772 KF_MVWS_7,
773 KF_MVWS_8,
774 KF_MVWS_9,
775 KF_MVWS_10,
776 KF_MVWS_11,
777 KF_MVWS_12,
778 KF_MVWS_13,
779 KF_MVWS_14,
780 KF_MVWS_15,
781 KF_MVWS_16,
782 KF_MVWS_17,
783 KF_MVWS_18,
784 KF_MVWS_19,
785 KF_MVWS_20,
786 KF_MVWS_21,
787 KF_MVWS_22,
788 KF_NAME_WORKSPACE,
789 KF_QUIT,
790 KF_RAISE_TOGGLE,
791 KF_RESTART,
792 KF_RG_1,
793 KF_RG_2,
794 KF_RG_3,
795 KF_RG_4,
796 KF_RG_5,
797 KF_RG_6,
798 KF_RG_7,
799 KF_RG_8,
800 KF_RG_9,
801 KF_RG_NEXT,
802 KF_RG_PREV,
803 KF_SCREEN_NEXT,
804 KF_SCREEN_PREV,
805 KF_SEARCH_WIN,
806 KF_SEARCH_WORKSPACE,
807 KF_SPAWN_CUSTOM,
808 KF_STACK_INC,
809 KF_STACK_DEC,
810 KF_STACK_RESET,
811 KF_SWAP_MAIN,
812 KF_SWAP_NEXT,
813 KF_SWAP_PREV,
814 KF_UNICONIFY,
815 KF_VERSION,
816 KF_WIDTH_GROW,
817 KF_WIDTH_SHRINK,
818 KF_WIND_DEL,
819 KF_WIND_KILL,
820 KF_WS_1,
821 KF_WS_2,
822 KF_WS_3,
823 KF_WS_4,
824 KF_WS_5,
825 KF_WS_6,
826 KF_WS_7,
827 KF_WS_8,
828 KF_WS_9,
829 KF_WS_10,
830 KF_WS_11,
831 KF_WS_12,
832 KF_WS_13,
833 KF_WS_14,
834 KF_WS_15,
835 KF_WS_16,
836 KF_WS_17,
837 KF_WS_18,
838 KF_WS_19,
839 KF_WS_20,
840 KF_WS_21,
841 KF_WS_22,
842 KF_WS_NEXT,
843 KF_WS_NEXT_ALL,
844 KF_WS_NEXT_MOVE,
845 KF_WS_PREV,
846 KF_WS_PREV_ALL,
847 KF_WS_PREV_MOVE,
848 KF_WS_PRIOR,
849 KF_DUMPWINS, /* MUST BE LAST */
850 KF_INVALID
851 };
852
853 struct key {
854 RB_ENTRY(key) entry;
855 unsigned int mod;
856 KeySym keysym;
857 enum keyfuncid funcid;
858 char *spawn_name;
859 };
860 RB_HEAD(key_tree, key);
861
862 /* function prototypes */
863 void adjust_font(struct ws_win *);
864 void bar_class_name(char *, size_t, struct swm_region *);
865 void bar_class_title_name(char *, size_t, struct swm_region *);
866 void bar_cleanup(struct swm_region *);
867 void bar_extra_setup(void);
868 void bar_extra_stop(void);
869 int bar_extra_update(void);
870 void bar_fmt(const char *, char *, struct swm_region *, size_t);
871 void bar_fmt_expand(char *, size_t);
872 void bar_draw(void);
873 void bar_print(struct swm_region *, const char *);
874 void bar_print_legacy(struct swm_region *, const char *);
875 void bar_replace(char *, char *, struct swm_region *, size_t);
876 void bar_replace_pad(char *, int *, size_t);
877 char *bar_replace_seq(char *, char *, struct swm_region *, size_t *, size_t);
878 void bar_setup(struct swm_region *);
879 void bar_title_name(char *, size_t, struct swm_region *);
880 void bar_toggle(struct swm_region *, union arg *);
881 void bar_urgent(char *, size_t);
882 void bar_window_float(char *, size_t, struct swm_region *);
883 void bar_window_name(char *, size_t, struct swm_region *);
884 void bar_workspace_name(char *, size_t, struct swm_region *);
885 void buttonpress(xcb_button_press_event_t *);
886 void check_conn(void);
887 void clear_keys(void);
888 void clientmessage(xcb_client_message_event_t *);
889 void client_msg(struct ws_win *, xcb_atom_t, xcb_timestamp_t);
890 int conf_load(const char *, int);
891 void configurenotify(xcb_configure_notify_event_t *);
892 void configurerequest(xcb_configure_request_event_t *);
893 void config_win(struct ws_win *, xcb_configure_request_event_t *);
894 void constrain_window(struct ws_win *, struct swm_geometry *, int *);
895 int count_win(struct workspace *, int);
896 void cursors_cleanup(void);
897 void cursors_load(void);
898 void custom_region(char *);
899 void cyclerg(struct swm_region *, union arg *);
900 void cyclews(struct swm_region *, union arg *);
901 void cycle_layout(struct swm_region *, union arg *);
902 void destroynotify(xcb_destroy_notify_event_t *);
903 void dumpwins(struct swm_region *, union arg *);
904 int enable_wm(void);
905 void enternotify(xcb_enter_notify_event_t *);
906 void event_drain(uint8_t);
907 void event_error(xcb_generic_error_t *);
908 void event_handle(xcb_generic_event_t *);
909 void ewmh_autoquirk(struct ws_win *);
910 void ewmh_get_win_state(struct ws_win *);
911 int ewmh_set_win_fullscreen(struct ws_win *, int);
912 void ewmh_update_actions(struct ws_win *);
913 void ewmh_update_win_state(struct ws_win *, xcb_atom_t, long);
914 char *expand_tilde(const char *);
915 void expose(xcb_expose_event_t *);
916 void fake_keypress(struct ws_win *, xcb_keysym_t, uint16_t);
917 struct pid_e *find_pid(pid_t);
918 struct ws_win *find_unmanaged_window(xcb_window_t);
919 struct ws_win *find_window(xcb_window_t);
920 void floating_toggle(struct swm_region *, union arg *);
921 int floating_toggle_win(struct ws_win *);
922 void focus(struct swm_region *, union arg *);
923 #ifdef SWM_DEBUG
924 void focusin(xcb_focus_in_event_t *);
925 void focusout(xcb_focus_out_event_t *);
926 #endif
927 void focus_flush(void);
928 void focus_region(struct swm_region *);
929 void focusrg(struct swm_region *, union arg *);
930 void focus_win(struct ws_win *);
931 void fontset_init(void);
932 void free_window(struct ws_win *);
933 xcb_atom_t get_atom_from_string(const char *);
934 #ifdef SWM_DEBUG
935 char *get_atom_name(xcb_atom_t);
936 #endif
937 struct ws_win *get_focus_magic(struct ws_win *);
938 struct ws_win *get_focus_prev(struct ws_win *);
939 #ifdef SWM_DEBUG
940 char *get_notify_detail_label(uint8_t);
941 char *get_notify_mode_label(uint8_t);
942 #endif
943 struct ws_win *get_pointer_win(xcb_window_t);
944 struct ws_win *get_region_focus(struct swm_region *);
945 int get_region_index(struct swm_region *);
946 xcb_screen_t *get_screen(int);
947 xcb_window_t get_sibling(struct ws_win *, int);
948 int get_screen_count(void);
949 #ifdef SWM_DEBUG
950 char *get_stack_mode_name(uint8_t);
951 #endif
952 int32_t get_swm_iconic(struct ws_win *);
953 char *get_win_name(xcb_window_t);
954 int get_ws_idx(xcb_window_t);
955 uint32_t getstate(xcb_window_t);
956 void grabbuttons(struct ws_win *);
957 void grabkeys(void);
958 void grab_windows(void);
959 void iconify(struct swm_region *, union arg *);
960 int isxlfd(char *);
961 void keypress(xcb_key_press_event_t *);
962 int key_cmp(struct key *, struct key *);
963 void key_insert(unsigned int, KeySym, enum keyfuncid, const char *);
964 struct key *key_lookup(unsigned int, KeySym);
965 void key_remove(struct key *);
966 void key_replace(struct key *, unsigned int, KeySym, enum keyfuncid,
967 const char *);
968 void kill_bar_extra_atexit(void);
969 void kill_refs(struct ws_win *);
970 #ifdef SWM_DEBUG
971 void leavenotify(xcb_leave_notify_event_t *);
972 #endif
973 void load_float_geom(struct ws_win *);
974 struct ws_win *manage_window(xcb_window_t, uint16_t);
975 void map_window(struct ws_win *, xcb_window_t);
976 void mapnotify(xcb_map_notify_event_t *);
977 void mappingnotify(xcb_mapping_notify_event_t *);
978 void maprequest(xcb_map_request_event_t *);
979 void motionnotify(xcb_motion_notify_event_t *);
980 void move(struct ws_win *, union arg *);
981 void move_step(struct swm_region *, union arg *);
982 uint32_t name_to_pixel(int, const char *);
983 void name_workspace(struct swm_region *, union arg *);
984 void new_region(struct swm_screen *, int, int, int, int);
985 int parsekeys(char *, unsigned int, unsigned int *, KeySym *);
986 int parsequirks(char *, unsigned long *);
987 int parse_rgb(const char *, uint16_t *, uint16_t *, uint16_t *);
988 void pressbutton(struct swm_region *, union arg *);
989 void priorws(struct swm_region *, union arg *);
990 #ifdef SWM_DEBUG
991 void print_win_geom(xcb_window_t);
992 #endif
993 void propertynotify(xcb_property_notify_event_t *);
994 void quirk_insert(const char *, const char *, unsigned long);
995 void quirk_remove(struct quirk *);
996 void quirk_replace(struct quirk *, const char *, const char *,
997 unsigned long);
998 void quit(struct swm_region *, union arg *);
999 void raise_toggle(struct swm_region *, union arg *);
1000 void region_containment(struct ws_win *, struct swm_region *, int);
1001 struct swm_region *region_under(struct swm_screen *, int, int);
1002 void regionize(struct ws_win *, int, int);
1003 void resize(struct ws_win *, union arg *);
1004 void resize_step(struct swm_region *, union arg *);
1005 void restart(struct swm_region *, union arg *);
1006 struct swm_region *root_to_region(xcb_window_t, int);
1007 void screenchange(xcb_randr_screen_change_notify_event_t *);
1008 void scan_xrandr(int);
1009 void search_do_resp(void);
1010 void search_resp_name_workspace(const char *, size_t);
1011 void search_resp_search_window(const char *);
1012 void search_resp_search_workspace(const char *);
1013 void search_resp_uniconify(const char *, size_t);
1014 void search_win(struct swm_region *, union arg *);
1015 void search_win_cleanup(void);
1016 void search_workspace(struct swm_region *, union arg *);
1017 void send_to_rg(struct swm_region *, union arg *);
1018 void send_to_ws(struct swm_region *, union arg *);
1019 void set_region(struct swm_region *);
1020 int setautorun(char *, char *, int);
1021 int setconfbinding(char *, char *, int);
1022 int setconfcolor(char *, char *, int);
1023 int setconfmodkey(char *, char *, int);
1024 int setconfquirk(char *, char *, int);
1025 int setconfregion(char *, char *, int);
1026 int setconfspawn(char *, char *, int);
1027 int setconfvalue(char *, char *, int);
1028 void setkeybinding(unsigned int, KeySym, enum keyfuncid, const char *);
1029 int setkeymapping(char *, char *, int);
1030 int setlayout(char *, char *, int);
1031 void setquirk(const char *, const char *, unsigned long);
1032 void setscreencolor(char *, int, int);
1033 void setspawn(const char *, const char *, int);
1034 void setup_ewmh(void);
1035 void setup_globals(void);
1036 void setup_keys(void);
1037 void setup_quirks(void);
1038 void setup_screens(void);
1039 void setup_spawn(void);
1040 void set_child_transient(struct ws_win *, xcb_window_t *);
1041 void set_swm_iconic(struct ws_win *, int);
1042 void set_win_state(struct ws_win *, uint16_t);
1043 void shutdown_cleanup(void);
1044 void sighdlr(int);
1045 void socket_setnonblock(int);
1046 void sort_windows(struct ws_win_list *);
1047 void spawn(int, union arg *, int);
1048 void spawn_custom(struct swm_region *, union arg *, const char *);
1049 int spawn_expand(struct swm_region *, union arg *, const char *, char ***);
1050 void spawn_insert(const char *, const char *, int);
1051 struct spawn_prog *spawn_find(const char *);
1052 void spawn_remove(struct spawn_prog *);
1053 void spawn_replace(struct spawn_prog *, const char *, const char *, int);
1054 void spawn_select(struct swm_region *, union arg *, const char *, int *);
1055 void stack_config(struct swm_region *, union arg *);
1056 void stack_floater(struct ws_win *, struct swm_region *);
1057 void stack_master(struct workspace *, struct swm_geometry *, int, int);
1058 void store_float_geom(struct ws_win *);
1059 char *strdupsafe(const char *);
1060 void swapwin(struct swm_region *, union arg *);
1061 void switchws(struct swm_region *, union arg *);
1062 void teardown_ewmh(void);
1063 void unfocus_win(struct ws_win *);
1064 void uniconify(struct swm_region *, union arg *);
1065 void unmanage_window(struct ws_win *);
1066 void unmapnotify(xcb_unmap_notify_event_t *);
1067 void unmap_all(void);
1068 void unmap_window(struct ws_win *);
1069 void updatenumlockmask(void);
1070 void update_modkey(unsigned int);
1071 void update_window(struct ws_win *);
1072 void validate_spawns(void);
1073 int validate_win(struct ws_win *);
1074 int validate_ws(struct workspace *);
1075 /*void visibilitynotify(xcb_visibility_notify_event_t *);*/
1076 void version(struct swm_region *, union arg *);
1077 void win_to_ws(struct ws_win *, int, int);
1078 pid_t window_get_pid(xcb_window_t);
1079 void wkill(struct swm_region *, union arg *);
1080 void workaround(void);
1081 void xft_init(struct swm_region *);
1082 void _add_startup_exception(const char *, va_list);
1083 void add_startup_exception(const char *, ...);
1084
1085 RB_PROTOTYPE(key_tree, key, entry, key_cmp);
1086 RB_GENERATE(key_tree, key, entry, key_cmp);
1087 struct key_tree keys;
1088
1089 void
1090 cursors_load(void)
1091 {
1092 xcb_font_t cf = XCB_NONE;
1093 int i;
1094
1095 for (i = 0; i < LENGTH(cursors); ++i) {
1096 /* try to load Xcursor first. */
1097 cursors[i].cid = XcursorLibraryLoadCursor(display,
1098 cursors[i].name);
1099
1100 /* fallback to cursorfont. */
1101 if (cursors[i].cid == XCB_CURSOR_NONE) {
1102 if (cf == XCB_NONE) {
1103 cf = xcb_generate_id(conn);
1104 xcb_open_font(conn, cf, strlen("cursor"),
1105 "cursor");
1106 }
1107
1108 cursors[i].cid = xcb_generate_id(conn);
1109 xcb_create_glyph_cursor(conn, cursors[i].cid, cf, cf,
1110 cursors[i].cf_char, cursors[i].cf_char + 1, 0, 0, 0,
1111 0xffff, 0xffff, 0xffff);
1112
1113 }
1114 }
1115
1116 if (cf != XCB_NONE)
1117 xcb_close_font(conn, cf);
1118 }
1119
1120 void
1121 cursors_cleanup(void)
1122 {
1123 int i;
1124 for (i = 0; i < LENGTH(cursors); ++i)
1125 xcb_free_cursor(conn, cursors[i].cid);
1126 }
1127
1128 char *
1129 expand_tilde(const char *s)
1130 {
1131 struct passwd *ppwd;
1132 int i;
1133 long max;
1134 char *user;
1135 const char *sc = s;
1136 char *result;
1137
1138 if (s == NULL)
1139 errx(1, "expand_tilde: NULL string.");
1140
1141 if (s[0] != '~') {
1142 result = strdup(sc);
1143 goto out;
1144 }
1145
1146 ++s;
1147
1148 if ((max = sysconf(_SC_LOGIN_NAME_MAX)) == -1)
1149 errx(1, "expand_tilde: sysconf");
1150
1151 if ((user = calloc(1, max + 1)) == NULL)
1152 errx(1, "expand_tilde: calloc");
1153
1154 for (i = 0; s[i] != '/' && s[i] != '\0'; ++i)
1155 user[i] = s[i];
1156 user[i] = '\0';
1157 s = &s[i];
1158
1159 ppwd = strlen(user) == 0 ? getpwuid(getuid()) : getpwnam(user);
1160 free(user);
1161
1162 if (ppwd == NULL)
1163 result = strdup(sc);
1164 else
1165 if (asprintf(&result, "%s%s", ppwd->pw_dir, s) == -1)
1166 result = NULL;
1167 out:
1168 if (result == NULL)
1169 errx(1, "expand_tilde: failed to allocate memory.");
1170
1171 return result;
1172 }
1173
1174 int
1175 parse_rgb(const char *rgb, uint16_t *rr, uint16_t *gg, uint16_t *bb)
1176 {
1177 unsigned int tmpr, tmpg, tmpb;
1178
1179 if (sscanf(rgb, "rgb:%x/%x/%x", &tmpr, &tmpg, &tmpb) != 3)
1180 return (-1);
1181
1182 *rr = RGB_8_TO_16(tmpr);
1183 *gg = RGB_8_TO_16(tmpg);
1184 *bb = RGB_8_TO_16(tmpb);
1185
1186 return (0);
1187 }
1188
1189 xcb_screen_t *
1190 get_screen(int screen)
1191 {
1192 const xcb_setup_t *r;
1193 xcb_screen_iterator_t iter;
1194
1195 if ((r = xcb_get_setup(conn)) == NULL) {
1196 DNPRINTF(SWM_D_MISC, "get_screen: xcb_get_setup\n");
1197 check_conn();
1198 }
1199
1200 iter = xcb_setup_roots_iterator(r);
1201 for (; iter.rem; --screen, xcb_screen_next(&iter))
1202 if (screen == 0)
1203 return (iter.data);
1204
1205 return (NULL);
1206 }
1207
1208 int
1209 get_screen_count(void)
1210 {
1211 const xcb_setup_t *r;
1212
1213 if ((r = xcb_get_setup(conn)) == NULL) {
1214 DNPRINTF(SWM_D_MISC, "get_screen_count: xcb_get_setup\n");
1215 check_conn();
1216 }
1217
1218 return xcb_setup_roots_length(r);
1219 }
1220
1221 int
1222 get_region_index(struct swm_region *r)
1223 {
1224 struct swm_region *rr;
1225 int ridx = 0;
1226
1227 if (r == NULL)
1228 return -1;
1229
1230 TAILQ_FOREACH(rr, &r->s->rl, entry) {
1231 if (rr == r)
1232 break;
1233 ++ridx;
1234 }
1235
1236 if (rr == NULL)
1237 return -1;
1238
1239 return ridx;
1240 }
1241
1242 void
1243 focus_flush(void)
1244 {
1245 if (focus_mode == SWM_FOCUS_DEFAULT)
1246 event_drain(XCB_ENTER_NOTIFY);
1247 else
1248 xcb_flush(conn);
1249 }
1250
1251 xcb_atom_t
1252 get_atom_from_string(const char *str)
1253 {
1254 xcb_intern_atom_cookie_t c;
1255 xcb_intern_atom_reply_t *r;
1256 xcb_atom_t atom;
1257
1258 c = xcb_intern_atom(conn, 0, strlen(str), str);
1259 r = xcb_intern_atom_reply(conn, c, NULL);
1260 if (r) {
1261 atom = r->atom;
1262 free(r);
1263
1264 return (atom);
1265 }
1266
1267 return (XCB_ATOM_NONE);
1268 }
1269
1270 void
1271 set_swm_iconic(struct ws_win *win, int newv)
1272 {
1273 int32_t v = newv;
1274
1275 win->iconic = newv;
1276
1277 if (newv)
1278 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
1279 a_swm_iconic, XCB_ATOM_INTEGER, 32, 1, &v);
1280 else
1281 xcb_delete_property(conn, win->id, a_swm_iconic);
1282 }
1283
1284 int32_t
1285 get_swm_iconic(struct ws_win *win)
1286 {
1287 int32_t v = 0;
1288 xcb_get_property_reply_t *pr = NULL;
1289
1290 pr = xcb_get_property_reply(conn,
1291 xcb_get_property(conn, 0, win->id, a_swm_iconic,
1292 XCB_ATOM_INTEGER, 0, 1), NULL);
1293 if (!pr)
1294 goto out;
1295 if (pr->type != XCB_ATOM_INTEGER || pr->format != 32)
1296 goto out;
1297 v = *((int32_t *)xcb_get_property_value(pr));
1298 out:
1299 if (pr)
1300 free(pr);
1301 return (v);
1302 }
1303
1304 void
1305 setup_ewmh(void)
1306 {
1307 xcb_atom_t sup_list;
1308 int i, j, num_screens;
1309
1310 sup_list = get_atom_from_string("_NET_SUPPORTED");
1311
1312 for (i = 0; i < LENGTH(ewmh); i++)
1313 ewmh[i].atom = get_atom_from_string(ewmh[i].name);
1314
1315 num_screens = get_screen_count();
1316 for (i = 0; i < num_screens; i++) {
1317 /* Support check window will be created by workaround(). */
1318
1319 /* Report supported atoms */
1320 xcb_delete_property(conn, screens[i].root, sup_list);
1321 for (j = 0; j < LENGTH(ewmh); j++)
1322 xcb_change_property(conn, XCB_PROP_MODE_APPEND,
1323 screens[i].root, sup_list, XCB_ATOM_ATOM, 32, 1,
1324 &ewmh[j].atom);
1325 }
1326 }
1327
1328 void
1329 teardown_ewmh(void)
1330 {
1331 int i, num_screens;
1332 xcb_atom_t sup_check, sup_list;
1333 xcb_window_t id;
1334 xcb_get_property_cookie_t pc;
1335 xcb_get_property_reply_t *pr;
1336
1337 sup_check = get_atom_from_string("_NET_SUPPORTING_WM_CHECK");
1338 sup_list = get_atom_from_string("_NET_SUPPORTED");
1339 num_screens = get_screen_count();
1340
1341 for (i = 0; i < num_screens; i++) {
1342 /* Get the support check window and destroy it */
1343 pc = xcb_get_property(conn, 0, screens[i].root, sup_check,
1344 XCB_ATOM_WINDOW, 0, 1);
1345 pr = xcb_get_property_reply(conn, pc, NULL);
1346 if (!pr)
1347 continue;
1348 if (pr->format == sup_check) {
1349 id = *((xcb_window_t *)xcb_get_property_value(pr));
1350
1351 xcb_destroy_window(conn, id);
1352 xcb_delete_property(conn, screens[i].root, sup_check);
1353 xcb_delete_property(conn, screens[i].root, sup_list);
1354 }
1355 free(pr);
1356 }
1357 }
1358
1359 void
1360 ewmh_autoquirk(struct ws_win *win)
1361 {
1362 uint32_t i, n;
1363 xcb_atom_t *type;
1364 xcb_get_property_cookie_t c;
1365 xcb_get_property_reply_t *r;
1366
1367 c = xcb_get_property(conn, 0, win->id,
1368 ewmh[_NET_WM_WINDOW_TYPE].atom, XCB_ATOM_ATOM, 0, UINT32_MAX);
1369 r = xcb_get_property_reply(conn, c, NULL);
1370 if (!r)
1371 return;
1372
1373 n = xcb_get_property_value_length(r);
1374 type = xcb_get_property_value(r);
1375
1376 for (i = 0; i < n; i++) {
1377 if (type[i] == ewmh[_NET_WM_WINDOW_TYPE_NORMAL].atom)
1378 break;
1379 if (type[i] == ewmh[_NET_WM_WINDOW_TYPE_DOCK].atom ||
1380 type[i] == ewmh[_NET_WM_WINDOW_TYPE_TOOLBAR].atom ||
1381 type[i] == ewmh[_NET_WM_WINDOW_TYPE_UTILITY].atom) {
1382 win->floating = 1;
1383 win->quirks = SWM_Q_FLOAT | SWM_Q_ANYWHERE;
1384 break;
1385 }
1386 if (type[i] == ewmh[_NET_WM_WINDOW_TYPE_SPLASH].atom ||
1387 type[i] == ewmh[_NET_WM_WINDOW_TYPE_DIALOG].atom) {
1388 win->floating = 1;
1389 win->quirks = SWM_Q_FLOAT;
1390 break;
1391 }
1392 }
1393 free(r);
1394 }
1395
1396 #define SWM_EWMH_ACTION_COUNT_MAX (6)
1397 #define EWMH_F_FULLSCREEN (1<<0)
1398 #define EWMH_F_ABOVE (1<<1)
1399 #define EWMH_F_HIDDEN (1<<2)
1400 #define EWMH_F_SKIP_PAGER (1<<3)
1401 #define EWMH_F_SKIP_TASKBAR (1<<4)
1402 #define SWM_F_MANUAL (1<<5)
1403
1404 int
1405 ewmh_set_win_fullscreen(struct ws_win *win, int fs)
1406 {
1407 if (!win->ws->r)
1408 return (0);
1409
1410 if (!win->floating)
1411 return (0);
1412
1413 DNPRINTF(SWM_D_MISC, "ewmh_set_win_fullscreen: window: 0x%x, "
1414 "fullscreen %s\n", win->id, YESNO(fs));
1415
1416 if (fs) {
1417 if (!win->g_floatvalid)
1418 store_float_geom(win);
1419
1420 win->g = win->ws->r->g;
1421 win->bordered = 0;
1422 } else {
1423 load_float_geom(win);
1424 }
1425
1426 return (1);
1427 }
1428
1429 void
1430 ewmh_update_actions(struct ws_win *win)
1431 {
1432 xcb_atom_t actions[SWM_EWMH_ACTION_COUNT_MAX];
1433 int n = 0;
1434
1435 if (win == NULL)
1436 return;
1437
1438 actions[n++] = ewmh[_NET_WM_ACTION_CLOSE].atom;
1439
1440 if (win->floating) {
1441 actions[n++] = ewmh[_NET_WM_ACTION_MOVE].atom;
1442 actions[n++] = ewmh[_NET_WM_ACTION_RESIZE].atom;
1443 actions[n++] = ewmh[_NET_WM_ACTION_ABOVE].atom;
1444 }
1445
1446 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
1447 ewmh[_NET_WM_ALLOWED_ACTIONS].atom, XCB_ATOM_ATOM, 32, 1, actions);
1448 }
1449
1450 #define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
1451 #define _NET_WM_STATE_ADD 1 /* add/set property */
1452 #define _NET_WM_STATE_TOGGLE 2 /* toggle property */
1453
1454 void
1455 ewmh_update_win_state(struct ws_win *win, xcb_atom_t state, long action)
1456 {
1457 unsigned int mask = 0;
1458 unsigned int changed = 0;
1459 unsigned int orig_flags;
1460
1461 if (win == NULL)
1462 return;
1463
1464 DNPRINTF(SWM_D_PROP, "ewmh_update_win_state: window: 0x%x, state: %ld, "
1465 "action: %ld\n", win->id, (unsigned long)state, action);
1466
1467 if (state == ewmh[_NET_WM_STATE_FULLSCREEN].atom)
1468 mask = EWMH_F_FULLSCREEN;
1469 else if (state == ewmh[_NET_WM_STATE_ABOVE].atom)
1470 mask = EWMH_F_ABOVE;
1471 else if (state == ewmh[_SWM_WM_STATE_MANUAL].atom)
1472 mask = SWM_F_MANUAL;
1473 else if (state == ewmh[_NET_WM_STATE_SKIP_PAGER].atom)
1474 mask = EWMH_F_SKIP_PAGER;
1475 else if (state == ewmh[_NET_WM_STATE_SKIP_TASKBAR].atom)
1476 mask = EWMH_F_SKIP_TASKBAR;
1477
1478 orig_flags = win->ewmh_flags;
1479
1480 switch (action) {
1481 case _NET_WM_STATE_REMOVE:
1482 win->ewmh_flags &= ~mask;
1483 break;
1484 case _NET_WM_STATE_ADD:
1485 win->ewmh_flags |= mask;
1486 break;
1487 case _NET_WM_STATE_TOGGLE:
1488 win->ewmh_flags ^= mask;
1489 break;
1490 }
1491
1492 changed = (win->ewmh_flags & mask) ^ (orig_flags & mask) ? 1 : 0;
1493
1494 if (state == ewmh[_NET_WM_STATE_ABOVE].atom) {
1495 if (changed && !floating_toggle_win(win))
1496 win->ewmh_flags = orig_flags; /* revert */
1497 } else if (state == ewmh[_SWM_WM_STATE_MANUAL].atom) {
1498 if (changed)
1499 win->manual = (win->ewmh_flags & SWM_F_MANUAL) != 0;
1500 } else if (state == ewmh[_NET_WM_STATE_FULLSCREEN].atom) {
1501 if (changed && !ewmh_set_win_fullscreen(win,
1502 win->ewmh_flags & EWMH_F_FULLSCREEN))
1503 win->ewmh_flags = orig_flags; /* revert */
1504 }
1505
1506 xcb_delete_property(conn, win->id, ewmh[_NET_WM_STATE].atom);
1507
1508 if (win->ewmh_flags & EWMH_F_FULLSCREEN)
1509 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1510 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1511 &ewmh[_NET_WM_STATE_FULLSCREEN].atom);
1512 else if (win->ewmh_flags & EWMH_F_SKIP_PAGER)
1513 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1514 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1515 &ewmh[_NET_WM_STATE_SKIP_PAGER].atom);
1516 else if (win->ewmh_flags & EWMH_F_SKIP_TASKBAR)
1517 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1518 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1519 &ewmh[_NET_WM_STATE_SKIP_TASKBAR].atom);
1520 else if (win->ewmh_flags & EWMH_F_ABOVE)
1521 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1522 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1523 &ewmh[_NET_WM_STATE_ABOVE].atom);
1524 else if (win->ewmh_flags & SWM_F_MANUAL)
1525 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1526 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1527 &ewmh[_SWM_WM_STATE_MANUAL].atom);
1528 }
1529
1530 void
1531 ewmh_get_win_state(struct ws_win *win)
1532 {
1533 xcb_atom_t *states;
1534 xcb_get_property_cookie_t c;
1535 xcb_get_property_reply_t *r;
1536 int i, n;
1537
1538 if (win == NULL)
1539 return;
1540
1541 win->ewmh_flags = 0;
1542 if (win->floating)
1543 win->ewmh_flags |= EWMH_F_ABOVE;
1544 if (win->manual)
1545 win->ewmh_flags |= SWM_F_MANUAL;
1546
1547 c = xcb_get_property(conn, 0, win->id, ewmh[_NET_WM_STATE].atom,
1548 XCB_ATOM_ATOM, 0, UINT32_MAX);
1549 r = xcb_get_property_reply(conn, c, NULL);
1550 if (!r)
1551 return;
1552
1553 states = xcb_get_property_value(r);
1554 n = xcb_get_property_value_length(r);
1555
1556 for (i = 0; i < n; i++)
1557 ewmh_update_win_state(win, states[i], _NET_WM_STATE_ADD);
1558
1559 free(r);
1560 }
1561
1562 /* events */
1563 #ifdef SWM_DEBUG
1564 void
1565 dumpwins(struct swm_region *r, union arg *args)
1566 {
1567 struct ws_win *win;
1568 uint32_t state;
1569 xcb_get_window_attributes_cookie_t c;
1570 xcb_get_window_attributes_reply_t *wa;
1571
1572 /* suppress unused warning since var is needed */
1573 (void)args;
1574
1575 if (r->ws == NULL) {
1576 warnx("dumpwins: invalid workspace");
1577 return;
1578 }
1579
1580 warnx("=== managed window list ws %02d ===", r->ws->idx);
1581 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
1582 state = getstate(win->id);
1583 c = xcb_get_window_attributes(conn, win->id);
1584 wa = xcb_get_window_attributes_reply(conn, c, NULL);
1585 if (wa) {
1586 warnx("window: 0x%x, map_state: %d, state: %u, "
1587 "transient: 0x%x", win->id, wa->map_state,
1588 state, win->transient);
1589 free(wa);
1590 } else
1591 warnx("window: 0x%x, failed xcb_get_window_attributes",
1592 win->id);
1593 }
1594
1595 warnx("===== unmanaged window list =====");
1596 TAILQ_FOREACH(win, &r->ws->unmanagedlist, entry) {
1597 state = getstate(win->id);
1598 c = xcb_get_window_attributes(conn, win->id);
1599 wa = xcb_get_window_attributes_reply(conn, c, NULL);
1600 if (wa) {
1601 warnx("window: 0x%x, map_state: %d, state: %u, "
1602 "transient: 0x%x", win->id, wa->map_state,
1603 state, win->transient);
1604 free(wa);
1605 } else
1606 warnx("window: 0x%x, failed xcb_get_window_attributes",
1607 win->id);
1608 }
1609
1610 warnx("=================================");
1611 }
1612 #else
1613 void
1614 dumpwins(struct swm_region *r, union arg *s)
1615 {
1616 (void)r;
1617 (void)s;
1618 }
1619 #endif /* SWM_DEBUG */
1620
1621 void
1622 sighdlr(int sig)
1623 {
1624 int saved_errno, status;
1625 pid_t pid;
1626
1627 saved_errno = errno;
1628
1629 switch (sig) {
1630 case SIGCHLD:
1631 while ((pid = waitpid(WAIT_ANY, &status, WNOHANG)) != 0) {
1632 if (pid == -1) {
1633 if (errno == EINTR)
1634 continue;
1635 #ifdef SWM_DEBUG
1636 if (errno != ECHILD)
1637 warn("sighdlr: waitpid");
1638 #endif /* SWM_DEBUG */
1639 break;
1640 }
1641 if (pid == searchpid)
1642 search_resp = 1;
1643
1644 #ifdef SWM_DEBUG
1645 if (WIFEXITED(status)) {
1646 if (WEXITSTATUS(status) != 0)
1647 warnx("sighdlr: child exit status: %d",
1648 WEXITSTATUS(status));
1649 } else
1650 warnx("sighdlr: child is terminated "
1651 "abnormally");
1652 #endif /* SWM_DEBUG */
1653 }
1654 break;
1655
1656 case SIGHUP:
1657 restart_wm = 1;
1658 break;
1659 case SIGINT:
1660 case SIGTERM:
1661 case SIGQUIT:
1662 running = 0;
1663 break;
1664 }
1665
1666 errno = saved_errno;
1667 }
1668
1669 struct pid_e *
1670 find_pid(pid_t pid)
1671 {
1672 struct pid_e *p = NULL;
1673
1674 DNPRINTF(SWM_D_MISC, "find_pid: %d\n", pid);
1675
1676 if (pid == 0)
1677 return (NULL);
1678
1679 TAILQ_FOREACH(p, &pidlist, entry) {
1680 if (p->pid == pid)
1681 return (p);
1682 }
1683
1684 return (NULL);
1685 }
1686
1687 uint32_t
1688 name_to_pixel(int sidx, const char *colorname)
1689 {
1690 uint32_t result = 0;
1691 char cname[32] = "#";
1692 xcb_screen_t *screen;
1693 xcb_colormap_t cmap;
1694 xcb_alloc_color_reply_t *cr;
1695 xcb_alloc_named_color_reply_t *nr;
1696 uint16_t rr, gg, bb;
1697
1698 screen = get_screen(sidx);
1699 cmap = screen->default_colormap;
1700
1701 /* color is in format rgb://rr/gg/bb */
1702 if (strncmp(colorname, "rgb:", 4) == 0) {
1703 if (parse_rgb(colorname, &rr, &gg, &bb) == -1)
1704 warnx("could not parse rgb %s", colorname);
1705 else {
1706 cr = xcb_alloc_color_reply(conn,
1707 xcb_alloc_color(conn, cmap, rr, gg, bb),
1708 NULL);
1709 if (cr) {
1710 result = cr->pixel;
1711 free(cr);
1712 } else
1713 warnx("color '%s' not found", colorname);
1714 }
1715 } else {
1716 nr = xcb_alloc_named_color_reply(conn,
1717 xcb_alloc_named_color(conn, cmap, strlen(colorname),
1718 colorname), NULL);
1719 if (!nr) {
1720 strlcat(cname, colorname + 2, sizeof cname - 1);
1721 nr = xcb_alloc_named_color_reply(conn,
1722 xcb_alloc_named_color(conn, cmap, strlen(cname),
1723 cname), NULL);
1724 }
1725 if (nr) {
1726 result = nr->pixel;
1727 free(nr);
1728 } else
1729 warnx("color '%s' not found", colorname);
1730 }
1731
1732 return (result);
1733 }
1734
1735 void
1736 setscreencolor(char *val, int i, int c)
1737 {
1738 int num_screens;
1739
1740 num_screens = get_screen_count();
1741 if (i > 0 && i <= num_screens) {
1742 screens[i - 1].c[c].pixel = name_to_pixel(i - 1, val);
1743 free(screens[i - 1].c[c].name);
1744 if ((screens[i - 1].c[c].name = strdup(val)) == NULL)
1745 err(1, "strdup");
1746 } else if (i == -1) {
1747 for (i = 0; i < num_screens; i++) {
1748 screens[i].c[c].pixel = name_to_pixel(0, val);
1749 free(screens[i].c[c].name);
1750 if ((screens[i].c[c].name = strdup(val)) == NULL)
1751 err(1, "strdup");
1752 }
1753 } else
1754 errx(1, "invalid screen index: %d out of bounds (maximum %d)",
1755 i, num_screens);
1756 }
1757
1758 void
1759 fancy_stacker(struct workspace *ws)
1760 {
1761 strlcpy(ws->stacker, "[ ]", sizeof ws->stacker);
1762 if (ws->cur_layout->l_stack == vertical_stack)
1763 snprintf(ws->stacker, sizeof ws->stacker,
1764 ws->l_state.vertical_flip ? "[%d>%d]" : "[%d|%d]",
1765 ws->l_state.vertical_mwin, ws->l_state.vertical_stacks);
1766 if (ws->cur_layout->l_stack == horizontal_stack)
1767 snprintf(ws->stacker, sizeof ws->stacker,
1768 ws->l_state.horizontal_flip ? "[%dv%d]" : "[%d-%d]",
1769 ws->l_state.horizontal_mwin, ws->l_state.horizontal_stacks);
1770 }
1771
1772 void
1773 plain_stacker(struct workspace *ws)
1774 {
1775 strlcpy(ws->stacker, "[ ]", sizeof ws->stacker);
1776 if (ws->cur_layout->l_stack == vertical_stack)
1777 strlcpy(ws->stacker, ws->l_state.vertical_flip ? "[>]" : "[|]",
1778 sizeof ws->stacker);
1779 if (ws->cur_layout->l_stack == horizontal_stack)
1780 strlcpy(ws->stacker, ws->l_state.horizontal_flip ? "[v]" : "[-]",
1781 sizeof ws->stacker);
1782 }
1783
1784 void
1785 custom_region(char *val)
1786 {
1787 unsigned int x, y, w, h;
1788 int sidx, num_screens;
1789 xcb_screen_t *screen;
1790
1791 num_screens = get_screen_count();
1792 if (sscanf(val, "screen[%d]:%ux%u+%u+%u", &sidx, &w, &h, &x, &y) != 5)
1793 errx(1, "invalid custom region, "
1794 "should be 'screen[<n>]:<n>x<n>+<n>+<n>");
1795 if (sidx < 1 || sidx > num_screens)
1796 errx(1, "invalid screen index: %d out of bounds (maximum %d)",
1797 sidx, num_screens);
1798 sidx--;
1799
1800 if ((screen = get_screen(sidx)) == NULL)
1801 errx(1, "ERROR: can't get screen %d.", sidx);
1802
1803 if (w < 1 || h < 1)
1804 errx(1, "region %ux%u+%u+%u too small", w, h, x, y);
1805
1806 if (x > screen->width_in_pixels ||
1807 y > screen->height_in_pixels ||
1808 w + x > screen->width_in_pixels ||
1809 h + y > screen->height_in_pixels) {
1810 warnx("ignoring region %ux%u+%u+%u - not within screen "
1811 "boundaries (%ux%u)", w, h, x, y,
1812 screen->width_in_pixels, screen->height_in_pixels);
1813 return;
1814 }
1815
1816 new_region(&screens[sidx], x, y, w, h);
1817 }
1818
1819 void
1820 socket_setnonblock(int fd)
1821 {
1822 int flags;
1823
1824 if ((flags = fcntl(fd, F_GETFL, 0)) == -1)
1825 err(1, "fcntl F_GETFL");
1826 flags |= O_NONBLOCK;
1827 if ((flags = fcntl(fd, F_SETFL, flags)) == -1)
1828 err(1, "fcntl F_SETFL");
1829 }
1830
1831 void
1832 bar_print_legacy(struct swm_region *r, const char *s)
1833 {
1834 xcb_rectangle_t rect;
1835 uint32_t gcv[1];
1836 XGCValues gcvd;
1837 int x = 0;
1838 size_t len;
1839 XRectangle ibox, lbox;
1840 GC draw;
1841
1842 len = strlen(s);
1843 XmbTextExtents(bar_fs, s, len, &ibox, &lbox);
1844
1845 switch (bar_justify) {
1846 case SWM_BAR_JUSTIFY_LEFT:
1847 x = SWM_BAR_OFFSET;
1848 break;
1849 case SWM_BAR_JUSTIFY_CENTER:
1850 x = (WIDTH(r) - lbox.width) / 2;
1851 break;
1852 case SWM_BAR_JUSTIFY_RIGHT:
1853 x = WIDTH(r) - lbox.width - SWM_BAR_OFFSET;
1854 break;
1855 }
1856
1857 if (x < SWM_BAR_OFFSET)
1858 x = SWM_BAR_OFFSET;
1859
1860 rect.x = 0;
1861 rect.y = 0;
1862 rect.width = WIDTH(r->bar);
1863 rect.height = HEIGHT(r->bar);
1864
1865 /* clear back buffer */
1866 gcv[0] = r->s->c[SWM_S_COLOR_BAR].pixel;
1867 xcb_change_gc(conn, r->s->bar_gc, XCB_GC_FOREGROUND, gcv);
1868 xcb_poly_fill_rectangle(conn, r->bar->buffer, r->s->bar_gc, 1, &rect);
1869
1870 /* draw back buffer */
1871 gcvd.graphics_exposures = 0;
1872 draw = XCreateGC(display, r->bar->buffer, GCGraphicsExposures, &gcvd);
1873 XSetForeground(display, draw, r->s->c[SWM_S_COLOR_BAR_FONT].pixel);
1874 DRAWSTRING(display, r->bar->buffer, bar_fs, draw,
1875 x, (bar_fs_extents->max_logical_extent.height - lbox.height) / 2 -
1876 lbox.y, s, len);
1877 XFreeGC(display, draw);
1878
1879 /* blt */
1880 xcb_copy_area(conn, r->bar->buffer, r->bar->id, r->s->bar_gc, 0, 0,
1881 0, 0, WIDTH(r->bar), HEIGHT(r->bar));
1882 }
1883
1884 void
1885 bar_print(struct swm_region *r, const char *s)
1886 {
1887 size_t len;
1888 xcb_rectangle_t rect;
1889 uint32_t gcv[1];
1890 int32_t x = 0;
1891 XGlyphInfo info;
1892 XftDraw *draw;
1893
1894 len = strlen(s);
1895
1896 XftTextExtentsUtf8(display, bar_font, (FcChar8 *)s, len, &info);
1897
1898 switch (bar_justify) {
1899 case SWM_BAR_JUSTIFY_LEFT:
1900 x = SWM_BAR_OFFSET;
1901 break;
1902 case SWM_BAR_JUSTIFY_CENTER:
1903 x = (WIDTH(r) - info.width) / 2;
1904 break;
1905 case SWM_BAR_JUSTIFY_RIGHT:
1906 x = WIDTH(r) - info.width - SWM_BAR_OFFSET;
1907 break;
1908 }
1909
1910 if (x < SWM_BAR_OFFSET)
1911 x = SWM_BAR_OFFSET;
1912
1913 rect.x = 0;
1914 rect.y = 0;
1915 rect.width = WIDTH(r->bar);
1916 rect.height = HEIGHT(r->bar);
1917
1918 /* clear back buffer */
1919 gcv[0] = r->s->c[SWM_S_COLOR_BAR].pixel;
1920 xcb_change_gc(conn, r->s->bar_gc, XCB_GC_FOREGROUND, gcv);
1921 xcb_poly_fill_rectangle(conn, r->bar->buffer, r->s->bar_gc, 1, &rect);
1922
1923 /* draw back buffer */
1924 draw = XftDrawCreate(display, r->bar->buffer,
1925 DefaultVisual(display, r->s->idx),
1926 DefaultColormap(display, r->s->idx));
1927
1928 XftDrawStringUtf8(draw, &bar_font_color, bar_font, x,
1929 (HEIGHT(r->bar) + bar_font->height) / 2 - bar_font->descent,
1930 (FcChar8 *)s, len);
1931
1932 XftDrawDestroy(draw);
1933
1934 /* blt */
1935 xcb_copy_area(conn, r->bar->buffer, r->bar->id, r->s->bar_gc, 0, 0,
1936 0, 0, WIDTH(r->bar), HEIGHT(r->bar));
1937 }
1938
1939 void
1940 bar_extra_stop(void)
1941 {
1942 if (bar_pipe[0]) {
1943 close(bar_pipe[0]);
1944 bzero(bar_pipe, sizeof bar_pipe);
1945 }
1946 if (bar_pid) {
1947 kill(bar_pid, SIGTERM);
1948 bar_pid = 0;
1949 }
1950 strlcpy(bar_ext, "", sizeof bar_ext);
1951 bar_extra = 0;
1952 }
1953
1954 void
1955 bar_class_name(char *s, size_t sz, struct swm_region *r)
1956 {
1957 if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1958 return;
1959 if (r->ws->focus->ch.class_name != NULL)
1960 strlcat(s, r->ws->focus->ch.class_name, sz);
1961 }
1962
1963 void
1964 bar_title_name(char *s, size_t sz, struct swm_region *r)
1965 {
1966 if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1967 return;
1968 if (r->ws->focus->ch.instance_name != NULL)
1969 strlcat(s, r->ws->focus->ch.instance_name, sz);
1970 }
1971
1972 void
1973 bar_class_title_name(char *s, size_t sz, struct swm_region *r)
1974 {
1975 if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1976 return;
1977
1978 bar_class_name(s, sz, r);
1979 strlcat(s, ":", sz);
1980 bar_title_name(s, sz, r);
1981 }
1982
1983 void
1984 bar_window_float(char *s, size_t sz, struct swm_region *r)
1985 {
1986 if (r == NULL || r ->ws == NULL || r->ws->focus == NULL)
1987 return;
1988 if (r->ws->focus->floating)
1989 strlcat(s, "(f)", sz);
1990 }
1991
1992 void
1993 bar_window_name(char *s, size_t sz, struct swm_region *r)
1994 {
1995 char *title;
1996
1997 if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1998 return;
1999 if ((title = get_win_name(r->ws->focus->id)) == NULL)
2000 return;
2001
2002 strlcat(s, title, sz);
2003 free(title);
2004 }
2005
2006 void
2007 bar_urgent(char *s, size_t sz)
2008 {
2009 struct ws_win *win;
2010 int i, j, num_screens;
2011 int urgent[SWM_WS_MAX];
2012 char b[8];
2013 xcb_get_property_cookie_t c;
2014 xcb_icccm_wm_hints_t hints;
2015
2016 for (i = 0; i < workspace_limit; i++)
2017 urgent[i] = 0;
2018
2019 num_screens = get_screen_count();
2020 for (i = 0; i < num_screens; i++)
2021 for (j = 0; j < workspace_limit; j++)
2022 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry) {
2023 c = xcb_icccm_get_wm_hints(conn, win->id);
2024 if (xcb_icccm_get_wm_hints_reply(conn, c,
2025 &hints, NULL) == 0)
2026 continue;
2027 if (hints.flags & XCB_ICCCM_WM_HINT_X_URGENCY)
2028 urgent[j] = 1;
2029 }
2030
2031 for (i = 0; i < workspace_limit; i++) {
2032 if (urgent[i])
2033 snprintf(b, sizeof b, "%d ", i + 1);
2034 else
2035 snprintf(b, sizeof b, "- ");
2036 strlcat(s, b, sz);
2037 }
2038 }
2039
2040 void
2041 bar_workspace_name(char *s, size_t sz, struct swm_region *r)
2042 {
2043 if (r == NULL || r->ws == NULL)
2044 return;
2045 if (r->ws->name != NULL)
2046 strlcat(s, r->ws->name, sz);
2047 }
2048
2049 /* build the default bar format according to the defined enabled options */
2050 void
2051 bar_fmt(const char *fmtexp, char *fmtnew, struct swm_region *r, size_t sz)
2052 {
2053 /* if format provided, just copy the buffers */
2054 if (bar_format != NULL) {
2055 strlcpy(fmtnew, fmtexp, sz);
2056 return;
2057 }
2058
2059 /* reset the output buffer */
2060 *fmtnew = '\0';
2061
2062 strlcat(fmtnew, "+N:+I ", sz);
2063 if (stack_enabled)
2064 strlcat(fmtnew, "+S", sz);
2065 strlcat(fmtnew, " ", sz);
2066
2067 /* only show the workspace name if there's actually one */
2068 if (r != NULL && r->ws != NULL && r->ws->name != NULL)
2069 strlcat(fmtnew, "<+D>", sz);
2070 strlcat(fmtnew, "+3<", sz);
2071
2072 if (clock_enabled) {
2073 strlcat(fmtnew, fmtexp, sz);
2074 strlcat(fmtnew, "+4<", sz);
2075 }
2076
2077 /* bar_urgent already adds the space before the last asterisk */
2078 if (urgent_enabled)
2079 strlcat(fmtnew, "* +U*+4<", sz);
2080
2081 if (title_class_enabled) {
2082 strlcat(fmtnew, "+C", sz);
2083 if (!title_name_enabled)
2084 strlcat(fmtnew, "+4<", sz);
2085 }
2086
2087 /* checks needed by the colon and floating strlcat(3) calls below */
2088 if (r != NULL && r->ws != NULL && r->ws->focus != NULL) {
2089 if (title_name_enabled) {
2090 if (title_class_enabled)
2091 strlcat(fmtnew, ":", sz);
2092 strlcat(fmtnew, "+T+4<", sz);
2093 }
2094 if (window_name_enabled) {
2095 if (r->ws->focus->floating)
2096 strlcat(fmtnew, "+F ", sz);
2097 strlcat(fmtnew, "+64W ", sz);
2098 }
2099 }
2100
2101 /* finally add the action script output and the version */
2102 strlcat(fmtnew, "+4<+A+4<+V", sz);
2103 }
2104
2105 void
2106 bar_replace_pad(char *tmp, int *limit, size_t sz)
2107 {
2108 /* special case; no limit given, pad one space, instead */
2109 if (*limit == (int)sz - 1)
2110 *limit = 1;
2111 snprintf(tmp, sz, "%*s", *limit, " ");
2112 }
2113
2114 /* replaces the bar format character sequences (like in tmux(1)) */
2115 char *
2116 bar_replace_seq(char *fmt, char *fmtrep, struct swm_region *r, size_t *offrep,
2117 size_t sz)
2118 {
2119 char *ptr;
2120 char tmp[SWM_BAR_MAX];
2121 int limit, size;
2122 size_t len;
2123
2124 /* reset strlcat(3) buffer */
2125 *tmp = '\0';
2126
2127 /* get number, if any */
2128 fmt++;
2129 size = 0;
2130 if (sscanf(fmt, "%d%n", &limit, &size) != 1)
2131 limit = sizeof tmp - 1;
2132 if (limit <= 0 || limit >= (int)sizeof tmp)
2133 limit = sizeof tmp - 1;
2134
2135 /* there is nothing to replace (ie EOL) */
2136 fmt += size;
2137 if (*fmt == '\0')
2138 return (fmt);
2139
2140 switch (*fmt) {
2141 case '<':
2142 bar_replace_pad(tmp, &limit, sizeof tmp);
2143 break;
2144 case 'A':
2145 snprintf(tmp, sizeof tmp, "%s", bar_ext);
2146 break;
2147 case 'C':
2148 bar_class_name(tmp, sizeof tmp, r);
2149 break;
2150 case 'D':
2151 bar_workspace_name(tmp, sizeof tmp, r);
2152 break;
2153 case 'F':
2154 bar_window_float(tmp, sizeof tmp, r);
2155 break;
2156 case 'I':
2157 snprintf(tmp, sizeof tmp, "%d", r->ws->idx + 1);
2158 break;
2159 case 'N':
2160 snprintf(tmp, sizeof tmp, "%d", r->s->idx + 1);
2161 break;
2162 case 'P':
2163 bar_class_title_name(tmp, sizeof tmp, r);
2164 break;
2165 case 'S':
2166 snprintf(tmp, sizeof tmp, "%s", r->ws->stacker);
2167 break;
2168 case 'T':
2169 bar_title_name(tmp, sizeof tmp, r);
2170 break;
2171 case 'U':
2172 bar_urgent(tmp, sizeof tmp);
2173 break;
2174 case 'V':
2175 snprintf(tmp, sizeof tmp, "%s", bar_vertext);
2176 break;
2177 case 'W':
2178 bar_window_name(tmp, sizeof tmp, r);
2179 break;
2180 default:
2181 /* unknown character sequence; copy as-is */
2182 snprintf(tmp, sizeof tmp, "+%c", *fmt);
2183 break;
2184 }
2185
2186 len = strlen(tmp);
2187 ptr = tmp;
2188 if ((int)len < limit)
2189 limit = len;
2190 while (limit-- > 0) {
2191 if (*offrep >= sz - 1)
2192 break;
2193 fmtrep[(*offrep)++] = *ptr++;
2194 }
2195
2196 fmt++;
2197 return (fmt);
2198 }
2199
2200 void
2201 bar_replace(char *fmt, char *fmtrep, struct swm_region *r, size_t sz)
2202 {
2203 size_t off;
2204
2205 off = 0;
2206 while (*fmt != '\0') {
2207 if (*fmt != '+') {
2208 /* skip ordinary characters */
2209 if (off >= sz - 1)
2210 break;
2211 fmtrep[off++] = *fmt++;
2212 continue;
2213 }
2214
2215 /* character sequence found; replace it */
2216 fmt = bar_replace_seq(fmt, fmtrep, r, &off, sz);
2217 if (off >= sz - 1)
2218 break;
2219 }
2220
2221 fmtrep[off] = '\0';
2222 }
2223
2224 void
2225 bar_fmt_expand(char *fmtexp, size_t sz)
2226 {
2227 char *fmt = NULL;
2228 size_t len;
2229 struct tm tm;
2230 time_t tmt;
2231
2232 /* start by grabbing the current time and date */
2233 time(&tmt);
2234 localtime_r(&tmt, &tm);
2235
2236 /* figure out what to expand */
2237 if (bar_format != NULL)
2238 fmt = bar_format;
2239 else if (bar_format == NULL && clock_enabled)
2240 fmt = clock_format;
2241 /* if nothing to expand bail out */
2242 if (fmt == NULL) {
2243 *fmtexp = '\0';
2244 return;
2245 }
2246
2247 /* copy as-is, just in case the format shouldn't be expanded below */
2248 strlcpy(fmtexp, fmt, sz);
2249 /* finally pass the string through strftime(3) */
2250 #ifndef SWM_DENY_CLOCK_FORMAT
2251 if ((len = strftime(fmtexp, sz, fmt, &tm)) == 0)
2252 warnx("format too long");
2253 fmtexp[len] = '\0';
2254 #endif
2255 }
2256
2257 /* Redraws the bar; need to follow with xcb_flush() or focus_flush(). */
2258 void
2259 bar_draw(void)
2260 {
2261 char fmtexp[SWM_BAR_MAX], fmtnew[SWM_BAR_MAX];
2262 char fmtrep[SWM_BAR_MAX];
2263 int i, num_screens;
2264 struct swm_region *r;
2265
2266 /* expand the format by first passing it through strftime(3) */
2267 bar_fmt_expand(fmtexp, sizeof fmtexp);
2268
2269 num_screens = get_screen_count();
2270 for (i = 0; i < num_screens; i++) {
2271 TAILQ_FOREACH(r, &screens[i].rl, entry) {
2272 if (r->bar == NULL)
2273 continue;
2274
2275 if (bar_enabled && r->ws->bar_enabled)
2276 xcb_map_window(conn, r->bar->id);
2277 else {
2278 xcb_unmap_window(conn, r->bar->id);
2279 continue;
2280 }
2281
2282 if (startup_exception)
2283 snprintf(fmtrep, sizeof fmtrep, "total "
2284 "exceptions: %d, first exception: %s",
2285 nr_exceptions,
2286 startup_exception);
2287 else {
2288 bar_fmt(fmtexp, fmtnew, r, sizeof fmtnew);
2289 bar_replace(fmtnew, fmtrep, r, sizeof fmtrep);
2290 }
2291 if (bar_font_legacy)
2292 bar_print_legacy(r, fmtrep);
2293 else
2294 bar_print(r, fmtrep);
2295 }
2296 }
2297 }
2298
2299 /*
2300 * Reads external script output; call when stdin is readable.
2301 * Returns 1 if bar_ext was updated; otherwise 0.
2302 */
2303 int
2304 bar_extra_update(void)
2305 {
2306 size_t len;
2307 char b[SWM_BAR_MAX];
2308 int changed = 0;
2309
2310 if (!bar_extra)
2311 return changed;
2312
2313 while (fgets(b, sizeof(b), stdin) != NULL) {
2314 if (bar_enabled) {
2315 len = strlen(b);
2316 if (b[len - 1] == '\n') {
2317 /* Remove newline. */
2318 b[--len] = '\0';
2319
2320 /* "Clear" bar_ext. */
2321 bar_ext[0] = '\0';
2322
2323 /* Flush buffered output. */
2324 strlcpy(bar_ext, bar_ext_buf, sizeof(bar_ext));
2325 bar_ext_buf[0] = '\0';
2326
2327 /* Append new output to bar. */
2328 strlcat(bar_ext, b, sizeof(bar_ext));
2329
2330 changed = 1;
2331 } else {
2332 /* Buffer output. */
2333 strlcat(bar_ext_buf, b, sizeof(bar_ext_buf));
2334 }
2335 }
2336 }
2337
2338 if (errno != EAGAIN) {
2339 warn("bar_action failed");
2340 bar_extra_stop();
2341 changed = 1;
2342 }
2343
2344 return changed;
2345 }
2346
2347 void
2348 bar_toggle(struct swm_region *r, union arg *args)
2349 {
2350 struct swm_region *tmpr;
2351 int i, num_screens;
2352
2353 /* suppress unused warnings since vars are needed */
2354 (void)r;
2355 (void)args;
2356
2357 DNPRINTF(SWM_D_BAR, "bar_toggle\n");
2358
2359 switch (args->id) {
2360 case SWM_ARG_ID_BAR_TOGGLE_WS:
2361 /* Only change if master switch is enabled. */
2362 if (bar_enabled)
2363 r->ws->bar_enabled = !r->ws->bar_enabled;
2364 else
2365 bar_enabled = r->ws->bar_enabled = 1;
2366 break;
2367 case SWM_ARG_ID_BAR_TOGGLE:
2368 bar_enabled = !bar_enabled;
2369 break;
2370 }
2371
2372 /* update bars as necessary */
2373 num_screens = get_screen_count();
2374 for (i = 0; i < num_screens; i++)
2375 TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
2376 if (tmpr->bar) {
2377 if (bar_enabled && tmpr->ws->bar_enabled)
2378 xcb_map_window(conn, tmpr->bar->id);
2379 else
2380 xcb_unmap_window(conn, tmpr->bar->id);
2381 }
2382
2383 stack();
2384
2385 /* must be after stack */
2386 bar_draw();
2387
2388 focus_flush();
2389 }
2390
2391 void
2392 bar_extra_setup(void)
2393 {
2394 /* do this here because the conf file is in memory */
2395 if (!bar_extra && bar_argv[0]) {
2396 /* launch external status app */
2397 bar_extra = 1;
2398 if (pipe(bar_pipe) == -1)
2399 err(1, "pipe error");
2400 socket_setnonblock(bar_pipe[0]);
2401 socket_setnonblock(bar_pipe[1]); /* XXX hmmm, really? */
2402
2403 /* Set stdin to read from the pipe. */
2404 if (dup2(bar_pipe[0], STDIN_FILENO) == -1)
2405 err(1, "dup2");
2406
2407 /* Set stdout to write to the pipe. */
2408 if (dup2(bar_pipe[1], STDOUT_FILENO) == -1)
2409 err(1, "dup2");
2410
2411 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
2412 err(1, "could not disable SIGPIPE");
2413 switch (bar_pid = fork()) {
2414 case -1:
2415 err(1, "cannot fork");
2416 break;
2417 case 0: /* child */
2418 close(bar_pipe[0]);
2419 execvp(bar_argv[0], bar_argv);
2420 err(1, "%s external app failed", bar_argv[0]);
2421 break;
2422 default: /* parent */
2423 close(bar_pipe[1]);
2424 break;
2425 }
2426
2427 atexit(kill_bar_extra_atexit);
2428 }
2429 }
2430
2431 void
2432 kill_bar_extra_atexit(void)
2433 {
2434 if (bar_pid)
2435 kill(bar_pid, SIGTERM);
2436 }
2437
2438 int
2439 isxlfd(char *s)
2440 {
2441 int count = 0;
2442
2443 while ((s = index(s, '-'))) {
2444 ++count;
2445 ++s;
2446 }
2447
2448 return (count == 14);
2449 }
2450
2451 void
2452 fontset_init(void)
2453 {
2454 char *default_string;
2455 char **missing_charsets;
2456 int num_missing_charsets = 0;
2457 int i;
2458
2459 if (bar_fs) {
2460 XFreeFontSet(display, bar_fs);
2461 bar_fs = NULL;
2462 }
2463
2464 DNPRINTF(SWM_D_INIT, "fontset_init: loading bar_fonts: %s\n", bar_fonts);
2465
2466 bar_fs = XCreateFontSet(display, bar_fonts, &missing_charsets,
2467 &num_missing_charsets, &default_string);
2468
2469 if (num_missing_charsets > 0) {
2470 warnx("Unable to load charset(s):");
2471
2472 for (i = 0; i < num_missing_charsets; ++i)
2473 warnx("%s", missing_charsets[i]);
2474
2475 XFreeStringList(missing_charsets);
2476
2477 if (strcmp(default_string, ""))
2478 warnx("Glyphs from those sets will be replaced "
2479 "by '%s'.", default_string);
2480 else
2481 warnx("Glyphs from those sets won't be drawn.");
2482 }
2483
2484 if (bar_fs == NULL)
2485 errx(1, "Error creating font set structure.");
2486
2487 bar_fs_extents = XExtentsOfFontSet(bar_fs);
2488
2489 bar_height = bar_fs_extents->max_logical_extent.height +
2490 2 * bar_border_width;
2491
2492 if (bar_height < 1)
2493 bar_height = 1;
2494 }
2495
2496 void
2497 xft_init(struct swm_region *r)
2498 {
2499 char *font, *d, *search;
2500 XRenderColor color;
2501
2502 if (bar_font == NULL) {
2503 if ((d = strdup(bar_fonts)) == NULL)
2504 errx(1, "insufficient memory.");
2505 search = d;
2506 while ((font = strsep(&search, ",")) != NULL) {
2507 if (*font == '\0')
2508 continue;
2509
2510 DNPRINTF(SWM_D_INIT, "xft_init: try font %s\n", font);
2511
2512 if (isxlfd(font)) {
2513 bar_font = XftFontOpenXlfd(display, r->s->idx,
2514 font);
2515 } else {
2516 bar_font = XftFontOpenName(display, r->s->idx,
2517 font);
2518 }
2519
2520 if (!bar_font) {
2521 warnx("unable to load font %s", font);
2522 continue;
2523 } else {
2524 DNPRINTF(SWM_D_INIT, "successfully opened "
2525 "font %s\n", font);
2526 break;
2527 }
2528 }
2529 free(d);
2530 }
2531
2532 if (bar_font == NULL)
2533 errx(1, "unable to open a font");
2534
2535 PIXEL_TO_XRENDERCOLOR(r->s->c[SWM_S_COLOR_BAR_FONT].pixel, color);
2536
2537 if (!XftColorAllocValue(display, DefaultVisual(display, r->s->idx),
2538 DefaultColormap(display, r->s->idx), &color, &bar_font_color))
2539 warn("Xft error: unable to allocate color.");
2540
2541 bar_height = bar_font->height + 2 * bar_border_width;
2542
2543 if (bar_height < 1)
2544 bar_height = 1;
2545 }
2546
2547 void
2548 bar_setup(struct swm_region *r)
2549 {
2550 xcb_screen_t *screen;
2551 uint32_t wa[3];
2552
2553 DNPRINTF(SWM_D_BAR, "bar_setup: screen %d.\n",
2554 r->s->idx);
2555
2556 if ((screen = get_screen(r->s->idx)) == NULL)
2557 errx(1, "ERROR: can't get screen %d.", r->s->idx);
2558
2559 if (r->bar != NULL)
2560 return;
2561
2562 if ((r->bar = calloc(1, sizeof(struct swm_bar))) == NULL)
2563 err(1, "bar_setup: calloc: failed to allocate memory.");
2564
2565 if (bar_font_legacy)
2566 fontset_init();
2567 else
2568 xft_init(r);
2569
2570 X(r->bar) = X(r);
2571 Y(r->bar) = bar_at_bottom ? (Y(r) + HEIGHT(r) - bar_height) : Y(r);
2572 WIDTH(r->bar) = WIDTH(r) - 2 * bar_border_width;
2573 HEIGHT(r->bar) = bar_height - 2 * bar_border_width;
2574
2575 /* Assume region is unfocused when we create the bar. */
2576 r->bar->id = xcb_generate_id(conn);
2577 wa[0] = r->s->c[SWM_S_COLOR_BAR].pixel;
2578 wa[1] = r->s->c[SWM_S_COLOR_BAR_BORDER_UNFOCUS].pixel;
2579 wa[2] = XCB_EVENT_MASK_EXPOSURE | XCB_EVENT_MASK_POINTER_MOTION |
2580 XCB_EVENT_MASK_POINTER_MOTION_HINT;
2581
2582 xcb_create_window(conn, XCB_COPY_FROM_PARENT, r->bar->id, r->s->root,
2583 X(r->bar), Y(r->bar), WIDTH(r->bar), HEIGHT(r->bar),
2584 bar_border_width, XCB_WINDOW_CLASS_INPUT_OUTPUT,
2585 XCB_COPY_FROM_PARENT, XCB_CW_BACK_PIXEL | XCB_CW_BORDER_PIXEL
2586 | XCB_CW_EVENT_MASK, wa);
2587
2588 r->bar->buffer = xcb_generate_id(conn);
2589 xcb_create_pixmap(conn, screen->root_depth, r->bar->buffer, r->bar->id,
2590 WIDTH(r->bar), HEIGHT(r->bar));
2591
2592 if (xrandr_support)
2593 xcb_randr_select_input(conn, r->bar->id,
2594 XCB_RANDR_NOTIFY_MASK_OUTPUT_CHANGE);
2595
2596 if (bar_enabled)
2597 xcb_map_window(conn, r->bar->id);
2598
2599 DNPRINTF(SWM_D_BAR, "bar_setup: window: 0x%x, (x,y) w x h: (%d,%d) "
2600 "%d x %d\n", WINID(r->bar), X(r->bar), Y(r->bar), WIDTH(r->bar),
2601 HEIGHT(r->bar));
2602
2603 bar_extra_setup();
2604 }
2605
2606 void
2607 bar_cleanup(struct swm_region *r)
2608 {
2609 if (r->bar == NULL)
2610 return;
2611 xcb_destroy_window(conn, r->bar->id);
2612 xcb_free_pixmap(conn, r->bar->buffer);
2613 free(r->bar);
2614 r->bar = NULL;
2615 }
2616
2617 void
2618 set_win_state(struct ws_win *win, uint16_t state)
2619 {
2620 uint16_t data[2] = { state, XCB_ATOM_NONE };
2621
2622 DNPRINTF(SWM_D_EVENT, "set_win_state: window: 0x%x, state: %u\n",
2623 win->id, state);
2624
2625 if (win == NULL)
2626 return;
2627
2628 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id, a_state,
2629 a_state, 32, 2, data);
2630 }
2631
2632 uint32_t
2633 getstate(xcb_window_t w)
2634 {
2635 uint32_t result = 0;
2636 xcb_get_property_cookie_t c;
2637 xcb_get_property_reply_t *r;
2638
2639 c = xcb_get_property(conn, 0, w, a_state, a_state, 0L, 2L);
2640 r = xcb_get_property_reply(conn, c, NULL);
2641
2642 if (r) {
2643 if (r->type == a_state && r->format == 32 && r->length == 2)
2644 result = *((uint32_t *)xcb_get_property_value(r));
2645 free(r);
2646 }
2647
2648 DNPRINTF(SWM_D_MISC, "getstate property: win 0x%x state %u\n", w,
2649 result);
2650 return (result);
2651 }
2652
2653 void
2654 version(struct swm_region *r, union arg *args)
2655 {
2656 /* suppress unused warnings since vars are needed */
2657 (void)r;
2658 (void)args;
2659
2660 bar_version = !bar_version;
2661 if (bar_version)
2662 snprintf(bar_vertext, sizeof bar_vertext,
2663 "Version: %s Build: %s", SPECTRWM_VERSION, buildstr);
2664 else
2665 strlcpy(bar_vertext, "", sizeof bar_vertext);
2666
2667 bar_draw();
2668 xcb_flush(conn);
2669 }
2670
2671 void
2672 client_msg(struct ws_win *win, xcb_atom_t a, xcb_timestamp_t t)
2673 {
2674 xcb_client_message_event_t ev;
2675 #ifdef SWM_DEBUG
2676 char *name;
2677 #endif
2678
2679 if (win == NULL)
2680 return;
2681 #ifdef SWM_DEBUG
2682 name = get_atom_name(a);
2683 DNPRINTF(SWM_D_EVENT, "client_msg: window: 0x%x, atom: %s(%u), "
2684 "time: %#x\n",
2685 win->id, name, a, t);
2686 free(name);
2687 #endif
2688
2689 bzero(&ev, sizeof ev);
2690 ev.response_type = XCB_CLIENT_MESSAGE;
2691 ev.window = win->id;
2692 ev.type = a_prot;
2693 ev.format = 32;
2694 ev.data.data32[0] = a;
2695 ev.data.data32[1] = t;
2696
2697 xcb_send_event(conn, 0, win->id,
2698 XCB_EVENT_MASK_NO_EVENT, (const char *)&ev);
2699 }
2700
2701 /* synthetic response to a ConfigureRequest when not making a change */
2702 void
2703 config_win(struct ws_win *win, xcb_configure_request_event_t *ev)
2704 {
2705 xcb_configure_notify_event_t ce;
2706
2707 if (win == NULL)
2708 return;
2709
2710 /* send notification of unchanged state. */
2711 bzero(&ce, sizeof(ce));
2712 ce.response_type = XCB_CONFIGURE_NOTIFY;
2713 ce.x = X(win);
2714 ce.y = Y(win);
2715 ce.width = WIDTH(win);
2716 ce.height = HEIGHT(win);
2717 ce.override_redirect = 0;
2718
2719 if (ev == NULL) {
2720 /* EWMH */
2721 ce.event = win->id;
2722 ce.window = win->id;
2723 ce.border_width = BORDER(win);
2724 ce.above_sibling = XCB_WINDOW_NONE;
2725 } else {
2726 /* normal */
2727 ce.event = ev->window;
2728 ce.window = ev->window;
2729
2730 /* make response appear more WM_SIZE_HINTS-compliant */
2731 if (win->sh.flags) {
2732 DNPRINTF(SWM_D_MISC, "config_win: hints: window: 0x%x,"
2733 " sh.flags: %u, min: %d x %d, max: %d x %d, inc: "
2734 "%d x %d\n", win->id, win->sh.flags, SH_MIN_W(win),
2735 SH_MIN_H(win), SH_MAX_W(win), SH_MAX_H(win),
2736 SH_INC_W(win), SH_INC_H(win));
2737 }
2738
2739 /* min size */
2740 if (SH_MIN(win)) {
2741 /* the hint may be set... to 0! */
2742 if (SH_MIN_W(win) > 0 && ce.width < SH_MIN_W(win))
2743 ce.width = SH_MIN_W(win);
2744 if (SH_MIN_H(win) > 0 && ce.height < SH_MIN_H(win))
2745 ce.height = SH_MIN_H(win);
2746 }
2747
2748 /* max size */
2749 if (SH_MAX(win)) {
2750 /* may also be advertized as 0 */
2751 if (SH_MAX_W(win) > 0 && ce.width > SH_MAX_W(win))
2752 ce.width = SH_MAX_W(win);
2753 if (SH_MAX_H(win) > 0 && ce.height > SH_MAX_H(win))
2754 ce.height = SH_MAX_H(win);
2755 }
2756
2757 /* resize increment. */
2758 if (SH_INC(win)) {
2759 if (SH_INC_W(win) > 1 && ce.width > SH_INC_W(win))
2760 ce.width -= (ce.width - SH_MIN_W(win)) %
2761 SH_INC_W(win);
2762 if (SH_INC_H(win) > 1 && ce.height > SH_INC_H(win))
2763 ce.height -= (ce.height - SH_MIN_H(win)) %
2764 SH_INC_H(win);
2765 }
2766
2767 /* adjust x and y for requested border_width. */
2768 ce.x += BORDER(win) - ev->border_width;
2769 ce.y += BORDER(win) - ev->border_width;
2770 ce.border_width = ev->border_width;
2771 ce.above_sibling = ev->sibling;
2772 }
2773
2774 DNPRINTF(SWM_D_MISC, "config_win: ewmh: %s, window: 0x%x, (x,y) w x h: "
2775 "(%d,%d) %d x %d, border: %d\n", YESNO(ev == NULL), win->id, ce.x,
2776 ce.y, ce.width, ce.height, ce.border_width);
2777
2778 xcb_send_event(conn, 0, win->id, XCB_EVENT_MASK_STRUCTURE_NOTIFY,
2779 (char *)&ce);
2780 }
2781
2782 int
2783 count_win(struct workspace *ws, int count_transient)
2784 {
2785 struct ws_win *win;
2786 int count = 0;
2787
2788 TAILQ_FOREACH(win, &ws->winlist, entry) {
2789 if (!count_transient && win->floating)
2790 continue;
2791 if (!count_transient && win->transient)
2792 continue;
2793 if (win->iconic)
2794 continue;
2795 count++;
2796 }
2797 DNPRINTF(SWM_D_MISC, "count_win: %d\n", count);
2798
2799 return (count);
2800 }
2801
2802 void
2803 quit(struct swm_region *r, union arg *args)
2804 {
2805 /* suppress unused warnings since vars are needed */
2806 (void)r;
2807 (void)args;
2808
2809 DNPRINTF(SWM_D_MISC, "quit\n");
2810 running = 0;
2811 }
2812
2813 void
2814 map_window(struct ws_win *win, xcb_window_t sibling)
2815 {
2816 uint16_t mode = XCB_CONFIG_WINDOW_STACK_MODE;
2817 uint32_t val[2];
2818 int i = 0;
2819
2820 /* If sibling is specified, stack right above it. */
2821 if (sibling != XCB_WINDOW_NONE) {
2822 mode |= XCB_CONFIG_WINDOW_SIBLING;
2823 val[i++] = sibling;
2824 }
2825
2826 val[i] = XCB_STACK_MODE_ABOVE;
2827
2828 if (win == NULL)
2829 return;
2830
2831 DNPRINTF(SWM_D_EVENT, "map_window: win 0x%x, mapped: %s, "
2832 "sibling: 0x%x\n", win->id, YESNO(win->mapped), sibling);
2833
2834 xcb_configure_window(conn, win->id, mode, val);
2835
2836 if (win->mapped)
2837 return;
2838
2839 xcb_map_window(conn, win->id);
2840 set_win_state(win, XCB_ICCCM_WM_STATE_NORMAL);
2841 win->mapped = 1;
2842 }
2843
2844 void
2845 unmap_window(struct ws_win *win)
2846 {
2847 if (win == NULL)
2848 return;
2849
2850 DNPRINTF(SWM_D_EVENT, "unmap_window: win 0x%x, mapped: %s\n", win->id,
2851 YESNO(win->mapped));
2852
2853 if (!win->mapped)
2854 return;
2855
2856 xcb_unmap_window(conn, win->id);
2857 set_win_state(win, XCB_ICCCM_WM_STATE_ICONIC);
2858 win->mapped = 0;
2859 }
2860
2861 void
2862 unmap_all(void)
2863 {
2864 struct ws_win *win;
2865 int i, j, num_screens;
2866
2867 num_screens = get_screen_count();
2868 for (i = 0; i < num_screens; i++)
2869 for (j = 0; j < workspace_limit; j++)
2870 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
2871 unmap_window(win);
2872 }
2873
2874 void
2875 fake_keypress(struct ws_win *win, xcb_keysym_t keysym, uint16_t modifiers)
2876 {
2877 xcb_key_press_event_t event;
2878 xcb_keycode_t *keycode;
2879
2880 if (win == NULL)
2881 return;
2882
2883 keycode = xcb_key_symbols_get_keycode(syms, keysym);
2884
2885 DNPRINTF(SWM_D_MISC, "fake_keypress: win 0x%x keycode %u\n",
2886 win->id, *keycode);
2887
2888 bzero(&event, sizeof(event));
2889 event.event = win->id;
2890 event.root = win->s->root;
2891 event.child = XCB_WINDOW_NONE;
2892 event.time = XCB_CURRENT_TIME;
2893 event.event_x = X(win);
2894 event.event_y = Y(win);
2895 event.root_x = 1;
2896 event.root_y = 1;
2897 event.same_screen = 1;
2898 event.detail = *keycode;
2899 event.state = modifiers;
2900
2901 event.response_type = XCB_KEY_PRESS;
2902 xcb_send_event(conn, 1, win->id,
2903 XCB_EVENT_MASK_KEY_PRESS, (const char *)&event);
2904
2905 event.response_type = XCB_KEY_RELEASE;
2906 xcb_send_event(conn, 1, win->id,
2907 XCB_EVENT_MASK_KEY_RELEASE, (const char *)&event);
2908
2909 free(keycode);
2910 }
2911
2912 void
2913 restart(struct swm_region *r, union arg *args)
2914 {
2915 /* suppress unused warning since var is needed */
2916 (void)r;
2917 (void)args;
2918
2919 DNPRINTF(SWM_D_MISC, "restart: %s\n", start_argv[0]);
2920
2921 shutdown_cleanup();
2922
2923 execvp(start_argv[0], start_argv);
2924 warn("execvp failed");
2925 quit(NULL, NULL);
2926 }
2927
2928 struct ws_win *
2929 get_pointer_win(xcb_window_t root)
2930 {
2931 struct ws_win *win = NULL;
2932 xcb_query_pointer_reply_t *r;
2933
2934 DNPRINTF(SWM_D_EVENT, "get_pointer_win: root: 0x%x.\n", root);
2935
2936 r = xcb_query_pointer_reply(conn, xcb_query_pointer(conn, root), NULL);
2937 if (r) {
2938 win = find_window(r->child);
2939 if (win) {
2940 DNPRINTF(SWM_D_EVENT, "get_pointer_win: 0x%x.\n",
2941 win->id);
2942 } else {
2943 DNPRINTF(SWM_D_EVENT, "get_pointer_win: none.\n");
2944 }
2945 free(r);
2946 }
2947
2948 return win;
2949 }
2950
2951 struct swm_region *
2952 root_to_region(xcb_window_t root, int check)
2953 {
2954 struct ws_win *cfw;
2955 struct swm_region *r = NULL;
2956 int i, num_screens;
2957 xcb_query_pointer_reply_t *qpr;
2958 xcb_get_input_focus_reply_t *gifr;
2959
2960 DNPRINTF(SWM_D_MISC, "root_to_region: window: 0x%x\n", root);
2961
2962 num_screens = get_screen_count();
2963 for (i = 0; i < num_screens; i++)
2964 if (screens[i].root == root)
2965 break;
2966
2967 if (check & SWM_CK_REGION)
2968 r = screens[i].r_focus;
2969
2970 if (r == NULL && check & SWM_CK_FOCUS) {
2971 /* Try to find an actively focused window */
2972 gifr = xcb_get_input_focus_reply(conn,
2973 xcb_get_input_focus(conn), NULL);
2974 if (gifr) {
2975 cfw = find_window(gifr->focus);
2976 if (cfw && cfw->ws->r)
2977 r = cfw->ws->r;
2978
2979 free(gifr);
2980 }
2981 }
2982
2983 if (r == NULL && check & SWM_CK_POINTER) {
2984 /* No region with an active focus; try to use pointer. */
2985 qpr = xcb_query_pointer_reply(conn, xcb_query_pointer(conn,
2986 screens[i].root), NULL);
2987
2988 if (qpr) {
2989 DNPRINTF(SWM_D_MISC, "root_to_region: pointer: "
2990 "(%d,%d)\n", qpr->root_x, qpr->root_y);
2991 TAILQ_FOREACH(r, &screens[i].rl, entry)
2992 if (X(r) <= qpr->root_x &&
2993 qpr->root_x < MAX_X(r) &&
2994 Y(r) <= qpr->root_y &&
2995 qpr->root_y < MAX_Y(r))
2996 break;
2997 free(qpr);
2998 }
2999 }
3000
3001 /* Last resort. */
3002 if (r == NULL && check & SWM_CK_FALLBACK)
3003 r = TAILQ_FIRST(&screens[i].rl);
3004
3005 DNPRINTF(SWM_D_MISC, "root_to_region: idx: %d\n", get_region_index(r));
3006
3007 return (r);
3008 }
3009
3010 struct ws_win *
3011 find_unmanaged_window(xcb_window_t id)
3012 {
3013 struct ws_win *win;
3014 int i, j, num_screens;
3015
3016 num_screens = get_screen_count();
3017 for (i = 0; i < num_screens; i++)
3018 for (j = 0; j < workspace_limit; j++)
3019 TAILQ_FOREACH(win, &screens[i].ws[j].unmanagedlist,
3020 entry)
3021 if (id == win->id)
3022 return (win);
3023 return (NULL);
3024 }
3025
3026 struct ws_win *
3027 find_window(xcb_window_t id)
3028 {
3029 struct ws_win *win;
3030 int i, j, num_screens;
3031 xcb_query_tree_reply_t *r;
3032
3033 num_screens = get_screen_count();
3034 for (i = 0; i < num_screens; i++)
3035 for (j = 0; j < workspace_limit; j++)
3036 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
3037 if (id == win->id)
3038 return (win);
3039
3040 r = xcb_query_tree_reply(conn, xcb_query_tree(conn, id), NULL);
3041 if (!r)
3042 return (NULL);
3043
3044 /* if we were looking for the parent return that window instead */
3045 if (r->parent == 0 || r->root == r->parent) {
3046 free(r);
3047 return (NULL);
3048 }
3049
3050 /* look for parent */
3051 for (i = 0; i < num_screens; i++)
3052 for (j = 0; j < workspace_limit; j++)
3053 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
3054 if (r->parent == win->id) {
3055 free(r);
3056 return (win);
3057 }
3058
3059 free(r);
3060 return (NULL);
3061 }
3062
3063 void
3064 spawn(int ws_idx, union arg *args, int close_fd)
3065 {
3066 int fd;
3067 char *ret = NULL;
3068
3069 DNPRINTF(SWM_D_MISC, "spawn: %s\n", args->argv[0]);
3070
3071 close(xcb_get_file_descriptor(conn));
3072
3073 setenv("LD_PRELOAD", SWM_LIB, 1);
3074
3075 if (asprintf(&ret, "%d", ws_idx) == -1) {
3076 warn("spawn: asprintf SWM_WS");
3077 _exit(1);
3078 }
3079 setenv("_SWM_WS", ret, 1);
3080 free(ret);
3081 ret = NULL;
3082
3083 if (asprintf(&ret, "%d", getpid()) == -1) {
3084 warn("spawn: asprintf _SWM_PID");
3085 _exit(1);
3086 }
3087 setenv("_SWM_PID", ret, 1);
3088 free(ret);
3089 ret = NULL;
3090
3091 if (setsid() == -1) {
3092 warn("spawn: setsid");
3093 _exit(1);
3094 }
3095
3096 if (close_fd) {
3097 /*
3098 * close stdin and stdout to prevent interaction between apps
3099 * and the baraction script
3100 * leave stderr open to record errors
3101 */
3102 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) == -1) {
3103 warn("spawn: open");
3104 _exit(1);
3105 }
3106 dup2(fd, STDIN_FILENO);
3107 dup2(fd, STDOUT_FILENO);
3108 if (fd > 2)
3109 close(fd);
3110 }
3111
3112 execvp(args->argv[0], args->argv);
3113
3114 warn("spawn: execvp");
3115 _exit(1);
3116 }
3117
3118 void
3119 kill_refs(struct ws_win *win)
3120 {
3121 int i, x, num_screens;
3122 struct swm_region *r;
3123 struct workspace *ws;
3124
3125 if (win == NULL)
3126 return;
3127
3128 num_screens = get_screen_count();
3129 for (i = 0; i < num_screens; i++)
3130 TAILQ_FOREACH(r, &screens[i].rl, entry)
3131 for (x = 0; x < workspace_limit; x++) {
3132 ws = &r->s->ws[x];
3133 if (win == ws->focus)
3134 ws->focus = NULL;
3135 if (win == ws->focus_prev)
3136 ws->focus_prev = NULL;
3137 }
3138 }
3139
3140 int
3141 validate_win(struct ws_win *testwin)
3142 {
3143 struct ws_win *win;
3144 struct workspace *ws;
3145 struct swm_region *r;
3146 int i, x, num_screens;
3147
3148 if (testwin == NULL)
3149 return (0);
3150
3151 num_screens = get_screen_count();
3152 for (i = 0; i < num_screens; i++)
3153 TAILQ_FOREACH(r, &screens[i].rl, entry)
3154 for (x = 0; x < workspace_limit; x++) {
3155 ws = &r->s->ws[x];
3156 TAILQ_FOREACH(win, &ws->winlist, entry)
3157 if (win == testwin)
3158 return (0);
3159 }
3160 return (1);
3161 }
3162
3163 int
3164 validate_ws(struct workspace *testws)
3165 {
3166 struct swm_region *r;
3167 struct workspace *ws;
3168 int i, x, num_screens;
3169
3170 /* validate all ws */
3171 num_screens = get_screen_count();
3172 for (i = 0; i < num_screens; i++)
3173 TAILQ_FOREACH(r, &screens[i].rl, entry)
3174 for (x = 0; x < workspace_limit; x++) {
3175 ws = &r->s->ws[x];
3176 if (ws == testws)
3177 return (0);
3178 }
3179 return (1);
3180 }
3181
3182 xcb_window_t
3183 get_sibling(struct ws_win *win, int mode)
3184 {
3185 struct ws_win *w = win;
3186
3187 switch (mode) {
3188 case SWM_STACK_TOP:
3189 TAILQ_FOREACH_REVERSE(w, &w->ws->winlist, ws_win_list, entry)
3190 if (w != win && !w->floating && !w->iconic)
3191 break;
3192 break;
3193 case SWM_STACK_ABOVE:
3194 do {
3195 w = TAILQ_NEXT(w, entry);
3196 } while (w != NULL && (w == win || w->floating || w->iconic));
3197 break;
3198 case SWM_STACK_BELOW:
3199 do {
3200 w = TAILQ_PREV(w, ws_win_list, entry);
3201 } while (w != NULL && (w == win || w->floating || w->iconic));
3202 break;
3203 case SWM_STACK_BOTTOM:
3204 TAILQ_FOREACH(w, &w->ws->winlist, entry)
3205 if (w != win && !w->floating && !w->iconic)
3206 break;
3207 break;
3208 default:
3209 w = NULL;
3210 }
3211
3212 if (w == NULL)
3213 return (win->ws->r->id);
3214 else
3215 return (w->id);
3216 }
3217
3218 void
3219 unfocus_win(struct ws_win *win)
3220 {
3221 xcb_window_t none = XCB_WINDOW_NONE;
3222
3223 DNPRINTF(SWM_D_FOCUS, "unfocus_win: window: 0x%x\n", WINID(win));
3224
3225 if (win == NULL)
3226 return;
3227 if (win->ws == NULL) {
3228 DNPRINTF(SWM_D_FOCUS, "unfocus_win: NULL ws.\n");
3229 return;
3230 }
3231
3232 if (validate_ws(win->ws)) {
3233 DNPRINTF(SWM_D_FOCUS, "unfocus_win: invalid ws.\n");
3234 return;
3235 }
3236
3237 if (win->ws->r == NULL) {
3238 DNPRINTF(SWM_D_FOCUS, "unfocus_win: NULL region.\n");
3239 return;
3240 }
3241
3242 if (validate_win(win)) {
3243 DNPRINTF(SWM_D_FOCUS, "unfocus_win: invalid win.\n");
3244 kill_refs(win);
3245 return;
3246 }
3247
3248 if (win->ws->focus == win) {
3249 if (tile_gap < 0 && !win->floating)
3250 map_window(win, get_sibling(win, SWM_STACK_BELOW));
3251 win->ws->focus = NULL;
3252 win->ws->focus_prev = win;
3253 }
3254
3255 if (validate_win(win->ws->focus)) {
3256 kill_refs(win->ws->focus);
3257 win->ws->focus = NULL;
3258 }
3259
3260 if (validate_win(win->ws->focus_prev)) {
3261 kill_refs(win->ws->focus_prev);
3262 win->ws->focus_prev = NULL;
3263 }
3264
3265 xcb_change_window_attributes(conn, win->id, XCB_CW_BORDER_PIXEL,
3266 &win->ws->r->s->c[SWM_S_COLOR_UNFOCUS].pixel);
3267
3268 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->s->root,
3269 ewmh[_NET_ACTIVE_WINDOW].atom, XCB_ATOM_WINDOW, 32, 1, &none);
3270
3271 DNPRINTF(SWM_D_FOCUS, "unfocus_win: done.\n");
3272 }
3273
3274 void
3275 focus_win(struct ws_win *win)
3276 {
3277 struct ws_win *cfw = NULL, *parent = NULL, *w;
3278 struct workspace *ws;
3279 xcb_get_input_focus_reply_t *r;
3280
3281 DNPRINTF(SWM_D_FOCUS, "focus_win: window: 0x%x\n", WINID(win));
3282
3283 if (win == NULL)
3284 goto out;
3285
3286 if (win->ws == NULL)
3287 goto out;
3288
3289 if (!win->mapped)
3290 goto out;
3291
3292 ws = win->ws;
3293
3294 if (validate_ws(ws))
3295 goto out;
3296
3297 if (validate_win(win)) {
3298 kill_refs(win);
3299 goto out;
3300 }
3301
3302 r = xcb_get_input_focus_reply(conn, xcb_get_input_focus(conn), NULL);
3303 if (r) {
3304 cfw = find_window(r->focus);
3305 if (cfw != win)
3306 unfocus_win(cfw);
3307 free(r);
3308 }
3309
3310 if (ws->focus != win) {
3311 if (ws->focus && ws->focus != cfw)
3312 unfocus_win(ws->focus);
3313 ws->focus = win;
3314 }
3315
3316 /* If this window directs focus to a child window, then clear. */
3317 if (win->focus_child)
3318 win->focus_child = NULL;
3319
3320 /* If transient, adjust parent's focus child for focus_magic. */
3321 if (win->transient) {
3322 parent = find_window(win->transient);
3323 if (parent && parent->focus_child != win)
3324 parent->focus_child = win;
3325 }
3326
3327 if (cfw != win && ws->r != NULL) {
3328 /* Set input focus if no input hint, or indicated by hint. */
3329 if (!(win->hints.flags & XCB_ICCCM_WM_HINT_INPUT) ||
3330 (win->hints.flags & XCB_ICCCM_WM_HINT_INPUT &&
3331 win->hints.input))
3332 xcb_set_input_focus(conn, XCB_INPUT_FOCUS_PARENT,
3333 win->id, last_event_time);
3334
3335 /* Tell app it can adjust focus to a specific window. */
3336 if (win->take_focus) {
3337 /* java is special; always tell parent */
3338 if (win->transient && win->java)
3339 client_msg(parent, a_takefocus,
3340 last_event_time);
3341 else
3342 client_msg(win, a_takefocus, last_event_time);
3343 }
3344
3345 xcb_change_window_attributes(conn, win->id, XCB_CW_BORDER_PIXEL,
3346 &ws->r->s->c[SWM_S_COLOR_FOCUS].pixel);
3347
3348 if (ws->cur_layout->flags & SWM_L_MAPONFOCUS ||
3349 ws->always_raise) {
3350 /* If a parent exists, map it first. */
3351 if (parent) {
3352 map_window(parent, XCB_WINDOW_NONE);
3353
3354 /* Map siblings next. */
3355 TAILQ_FOREACH(w, &ws->winlist, entry)
3356 if (w != win && !w->iconic &&
3357 w->transient == parent->id)
3358 map_window(w, XCB_WINDOW_NONE);
3359 }
3360
3361 /* Map focused window. */
3362 map_window(win, XCB_WINDOW_NONE);
3363
3364 /* Finally, map children of focus window. */
3365 TAILQ_FOREACH(w, &ws->winlist, entry)
3366 if (w->transient == win->id && !w->iconic)
3367 map_window(w, XCB_WINDOW_NONE);
3368 } else if (tile_gap < 0 && !win->floating) {
3369 /*
3370 * Windows overlap in the layout.
3371 * Raise focused win above all tiled wins.
3372 */
3373 if (tile_gap < 0 && !win->floating)
3374 map_window(win,
3375 get_sibling(win, SWM_STACK_TOP));
3376 }
3377
3378 set_region(ws->r);
3379
3380 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->s->root,
3381 ewmh[_NET_ACTIVE_WINDOW].atom, XCB_ATOM_WINDOW, 32, 1,
3382 &win->id);
3383 }
3384
3385 out:
3386 bar_draw();
3387
3388 DNPRINTF(SWM_D_FOCUS, "focus_win: done.\n");
3389 }
3390
3391 /* If a child window should have focus instead, return it. */
3392 struct ws_win *
3393 get_focus_magic(struct ws_win *win)
3394 {
3395 struct ws_win *parent = NULL;
3396 struct ws_win *child = NULL;
3397
3398 DNPRINTF(SWM_D_FOCUS, "get_focus_magic: window: 0x%x\n", WINID(win));
3399 if (win == NULL)
3400 return win;
3401
3402 if (win->transient) {
3403 parent = find_window(win->transient);
3404
3405 /* If parent prefers focus elsewhere, then try to do so. */
3406 if (parent && (child = parent->focus_child)) {
3407 if (validate_win(child) == 0 && child->mapped)
3408 win = child;
3409 else
3410 parent->focus_child = NULL;
3411 }
3412 }
3413
3414 /* If this window prefers focus elsewhere, then try to do so. */
3415 if ((child = win->focus_child)) {
3416 if (validate_win(child) == 0 && child->mapped)
3417 win = child;
3418 else
3419 win->focus_child = NULL;
3420 }
3421
3422 return win;
3423 }
3424
3425 void
3426 event_drain(uint8_t rt)
3427 {
3428 xcb_generic_event_t *evt;
3429
3430 /* ensure all pending requests have been processed before filtering. */
3431 xcb_aux_sync(conn);
3432 while ((evt = xcb_poll_for_event(conn))) {
3433 if (XCB_EVENT_RESPONSE_TYPE(evt) != rt)
3434 event_handle(evt);
3435
3436 free(evt);
3437 }
3438 }
3439
3440 void
3441 set_region(struct swm_region *r)
3442 {
3443 struct swm_region *rf;
3444
3445 if (r == NULL)
3446 return;
3447
3448 rf = r->s->r_focus;
3449 /* Unfocus old region bar. */
3450 if (rf) {
3451 if (rf == r)
3452 return;
3453
3454 xcb_change_window_attributes(conn, rf->bar->id,
3455 XCB_CW_BORDER_PIXEL,
3456 &r->s->c[SWM_S_COLOR_BAR_BORDER_UNFOCUS].pixel);
3457 }
3458
3459 /* Set region bar border to focus_color. */
3460 xcb_change_window_attributes(conn, r->bar->id,
3461 XCB_CW_BORDER_PIXEL, &r->s->c[SWM_S_COLOR_BAR_BORDER].pixel);
3462
3463 r->s->r_focus = r;
3464 }
3465
3466 void
3467 focus_region(struct swm_region *r)
3468 {
3469 struct ws_win *nfw;
3470 struct swm_region *old_r;
3471
3472 if (r == NULL)
3473 return;
3474
3475 old_r = r->s->r_focus;
3476 set_region(r);
3477
3478 nfw = get_region_focus(r);
3479 if (nfw) {
3480 focus_win(nfw);
3481 } else {
3482 /* New region is empty; need to manually unfocus win. */
3483 if (old_r)
3484 unfocus_win(old_r->ws->focus);
3485
3486 xcb_set_input_focus(conn, XCB_INPUT_FOCUS_PARENT, r->id,
3487 XCB_CURRENT_TIME);
3488
3489 /* Clear bar since empty. */
3490 bar_draw();
3491 }
3492 }
3493
3494 void
3495 switchws(struct swm_region *r, union arg *args)
3496 {
3497 int wsid = args->id, unmap_old = 0;
3498 struct swm_region *this_r, *other_r;
3499 struct ws_win *win;
3500 struct workspace *new_ws, *old_ws;
3501
3502 if (!(r && r->s))
3503 return;
3504
3505 if (wsid >= workspace_limit)
3506 return;
3507
3508 this_r = r;
3509 old_ws = this_r->ws;
3510 new_ws = &this_r->s->ws[wsid];
3511
3512 DNPRINTF(SWM_D_WS, "switchws: screen[%d]:%dx%d+%d+%d: %d -> %d\n",
3513 r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), old_ws->idx, wsid);
3514
3515 if (new_ws == NULL || old_ws == NULL)
3516 return;
3517 if (new_ws == old_ws)
3518 return;
3519
3520 unfocus_win(old_ws->focus);
3521
3522 other_r = new_ws->r;
3523 if (other_r == NULL) {
3524 /* the other workspace is hidden, hide this one */
3525 old_ws->r = NULL;
3526 unmap_old = 1;
3527 } else {
3528 /* the other ws is visible in another region, exchange them */
3529 other_r->ws_prior = new_ws;
3530 other_r->ws = old_ws;
3531 old_ws->r = other_r;
3532 }
3533 this_r->ws_prior = old_ws;
3534 this_r->ws = new_ws;
3535 new_ws->r = this_r;
3536
3537 /* Set focus_pending before stacking, if needed. */
3538 if (focus_mode != SWM_FOCUS_FOLLOW && (!new_ws->focus_pending ||
3539 validate_win(new_ws->focus_pending)))
3540 new_ws->focus_pending = get_region_focus(new_ws->r);
3541
3542 stack();
3543
3544 /* unmap old windows */
3545 if (unmap_old)
3546 TAILQ_FOREACH(win, &old_ws->winlist, entry)
3547 unmap_window(win);
3548
3549 /* if workspaces were swapped, then don't wait to set focus */
3550 if (old_ws->r && focus_mode != SWM_FOCUS_FOLLOW) {
3551 if (new_ws->focus_pending) {
3552 focus_win(new_ws->focus_pending);
3553 new_ws->focus_pending = NULL;
3554 }
3555 }
3556
3557 /* Clear bar and set focus on region input win if new ws is empty. */
3558 if (new_ws->focus_pending == NULL && new_ws->focus == NULL) {
3559 xcb_set_input_focus(conn, XCB_INPUT_FOCUS_PARENT, r->id,
3560 XCB_CURRENT_TIME);
3561 bar_draw();
3562 }
3563
3564 focus_flush();
3565
3566 DNPRINTF(SWM_D_WS, "switchws: done.\n");
3567 }
3568
3569 void
3570 cyclews(struct swm_region *r, union arg *args)
3571 {
3572 union arg a;
3573 struct swm_screen *s = r->s;
3574 int cycle_all = 0;
3575 int move = 0;
3576
3577 DNPRINTF(SWM_D_WS, "cyclews: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
3578 args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
3579
3580 a.id = r->ws->idx;
3581
3582 do {
3583 switch (args->id) {
3584 case SWM_ARG_ID_CYCLEWS_MOVE_UP:
3585 move = 1;
3586 /* FALLTHROUGH */
3587 case SWM_ARG_ID_CYCLEWS_UP_ALL:
3588 cycle_all = 1;
3589 /* FALLTHROUGH */
3590 case SWM_ARG_ID_CYCLEWS_UP:
3591 a.id = (a.id < workspace_limit - 1) ? a.id + 1 : 0;
3592 break;
3593 case SWM_ARG_ID_CYCLEWS_MOVE_DOWN:
3594 move = 1;
3595 /* FALLTHROUGH */
3596 case SWM_ARG_ID_CYCLEWS_DOWN_ALL:
3597 cycle_all = 1;
3598 /* FALLTHROUGH */
3599 case SWM_ARG_ID_CYCLEWS_DOWN:
3600 a.id = (a.id > 0) ? a.id - 1 : workspace_limit - 1;
3601 break;
3602 default:
3603 return;
3604 };
3605
3606 if (!cycle_all &&
3607 (!cycle_empty && TAILQ_EMPTY(&s->ws[a.id].winlist)))
3608 continue;
3609 if (!cycle_visible && s->ws[a.id].r != NULL)
3610 continue;
3611
3612 if (move)
3613 send_to_ws(r, &a);
3614
3615 switchws(r, &a);
3616 } while (a.id != r->ws->idx);
3617 }
3618
3619 void
3620 priorws(struct swm_region *r, union arg *args)
3621 {
3622 union arg a;
3623
3624 (void)args;
3625
3626 DNPRINTF(SWM_D_WS, "priorws: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
3627 args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
3628
3629 if (r->ws_prior == NULL)
3630 return;
3631
3632 a.id = r->ws_prior->idx;
3633 switchws(r, &a);
3634 }
3635
3636 void
3637 focusrg(struct swm_region *r, union arg *args)
3638 {
3639 int ridx = args->id, i, num_screens;
3640 struct swm_region *rr = NULL;
3641
3642 num_screens = get_screen_count();
3643 /* do nothing if we don't have more than one screen */
3644 if (!(num_screens > 1 || outputs > 1))
3645 return;
3646
3647 DNPRINTF(SWM_D_FOCUS, "focusrg: id: %d\n", ridx);
3648
3649 rr = TAILQ_FIRST(&r->s->rl);
3650 for (i = 0; i < ridx; ++i)
3651 rr = TAILQ_NEXT(rr, entry);
3652
3653 if (rr == NULL)
3654 return;
3655
3656 focus_region(rr);
3657 focus_flush();
3658 }
3659
3660 void
3661 cyclerg(struct swm_region *r, union arg *args)
3662 {
3663 struct swm_region *rr = NULL;
3664 int i, num_screens;
3665
3666 num_screens = get_screen_count();
3667 /* do nothing if we don't have more than one screen */
3668 if (!(num_screens > 1 || outputs > 1))
3669 return;
3670
3671 i = r->s->idx;
3672 switch (args->id) {
3673 case SWM_ARG_ID_CYCLERG_UP:
3674 rr = TAILQ_NEXT(r, entry);
3675 if (rr == NULL)
3676 rr = TAILQ_FIRST(&screens[i].rl);
3677 break;
3678 case SWM_ARG_ID_CYCLERG_DOWN:
3679 rr = TAILQ_PREV(r, swm_region_list, entry);
3680 if (rr == NULL)
3681 rr = TAILQ_LAST(&screens[i].rl, swm_region_list);
3682 break;
3683 default:
3684 return;
3685 };
3686 if (rr == NULL)
3687 return;
3688
3689 focus_region(rr);
3690 focus_flush();
3691 }
3692
3693 void
3694 sort_windows(struct ws_win_list *wl)
3695 {
3696 struct ws_win *win, *parent, *nxt;
3697
3698 if (wl == NULL)
3699 return;
3700
3701 for (win = TAILQ_FIRST(wl); win != TAILQ_END(wl); win = nxt) {
3702 nxt = TAILQ_NEXT(win, entry);
3703 if (win->transient) {
3704 parent = find_window(win->transient);
3705 if (parent == NULL) {
3706 warnx("not possible bug");
3707 continue;
3708 }
3709 TAILQ_REMOVE(wl, win, entry);
3710 TAILQ_INSERT_AFTER(wl, parent, win, entry);
3711 }
3712 }
3713
3714 }
3715
3716 void
3717 swapwin(struct swm_region *r, union arg *args)
3718 {
3719 struct ws_win *target, *source;
3720 struct ws_win *cur_focus;
3721 struct ws_win_list *wl;
3722
3723 DNPRINTF(SWM_D_WS, "swapwin: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
3724 args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
3725
3726 cur_focus = r->ws->focus;
3727 if (cur_focus == NULL)
3728 return;
3729
3730 source = cur_focus;
3731 wl = &source->ws->winlist;
3732
3733 switch (args->id) {
3734 case SWM_ARG_ID_SWAPPREV:
3735 if (source->transient)
3736 source = find_window(source->transient);
3737 target = TAILQ_PREV(source, ws_win_list, entry);
3738 if (target && target->transient)
3739 target = find_window(target->transient);
3740 TAILQ_REMOVE(wl, source, entry);
3741 if (target == NULL)
3742 TAILQ_INSERT_TAIL(wl, source, entry);
3743 else
3744 TAILQ_INSERT_BEFORE(target, source, entry);
3745 break;
3746 case SWM_ARG_ID_SWAPNEXT:
3747 target = TAILQ_NEXT(source, entry);
3748 /* move the parent and let the sort handle the move */
3749 if (source->transient)
3750 source = find_window(source->transient);
3751 TAILQ_REMOVE(wl, source, entry);
3752 if (target == NULL)
3753 TAILQ_INSERT_HEAD(wl, source, entry);
3754 else
3755 TAILQ_INSERT_AFTER(wl, target, source, entry);
3756 break;
3757 case SWM_ARG_ID_SWAPMAIN:
3758 target = TAILQ_FIRST(wl);
3759 if (target == source) {
3760 if (source->ws->focus_prev != NULL &&
3761 source->ws->focus_prev != target)
3762 source = source->ws->focus_prev;
3763 else
3764 return;
3765 }
3766 if (target == NULL || source == NULL)
3767 return;
3768 source->ws->focus_prev = target;
3769 TAILQ_REMOVE(wl, target, entry);
3770 TAILQ_INSERT_BEFORE(source, target, entry);
3771 TAILQ_REMOVE(wl, source, entry);
3772 TAILQ_INSERT_HEAD(wl, source, entry);
3773 break;
3774 case SWM_ARG_ID_MOVELAST:
3775 TAILQ_REMOVE(wl, source, entry);
3776 TAILQ_INSERT_TAIL(wl, source, entry);
3777 break;
3778 default:
3779 DNPRINTF(SWM_D_MOVE, "swapwin: invalid id: %d\n", args->id);
3780 return;
3781 }
3782
3783 sort_windows(wl);
3784
3785 stack();
3786
3787 focus_flush();
3788 }
3789
3790 struct ws_win *
3791 get_focus_prev(struct ws_win *win)
3792 {
3793 struct ws_win *winfocus = NULL;
3794 struct ws_win *cur_focus = NULL;
3795 struct ws_win_list *wl = NULL;
3796 struct workspace *ws = NULL;
3797
3798 if (!(win && win->ws))
3799 return NULL;
3800
3801 ws = win->ws;
3802 wl = &ws->winlist;
3803 cur_focus = ws->focus;
3804
3805 DNPRINTF(SWM_D_FOCUS, "get_focus_prev: window: 0x%x, cur_focus: 0x%x\n",
3806 WINID(win), WINID(cur_focus));
3807
3808 /* pickle, just focus on whatever */
3809 if (cur_focus == NULL) {
3810 /* use prev_focus if valid */
3811 if (ws->focus_prev && ws->focus_prev != cur_focus &&
3812 find_window(WINID(ws->focus_prev)))
3813 winfocus = ws->focus_prev;
3814 goto done;
3815 }
3816
3817 /* if transient focus on parent */
3818 if (cur_focus->transient) {
3819 winfocus = find_window(cur_focus->transient);
3820 goto done;
3821 }
3822
3823 /* if in max_stack try harder */
3824 if ((win->quirks & SWM_Q_FOCUSPREV) ||
3825 (ws->cur_layout->flags & SWM_L_FOCUSPREV)) {
3826 if (cur_focus != ws->focus_prev)
3827 winfocus = ws->focus_prev;
3828 else
3829 winfocus = TAILQ_PREV(win, ws_win_list, entry);
3830 if (winfocus)
3831 goto done;
3832 }
3833
3834 DNPRINTF(SWM_D_FOCUS, "get_focus_prev: focus_close: %d\n", focus_close);
3835
3836 if (winfocus == NULL || winfocus == win) {
3837 switch (focus_close) {
3838 case SWM_STACK_BOTTOM:
3839 TAILQ_FOREACH(winfocus, wl, entry)
3840 if (!winfocus->iconic && winfocus != cur_focus)
3841 break;
3842 break;
3843 case SWM_STACK_TOP:
3844 TAILQ_FOREACH_REVERSE(winfocus, wl, ws_win_list, entry)
3845 if (!winfocus->iconic && winfocus != cur_focus)
3846 break;
3847 break;
3848 case SWM_STACK_ABOVE:
3849 winfocus = TAILQ_NEXT(cur_focus, entry);
3850 while (winfocus && winfocus->iconic)
3851 winfocus = TAILQ_NEXT(winfocus, entry);
3852
3853 if (winfocus == NULL) {
3854 if (focus_close_wrap) {
3855 TAILQ_FOREACH(winfocus, wl, entry)
3856 if (!winfocus->iconic &&
3857 winfocus != cur_focus)
3858 break;
3859 } else {
3860 TAILQ_FOREACH_REVERSE(winfocus, wl,
3861 ws_win_list, entry)
3862 if (!winfocus->iconic &&
3863 winfocus != cur_focus)
3864 break;
3865 }
3866 }
3867 break;
3868 case SWM_STACK_BELOW:
3869 winfocus = TAILQ_PREV(cur_focus, ws_win_list, entry);
3870 while (winfocus && winfocus->iconic)
3871 winfocus = TAILQ_PREV(winfocus, ws_win_list,
3872 entry);
3873
3874 if (winfocus == NULL) {
3875 if (focus_close_wrap) {
3876 TAILQ_FOREACH_REVERSE(winfocus, wl,
3877 ws_win_list, entry)
3878 if (!winfocus->iconic &&
3879 winfocus != cur_focus)
3880 break;
3881 } else {
3882 TAILQ_FOREACH(winfocus, wl, entry)
3883 if (!winfocus->iconic &&
3884 winfocus != cur_focus)
3885 break;
3886 }
3887 }
3888 break;
3889 }
3890 }
3891 done:
3892 if (winfocus == NULL ||
3893 (winfocus && (winfocus->iconic || winfocus == cur_focus))) {
3894 if (focus_default == SWM_STACK_TOP) {
3895 TAILQ_FOREACH_REVERSE(winfocus, wl, ws_win_list, entry)
3896 if (!winfocus->iconic && winfocus != cur_focus)
3897 break;
3898 } else {
3899 TAILQ_FOREACH(winfocus, wl, entry)
3900 if (!winfocus->iconic && winfocus != cur_focus)
3901 break;
3902 }
3903 }
3904
3905 kill_refs(win);
3906
3907 return get_focus_magic(winfocus);
3908 }
3909
3910 struct ws_win *
3911 get_region_focus(struct swm_region *r)
3912 {
3913 struct ws_win *winfocus = NULL;
3914
3915 if (!(r && r->ws))
3916 return NULL;
3917
3918 if (r->ws->focus && !r->ws->focus->iconic)
3919 winfocus = r->ws->focus;
3920 else if (r->ws->focus_prev && !r->ws->focus_prev->iconic)
3921 winfocus = r->ws->focus_prev;
3922 else
3923 TAILQ_FOREACH(winfocus, &r->ws->winlist, entry)
3924 if (!winfocus->iconic)
3925 break;
3926
3927 return get_focus_magic(winfocus);
3928 }
3929
3930 void
3931 focus(struct swm_region *r, union arg *args)
3932 {
3933 struct ws_win *head, *cur_focus = NULL, *winfocus = NULL;
3934 struct ws_win_list *wl = NULL;
3935 struct workspace *ws = NULL;
3936 int all_iconics;
3937
3938 if (!(r && r->ws))
3939 return;
3940
3941 DNPRINTF(SWM_D_FOCUS, "focus: id: %d\n", args->id);
3942
3943 if ((cur_focus = r->ws->focus) == NULL)
3944 return;
3945 ws = r->ws;
3946 wl = &ws->winlist;
3947 if (TAILQ_EMPTY(wl))
3948 return;
3949 /* make sure there is at least one uniconified window */
3950 all_iconics = 1;
3951 TAILQ_FOREACH(winfocus, wl, entry)
3952 if (!winfocus->iconic) {
3953 all_iconics = 0;
3954 break;
3955 }
3956 if (all_iconics)
3957 return;
3958
3959 switch (args->id) {
3960 case SWM_ARG_ID_FOCUSPREV:
3961 head = TAILQ_PREV(cur_focus, ws_win_list, entry);
3962 if (head == NULL)
3963 head = TAILQ_LAST(wl, ws_win_list);
3964 winfocus = head;
3965 if (WINID(winfocus) == cur_focus->transient) {
3966 head = TAILQ_PREV(winfocus, ws_win_list, entry);
3967 if (head == NULL)
3968 head = TAILQ_LAST(wl, ws_win_list);
3969 winfocus = head;
3970 }
3971
3972 /* skip iconics */
3973 if (winfocus && winfocus->iconic) {
3974 while (winfocus != cur_focus) {
3975 if (winfocus == NULL)
3976 winfocus = TAILQ_LAST(wl, ws_win_list);
3977 if (!winfocus->iconic)
3978 break;
3979 winfocus = TAILQ_PREV(winfocus, ws_win_list,
3980 entry);
3981 }
3982 }
3983 break;
3984
3985 case SWM_ARG_ID_FOCUSNEXT:
3986 head = TAILQ_NEXT(cur_focus, entry);
3987 if (head == NULL)
3988 head = TAILQ_FIRST(wl);
3989 winfocus = head;
3990
3991 /* skip iconics */
3992 if (winfocus && winfocus->iconic) {
3993 while (winfocus != cur_focus) {
3994 if (winfocus == NULL)
3995 winfocus = TAILQ_FIRST(wl);
3996 if (!winfocus->iconic)
3997 break;
3998 winfocus = TAILQ_NEXT(winfocus, entry);
3999 }
4000 }
4001 break;
4002
4003 case SWM_ARG_ID_FOCUSMAIN:
4004 winfocus = TAILQ_FIRST(wl);
4005 if (winfocus == cur_focus)
4006 winfocus = cur_focus->ws->focus_prev;
4007 break;
4008
4009 default:
4010 return;
4011 }
4012
4013 focus_win(get_focus_magic(winfocus));
4014
4015 focus_flush();
4016 }
4017
4018 void
4019 cycle_layout(struct swm_region *r, union arg *args)
4020 {
4021 struct workspace *ws = r->ws;
4022
4023 /* suppress unused warning since var is needed */
4024 (void)args;
4025
4026 DNPRINTF(SWM_D_EVENT, "cycle_layout: workspace: %d\n", ws->idx);
4027
4028 ws->cur_layout++;
4029 if (ws->cur_layout->l_stack == NULL)
4030 ws->cur_layout = &layouts[0];
4031
4032 stack();
4033 bar_draw();
4034
4035 focus_win(get_region_focus(r));
4036
4037 focus_flush();
4038 }
4039
4040 void
4041 stack_config(struct swm_region *r, union arg *args)
4042 {
4043 struct workspace *ws = r->ws;
4044
4045 DNPRINTF(SWM_D_STACK, "stack_config: id: %d workspace: %d\n",
4046 args->id, ws->idx);
4047
4048 if (ws->cur_layout->l_config != NULL)
4049 ws->cur_layout->l_config(ws, args->id);
4050
4051 if (args->id != SWM_ARG_ID_STACKINIT)
4052 stack();
4053 bar_draw();
4054
4055 focus_flush();
4056 }
4057
4058 void
4059 stack(void) {
4060 struct swm_geometry g;
4061 struct swm_region *r;
4062 int i, num_screens;
4063 #ifdef SWM_DEBUG
4064 int j;
4065 #endif
4066
4067 DNPRINTF(SWM_D_STACK, "stack: begin\n");
4068
4069 num_screens = get_screen_count();
4070 for (i = 0; i < num_screens; i++) {
4071 #ifdef SWM_DEBUG
4072 j = 0;
4073 #endif
4074 TAILQ_FOREACH(r, &screens[i].rl, entry) {
4075 DNPRINTF(SWM_D_STACK, "stack: workspace: %d "
4076 "(screen: %d, region: %d)\n", r->ws->idx, i, j++);
4077
4078 /* Adjust stack area for region bar and padding. */
4079 g = r->g;
4080 g.x += region_padding;
4081 g.y += region_padding;
4082 g.w -= 2 * border_width + 2 * region_padding;
4083 g.h -= 2 * border_width + 2 * region_padding;
4084 if (bar_enabled && r->ws->bar_enabled) {
4085 if (!bar_at_bottom)
4086 g.y += bar_height;
4087 g.h -= bar_height;
4088 }
4089 r->ws->cur_layout->l_stack(r->ws, &g);
4090 r->ws->cur_layout->l_string(r->ws);
4091 /* save r so we can track region changes */
4092 r->ws->old_r = r;
4093 }
4094 }
4095 if (font_adjusted)
4096 font_adjusted--;
4097
4098 DNPRINTF(SWM_D_STACK, "stack: end\n");
4099 }
4100
4101 void
4102 store_float_geom(struct ws_win *win)
4103 {
4104 if (win == NULL || win->ws->r == NULL)
4105 return;
4106
4107 /* retain window geom and region geom */
4108 win->g_float = win->g;
4109 win->g_float.x -= X(win->ws->r);
4110 win->g_float.y -= Y(win->ws->r);
4111 win->g_floatvalid = 1;
4112 DNPRINTF(SWM_D_MISC, "store_float_geom: window: 0x%x, g: (%d,%d)"
4113 " %d x %d, g_float: (%d,%d) %d x %d\n", win->id, X(win), Y(win),
4114 WIDTH(win), HEIGHT(win), win->g_float.x, win->g_float.y,
4115 win->g_float.w, win->g_float.h);
4116 }
4117
4118 void
4119 load_float_geom(struct ws_win *win)
4120 {
4121 if (win == NULL || win->ws->r == NULL)
4122 return;
4123
4124 if (win->g_floatvalid) {
4125 win->g = win->g_float;
4126 X(win) += X(win->ws->r);
4127 Y(win) += Y(win->ws->r);
4128 DNPRINTF(SWM_D_MISC, "load_float_geom: window: 0x%x, g: (%d,%d)"
4129 "%d x %d\n", win->id, X(win), Y(win), WIDTH(win),
4130 HEIGHT(win));
4131 } else {
4132 DNPRINTF(SWM_D_MISC, "load_float_geom: window: 0x%x, g_float "
4133 "is not set.\n", win->id);
4134 }
4135 }
4136
4137 void
4138 stack_floater(struct ws_win *win, struct swm_region *r)
4139 {
4140 if (win == NULL)
4141 return;
4142
4143 DNPRINTF(SWM_D_MISC, "stack_floater: window: 0x%x\n", win->id);
4144
4145 /*
4146 * to allow windows to change their size (e.g. mplayer fs) only retrieve
4147 * geom on ws switches or return from max mode
4148 */
4149 if (win->floatmaxed || (r != r->ws->old_r &&
4150 !(win->ewmh_flags & EWMH_F_FULLSCREEN))) {
4151 /* update geometry for the new region */
4152 load_float_geom(win);
4153 }
4154
4155 win->floatmaxed = 0;
4156
4157 /*
4158 * if set to fullscreen mode, configure window to maximum size.
4159 */
4160 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
4161 if (!win->g_floatvalid)
4162 store_float_geom(win);
4163
4164 win->g = r->g;
4165 }
4166
4167 /*
4168 * remove border on fullscreen floater when in fullscreen mode or when
4169 * the quirk is present.
4170 */
4171 if ((win->ewmh_flags & EWMH_F_FULLSCREEN) ||
4172 ((win->quirks & SWM_Q_FULLSCREEN) &&
4173 (WIDTH(win) >= WIDTH(r)) && (HEIGHT(win) >= HEIGHT(r)))) {
4174 if (win->bordered) {
4175 win->bordered = 0;
4176 X(win) += border_width;
4177 Y(win) += border_width;
4178 }
4179 } else if (!win->bordered) {
4180 win->bordered = 1;
4181 X(win) -= border_width;
4182 Y(win) -= border_width;
4183 }
4184
4185 if (win->transient && (win->quirks & SWM_Q_TRANSSZ)) {
4186 WIDTH(win) = (double)WIDTH(r) * dialog_ratio;
4187 HEIGHT(win) = (double)HEIGHT(r) * dialog_ratio;
4188 }
4189
4190 if (!win->manual && !(win->ewmh_flags & EWMH_F_FULLSCREEN) &&
4191 !(win->quirks & SWM_Q_ANYWHERE)) {
4192 /*
4193 * floaters and transients are auto-centred unless moved,
4194 * resized or ANYWHERE quirk is set.
4195 */
4196 X(win) = X(r) + (WIDTH(r) - WIDTH(win)) / 2 - BORDER(win);
4197 Y(win) = Y(r) + (HEIGHT(r) - HEIGHT(win)) / 2 - BORDER(win);
4198
4199 store_float_geom(win);
4200 }
4201
4202 /* Ensure at least 1 pixel of the window is in the region. */
4203 region_containment(win, r, SWM_CW_ALLSIDES);
4204
4205 update_window(win);
4206 }
4207
4208 /*
4209 * Send keystrokes to terminal to decrease/increase the font size as the
4210 * window size changes.
4211 */
4212 void
4213 adjust_font(struct ws_win *win)
4214 {
4215 if (!(win->quirks & SWM_Q_XTERM_FONTADJ) ||
4216 win->floating || win->transient)
4217 return;
4218
4219 if (win->sh.width_inc && win->last_inc != win->sh.width_inc &&
4220 WIDTH(win) / win->sh.width_inc < term_width &&
4221 win->font_steps < SWM_MAX_FONT_STEPS) {
4222 win->font_size_boundary[win->font_steps] =
4223 (win->sh.width_inc * term_width) + win->sh.base_width;
4224 win->font_steps++;
4225 font_adjusted++;
4226 win->last_inc = win->sh.width_inc;
4227 fake_keypress(win, XK_KP_Subtract, XCB_MOD_MASK_SHIFT);
4228 } else if (win->font_steps && win->last_inc != win->sh.width_inc &&
4229 WIDTH(win) > win->font_size_boundary[win->font_steps - 1]) {
4230 win->font_steps--;
4231 font_adjusted++;
4232 win->last_inc = win->sh.width_inc;
4233 fake_keypress(win, XK_KP_Add, XCB_MOD_MASK_SHIFT);
4234 }
4235 }
4236
4237 #define SWAPXY(g) do { \
4238 int tmp; \
4239 tmp = (g)->y; (g)->y = (g)->x; (g)->x = tmp; \
4240 tmp = (g)->h; (g)->h = (g)->w; (g)->w = tmp; \
4241 } while (0)
4242 void
4243 stack_master(struct workspace *ws, struct swm_geometry *g, int rot, int flip)
4244 {
4245 struct swm_geometry win_g, r_g = *g;
4246 struct ws_win *win, *fs_win = NULL;
4247 int i, j, s, stacks;
4248 int w_inc = 1, h_inc, w_base = 1, h_base;
4249 int hrh, extra = 0, h_slice, last_h = 0;
4250 int split, colno, winno, mwin, msize, mscale;
4251 int remain, missing, v_slice, reconfigure = 0;
4252 int bordered = 1;
4253
4254 DNPRINTF(SWM_D_STACK, "stack_master: workspace: %d, rot: %s, "
4255 "flip: %s\n", ws->idx, YESNO(rot), YESNO(flip));
4256
4257 winno = count_win(ws, 0);
4258 if (winno == 0 && count_win(ws, 1) == 0)
4259 return;
4260
4261 TAILQ_FOREACH(win, &ws->winlist, entry)
4262 if (!win->transient && !win->floating && !win->iconic)
4263 break;
4264
4265 if (win == NULL)
4266 goto notiles;
4267
4268 if (rot) {
4269 w_inc = win->sh.width_inc;
4270 w_base = win->sh.base_width;
4271 mwin = ws->l_state.horizontal_mwin;
4272 mscale = ws->l_state.horizontal_msize;
4273 stacks = ws->l_state.horizontal_stacks;
4274 SWAPXY(&r_g);
4275 } else {
4276 w_inc = win->sh.height_inc;
4277 w_base = win->sh.base_height;
4278 mwin = ws->l_state.vertical_mwin;
4279 mscale = ws->l_state.vertical_msize;
4280 stacks = ws->l_state.vertical_stacks;
4281 }
4282 win_g = r_g;
4283
4284 if (stacks > winno - mwin)
4285 stacks = winno - mwin;
4286 if (stacks < 1)
4287 stacks = 1;
4288
4289 h_slice = r_g.h / SWM_H_SLICE;
4290 if (mwin && winno > mwin) {
4291 v_slice = r_g.w / SWM_V_SLICE;
4292
4293 split = mwin;
4294 colno = split;
4295 win_g.w = v_slice * mscale;
4296
4297 if (w_inc > 1 && w_inc < v_slice) {
4298 /* adjust for window's requested size increment */
4299 remain = (win_g.w - w_base) % w_inc;
4300 win_g.w -= remain;
4301 }
4302
4303 msize = win_g.w;
4304 if (flip)
4305 win_g.x += r_g.w - msize;
4306 } else {
4307 msize = -2;
4308 colno = split = winno / stacks;
4309 win_g.w = ((r_g.w - (stacks * 2 * border_width) +
4310 2 * border_width) / stacks);
4311 }
4312 hrh = r_g.h / colno;
4313 extra = r_g.h - (colno * hrh);
4314 win_g.h = hrh - 2 * border_width;
4315
4316 /* stack all the tiled windows */
4317 i = j = 0, s = stacks;
4318 TAILQ_FOREACH(win, &ws->winlist, entry) {
4319 if (win->transient || win->floating || win->iconic)
4320 continue;
4321
4322 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
4323 fs_win = win;
4324 continue;
4325 }
4326
4327 if (split && i == split) {
4328 colno = (winno - mwin) / stacks;
4329 if (s <= (winno - mwin) % stacks)
4330 colno++;
4331 split += colno;
4332 hrh = r_g.h / colno;
4333 extra = r_g.h - (colno * hrh);
4334
4335 if (!flip)
4336 win_g.x += win_g.w + 2 * border_width +
4337 tile_gap;
4338
4339 win_g.w = (r_g.w - msize -
4340 (stacks * (2 * border_width + tile_gap))) / stacks;
4341 if (s == 1)
4342 win_g.w += (r_g.w - msize -
4343 (stacks * (2 * border_width + tile_gap))) %
4344 stacks;
4345
4346 if (flip)
4347 win_g.x -= win_g.w + 2 * border_width +
4348 tile_gap;
4349 s--;
4350 j = 0;
4351 }
4352
4353 win_g.h = hrh - 2 * border_width - tile_gap;
4354
4355 if (rot) {
4356 h_inc = win->sh.width_inc;
4357 h_base = win->sh.base_width;
4358 } else {
4359 h_inc = win->sh.height_inc;
4360 h_base = win->sh.base_height;
4361 }
4362
4363 if (j == colno - 1) {
4364 win_g.h = hrh + extra;
4365 } else if (h_inc > 1 && h_inc < h_slice) {
4366 /* adjust for window's requested size increment */
4367 remain = (win_g.h - h_base) % h_inc;
4368 missing = h_inc - remain;
4369
4370 if (missing <= extra || j == 0) {
4371 extra -= missing;
4372 win_g.h += missing;
4373 } else {
4374 win_g.h -= remain;
4375 extra += remain;
4376 }
4377 }
4378
4379 if (j == 0)
4380 win_g.y = r_g.y;
4381 else
4382 win_g.y += last_h + 2 * border_width + tile_gap;
4383
4384 if (disable_border && !(bar_enabled && ws->bar_enabled) &&
4385 winno == 1){
4386 bordered = 0;
4387 win_g.w += 2 * border_width;
4388 win_g.h += 2 * border_width;
4389 } else {
4390 bordered = 1;
4391 }
4392
4393 if (rot) {
4394 if (X(win) != win_g.y || Y(win) != win_g.x ||
4395 WIDTH(win) != win_g.h || HEIGHT(win) != win_g.w) {
4396 reconfigure = 1;
4397 X(win) = win_g.y;
4398 Y(win) = win_g.x;
4399 WIDTH(win) = win_g.h;
4400 HEIGHT(win) = win_g.w;
4401 }
4402 } else {
4403 if (X(win) != win_g.x || Y(win) != win_g.y ||
4404 WIDTH(win) != win_g.w || HEIGHT(win) != win_g.h) {
4405 reconfigure = 1;
4406 X(win) = win_g.x;
4407 Y(win) = win_g.y;
4408 WIDTH(win) = win_g.w;
4409 HEIGHT(win) = win_g.h;
4410 }
4411 }
4412
4413 if (bordered != win->bordered) {
4414 reconfigure = 1;
4415 win->bordered = bordered;
4416 }
4417
4418 if (reconfigure) {
4419 adjust_font(win);
4420 update_window(win);
4421 }
4422
4423 map_window(win, get_sibling(win, SWM_STACK_BELOW));
4424
4425 last_h = win_g.h;
4426 i++;
4427 j++;
4428 }
4429
4430 /* Map/raise focused tiled window to top if windows could overlap. */
4431 if (tile_gap < 0 && ws->focus != NULL && !ws->focus->floating)
4432 map_window(ws->focus, get_sibling(ws->focus, SWM_STACK_TOP));
4433
4434 notiles:
4435 /* now, stack all the floaters and transients */
4436 TAILQ_FOREACH(win, &ws->winlist, entry) {
4437 if (!win->transient && !win->floating)
4438 continue;
4439 if (win->iconic)
4440 continue;
4441 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
4442 fs_win = win;
4443 continue;
4444 }
4445
4446 stack_floater(win, ws->r);
4447 map_window(win, XCB_WINDOW_NONE);
4448 }
4449
4450 /* Make sure fs_win is stacked last so it's on top. */
4451 if (fs_win) {
4452 stack_floater(fs_win, ws->r);
4453 map_window(fs_win, XCB_WINDOW_NONE);
4454 }
4455 }
4456
4457 void
4458 vertical_config(struct workspace *ws, int id)
4459 {
4460 DNPRINTF(SWM_D_STACK, "vertical_config: id: %d, workspace: %d\n",
4461 id, ws->idx);
4462
4463 switch (id) {
4464 case SWM_ARG_ID_STACKRESET:
4465 case SWM_ARG_ID_STACKINIT:
4466 ws->l_state.vertical_msize = SWM_V_SLICE / 2;
4467 ws->l_state.vertical_mwin = 1;
4468 ws->l_state.vertical_stacks = 1;
4469 break;
4470 case SWM_ARG_ID_MASTERSHRINK:
4471 if (ws->l_state.vertical_msize > 1)
4472 ws->l_state.vertical_msize--;
4473 break;
4474 case SWM_ARG_ID_MASTERGROW:
4475 if (ws->l_state.vertical_msize < SWM_V_SLICE - 1)
4476 ws->l_state.vertical_msize++;
4477 break;
4478 case SWM_ARG_ID_MASTERADD:
4479 ws->l_state.vertical_mwin++;
4480 break;
4481 case SWM_ARG_ID_MASTERDEL:
4482 if (ws->l_state.vertical_mwin > 0)
4483 ws->l_state.vertical_mwin--;
4484 break;
4485 case SWM_ARG_ID_STACKINC:
4486 ws->l_state.vertical_stacks++;
4487 break;
4488 case SWM_ARG_ID_STACKDEC:
4489 if (ws->l_state.vertical_stacks > 1)
4490 ws->l_state.vertical_stacks--;
4491 break;
4492 case SWM_ARG_ID_FLIPLAYOUT:
4493 ws->l_state.vertical_flip = !ws->l_state.vertical_flip;
4494 break;
4495 default:
4496 return;
4497 }
4498 }
4499
4500 void
4501 vertical_stack(struct workspace *ws, struct swm_geometry *g)
4502 {
4503 DNPRINTF(SWM_D_STACK, "vertical_stack: workspace: %d\n", ws->idx);
4504
4505 stack_master(ws, g, 0, ws->l_state.vertical_flip);
4506 }
4507
4508 void
4509 horizontal_config(struct workspace *ws, int id)
4510 {
4511 DNPRINTF(SWM_D_STACK, "horizontal_config: workspace: %d\n", ws->idx);
4512
4513 switch (id) {
4514 case SWM_ARG_ID_STACKRESET:
4515 case SWM_ARG_ID_STACKINIT:
4516 ws->l_state.horizontal_mwin = 1;
4517 ws->l_state.horizontal_msize = SWM_H_SLICE / 2;
4518 ws->l_state.horizontal_stacks = 1;
4519 break;
4520 case SWM_ARG_ID_MASTERSHRINK:
4521 if (ws->l_state.horizontal_msize > 1)
4522 ws->l_state.horizontal_msize--;
4523 break;
4524 case SWM_ARG_ID_MASTERGROW:
4525 if (ws->l_state.horizontal_msize < SWM_H_SLICE - 1)
4526 ws->l_state.horizontal_msize++;
4527 break;
4528 case SWM_ARG_ID_MASTERADD:
4529 ws->l_state.horizontal_mwin++;
4530 break;
4531 case SWM_ARG_ID_MASTERDEL:
4532 if (ws->l_state.horizontal_mwin > 0)
4533 ws->l_state.horizontal_mwin--;
4534 break;
4535 case SWM_ARG_ID_STACKINC:
4536 ws->l_state.horizontal_stacks++;
4537 break;
4538 case SWM_ARG_ID_STACKDEC:
4539 if (ws->l_state.horizontal_stacks > 1)
4540 ws->l_state.horizontal_stacks--;
4541 break;
4542 case SWM_ARG_ID_FLIPLAYOUT:
4543 ws->l_state.horizontal_flip = !ws->l_state.horizontal_flip;
4544 break;
4545 default:
4546 return;
4547 }
4548 }
4549
4550 void
4551 horizontal_stack(struct workspace *ws, struct swm_geometry *g)
4552 {
4553 DNPRINTF(SWM_D_STACK, "horizontal_stack: workspace: %d\n", ws->idx);
4554
4555 stack_master(ws, g, 1, ws->l_state.horizontal_flip);
4556 }
4557
4558 /* fullscreen view */
4559 void
4560 max_stack(struct workspace *ws, struct swm_geometry *g)
4561 {
4562 struct swm_geometry gg = *g;
4563 struct ws_win *w, *win = NULL, *parent = NULL;
4564 int winno;
4565
4566 DNPRINTF(SWM_D_STACK, "max_stack: workspace: %d\n", ws->idx);
4567
4568 if (ws == NULL)
4569 return;
4570
4571 winno = count_win(ws, 0);
4572 if (winno == 0 && count_win(ws, 1) == 0)
4573 return;
4574
4575 /* Figure out which top level window should be visible. */
4576 if (ws->focus_pending)
4577 win = ws->focus_pending;
4578 else if (ws->focus)
4579 win = ws->focus;
4580 else if (ws->focus_prev)
4581 win = ws->focus_prev;
4582 else
4583 win = TAILQ_FIRST(&ws->winlist);
4584
4585 if (win->transient)
4586 parent = find_window(win->transient);
4587
4588 DNPRINTF(SWM_D_STACK, "max_stack: win: 0x%x\n", win->id);
4589
4590 /* maximize all top level windows */
4591 TAILQ_FOREACH(w, &ws->winlist, entry) {
4592 if (w->transient || w->iconic)
4593 continue;
4594
4595 if (!w->mapped && w != win)
4596 map_window(w, XCB_WINDOW_NONE);
4597
4598 if (w->floating && !w->floatmaxed) {
4599 /*
4600 * retain geometry for retrieval on exit from
4601 * max_stack mode
4602 */
4603 store_float_geom(w);
4604 w->floatmaxed = 1;
4605 }
4606
4607 /* only reconfigure if necessary */
4608 if (X(w) != gg.x || Y(w) != gg.y || WIDTH(w) != gg.w ||
4609 HEIGHT(w) != gg.h) {
4610 w->g = gg;
4611 if (bar_enabled && ws->bar_enabled){
4612 w->bordered = 1;
4613 } else {
4614 w->bordered = 0;
4615 WIDTH(w) += 2 * border_width;
4616 HEIGHT(w) += 2 * border_width;
4617 }
4618
4619 update_window(w);
4620 }
4621 }
4622
4623 /* If a parent exists, map/raise it first. */
4624 if (parent) {
4625 map_window(parent, XCB_WINDOW_NONE);
4626
4627 /* Map siblings next. */
4628 TAILQ_FOREACH(w, &ws->winlist, entry)
4629 if (w != win && !w->iconic &&
4630 w->transient == parent->id) {
4631 stack_floater(w, ws->r);
4632 map_window(w, XCB_WINDOW_NONE);
4633 }
4634 }
4635
4636 /* Map/raise focused window. */
4637 map_window(win, XCB_WINDOW_NONE);
4638
4639 /* Finally, map/raise children of focus window. */
4640 TAILQ_FOREACH(w, &ws->winlist, entry)
4641 if (w->transient == win->id && !w->iconic) {
4642 stack_floater(w, ws->r);
4643 map_window(w, XCB_WINDOW_NONE);
4644 }
4645 }
4646
4647 void
4648 send_to_rg(struct swm_region *r, union arg *args)
4649 {
4650 int ridx = args->id, i, num_screens;
4651 struct swm_region *rr = NULL;
4652 union arg a;
4653
4654 num_screens = get_screen_count();
4655 /* do nothing if we don't have more than one screen */
4656 if (!(num_screens > 1 || outputs > 1))
4657 return;
4658
4659 DNPRINTF(SWM_D_FOCUS, "send_to_rg: id: %d\n", ridx);
4660
4661 rr = TAILQ_FIRST(&r->s->rl);
4662 for (i = 0; i < ridx; ++i)
4663 rr = TAILQ_NEXT(rr, entry);
4664
4665 if (rr == NULL)
4666 return;
4667
4668 a.id = rr->ws->idx;
4669
4670 send_to_ws(r, &a);
4671 }
4672
4673 struct swm_region *
4674 region_under(struct swm_screen *s, int x, int y)
4675 {
4676 struct swm_region *r = NULL;
4677
4678 TAILQ_FOREACH(r, &s->rl, entry) {
4679 DNPRINTF(SWM_D_MISC, "region_under: ws: %d, region g: (%d,%d) "
4680 "%d x %d, coords: (%d,%d)\n", r->ws->idx, X(r), Y(r),
4681 WIDTH(r), HEIGHT(r), x, y);
4682 if (X(r) <= x && x < MAX_X(r))
4683 if (Y(r) <= y && y < MAX_Y(r))
4684 return (r);
4685 }
4686
4687 return (NULL);
4688 }
4689
4690 void
4691 send_to_ws(struct swm_region *r, union arg *args)
4692 {
4693 int wsid = args->id;
4694 struct ws_win *win = NULL;
4695
4696 if (r && r->ws && r->ws->focus)
4697 win = r->ws->focus;
4698 else
4699 return;
4700
4701 DNPRINTF(SWM_D_MOVE, "send_to_ws: win 0x%x, ws %d\n", win->id, wsid);
4702
4703 win_to_ws(win, wsid, 1);
4704
4705 /* Restack and set new focus. */
4706 stack();
4707
4708 if (focus_mode != SWM_FOCUS_FOLLOW) {
4709 if (r->ws->focus_pending) {
4710 focus_win(r->ws->focus_pending);
4711 r->ws->focus_pending = NULL;
4712 } else {
4713 xcb_set_input_focus(conn,
4714 XCB_INPUT_FOCUS_PARENT, r->id,
4715 XCB_CURRENT_TIME);
4716 }
4717 }
4718
4719 focus_flush();
4720 }
4721
4722 void
4723 win_to_ws(struct ws_win *win, int wsid, int unfocus)
4724 {
4725 struct ws_win *parent;
4726 struct workspace *ws, *nws, *pws;
4727 char ws_idx_str[SWM_PROPLEN];
4728
4729 if (wsid >= workspace_limit)
4730 return;
4731
4732 if (win->ws->idx == wsid)
4733 return;
4734
4735 ws = win->ws;
4736 nws = &win->s->ws[wsid];
4737
4738 DNPRINTF(SWM_D_MOVE, "win_to_ws: win 0x%x, ws %d -> %d\n", win->id,
4739 ws->idx, wsid);
4740
4741 /* Update the window's workspace property: _SWM_WS */
4742 if (snprintf(ws_idx_str, SWM_PROPLEN, "%d", nws->idx) < SWM_PROPLEN) {
4743 if (focus_mode != SWM_FOCUS_FOLLOW)
4744 ws->focus_pending = get_focus_prev(win);
4745
4746 /* Move the parent if this is a transient window. */
4747 if (win->transient) {
4748 parent = find_window(win->transient);
4749 if (parent) {
4750 pws = parent->ws;
4751 /* Set new focus in parent's ws if needed. */
4752 if (pws->focus == parent) {
4753 if (focus_mode != SWM_FOCUS_FOLLOW)
4754 pws->focus_pending =
4755 get_focus_prev(parent);
4756
4757 unfocus_win(parent);
4758
4759 if (focus_mode != SWM_FOCUS_FOLLOW) {
4760 pws->focus = pws->focus_pending;
4761 pws->focus_pending = NULL;
4762 }
4763 }
4764
4765 /* Don't unmap parent if new ws is visible */
4766 if (nws->r == NULL)
4767 unmap_window(parent);
4768
4769 /* Transfer */
4770 TAILQ_REMOVE(&ws->winlist, parent, entry);
4771 TAILQ_INSERT_TAIL(&nws->winlist, parent, entry);
4772 parent->ws = nws;
4773
4774 DNPRINTF(SWM_D_PROP, "win_to_ws: set "
4775 "property: _SWM_WS: %s\n", ws_idx_str);
4776 xcb_change_property(conn, XCB_PROP_MODE_REPLACE,
4777 parent->id, a_swm_ws, XCB_ATOM_STRING, 8,
4778 strlen(ws_idx_str), ws_idx_str);
4779 }
4780 }
4781
4782 if (unfocus)
4783 unfocus_win(win);
4784
4785 /* Don't unmap if new ws is visible */
4786 if (nws->r == NULL)
4787 unmap_window(win);
4788
4789 /* Transfer */
4790 TAILQ_REMOVE(&ws->winlist, win, entry);
4791 TAILQ_INSERT_TAIL(&nws->winlist, win, entry);
4792 win->ws = nws;
4793
4794 /* Set focus on new ws. */
4795 unfocus_win(nws->focus);
4796 nws->focus = win;
4797
4798 DNPRINTF(SWM_D_PROP, "win_to_ws: set property: _SWM_WS: %s\n",
4799 ws_idx_str);
4800 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
4801 a_swm_ws, XCB_ATOM_STRING, 8, strlen(ws_idx_str),
4802 ws_idx_str);
4803 }
4804
4805 DNPRINTF(SWM_D_MOVE, "win_to_ws: done.\n");
4806 }
4807
4808 void
4809 pressbutton(struct swm_region *r, union arg *args)
4810 {
4811 /* suppress unused warning since var is needed */
4812 (void)r;
4813
4814 xcb_test_fake_input(conn, XCB_BUTTON_PRESS, args->id,
4815 XCB_CURRENT_TIME, XCB_WINDOW_NONE, 0, 0, 0);
4816 xcb_test_fake_input(conn, XCB_BUTTON_RELEASE, args->id,
4817 XCB_CURRENT_TIME, XCB_WINDOW_NONE, 0, 0, 0);
4818 }
4819
4820 void
4821 raise_toggle(struct swm_region *r, union arg *args)
4822 {
4823 /* suppress unused warning since var is needed */
4824 (void)args;
4825
4826 if (r == NULL || r->ws == NULL)
4827 return;
4828
4829 r->ws->always_raise = !r->ws->always_raise;
4830
4831 /* bring floaters back to top */
4832 if (!r->ws->always_raise)
4833 stack();
4834
4835 focus_flush();
4836 }
4837
4838 void
4839 iconify(struct swm_region *r, union arg *args)
4840 {
4841 /* suppress unused warning since var is needed */
4842 (void)args;
4843
4844 if (r->ws->focus == NULL)
4845 return;
4846
4847 set_swm_iconic(r->ws->focus, 1);
4848
4849 xcb_flush(conn);
4850 }
4851
4852 char *
4853 get_win_name(xcb_window_t win)
4854 {
4855 char *name = NULL;
4856 xcb_get_property_cookie_t c;
4857 xcb_get_property_reply_t *r;
4858
4859 /* First try _NET_WM_NAME for UTF-8. */
4860 c = xcb_get_property(conn, 0, win, ewmh[_NET_WM_NAME].atom,
4861 XCB_GET_PROPERTY_TYPE_ANY, 0, UINT_MAX);
4862 r = xcb_get_property_reply(conn, c, NULL);
4863
4864 if (r) {
4865 if (r->type == XCB_NONE) {
4866 free(r);
4867 /* Use WM_NAME instead; no UTF-8. */
4868 c = xcb_get_property(conn, 0, win, XCB_ATOM_WM_NAME,
4869 XCB_GET_PROPERTY_TYPE_ANY, 0, UINT_MAX);
4870 r = xcb_get_property_reply(conn, c, NULL);
4871
4872 if (!r)
4873 return (NULL);
4874 if (r->type == XCB_NONE) {
4875 free(r);
4876 return (NULL);
4877 }
4878 }
4879 if (r->length > 0)
4880 name = strndup(xcb_get_property_value(r),
4881 xcb_get_property_value_length(r));
4882
4883 free(r);
4884 }
4885
4886 return (name);
4887 }
4888
4889 void
4890 uniconify(struct swm_region *r, union arg *args)
4891 {
4892 struct ws_win *win;
4893 FILE *lfile;
4894 char *name;
4895 int count = 0;
4896
4897 DNPRINTF(SWM_D_MISC, "uniconify\n");
4898
4899 if (r == NULL || r->ws == NULL)
4900 return;
4901
4902 /* make sure we have anything to uniconify */
4903 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
4904 if (win->ws == NULL)
4905 continue; /* should never happen */
4906 if (!win->iconic)
4907 continue;
4908 count++;
4909 }
4910 if (count == 0)
4911 return;
4912
4913 search_r = r;
4914 search_resp_action = SWM_SEARCH_UNICONIFY;
4915
4916 spawn_select(r, args, "search", &searchpid);
4917
4918 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
4919 return;
4920
4921 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
4922 if (win->ws == NULL)
4923 continue; /* should never happen */
4924 if (!win->iconic)
4925 continue;
4926
4927 name = get_win_name(win->id);
4928 if (name == NULL)
4929 continue;
4930 fprintf(lfile, "%s.%u\n", name, win->id);
4931 free(name);
4932 }
4933
4934 fclose(lfile);
4935 }
4936
4937 void
4938 name_workspace(struct swm_region *r, union arg *args)
4939 {
4940 FILE *lfile;
4941
4942 DNPRINTF(SWM_D_MISC, "name_workspace\n");
4943
4944 if (r == NULL)
4945 return;
4946
4947 search_r = r;
4948 search_resp_action = SWM_SEARCH_NAME_WORKSPACE;
4949
4950 spawn_select(r, args, "name_workspace", &searchpid);
4951
4952 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
4953 return;
4954
4955 fprintf(lfile, "%s", "");
4956 fclose(lfile);
4957 }
4958
4959 void
4960 search_workspace(struct swm_region *r, union arg *args)
4961 {
4962 int i;
4963 struct workspace *ws;
4964 FILE *lfile;
4965
4966 DNPRINTF(SWM_D_MISC, "search_workspace\n");
4967
4968 if (r == NULL)
4969 return;
4970
4971 search_r = r;
4972 search_resp_action = SWM_SEARCH_SEARCH_WORKSPACE;
4973
4974 spawn_select(r, args, "search", &searchpid);
4975
4976 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
4977 return;
4978
4979 for (i = 0; i < workspace_limit; i++) {
4980 ws = &r->s->ws[i];
4981 if (ws == NULL)
4982 continue;
4983 fprintf(lfile, "%d%s%s\n", ws->idx + 1,
4984 (ws->name ? ":" : ""), (ws->name ? ws->name : ""));
4985 }
4986
4987 fclose(lfile);
4988 }
4989
4990 void
4991 search_win_cleanup(void)
4992 {
4993 struct search_window *sw = NULL;
4994
4995 while ((sw = TAILQ_FIRST(&search_wl)) != NULL) {
4996 xcb_destroy_window(conn, sw->indicator);
4997 TAILQ_REMOVE(&search_wl, sw, entry);
4998 free(sw);
4999 }
5000 }
5001
5002 void
5003 search_win(struct swm_region *r, union arg *args)
5004 {
5005 struct ws_win *win = NULL;
5006 struct search_window *sw = NULL;
5007 xcb_window_t w;
5008 uint32_t wa[2];
5009 int i, width, height;
5010 char s[8];
5011 FILE *lfile;
5012 size_t len;
5013 XftDraw *draw;
5014 XGlyphInfo info;
5015 GC l_draw;
5016 XGCValues l_gcv;
5017 XRectangle l_ibox, l_lbox;
5018
5019 DNPRINTF(SWM_D_MISC, "search_win\n");
5020
5021 search_r = r;
5022 search_resp_action = SWM_SEARCH_SEARCH_WINDOW;
5023
5024 spawn_select(r, args, "search", &searchpid);
5025
5026 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
5027 return;
5028
5029 TAILQ_INIT(&search_wl);
5030
5031 i = 1;
5032 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
5033 if (win->iconic)
5034 continue;
5035
5036 sw = calloc(1, sizeof(struct search_window));
5037 if (sw == NULL) {
5038 warn("search_win: calloc");
5039 fclose(lfile);
5040 search_win_cleanup();
5041 return;
5042 }
5043 sw->idx = i;
5044 sw->win = win;
5045
5046 snprintf(s, sizeof s, "%d", i);
5047 len = strlen(s);
5048
5049 w = xcb_generate_id(conn);
5050 wa[0] = r->s->c[SWM_S_COLOR_FOCUS].pixel;
5051 wa[1] = r->s->c[SWM_S_COLOR_UNFOCUS].pixel;
5052
5053 if (bar_font_legacy) {
5054 XmbTextExtents(bar_fs, s, len, &l_ibox, &l_lbox);
5055 width = l_lbox.width + 4;
5056 height = bar_fs_extents->max_logical_extent.height + 4;
5057 } else {
5058 XftTextExtentsUtf8(display, bar_font, (FcChar8 *)s, len,
5059 &info);
5060 width = info.width + 4;
5061 height = bar_font->height + 4;
5062 }
5063
5064 xcb_create_window(conn, XCB_COPY_FROM_PARENT, w, win->id, 0, 0,
5065 width, height, 1, XCB_WINDOW_CLASS_INPUT_OUTPUT,
5066 XCB_COPY_FROM_PARENT, XCB_CW_BACK_PIXEL |
5067 XCB_CW_BORDER_PIXEL, wa);
5068
5069 xcb_map_window(conn, w);
5070
5071 sw->indicator = w;
5072 TAILQ_INSERT_TAIL(&search_wl, sw, entry);
5073
5074 if (bar_font_legacy) {
5075 l_gcv.graphics_exposures = 0;
5076 l_draw = XCreateGC(display, w, 0, &l_gcv);
5077
5078 XSetForeground(display, l_draw,
5079 r->s->c[SWM_S_COLOR_BAR].pixel);
5080
5081 DRAWSTRING(display, w, bar_fs, l_draw, 2,
5082 (bar_fs_extents->max_logical_extent.height -
5083 l_lbox.height) / 2 - l_lbox.y, s, len);
5084
5085 XFreeGC(display, l_draw);
5086 } else {
5087
5088 draw = XftDrawCreate(display, w,
5089 DefaultVisual(display, r->s->idx),
5090 DefaultColormap(display, r->s->idx));
5091
5092 XftDrawStringUtf8(draw, &bar_font_color, bar_font, 2,
5093 (HEIGHT(r->bar) + bar_font->height) / 2 -
5094 bar_font->descent, (FcChar8 *)s, len);
5095
5096 XftDrawDestroy(draw);
5097 }
5098
5099 DNPRINTF(SWM_D_MISC, "search_win: mapped window: 0x%x\n", w);
5100
5101 fprintf(lfile, "%d\n", i);
5102 i++;
5103 }
5104
5105 fclose(lfile);
5106
5107 xcb_flush(conn);
5108 }
5109
5110 void
5111 search_resp_uniconify(const char *resp, size_t len)
5112 {
5113 char *name;
5114 struct ws_win *win;
5115 char *s;
5116
5117 DNPRINTF(SWM_D_MISC, "search_resp_uniconify: resp: %s\n", resp);
5118
5119 TAILQ_FOREACH(win, &search_r->ws->winlist, entry) {
5120 if (!win->iconic)
5121 continue;
5122 name = get_win_name(win->id);
5123 if (name == NULL)
5124 continue;
5125 if (asprintf(&s, "%s.%u", name, win->id) == -1) {
5126 free(name);
5127 continue;
5128 }
5129 free(name);
5130 if (strncmp(s, resp, len) == 0) {
5131 /* XXX this should be a callback to generalize */
5132 set_swm_iconic(win, 0);
5133 free(s);
5134 break;
5135 }
5136 free(s);
5137 }
5138 }
5139
5140 void
5141 search_resp_name_workspace(const char *resp, size_t len)
5142 {
5143 struct workspace *ws;
5144
5145 DNPRINTF(SWM_D_MISC, "search_resp_name_workspace: resp: %s\n", resp);
5146
5147 if (search_r->ws == NULL)
5148 return;
5149 ws = search_r->ws;
5150
5151 if (ws->name) {
5152 free(search_r->ws->name);
5153 search_r->ws->name = NULL;
5154 }
5155
5156 if (len > 1) {
5157 ws->name = strdup(resp);
5158 if (ws->name == NULL) {
5159 DNPRINTF(SWM_D_MISC, "search_resp_name_workspace: "
5160 "strdup: %s", strerror(errno));
5161 return;
5162 }
5163 }
5164 }
5165
5166 void
5167 search_resp_search_workspace(const char *resp)
5168 {
5169 char *p, *q;
5170 int ws_idx;
5171 const char *errstr;
5172 union arg a;
5173
5174 DNPRINTF(SWM_D_MISC, "search_resp_search_workspace: resp: %s\n", resp);
5175
5176 q = strdup(resp);
5177 if (!q) {
5178 DNPRINTF(SWM_D_MISC, "search_resp_search_workspace: strdup: %s",
5179 strerror(errno));
5180 return;
5181 }
5182 p = strchr(q, ':');
5183 if (p != NULL)
5184 *p = '\0';
5185 ws_idx = (int)strtonum(q, 1, workspace_limit, &errstr);
5186 if (errstr) {
5187 DNPRINTF(SWM_D_MISC, "workspace idx is %s: %s",
5188 errstr, q);
5189 free(q);
5190 return;
5191 }
5192 free(q);
5193 a.id = ws_idx - 1;
5194 switchws(search_r, &a);
5195 }
5196
5197 void
5198 search_resp_search_window(const char *resp)
5199 {
5200 char *s;
5201 int idx;
5202 const char *errstr;
5203 struct search_window *sw;
5204
5205 DNPRINTF(SWM_D_MISC, "search_resp_search_window: resp: %s\n", resp);
5206
5207 s = strdup(resp);
5208 if (!s) {
5209 DNPRINTF(SWM_D_MISC, "search_resp_search_window: strdup: %s",
5210 strerror(errno));
5211 return;
5212 }
5213
5214 idx = (int)strtonum(s, 1, INT_MAX, &errstr);
5215 if (errstr) {
5216 DNPRINTF(SWM_D_MISC, "window idx is %s: %s",
5217 errstr, s);
5218 free(s);
5219 return;
5220 }
5221 free(s);
5222
5223 TAILQ_FOREACH(sw, &search_wl, entry)
5224 if (idx == sw->idx) {
5225 focus_win(sw->win);
5226 break;
5227 }
5228 }
5229
5230 #define MAX_RESP_LEN 1024
5231
5232 void
5233 search_do_resp(void)
5234 {
5235 ssize_t rbytes;
5236 char *resp;
5237 size_t len;
5238
5239 DNPRINTF(SWM_D_MISC, "search_do_resp:\n");
5240
5241 search_resp = 0;
5242 searchpid = 0;
5243
5244 if ((resp = calloc(1, MAX_RESP_LEN + 1)) == NULL) {
5245 warn("search: calloc");
5246 goto done;
5247 }
5248
5249 rbytes = read(select_resp_pipe[0], resp, MAX_RESP_LEN);
5250 if (rbytes <= 0) {
5251 warn("search: read error");
5252 goto done;
5253 }
5254 resp[rbytes] = '\0';
5255
5256 /* XXX:
5257 * Older versions of dmenu (Atleast pre 4.4.1) do not send a
5258 * newline, so work around that by sanitizing the resp now.
5259 */
5260 resp[strcspn(resp, "\n")] = '\0';
5261 len = strlen(resp);
5262
5263 switch (search_resp_action) {
5264 case SWM_SEARCH_UNICONIFY:
5265 search_resp_uniconify(resp, len);
5266 break;
5267 case SWM_SEARCH_NAME_WORKSPACE:
5268 search_resp_name_workspace(resp, len);
5269 break;
5270 case SWM_SEARCH_SEARCH_WORKSPACE:
5271 search_resp_search_workspace(resp);
5272 break;
5273 case SWM_SEARCH_SEARCH_WINDOW:
5274 search_resp_search_window(resp);
5275 break;
5276 }
5277
5278 done:
5279 if (search_resp_action == SWM_SEARCH_SEARCH_WINDOW)
5280 search_win_cleanup();
5281
5282 search_resp_action = SWM_SEARCH_NONE;
5283 close(select_resp_pipe[0]);
5284 free(resp);
5285
5286 xcb_flush(conn);
5287 }
5288
5289 void
5290 wkill(struct swm_region *r, union arg *args)
5291 {
5292 DNPRINTF(SWM_D_MISC, "wkill: id: %d\n", args->id);
5293
5294 if (r->ws->focus == NULL)
5295 return;
5296
5297 if (args->id == SWM_ARG_ID_KILLWINDOW)
5298 xcb_kill_client(conn, r->ws->focus->id);
5299 else
5300 if (r->ws->focus->can_delete)
5301 client_msg(r->ws->focus, a_delete, 0);
5302
5303 focus_flush();
5304 }
5305
5306 int
5307 floating_toggle_win(struct ws_win *win)
5308 {
5309 struct swm_region *r;
5310
5311 if (win == NULL)
5312 return (0);
5313
5314 if (!win->ws->r)
5315 return (0);
5316
5317 r = win->ws->r;
5318
5319 /* reject floating toggles in max stack mode */
5320 if (win->ws->cur_layout == &layouts[SWM_MAX_STACK])
5321 return (0);
5322
5323 if (win->floating) {
5324 if (!win->floatmaxed) {
5325 /* retain position for refloat */
5326 store_float_geom(win);
5327 }
5328 win->floating = 0;
5329 } else {
5330 load_float_geom(win);
5331 win->floating = 1;
5332 }
5333
5334 ewmh_update_actions(win);
5335
5336 return (1);
5337 }
5338
5339 void
5340 floating_toggle(struct swm_region *r, union arg *args)
5341 {
5342 struct ws_win *win = r->ws->focus;
5343
5344 /* suppress unused warning since var is needed */
5345 (void)args;
5346
5347 if (win == NULL)
5348 return;
5349
5350 if (win->ewmh_flags & EWMH_F_FULLSCREEN)
5351 return;
5352
5353 ewmh_update_win_state(win, ewmh[_NET_WM_STATE_ABOVE].atom,
5354 _NET_WM_STATE_TOGGLE);
5355
5356 stack();
5357
5358 if (win == win->ws->focus)
5359 focus_win(win);
5360
5361 focus_flush();
5362 }
5363
5364 void
5365 region_containment(struct ws_win *win, struct swm_region *r, int opts)
5366 {
5367 struct swm_geometry g = r->g;
5368 int rt, lt, tp, bm, bw;
5369
5370 bw = (opts & SWM_CW_SOFTBOUNDARY) ? boundary_width : 0;
5371
5372 /*
5373 * Perpendicular distance of each side of the window to the respective
5374 * side of the region boundary. Positive values indicate the side of
5375 * the window has passed beyond the region boundary.
5376 */
5377 rt = opts & SWM_CW_RIGHT ? MAX_X(win) + BORDER(win) - MAX_X(r) : bw;
5378 lt = opts & SWM_CW_LEFT ? X(r) - X(win) + BORDER(win) : bw;
5379 bm = opts & SWM_CW_BOTTOM ? MAX_Y(win) + BORDER(win) - MAX_Y(r) : bw;
5380 tp = opts & SWM_CW_TOP ? Y(r) - Y(win) + BORDER(win) : bw;
5381
5382 DNPRINTF(SWM_D_MISC, "region_containment: win 0x%x, rt: %d, lt: %d, "
5383 "bm: %d, tp: %d, SOFTBOUNDARY: %s, HARDBOUNDARY: %s\n", win->id, rt,
5384 lt, bm, tp, YESNO(opts & SWM_CW_SOFTBOUNDARY),
5385 YESNO(opts & SWM_CW_HARDBOUNDARY));
5386
5387 /*
5388 * Disable containment if any of the flagged sides went beyond the
5389 * containment boundary, or if containment is disabled.
5390 */
5391 if (!(opts & SWM_CW_HARDBOUNDARY || opts & SWM_CW_SOFTBOUNDARY) ||
5392 (bw != 0 && ((rt > bw) || (lt > bw) || (bm > bw) || (tp > bw)))) {
5393 /* Make sure window has at least 1 pixel in the region */
5394 g.x += 1 - WIDTH(win);
5395 g.y += 1 - HEIGHT(win);
5396 g.w += 2 * WIDTH(win) - 2;
5397 g.h += 2 * HEIGHT(win) - 2;
5398 }
5399
5400 constrain_window(win, &g, &opts);
5401 }
5402
5403 /* Move or resize a window so that flagged side(s) fit into the supplied box. */
5404 void
5405 constrain_window(struct ws_win *win, struct swm_geometry *b, int *opts)
5406 {
5407 DNPRINTF(SWM_D_MISC, "constrain_window: window: 0x%x, (x,y) w x h: "
5408 "(%d,%d) %d x %d, box: (x,y) w x h: (%d,%d) %d x %d, rt: %s, "
5409 "lt: %s, bt: %s, tp: %s, allow resize: %s\n", win->id, X(win),
5410 Y(win), WIDTH(win), HEIGHT(win), b->x, b->y, b->w, b->h,
5411 YESNO(*opts & SWM_CW_RIGHT), YESNO(*opts & SWM_CW_LEFT),
5412 YESNO(*opts & SWM_CW_BOTTOM), YESNO(*opts & SWM_CW_TOP),
5413 YESNO(*opts & SWM_CW_RESIZABLE));
5414
5415 if ((*opts & SWM_CW_RIGHT) && MAX_X(win) + BORDER(win) > b->x + b->w) {
5416 if (*opts & SWM_CW_RESIZABLE)
5417 WIDTH(win) = b->x + b->w - X(win) - BORDER(win);
5418 else
5419 X(win) = b->x + b->w - WIDTH(win) - BORDER(win);
5420 }
5421
5422 if ((*opts & SWM_CW_LEFT) && X(win) + BORDER(win) < b->x) {
5423 if (*opts & SWM_CW_RESIZABLE)
5424 WIDTH(win) -= b->x - X(win) - BORDER(win);
5425
5426 X(win) = b->x - BORDER(win);
5427 }
5428
5429 if ((*opts & SWM_CW_BOTTOM) && MAX_Y(win) + BORDER(win) > b->y + b->h) {
5430 if (*opts & SWM_CW_RESIZABLE)
5431 HEIGHT(win) = b->y + b->h - Y(win) - BORDER(win);
5432 else
5433 Y(win) = b->y + b->h - HEIGHT(win) - BORDER(win);
5434 }
5435
5436 if ((*opts & SWM_CW_TOP) && Y(win) + BORDER(win) < b->y) {
5437 if (*opts & SWM_CW_RESIZABLE)
5438 HEIGHT(win) -= b->y - Y(win) - BORDER(win);
5439
5440 Y(win) = b->y - BORDER(win);
5441 }
5442
5443 if (*opts & SWM_CW_RESIZABLE) {
5444 if (WIDTH(win) < 1)
5445 WIDTH(win) = 1;
5446 if (HEIGHT(win) < 1)
5447 HEIGHT(win) = 1;
5448 }
5449 }
5450
5451 void
5452 update_window(struct ws_win *win)
5453 {
5454 uint16_t mask;
5455 uint32_t wc[5];
5456
5457 mask = XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y |
5458 XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT |
5459 XCB_CONFIG_WINDOW_BORDER_WIDTH;
5460 wc[0] = X(win);
5461 wc[1] = Y(win);
5462 wc[2] = WIDTH(win);
5463 wc[3] = HEIGHT(win);
5464 wc[4] = BORDER(win);
5465
5466 DNPRINTF(SWM_D_EVENT, "update_window: window: 0x%x, (x,y) w x h: "
5467 "(%d,%d) %d x %d, bordered: %s\n", win->id, wc[0], wc[1], wc[2],
5468 wc[3], YESNO(win->bordered));
5469
5470 xcb_configure_window(conn, win->id, mask, wc);
5471 }
5472
5473 #define SWM_RESIZE_STEPS (50)
5474
5475 void
5476 resize(struct ws_win *win, union arg *args)
5477 {
5478 xcb_timestamp_t timestamp = 0;
5479 struct swm_region *r = NULL;
5480 int resize_stp = 0;
5481 struct swm_geometry g;
5482 int top = 0, left = 0, resizing;
5483 int dx, dy;
5484 xcb_cursor_t cursor;
5485 xcb_query_pointer_reply_t *xpr = NULL;
5486 xcb_generic_event_t *evt;
5487 xcb_motion_notify_event_t *mne;
5488
5489 if (win == NULL)
5490 return;
5491 r = win->ws->r;
5492
5493 if (win->ewmh_flags & EWMH_F_FULLSCREEN)
5494 return;
5495
5496 DNPRINTF(SWM_D_EVENT, "resize: window: 0x%x, floating: %s, "
5497 "transient: 0x%x\n", win->id, YESNO(win->floating),
5498 win->transient);
5499
5500 if (!win->transient && !win->floating)
5501 return;
5502
5503 /* reject resizes in max mode for floaters (transient ok) */
5504 if (win->floatmaxed)
5505 return;
5506
5507 win->manual = 1;
5508 ewmh_update_win_state(win, ewmh[_SWM_WM_STATE_MANUAL].atom,
5509 _NET_WM_STATE_ADD);
5510
5511 stack();
5512
5513 focus_flush();
5514
5515 /* It's possible for win to have been freed during focus_flush(). */
5516 if (validate_win(win)) {
5517 DNPRINTF(SWM_D_EVENT, "resize: invalid win.\n");
5518 goto out;
5519 }
5520
5521 switch (args->id) {
5522 case SWM_ARG_ID_WIDTHSHRINK:
5523 WIDTH(win) -= SWM_RESIZE_STEPS;
5524 resize_stp = 1;
5525 break;
5526 case SWM_ARG_ID_WIDTHGROW:
5527 WIDTH(win) += SWM_RESIZE_STEPS;
5528 resize_stp = 1;
5529 break;
5530 case SWM_ARG_ID_HEIGHTSHRINK:
5531 HEIGHT(win) -= SWM_RESIZE_STEPS;
5532 resize_stp = 1;
5533 break;
5534 case SWM_ARG_ID_HEIGHTGROW:
5535 HEIGHT(win) += SWM_RESIZE_STEPS;
5536 resize_stp = 1;
5537 break;
5538 default:
5539 break;
5540 }
5541 if (resize_stp) {
5542 region_containment(win, r, SWM_CW_ALLSIDES | SWM_CW_RESIZABLE |
5543 SWM_CW_HARDBOUNDARY);
5544 update_window(win);
5545 store_float_geom(win);
5546 return;
5547 }
5548
5549 region_containment(win, r, SWM_CW_ALLSIDES | SWM_CW_RESIZABLE |
5550 SWM_CW_SOFTBOUNDARY);
5551 update_window(win);
5552
5553 /* get cursor offset from window root */
5554 xpr = xcb_query_pointer_reply(conn, xcb_query_pointer(conn, win->id),
5555 NULL);
5556 if (!xpr)
5557 return;
5558
5559 g = win->g;
5560
5561 if (xpr->win_x < WIDTH(win) / 2)
5562 left = 1;
5563
5564 if (xpr->win_y < HEIGHT(win) / 2)
5565 top = 1;
5566
5567 if (args->id == SWM_ARG_ID_CENTER)
5568 cursor = cursors[XC_SIZING].cid;
5569 else if (top)
5570 cursor = cursors[left ? XC_TOP_LEFT_CORNER :
5571 XC_TOP_RIGHT_CORNER].cid;
5572 else
5573 cursor = cursors[left ? XC_BOTTOM_LEFT_CORNER :
5574 XC_BOTTOM_RIGHT_CORNER].cid;
5575
5576 xcb_grab_pointer(conn, 0, win->id, MOUSEMASK,
5577 XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC, XCB_WINDOW_NONE, cursor,
5578 XCB_CURRENT_TIME),
5579
5580 xcb_flush(conn);
5581 resizing = 1;
5582 while (resizing && (evt = xcb_wait_for_event(conn))) {
5583 switch (XCB_EVENT_RESPONSE_TYPE(evt)) {
5584 case XCB_BUTTON_RELEASE:
5585 DNPRINTF(SWM_D_EVENT, "resize: BUTTON_RELEASE\n");
5586 resizing = 0;
5587 break;
5588 case XCB_MOTION_NOTIFY:
5589 mne = (xcb_motion_notify_event_t *)evt;
5590 /* cursor offset/delta from start of the operation */
5591 dx = mne->root_x - xpr->root_x;
5592 dy = mne->root_y - xpr->root_y;
5593
5594 /* vertical */
5595 if (top)
5596 dy = -dy;
5597
5598 if (args->id == SWM_ARG_ID_CENTER) {
5599 if (g.h / 2 + dy < 1)
5600 dy = 1 - g.h / 2;
5601
5602 Y(win) = g.y - dy;
5603 HEIGHT(win) = g.h + 2 * dy;
5604 } else {
5605 if (g.h + dy < 1)
5606 dy = 1 - g.h;
5607
5608 if (top)
5609 Y(win) = g.y - dy;
5610
5611 HEIGHT(win) = g.h + dy;
5612 }
5613
5614 /* horizontal */
5615 if (left)
5616 dx = -dx;
5617
5618 if (args->id == SWM_ARG_ID_CENTER) {
5619 if (g.w / 2 + dx < 1)
5620 dx = 1 - g.w / 2;
5621
5622 X(win) = g.x - dx;
5623 WIDTH(win) = g.w + 2 * dx;
5624 } else {
5625 if (g.w + dx < 1)
5626 dx = 1 - g.w;
5627
5628 if (left)
5629 X(win) = g.x - dx;
5630
5631 WIDTH(win) = g.w + dx;
5632 }
5633
5634 /* not free, don't sync more than 120 times / second */
5635 if ((mne->time - timestamp) > (1000 / 120) ) {
5636 timestamp = mne->time;
5637 regionize(win, mne->root_x, mne->root_y);
5638 region_containment(win, r, SWM_CW_ALLSIDES |
5639 SWM_CW_RESIZABLE | SWM_CW_HARDBOUNDARY |
5640 SWM_CW_SOFTBOUNDARY);
5641 update_window(win);
5642 xcb_flush(conn);
5643 }
5644 break;
5645 default:
5646 event_handle(evt);
5647
5648 /* It's possible for win to have been freed above. */
5649 if (validate_win(win)) {
5650 DNPRINTF(SWM_D_EVENT, "resize: invalid win.\n");
5651 goto out;
5652 }
5653 break;
5654 }
5655 free(evt);
5656 }
5657 if (timestamp) {
5658 region_containment(win, r, SWM_CW_ALLSIDES | SWM_CW_RESIZABLE |
5659 SWM_CW_HARDBOUNDARY | SWM_CW_SOFTBOUNDARY);
5660 update_window(win);
5661 xcb_flush(conn);
5662 }
5663 store_float_geom(win);
5664 out:
5665 xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
5666 free(xpr);
5667 DNPRINTF(SWM_D_EVENT, "resize: done.\n");
5668 }
5669
5670 void
5671 resize_step(struct swm_region *r, union arg *args)
5672 {
5673 struct ws_win *win = NULL;
5674
5675 if (r && r->ws && r->ws->focus)
5676 win = r->ws->focus;
5677 else
5678 return;
5679
5680 resize(win, args);
5681 focus_flush();
5682 }
5683
5684 /* Try to set window region based on supplied coordinates or window center. */
5685 void
5686 regionize(struct ws_win *win, int x, int y)
5687 {
5688 struct swm_region *r = NULL;
5689
5690 r = region_under(win->s, x, y);
5691 if (r == NULL)
5692 r = region_under(win->s, X(win) + WIDTH(win) / 2,
5693 Y(win) + HEIGHT(win) / 2);
5694
5695 if (r && r != win->ws->r) {
5696 win_to_ws(win, r->ws->idx, 0);
5697 set_region(r);
5698 }
5699 }
5700
5701 #define SWM_MOVE_STEPS (50)
5702
5703 void
5704 move(struct ws_win *win, union arg *args)
5705 {
5706 xcb_timestamp_t timestamp = 0;
5707 int move_stp = 0, moving;
5708 struct swm_region *r = NULL;
5709 xcb_query_pointer_reply_t *qpr = NULL;
5710 xcb_generic_event_t *evt;
5711 xcb_motion_notify_event_t *mne;
5712
5713 if (win == NULL)
5714 return;
5715 r = win->ws->r;
5716
5717 if (win->ewmh_flags & EWMH_F_FULLSCREEN)
5718 return;
5719
5720 DNPRINTF(SWM_D_EVENT, "move: window: 0x%x, floating: %s, transient: "
5721 "0x%x\n", win->id, YESNO(win->floating), win->transient);
5722
5723 /* in max_stack mode should only move transients */
5724 if (win->ws->cur_layout == &layouts[SWM_MAX_STACK] && !win->transient)
5725 return;
5726
5727 if (!win->manual) {
5728 win->manual = 1;
5729 ewmh_update_win_state(win, ewmh[_SWM_WM_STATE_MANUAL].atom,
5730 _NET_WM_STATE_ADD);
5731 }
5732
5733 /* When a stacked win is moved, float it and restack. */
5734 if (!win->floating && !win->transient) {
5735 store_float_geom(win);
5736 ewmh_update_win_state(win, ewmh[_NET_WM_STATE_ABOVE].atom,
5737 _NET_WM_STATE_ADD);
5738 stack();
5739 }
5740
5741 focus_flush();
5742
5743 /* It's possible for win to have been freed during focus_flush(). */
5744 if (validate_win(win)) {
5745 DNPRINTF(SWM_D_EVENT, "move: invalid win.\n");
5746 goto out;
5747 }
5748
5749 move_stp = 0;
5750 switch (args->id) {
5751 case SWM_ARG_ID_MOVELEFT:
5752 X(win) -= (SWM_MOVE_STEPS - border_width);
5753 move_stp = 1;
5754 break;
5755 case SWM_ARG_ID_MOVERIGHT:
5756 X(win) += (SWM_MOVE_STEPS - border_width);
5757 move_stp = 1;
5758 break;
5759 case SWM_ARG_ID_MOVEUP:
5760 Y(win) -= (SWM_MOVE_STEPS - border_width);
5761 move_stp = 1;
5762 break;
5763 case SWM_ARG_ID_MOVEDOWN:
5764 Y(win) += (SWM_MOVE_STEPS - border_width);
5765 move_stp = 1;
5766 break;
5767 default:
5768 break;
5769 }
5770 if (move_stp) {
5771 regionize(win, -1, -1);
5772 region_containment(win, win->ws->r, SWM_CW_ALLSIDES);
5773 update_window(win);
5774 store_float_geom(win);
5775 return;
5776 }
5777
5778 xcb_grab_pointer(conn, 0, win->id, MOUSEMASK,
5779 XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC,
5780 XCB_WINDOW_NONE, cursors[XC_FLEUR].cid, XCB_CURRENT_TIME);
5781
5782 /* get cursor offset from window root */
5783 qpr = xcb_query_pointer_reply(conn, xcb_query_pointer(conn, win->id),
5784 NULL);
5785 if (!qpr) {
5786 xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
5787 return;
5788 }
5789
5790 regionize(win, qpr->root_x, qpr->root_y);
5791 region_containment(win, win->ws->r, SWM_CW_ALLSIDES |
5792 SWM_CW_SOFTBOUNDARY);
5793 update_window(win);
5794 xcb_flush(conn);
5795 moving = 1;
5796 while (moving && (evt = xcb_wait_for_event(conn))) {
5797 switch (XCB_EVENT_RESPONSE_TYPE(evt)) {
5798 case XCB_BUTTON_RELEASE:
5799 DNPRINTF(SWM_D_EVENT, "move: BUTTON_RELEASE\n");
5800 moving = 0;
5801 break;
5802 case XCB_MOTION_NOTIFY:
5803 mne = (xcb_motion_notify_event_t *)evt;
5804 DNPRINTF(SWM_D_EVENT, "motion: root: 0x%x\n", mne->root);
5805 X(win) = mne->root_x - qpr->win_x - border_width;
5806 Y(win) = mne->root_y - qpr->win_y - border_width;
5807
5808 /* not free, don't sync more than 120 times / second */
5809 if ((mne->time - timestamp) > (1000 / 120) ) {
5810 timestamp = mne->time;
5811 regionize(win, mne->root_x, mne->root_y);
5812 region_containment(win, win->ws->r,
5813 SWM_CW_ALLSIDES | SWM_CW_SOFTBOUNDARY);
5814 update_window(win);
5815 xcb_flush(conn);
5816 }
5817 break;
5818 default:
5819 event_handle(evt);
5820
5821 /* It's possible for win to have been freed above. */
5822 if (validate_win(win)) {
5823 DNPRINTF(SWM_D_EVENT, "move: invalid win.\n");
5824 goto out;
5825 }
5826 break;
5827 }
5828 free(evt);
5829 }
5830 if (timestamp) {
5831 region_containment(win, win->ws->r, SWM_CW_ALLSIDES |
5832 SWM_CW_SOFTBOUNDARY);
5833 update_window(win);
5834 xcb_flush(conn);
5835 }
5836 store_float_geom(win);
5837 out:
5838 free(qpr);
5839 xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
5840 DNPRINTF(SWM_D_EVENT, "move: done.\n");
5841 }
5842
5843 void
5844 move_step(struct swm_region *r, union arg *args)
5845 {
5846 struct ws_win *win = NULL;
5847
5848 if (r && r->ws && r->ws->focus)
5849 win = r->ws->focus;
5850 else
5851 return;
5852
5853 if (!win->transient && !win->floating)
5854 return;
5855
5856 move(win, args);
5857 focus_flush();
5858 }
5859
5860 /* key definitions */
5861 struct keyfunc {
5862 char name[SWM_FUNCNAME_LEN];
5863 void (*func)(struct swm_region *r, union arg *);
5864 union arg args;
5865 } keyfuncs[KF_INVALID + 1] = {
5866 /* name function argument */
5867 { "bar_toggle", bar_toggle, {.id = SWM_ARG_ID_BAR_TOGGLE} },
5868 { "bar_toggle_ws", bar_toggle, {.id = SWM_ARG_ID_BAR_TOGGLE_WS} },
5869 { "button2", pressbutton, {2} },
5870 { "cycle_layout", cycle_layout, {0} },
5871 { "flip_layout", stack_config, {.id = SWM_ARG_ID_FLIPLAYOUT} },
5872 { "float_toggle", floating_toggle,{0} },
5873 { "focus_main", focus, {.id = SWM_ARG_ID_FOCUSMAIN} },
5874 { "focus_next", focus, {.id = SWM_ARG_ID_FOCUSNEXT} },
5875 { "focus_prev", focus, {.id = SWM_ARG_ID_FOCUSPREV} },
5876 { "height_grow", resize_step, {.id = SWM_ARG_ID_HEIGHTGROW} },
5877 { "height_shrink", resize_step, {.id = SWM_ARG_ID_HEIGHTSHRINK} },
5878 { "iconify", iconify, {0} },
5879 { "master_shrink", stack_config, {.id = SWM_ARG_ID_MASTERSHRINK} },
5880 { "master_grow", stack_config, {.id = SWM_ARG_ID_MASTERGROW} },
5881 { "master_add", stack_config, {.id = SWM_ARG_ID_MASTERADD} },
5882 { "master_del", stack_config, {.id = SWM_ARG_ID_MASTERDEL} },
5883 { "move_down", move_step, {.id = SWM_ARG_ID_MOVEDOWN} },
5884 { "move_left", move_step, {.id = SWM_ARG_ID_MOVELEFT} },
5885 { "move_right", move_step, {.id = SWM_ARG_ID_MOVERIGHT} },
5886 { "move_up", move_step, {.id = SWM_ARG_ID_MOVEUP} },
5887 { "mvrg_1", send_to_rg, {.id = 0} },
5888 { "mvrg_2", send_to_rg, {.id = 1} },
5889 { "mvrg_3", send_to_rg, {.id = 2} },
5890 { "mvrg_4", send_to_rg, {.id = 3} },
5891 { "mvrg_5", send_to_rg, {.id = 4} },
5892 { "mvrg_6", send_to_rg, {.id = 5} },
5893 { "mvrg_7", send_to_rg, {.id = 6} },
5894 { "mvrg_8", send_to_rg, {.id = 7} },
5895 { "mvrg_9", send_to_rg, {.id = 8} },
5896 { "mvws_1", send_to_ws, {.id = 0} },
5897 { "mvws_2", send_to_ws, {.id = 1} },
5898 { "mvws_3", send_to_ws, {.id = 2} },
5899 { "mvws_4", send_to_ws, {.id = 3} },
5900 { "mvws_5", send_to_ws, {.id = 4} },
5901 { "mvws_6", send_to_ws, {.id = 5} },
5902 { "mvws_7", send_to_ws, {.id = 6} },
5903 { "mvws_8", send_to_ws, {.id = 7} },
5904 { "mvws_9", send_to_ws, {.id = 8} },
5905 { "mvws_10", send_to_ws, {.id = 9} },
5906 { "mvws_11", send_to_ws, {.id = 10} },
5907 { "mvws_12", send_to_ws, {.id = 11} },
5908 { "mvws_13", send_to_ws, {.id = 12} },
5909 { "mvws_14", send_to_ws, {.id = 13} },
5910 { "mvws_15", send_to_ws, {.id = 14} },
5911 { "mvws_16", send_to_ws, {.id = 15} },
5912 { "mvws_17", send_to_ws, {.id = 16} },
5913 { "mvws_18", send_to_ws, {.id = 17} },
5914 { "mvws_19", send_to_ws, {.id = 18} },
5915 { "mvws_20", send_to_ws, {.id = 19} },
5916 { "mvws_21", send_to_ws, {.id = 20} },
5917 { "mvws_22", send_to_ws, {.id = 21} },
5918 { "name_workspace", name_workspace, {0} },
5919 { "quit", quit, {0} },
5920 { "raise_toggle", raise_toggle, {0} },
5921 { "restart", restart, {0} },
5922 { "rg_1", focusrg, {.id = 0} },
5923 { "rg_2", focusrg, {.id = 1} },
5924 { "rg_3", focusrg, {.id = 2} },
5925 { "rg_4", focusrg, {.id = 3} },
5926 { "rg_5", focusrg, {.id = 4} },
5927 { "rg_6", focusrg, {.id = 5} },
5928 { "rg_7", focusrg, {.id = 6} },
5929 { "rg_8", focusrg, {.id = 7} },
5930 { "rg_9", focusrg, {.id = 8} },
5931 { "rg_next", cyclerg, {.id = SWM_ARG_ID_CYCLERG_UP} },
5932 { "rg_prev", cyclerg, {.id = SWM_ARG_ID_CYCLERG_DOWN} },
5933 { "screen_next", cyclerg, {.id = SWM_ARG_ID_CYCLERG_UP} },
5934 { "screen_prev", cyclerg, {.id = SWM_ARG_ID_CYCLERG_DOWN} },
5935 { "search_win", search_win, {0} },
5936 { "search_workspace", search_workspace, {0} },
5937 { "spawn_custom", NULL, {0} },
5938 { "stack_inc", stack_config, {.id = SWM_ARG_ID_STACKINC} },
5939 { "stack_dec", stack_config, {.id = SWM_ARG_ID_STACKDEC} },
5940 { "stack_reset", stack_config, {.id = SWM_ARG_ID_STACKRESET} },
5941 { "swap_main", swapwin, {.id = SWM_ARG_ID_SWAPMAIN} },
5942 { "swap_next", swapwin, {.id = SWM_ARG_ID_SWAPNEXT} },
5943 { "swap_prev", swapwin, {.id = SWM_ARG_ID_SWAPPREV} },
5944 { "uniconify", uniconify, {0} },
5945 { "version", version, {0} },
5946 { "width_grow", resize_step, {.id = SWM_ARG_ID_WIDTHGROW} },
5947 { "width_shrink", resize_step, {.id = SWM_ARG_ID_WIDTHSHRINK} },
5948 { "wind_del", wkill, {.id = SWM_ARG_ID_DELETEWINDOW} },
5949 { "wind_kill", wkill, {.id = SWM_ARG_ID_KILLWINDOW} },
5950 { "ws_1", switchws, {.id = 0} },
5951 { "ws_2", switchws, {.id = 1} },
5952 { "ws_3", switchws, {.id = 2} },
5953 { "ws_4", switchws, {.id = 3} },
5954 { "ws_5", switchws, {.id = 4} },
5955 { "ws_6", switchws, {.id = 5} },
5956 { "ws_7", switchws, {.id = 6} },
5957 { "ws_8", switchws, {.id = 7} },
5958 { "ws_9", switchws, {.id = 8} },
5959 { "ws_10", switchws, {.id = 9} },
5960 { "ws_11", switchws, {.id = 10} },
5961 { "ws_12", switchws, {.id = 11} },
5962 { "ws_13", switchws, {.id = 12} },
5963 { "ws_14", switchws, {.id = 13} },
5964 { "ws_15", switchws, {.id = 14} },
5965 { "ws_16", switchws, {.id = 15} },
5966 { "ws_17", switchws, {.id = 16} },
5967 { "ws_18", switchws, {.id = 17} },
5968 { "ws_19", switchws, {.id = 18} },
5969 { "ws_20", switchws, {.id = 19} },
5970 { "ws_21", switchws, {.id = 20} },
5971 { "ws_22", switchws, {.id = 21} },
5972 { "ws_next", cyclews, {.id = SWM_ARG_ID_CYCLEWS_UP} },
5973 { "ws_next_all", cyclews, {.id = SWM_ARG_ID_CYCLEWS_UP_ALL} },
5974 { "ws_next_move", cyclews, {.id = SWM_ARG_ID_CYCLEWS_MOVE_UP} },
5975 { "ws_prev", cyclews, {.id = SWM_ARG_ID_CYCLEWS_DOWN} },
5976 { "ws_prev_all", cyclews, {.id = SWM_ARG_ID_CYCLEWS_DOWN_ALL} },
5977 { "ws_prev_move", cyclews, {.id = SWM_ARG_ID_CYCLEWS_MOVE_DOWN} },
5978 { "ws_prior", priorws, {0} },
5979 { "dumpwins", dumpwins, {0} }, /* MUST BE LAST */
5980 { "invalid key func", NULL, {0} },
5981 };
5982
5983 int
5984 key_cmp(struct key *kp1, struct key *kp2)
5985 {
5986 if (kp1->keysym < kp2->keysym)
5987 return (-1);
5988 if (kp1->keysym > kp2->keysym)
5989 return (1);
5990
5991 if (kp1->mod < kp2->mod)
5992 return (-1);
5993 if (kp1->mod > kp2->mod)
5994 return (1);
5995
5996 return (0);
5997 }
5998
5999 /* mouse */
6000 enum { client_click, root_click };
6001 struct button {
6002 unsigned int action;
6003 unsigned int mask;
6004 unsigned int button;
6005 void (*func)(struct ws_win *, union arg *);
6006 union arg args;
6007 } buttons[] = {
6008 #define MODKEY_SHIFT MODKEY | XCB_MOD_MASK_SHIFT
6009 /* action key mouse button func args */
6010 { client_click, MODKEY, XCB_BUTTON_INDEX_3, resize, {.id = SWM_ARG_ID_DONTCENTER} },
6011 { client_click, MODKEY_SHIFT, XCB_BUTTON_INDEX_3, resize, {.id = SWM_ARG_ID_CENTER} },
6012 { client_click, MODKEY, XCB_BUTTON_INDEX_1, move, {0} },
6013 #undef MODKEY_SHIFT
6014 };
6015
6016 void
6017 update_modkey(unsigned int mod)
6018 {
6019 int i;
6020 struct key *kp;
6021
6022 mod_key = mod;
6023 RB_FOREACH(kp, key_tree, &keys)
6024 if (kp->mod & XCB_MOD_MASK_SHIFT)
6025 kp->mod = mod | XCB_MOD_MASK_SHIFT;
6026 else
6027 kp->mod = mod;
6028
6029 for (i = 0; i < LENGTH(buttons); i++)
6030 if (buttons[i].mask & XCB_MOD_MASK_SHIFT)
6031 buttons[i].mask = mod | XCB_MOD_MASK_SHIFT;
6032 else
6033 buttons[i].mask = mod;
6034 }
6035
6036 int
6037 spawn_expand(struct swm_region *r, union arg *args, const char *spawn_name,
6038 char ***ret_args)
6039 {
6040 struct spawn_prog *prog = NULL;
6041 int i, c;
6042 char *ap, **real_args;
6043
6044 /* suppress unused warning since var is needed */
6045 (void)args;
6046
6047 DNPRINTF(SWM_D_SPAWN, "spawn_expand: %s\n", spawn_name);
6048
6049 /* find program */
6050 TAILQ_FOREACH(prog, &spawns, entry) {
6051 if (!strcasecmp(spawn_name, prog->name))
6052 break;
6053 }
6054 if (prog == NULL) {
6055 warnx("spawn_custom: program %s not found", spawn_name);
6056 return (-1);
6057 }
6058
6059 /* make room for expanded args */
6060 if ((real_args = calloc(prog->argc + 1, sizeof(char *))) == NULL)
6061 err(1, "spawn_custom: calloc real_args");
6062
6063 /* expand spawn_args into real_args */
6064 for (i = c = 0; i < prog->argc; i++) {
6065 ap = prog->argv[i];
6066 DNPRINTF(SWM_D_SPAWN, "spawn_custom: raw arg: %s\n", ap);
6067 if (!strcasecmp(ap, "$bar_border")) {
6068 if ((real_args[c] =
6069 strdup(r->s->c[SWM_S_COLOR_BAR_BORDER].name))
6070 == NULL)
6071 err(1, "spawn_custom border color");
6072 } else if (!strcasecmp(ap, "$bar_color")) {
6073 if ((real_args[c] =
6074 strdup(r->s->c[SWM_S_COLOR_BAR].name))
6075 == NULL)
6076 err(1, "spawn_custom bar color");
6077 } else if (!strcasecmp(ap, "$bar_font")) {
6078 if ((real_args[c] = strdup(bar_fonts))
6079 == NULL)
6080 err(1, "spawn_custom bar fonts");
6081 } else if (!strcasecmp(ap, "$bar_font_color")) {
6082 if ((real_args[c] =
6083 strdup(r->s->c[SWM_S_COLOR_BAR_FONT].name))
6084 == NULL)
6085 err(1, "spawn_custom color font");
6086 } else if (!strcasecmp(ap, "$color_focus")) {
6087 if ((real_args[c] =
6088 strdup(r->s->c[SWM_S_COLOR_FOCUS].name))
6089 == NULL)
6090 err(1, "spawn_custom color focus");
6091 } else if (!strcasecmp(ap, "$color_unfocus")) {
6092 if ((real_args[c] =
6093 strdup(r->s->c[SWM_S_COLOR_UNFOCUS].name))
6094 == NULL)
6095 err(1, "spawn_custom color unfocus");
6096 } else if (!strcasecmp(ap, "$region_index")) {
6097 if (asprintf(&real_args[c], "%d",
6098 get_region_index(r) + 1) < 1)
6099 err(1, "spawn_custom region index");
6100 } else if (!strcasecmp(ap, "$workspace_index")) {
6101 if (asprintf(&real_args[c], "%d", r->ws->idx + 1) < 1)
6102 err(1, "spawn_custom workspace index");
6103 } else if (!strcasecmp(ap, "$dmenu_bottom")) {
6104 if (!bar_at_bottom)
6105 continue;
6106 if ((real_args[c] = strdup("-b")) == NULL)
6107 err(1, "spawn_custom workspace index");
6108 } else {
6109 /* no match --> copy as is */
6110 if ((real_args[c] = strdup(ap)) == NULL)
6111 err(1, "spawn_custom strdup(ap)");
6112 }
6113 DNPRINTF(SWM_D_SPAWN, "spawn_custom: cooked arg: %s\n",
6114 real_args[c]);
6115 ++c;
6116 }
6117
6118 #ifdef SWM_DEBUG
6119 DNPRINTF(SWM_D_SPAWN, "spawn_custom: result: ");
6120 for (i = 0; i < c; ++i)
6121 DPRINTF("\"%s\" ", real_args[i]);
6122 DPRINTF("\n");
6123 #endif
6124 *ret_args = real_args;
6125 return (c);
6126 }
6127
6128 void
6129 spawn_custom(struct swm_region *r, union arg *args, const char *spawn_name)
6130 {
6131 union arg a;
6132 char **real_args;
6133 int spawn_argc, i;
6134
6135 if ((spawn_argc = spawn_expand(r, args, spawn_name, &real_args)) < 0)
6136 return;
6137 a.argv = real_args;
6138 if (fork() == 0)
6139 spawn(r->ws->idx, &a, 1);
6140
6141 for (i = 0; i < spawn_argc; i++)
6142 free(real_args[i]);
6143 free(real_args);
6144 }
6145
6146 void
6147 spawn_select(struct swm_region *r, union arg *args, const char *spawn_name,
6148 int *pid)
6149 {
6150 union arg a;
6151 char **real_args;
6152 int i, spawn_argc;
6153
6154 if ((spawn_argc = spawn_expand(r, args, spawn_name, &real_args)) < 0)
6155 return;
6156 a.argv = real_args;
6157
6158 if (pipe(select_list_pipe) == -1)
6159 err(1, "pipe error");
6160 if (pipe(select_resp_pipe) == -1)
6161 err(1, "pipe error");
6162
6163 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
6164 err(1, "could not disable SIGPIPE");
6165 switch (*pid = fork()) {
6166 case -1:
6167 err(1, "cannot fork");
6168 break;
6169 case 0: /* child */
6170 if (dup2(select_list_pipe[0], STDIN_FILENO) == -1)
6171 err(1, "dup2");
6172 if (dup2(select_resp_pipe[1], STDOUT_FILENO) == -1)
6173 err(1, "dup2");
6174 close(select_list_pipe[1]);
6175 close(select_resp_pipe[0]);
6176 spawn(r->ws->idx, &a, 0);
6177 break;
6178 default: /* parent */
6179 close(select_list_pipe[0]);
6180 close(select_resp_pipe[1]);
6181 break;
6182 }
6183
6184 for (i = 0; i < spawn_argc; i++)
6185 free(real_args[i]);
6186 free(real_args);
6187 }
6188
6189 void
6190 spawn_insert(const char *name, const char *args, int flags)
6191 {
6192 char *arg, *cp, *ptr;
6193 struct spawn_prog *sp;
6194
6195 DNPRINTF(SWM_D_SPAWN, "spawn_insert: %s\n", name);
6196
6197 if ((sp = calloc(1, sizeof *sp)) == NULL)
6198 err(1, "spawn_insert: calloc");
6199 if ((sp->name = strdup(name)) == NULL)
6200 err(1, "spawn_insert: strdup");
6201
6202 /* convert the arguments to an argument list */
6203 if ((ptr = cp = strdup(args)) == NULL)
6204 err(1, "spawn_insert: strdup");
6205 while ((arg = strsep(&ptr, " \t")) != NULL) {
6206 /* empty field; skip it */
6207 if (*arg == '\0')
6208 continue;
6209
6210 sp->argc++;
6211 if ((sp->argv = realloc(sp->argv, sp->argc *
6212 sizeof *sp->argv)) == NULL)
6213 err(1, "spawn_insert: realloc");
6214 if ((sp->argv[sp->argc - 1] = strdup(arg)) == NULL)
6215 err(1, "spawn_insert: strdup");
6216 }
6217 free(cp);
6218
6219 sp->flags = flags;
6220
6221 TAILQ_INSERT_TAIL(&spawns, sp, entry);
6222 DNPRINTF(SWM_D_SPAWN, "spawn_insert: leave\n");
6223 }
6224
6225 void
6226 spawn_remove(struct spawn_prog *sp)
6227 {
6228 int i;
6229
6230 DNPRINTF(SWM_D_SPAWN, "spawn_remove: %s\n", sp->name);
6231
6232 TAILQ_REMOVE(&spawns, sp, entry);
6233 for (i = 0; i < sp->argc; i++)
6234 free(sp->argv[i]);
6235 free(sp->argv);
6236 free(sp->name);
6237 free(sp);
6238
6239 DNPRINTF(SWM_D_SPAWN, "spawn_remove: leave\n");
6240 }
6241
6242 struct spawn_prog*
6243 spawn_find(const char *name)
6244 {
6245 struct spawn_prog *sp;
6246
6247 TAILQ_FOREACH(sp, &spawns, entry)
6248 if (!strcasecmp(sp->name, name))
6249 return sp;
6250
6251 return NULL;
6252 }
6253
6254 void
6255 setspawn(const char *name, const char *args, int flags)
6256 {
6257 struct spawn_prog *sp;
6258
6259 DNPRINTF(SWM_D_SPAWN, "setspawn: %s\n", name);
6260
6261 if (name == NULL)
6262 return;
6263
6264 /* Remove any old spawn under the same name. */
6265 if ((sp = spawn_find(name)) != NULL)
6266 spawn_remove(sp);
6267
6268 if (*args != '\0')
6269 spawn_insert(name, args, flags);
6270 else
6271 warnx("error: setspawn: cannot find program: %s", name);
6272
6273 DNPRINTF(SWM_D_SPAWN, "setspawn: leave\n");
6274 }
6275
6276 int
6277 setconfspawn(char *selector, char *value, int flags)
6278 {
6279 char *args;
6280
6281 args = expand_tilde(value);
6282
6283 DNPRINTF(SWM_D_SPAWN, "setconfspawn: [%s] [%s]\n", selector, args);
6284
6285 setspawn(selector, args, flags);
6286 free(args);
6287
6288 DNPRINTF(SWM_D_SPAWN, "setconfspawn: done.\n");
6289 return (0);
6290 }
6291
6292 void
6293 validate_spawns(void)
6294 {
6295 struct spawn_prog *sp;
6296 char which[PATH_MAX];
6297 size_t i;
6298
6299 struct key *kp;
6300
6301 RB_FOREACH(kp, key_tree, &keys) {
6302 if (kp->funcid != KF_SPAWN_CUSTOM)
6303 continue;
6304
6305 /* find program */
6306 sp = spawn_find(kp->spawn_name);
6307 if (sp == NULL || sp->flags & SWM_SPAWN_OPTIONAL)
6308 continue;
6309
6310 /* verify we have the goods */
6311 snprintf(which, sizeof which, "which %s", sp->argv[0]);
6312 DNPRINTF(SWM_D_CONF, "validate_spawns: which %s\n",
6313 sp->argv[0]);
6314 for (i = strlen("which "); i < strlen(which); i++)
6315 if (which[i] == ' ') {
6316 which[i] = '\0';
6317 break;
6318 }
6319 if (system(which) != 0)
6320 add_startup_exception("could not find %s",
6321 &which[strlen("which ")]);
6322 }
6323 }
6324
6325 void
6326 setup_spawn(void)
6327 {
6328 setconfspawn("lock", "xlock", 0);
6329
6330 setconfspawn("term", "xterm", 0);
6331 setconfspawn("spawn_term", "xterm", 0);
6332
6333 setconfspawn("menu", "dmenu_run"
6334 " $dmenu_bottom"
6335 " -fn $bar_font"
6336 " -nb $bar_color"
6337 " -nf $bar_font_color"
6338 " -sb $bar_border"
6339 " -sf $bar_color", 0);
6340
6341 setconfspawn("search", "dmenu"
6342 " $dmenu_bottom"
6343 " -i"
6344 " -fn $bar_font"
6345 " -nb $bar_color"
6346 " -nf $bar_font_color"
6347 " -sb $bar_border"
6348 " -sf $bar_color", 0);
6349
6350 setconfspawn("name_workspace", "dmenu"
6351 " $dmenu_bottom"
6352 " -p Workspace"
6353 " -fn $bar_font"
6354 " -nb $bar_color"
6355 " -nf $bar_font_color"
6356 " -sb $bar_border"
6357 " -sf $bar_color", 0);
6358
6359 /* These are not verified for existence, even with a binding set. */
6360 setconfspawn("screenshot_all", "screenshot.sh full", SWM_SPAWN_OPTIONAL);
6361 setconfspawn("screenshot_wind", "screenshot.sh window", SWM_SPAWN_OPTIONAL);
6362 setconfspawn("initscr", "initscreen.sh", SWM_SPAWN_OPTIONAL);
6363 }
6364
6365 /* key bindings */
6366 #define SWM_MODNAME_SIZE 32
6367 #define SWM_KEY_WS "\n+ \t"
6368 int
6369 parsekeys(char *keystr, unsigned int currmod, unsigned int *mod, KeySym *ks)
6370 {
6371 char *cp, *name;
6372 KeySym uks;
6373 DNPRINTF(SWM_D_KEY, "parsekeys: enter [%s]\n", keystr);
6374 if (mod == NULL || ks == NULL) {
6375 DNPRINTF(SWM_D_KEY, "parsekeys: no mod or key vars\n");
6376 return (1);
6377 }
6378 if (keystr == NULL || strlen(keystr) == 0) {
6379 DNPRINTF(SWM_D_KEY, "parsekeys: no keystr\n");
6380 return (1);
6381 }
6382 cp = keystr;
6383 *ks = XCB_NO_SYMBOL;
6384 *mod = 0;
6385 while ((name = strsep(&cp, SWM_KEY_WS)) != NULL) {
6386 DNPRINTF(SWM_D_KEY, "parsekeys: key [%s]\n", name);
6387 if (cp)
6388 cp += (long)strspn(cp, SWM_KEY_WS);
6389 if (strncasecmp(name, "MOD", SWM_MODNAME_SIZE) == 0)
6390 *mod |= currmod;
6391 else if (!strncasecmp(name, "Mod1", SWM_MODNAME_SIZE))
6392 *mod |= XCB_MOD_MASK_1;
6393 else if (!strncasecmp(name, "Mod2", SWM_MODNAME_SIZE))
6394 *mod += XCB_MOD_MASK_2;
6395 else if (!strncmp(name, "Mod3", SWM_MODNAME_SIZE))
6396 *mod |= XCB_MOD_MASK_3;
6397 else if (!strncmp(name, "Mod4", SWM_MODNAME_SIZE))
6398 *mod |= XCB_MOD_MASK_4;
6399 else if (strncasecmp(name, "SHIFT", SWM_MODNAME_SIZE) == 0)
6400 *mod |= XCB_MOD_MASK_SHIFT;
6401 else if (strncasecmp(name, "CONTROL", SWM_MODNAME_SIZE) == 0)
6402 *mod |= XCB_MOD_MASK_CONTROL;
6403 else {
6404 *ks = XStringToKeysym(name);
6405 XConvertCase(*ks, ks, &uks);
6406 if (ks == XCB_NO_SYMBOL) {
6407 DNPRINTF(SWM_D_KEY,
6408 "parsekeys: invalid key %s\n",
6409 name);
6410 return (1);
6411 }
6412 }
6413 }
6414 DNPRINTF(SWM_D_KEY, "parsekeys: leave ok\n");
6415 return (0);
6416 }
6417
6418 char *
6419 strdupsafe(const char *str)
6420 {
6421 if (str == NULL)
6422 return (NULL);
6423 else
6424 return (strdup(str));
6425 }
6426
6427 void
6428 key_insert(unsigned int mod, KeySym ks, enum keyfuncid kfid,
6429 const char *spawn_name)
6430 {
6431 struct key *kp;
6432
6433 DNPRINTF(SWM_D_KEY, "key_insert: enter %s [%s]\n",
6434 keyfuncs[kfid].name, spawn_name);
6435
6436 if ((kp = malloc(sizeof *kp)) == NULL)
6437 err(1, "key_insert: malloc");
6438
6439 kp->mod = mod;
6440 kp->keysym = ks;
6441 kp->funcid = kfid;
6442 kp->spawn_name = strdupsafe(spawn_name);
6443 RB_INSERT(key_tree, &keys, kp);
6444
6445 DNPRINTF(SWM_D_KEY, "key_insert: leave\n");
6446 }
6447
6448 struct key *
6449 key_lookup(unsigned int mod, KeySym ks)
6450 {
6451 struct key kp;
6452
6453 kp.keysym = ks;
6454 kp.mod = mod;
6455
6456 return (RB_FIND(key_tree, &keys, &kp));
6457 }
6458
6459 void
6460 key_remove(struct key *kp)
6461 {
6462 DNPRINTF(SWM_D_KEY, "key_remove: %s\n", keyfuncs[kp->funcid].name);
6463
6464 RB_REMOVE(key_tree, &keys, kp);
6465 free(kp->spawn_name);
6466 free(kp);
6467
6468 DNPRINTF(SWM_D_KEY, "key_remove: leave\n");
6469 }
6470
6471 void
6472 key_replace(struct key *kp, unsigned int mod, KeySym ks, enum keyfuncid kfid,
6473 const char *spawn_name)
6474 {
6475 DNPRINTF(SWM_D_KEY, "key_replace: %s [%s]\n", keyfuncs[kp->funcid].name,
6476 spawn_name);
6477
6478 key_remove(kp);
6479 key_insert(mod, ks, kfid, spawn_name);
6480
6481 DNPRINTF(SWM_D_KEY, "key_replace: leave\n");
6482 }
6483
6484 void
6485 setkeybinding(unsigned int mod, KeySym ks, enum keyfuncid kfid,
6486 const char *spawn_name)
6487 {
6488 struct key *kp;
6489
6490 DNPRINTF(SWM_D_KEY, "setkeybinding: enter %s [%s]\n",
6491 keyfuncs[kfid].name, spawn_name);
6492
6493 if ((kp = key_lookup(mod, ks)) != NULL) {
6494 if (kfid == KF_INVALID)
6495 key_remove(kp);
6496 else
6497 key_replace(kp, mod, ks, kfid, spawn_name);
6498 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
6499 return;
6500 }
6501 if (kfid == KF_INVALID) {
6502 warnx("bind: Key combination already unbound.");
6503 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
6504 return;
6505 }
6506
6507 key_insert(mod, ks, kfid, spawn_name);
6508 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
6509 }
6510
6511 int
6512 setconfbinding(char *selector, char *value, int flags)
6513 {
6514 enum keyfuncid kfid;
6515 unsigned int mod;
6516 KeySym ks;
6517 struct spawn_prog *sp;
6518
6519 /* suppress unused warning since var is needed */
6520 (void)flags;
6521
6522 DNPRINTF(SWM_D_KEY, "setconfbinding: enter\n");
6523 if (selector == NULL) {
6524 DNPRINTF(SWM_D_KEY, "setconfbinding: unbind %s\n", value);
6525 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
6526 kfid = KF_INVALID;
6527 setkeybinding(mod, ks, kfid, NULL);
6528 return (0);
6529 } else
6530 return (1);
6531 }
6532 /* search by key function name */
6533 for (kfid = 0; kfid < KF_INVALID; (kfid)++) {
6534 if (strncasecmp(selector, keyfuncs[kfid].name,
6535 SWM_FUNCNAME_LEN) == 0) {
6536 DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match "
6537 "keyfunc\n", selector);
6538 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
6539 setkeybinding(mod, ks, kfid, NULL);
6540 return (0);
6541 } else
6542 return (1);
6543 }
6544 }
6545 /* search by custom spawn name */
6546 if ((sp = spawn_find(selector)) != NULL) {
6547 DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match "
6548 "spawn\n", selector);
6549 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
6550 setkeybinding(mod, ks, KF_SPAWN_CUSTOM,
6551 sp->name);
6552 return (0);
6553 } else
6554 return (1);
6555 }
6556 DNPRINTF(SWM_D_KEY, "setconfbinding: no match\n");
6557 return (1);
6558 }
6559
6560 void
6561 setup_keys(void)
6562 {
6563 #define MODKEY_SHIFT MODKEY | XCB_MOD_MASK_SHIFT
6564 setkeybinding(MODKEY, XK_b, KF_BAR_TOGGLE, NULL);
6565 setkeybinding(MODKEY_SHIFT, XK_b, KF_BAR_TOGGLE_WS,NULL);
6566 setkeybinding(MODKEY, XK_v, KF_BUTTON2, NULL);
6567 setkeybinding(MODKEY, XK_space, KF_CYCLE_LAYOUT,NULL);
6568 setkeybinding(MODKEY_SHIFT, XK_backslash, KF_FLIP_LAYOUT, NULL);
6569 setkeybinding(MODKEY, XK_t, KF_FLOAT_TOGGLE,NULL);
6570 setkeybinding(MODKEY, XK_m, KF_FOCUS_MAIN, NULL);
6571 setkeybinding(MODKEY, XK_j, KF_FOCUS_NEXT, NULL);
6572 setkeybinding(MODKEY, XK_Tab, KF_FOCUS_NEXT, NULL);
6573 setkeybinding(MODKEY, XK_k, KF_FOCUS_PREV, NULL);
6574 setkeybinding(MODKEY_SHIFT, XK_Tab, KF_FOCUS_PREV, NULL);
6575 setkeybinding(MODKEY_SHIFT, XK_equal, KF_HEIGHT_GROW,NULL);
6576 setkeybinding(MODKEY_SHIFT, XK_minus, KF_HEIGHT_SHRINK,NULL);
6577 setkeybinding(MODKEY, XK_w, KF_ICONIFY, NULL);
6578 setkeybinding(MODKEY, XK_h, KF_MASTER_SHRINK, NULL);
6579 setkeybinding(MODKEY, XK_l, KF_MASTER_GROW, NULL);
6580 setkeybinding(MODKEY, XK_comma, KF_MASTER_ADD, NULL);
6581 setkeybinding(MODKEY, XK_period, KF_MASTER_DEL, NULL);
6582 setkeybinding(MODKEY_SHIFT, XK_bracketright,KF_MOVE_DOWN,NULL);
6583 setkeybinding(MODKEY, XK_bracketleft, KF_MOVE_LEFT,NULL);
6584 setkeybinding(MODKEY, XK_bracketright,KF_MOVE_RIGHT,NULL);
6585 setkeybinding(MODKEY_SHIFT, XK_bracketleft, KF_MOVE_UP, NULL);
6586 setkeybinding(MODKEY_SHIFT, XK_KP_End, KF_MVRG_1, NULL);
6587 setkeybinding(MODKEY_SHIFT, XK_KP_Down, KF_MVRG_2, NULL);
6588 setkeybinding(MODKEY_SHIFT, XK_KP_Next, KF_MVRG_3, NULL);
6589 setkeybinding(MODKEY_SHIFT, XK_KP_Left, KF_MVRG_4, NULL);
6590 setkeybinding(MODKEY_SHIFT, XK_KP_Begin, KF_MVRG_5, NULL);
6591 setkeybinding(MODKEY_SHIFT, XK_KP_Right, KF_MVRG_6, NULL);
6592 setkeybinding(MODKEY_SHIFT, XK_KP_Home, KF_MVRG_7, NULL);
6593 setkeybinding(MODKEY_SHIFT, XK_KP_Up, KF_MVRG_8, NULL);
6594 setkeybinding(MODKEY_SHIFT, XK_KP_Prior, KF_MVRG_9, NULL);
6595 setkeybinding(MODKEY_SHIFT, XK_1, KF_MVWS_1, NULL);
6596 setkeybinding(MODKEY_SHIFT, XK_2, KF_MVWS_2, NULL);
6597 setkeybinding(MODKEY_SHIFT, XK_3, KF_MVWS_3, NULL);
6598 setkeybinding(MODKEY_SHIFT, XK_4, KF_MVWS_4, NULL);
6599 setkeybinding(MODKEY_SHIFT, XK_5, KF_MVWS_5, NULL);
6600 setkeybinding(MODKEY_SHIFT, XK_6, KF_MVWS_6, NULL);
6601 setkeybinding(MODKEY_SHIFT, XK_7, KF_MVWS_7, NULL);
6602 setkeybinding(MODKEY_SHIFT, XK_8, KF_MVWS_8, NULL);
6603 setkeybinding(MODKEY_SHIFT, XK_9, KF_MVWS_9, NULL);
6604 setkeybinding(MODKEY_SHIFT, XK_0, KF_MVWS_10, NULL);
6605 setkeybinding(MODKEY_SHIFT, XK_F1, KF_MVWS_11, NULL);
6606 setkeybinding(MODKEY_SHIFT, XK_F2, KF_MVWS_12, NULL);
6607 setkeybinding(MODKEY_SHIFT, XK_F3, KF_MVWS_13, NULL);
6608 setkeybinding(MODKEY_SHIFT, XK_F4, KF_MVWS_14, NULL);
6609 setkeybinding(MODKEY_SHIFT, XK_F5, KF_MVWS_15, NULL);
6610 setkeybinding(MODKEY_SHIFT, XK_F6, KF_MVWS_16, NULL);
6611 setkeybinding(MODKEY_SHIFT, XK_F7, KF_MVWS_17, NULL);
6612 setkeybinding(MODKEY_SHIFT, XK_F8, KF_MVWS_18, NULL);
6613 setkeybinding(MODKEY_SHIFT, XK_F9, KF_MVWS_19, NULL);
6614 setkeybinding(MODKEY_SHIFT, XK_F10, KF_MVWS_20, NULL);
6615 setkeybinding(MODKEY_SHIFT, XK_F11, KF_MVWS_21, NULL);
6616 setkeybinding(MODKEY_SHIFT, XK_F12, KF_MVWS_22, NULL);
6617 setkeybinding(MODKEY_SHIFT, XK_slash, KF_NAME_WORKSPACE,NULL);
6618 setkeybinding(MODKEY_SHIFT, XK_q, KF_QUIT, NULL);
6619 setkeybinding(MODKEY_SHIFT, XK_r, KF_RAISE_TOGGLE,NULL);
6620 setkeybinding(MODKEY, XK_q, KF_RESTART, NULL);
6621 setkeybinding(MODKEY, XK_KP_End, KF_RG_1, NULL);
6622 setkeybinding(MODKEY, XK_KP_Down, KF_RG_2, NULL);
6623 setkeybinding(MODKEY, XK_KP_Next, KF_RG_3, NULL);
6624 setkeybinding(MODKEY, XK_KP_Left, KF_RG_4, NULL);
6625 setkeybinding(MODKEY, XK_KP_Begin, KF_RG_5, NULL);
6626 setkeybinding(MODKEY, XK_KP_Right, KF_RG_6, NULL);
6627 setkeybinding(MODKEY, XK_KP_Home, KF_RG_7, NULL);
6628 setkeybinding(MODKEY, XK_KP_Up, KF_RG_8, NULL);
6629 setkeybinding(MODKEY, XK_KP_Prior, KF_RG_9, NULL);
6630 setkeybinding(MODKEY_SHIFT, XK_Right, KF_RG_NEXT, NULL);
6631 setkeybinding(MODKEY_SHIFT, XK_Left, KF_RG_PREV, NULL);
6632 setkeybinding(MODKEY, XK_f, KF_SEARCH_WIN, NULL);
6633 setkeybinding(MODKEY, XK_slash, KF_SEARCH_WORKSPACE,NULL);
6634 setkeybinding(MODKEY_SHIFT, XK_i, KF_SPAWN_CUSTOM,"initscr");
6635 setkeybinding(MODKEY_SHIFT, XK_Delete, KF_SPAWN_CUSTOM,"lock");
6636 setkeybinding(MODKEY, XK_p, KF_SPAWN_CUSTOM,"menu");
6637 setkeybinding(MODKEY, XK_s, KF_SPAWN_CUSTOM,"screenshot_all");
6638 setkeybinding(MODKEY_SHIFT, XK_s, KF_SPAWN_CUSTOM,"screenshot_wind");
6639 setkeybinding(MODKEY_SHIFT, XK_Return, KF_SPAWN_CUSTOM,"term");
6640 setkeybinding(MODKEY_SHIFT, XK_comma, KF_STACK_INC, NULL);
6641 setkeybinding(MODKEY_SHIFT, XK_period, KF_STACK_DEC, NULL);
6642 setkeybinding(MODKEY_SHIFT, XK_space, KF_STACK_RESET, NULL);
6643 setkeybinding(MODKEY, XK_Return, KF_SWAP_MAIN, NULL);
6644 setkeybinding(MODKEY_SHIFT, XK_j, KF_SWAP_NEXT, NULL);
6645 setkeybinding(MODKEY_SHIFT, XK_k, KF_SWAP_PREV, NULL);
6646 setkeybinding(MODKEY_SHIFT, XK_w, KF_UNICONIFY, NULL);
6647 setkeybinding(MODKEY_SHIFT, XK_v, KF_VERSION, NULL);
6648 setkeybinding(MODKEY, XK_equal, KF_WIDTH_GROW, NULL);
6649 setkeybinding(MODKEY, XK_minus, KF_WIDTH_SHRINK,NULL);
6650 setkeybinding(MODKEY, XK_x, KF_WIND_DEL, NULL);
6651 setkeybinding(MODKEY_SHIFT, XK_x, KF_WIND_KILL, NULL);
6652 setkeybinding(MODKEY, XK_1, KF_WS_1, NULL);
6653 setkeybinding(MODKEY, XK_2, KF_WS_2, NULL);
6654 setkeybinding(MODKEY, XK_3, KF_WS_3, NULL);
6655 setkeybinding(MODKEY, XK_4, KF_WS_4, NULL);
6656 setkeybinding(MODKEY, XK_5, KF_WS_5, NULL);
6657 setkeybinding(MODKEY, XK_6, KF_WS_6, NULL);
6658 setkeybinding(MODKEY, XK_7, KF_WS_7, NULL);
6659 setkeybinding(MODKEY, XK_8, KF_WS_8, NULL);
6660 setkeybinding(MODKEY, XK_9, KF_WS_9, NULL);
6661 setkeybinding(MODKEY, XK_0, KF_WS_10, NULL);
6662 setkeybinding(MODKEY, XK_F1, KF_WS_11, NULL);
6663 setkeybinding(MODKEY, XK_F2, KF_WS_12, NULL);
6664 setkeybinding(MODKEY, XK_F3, KF_WS_13, NULL);
6665 setkeybinding(MODKEY, XK_F4, KF_WS_14, NULL);
6666 setkeybinding(MODKEY, XK_F5, KF_WS_15, NULL);
6667 setkeybinding(MODKEY, XK_F6, KF_WS_16, NULL);
6668 setkeybinding(MODKEY, XK_F7, KF_WS_17, NULL);
6669 setkeybinding(MODKEY, XK_F8, KF_WS_18, NULL);
6670 setkeybinding(MODKEY, XK_F9, KF_WS_19, NULL);
6671 setkeybinding(MODKEY, XK_F10, KF_WS_20, NULL);
6672 setkeybinding(MODKEY, XK_F11, KF_WS_21, NULL);
6673 setkeybinding(MODKEY, XK_F12, KF_WS_22, NULL);
6674 setkeybinding(MODKEY, XK_Right, KF_WS_NEXT, NULL);
6675 setkeybinding(MODKEY, XK_Left, KF_WS_PREV, NULL);
6676 setkeybinding(MODKEY, XK_Up, KF_WS_NEXT_ALL, NULL);
6677 setkeybinding(MODKEY, XK_Down, KF_WS_PREV_ALL, NULL);
6678 setkeybinding(MODKEY_SHIFT, XK_Up, KF_WS_NEXT_MOVE,NULL);
6679 setkeybinding(MODKEY_SHIFT, XK_Down, KF_WS_PREV_MOVE,NULL);
6680 setkeybinding(MODKEY, XK_a, KF_WS_PRIOR, NULL);
6681 #ifdef SWM_DEBUG
6682 setkeybinding(MODKEY_SHIFT, XK_d, KF_DUMPWINS, NULL);
6683 #endif
6684 #undef MODKEY_SHIFT
6685 }
6686
6687 void
6688 clear_keys(void)
6689 {
6690 struct key *kp;
6691
6692 while (RB_EMPTY(&keys) == 0) {
6693 kp = RB_ROOT(&keys);
6694 key_remove(kp);
6695 }
6696 }
6697
6698 int
6699 setkeymapping(char *selector, char *value, int flags)
6700 {
6701 char *keymapping_file;
6702
6703 /* suppress unused warnings since vars are needed */
6704 (void)selector;
6705 (void)flags;
6706
6707 DNPRINTF(SWM_D_KEY, "setkeymapping: enter\n");
6708
6709 keymapping_file = expand_tilde(value);
6710
6711 clear_keys();
6712 /* load new key bindings; if it fails, revert to default bindings */
6713 if (conf_load(keymapping_file, SWM_CONF_KEYMAPPING)) {
6714 clear_keys();
6715 setup_keys();
6716 }
6717
6718 free(keymapping_file);
6719
6720 DNPRINTF(SWM_D_KEY, "setkeymapping: leave\n");
6721 return (0);
6722 }
6723
6724 void
6725 updatenumlockmask(void)
6726 {
6727 unsigned int i, j;
6728 xcb_get_modifier_mapping_reply_t *modmap_r;
6729 xcb_keycode_t *modmap, kc, *keycode;
6730
6731 numlockmask = 0;
6732
6733 modmap_r = xcb_get_modifier_mapping_reply(conn,
6734 xcb_get_modifier_mapping(conn),
6735 NULL);
6736 if (modmap_r) {
6737 modmap = xcb_get_modifier_mapping_keycodes(modmap_r);
6738 for (i = 0; i < 8; i++) {
6739 for (j = 0; j < modmap_r->keycodes_per_modifier; j++) {
6740 kc = modmap[i * modmap_r->keycodes_per_modifier
6741 + j];
6742 keycode = xcb_key_symbols_get_keycode(syms,
6743 XK_Num_Lock);
6744 if (kc == *keycode)
6745 numlockmask = (1 << i);
6746 free(keycode);
6747 }
6748 }
6749 free(modmap_r);
6750 }
6751 DNPRINTF(SWM_D_MISC, "updatenumlockmask: %d\n", numlockmask);
6752 }
6753
6754 void
6755 grabkeys(void)
6756 {
6757 struct key *kp;
6758 int num_screens, k, j;
6759 unsigned int modifiers[4];
6760 xcb_keycode_t *code;
6761
6762 DNPRINTF(SWM_D_MISC, "grabkeys\n");
6763 updatenumlockmask();
6764
6765 modifiers[0] = 0;
6766 modifiers[1] = numlockmask;
6767 modifiers[2] = XCB_MOD_MASK_LOCK;
6768 modifiers[3] = numlockmask | XCB_MOD_MASK_LOCK;
6769
6770 num_screens = get_screen_count();
6771 for (k = 0; k < num_screens; k++) {
6772 if (TAILQ_EMPTY(&screens[k].rl))
6773 continue;
6774 xcb_ungrab_key(conn, XCB_GRAB_ANY, screens[k].root,
6775 XCB_MOD_MASK_ANY);
6776 RB_FOREACH(kp, key_tree, &keys) {
6777 /* Skip unused ws binds. */
6778 if ((int)kp->funcid > KF_WS_1 + workspace_limit - 1 &&
6779 kp->funcid <= KF_WS_22)
6780 continue;
6781
6782 /* Skip unused mvws binds. */
6783 if ((int)kp->funcid > KF_MVWS_1 + workspace_limit - 1 &&
6784 kp->funcid <= KF_MVWS_22)
6785 continue;
6786
6787 if ((code = xcb_key_symbols_get_keycode(syms,
6788 kp->keysym))) {
6789 for (j = 0; j < LENGTH(modifiers); j++)
6790 xcb_grab_key(conn, 1,
6791 screens[k].root,
6792 kp->mod | modifiers[j],
6793 *code, XCB_GRAB_MODE_SYNC,
6794 XCB_GRAB_MODE_SYNC);
6795 free(code);
6796 }
6797 }
6798 }
6799 }
6800
6801 void
6802 grabbuttons(struct ws_win *win)
6803 {
6804 unsigned int modifiers[4];
6805 int i, j;
6806
6807 DNPRINTF(SWM_D_MOUSE, "grabbuttons: win 0x%x\n", win->id);
6808 updatenumlockmask();
6809
6810 modifiers[0] = 0;
6811 modifiers[1] = numlockmask;
6812 modifiers[2] = XCB_MOD_MASK_LOCK;
6813 modifiers[3] = numlockmask | XCB_MOD_MASK_LOCK;
6814
6815 for (i = 0; i < LENGTH(buttons); i++)
6816 if (buttons[i].action == client_click)
6817 for (j = 0; j < LENGTH(modifiers); ++j)
6818 xcb_grab_button(conn, 0, win->id, BUTTONMASK,
6819 XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC,
6820 XCB_WINDOW_NONE, XCB_CURSOR_NONE,
6821 buttons[i].button, buttons[i].mask |
6822 modifiers[j]);
6823 }
6824
6825 const char *quirkname[] = {
6826 "NONE", /* config string for "no value" */
6827 "FLOAT",
6828 "TRANSSZ",
6829 "ANYWHERE",
6830 "XTERM_FONTADJ",
6831 "FULLSCREEN",
6832 "FOCUSPREV",
6833 "NOFOCUSONMAP",
6834 "FOCUSONMAP_SINGLE",
6835 };
6836
6837 /* SWM_Q_WS: retain '|' for back compat for now (2009-08-11) */
6838 #define SWM_Q_WS "\n|+ \t"
6839 int
6840 parsequirks(char *qstr, unsigned long *quirk)
6841 {
6842 char *cp, *name;
6843 int i;
6844
6845 if (quirk == NULL)
6846 return (1);
6847
6848 cp = qstr;
6849 *quirk = 0;
6850 while ((name = strsep(&cp, SWM_Q_WS)) != NULL) {
6851 if (cp)
6852 cp += (long)strspn(cp, SWM_Q_WS);
6853 for (i = 0; i < LENGTH(quirkname); i++) {
6854 if (!strncasecmp(name, quirkname[i], SWM_QUIRK_LEN)) {
6855 DNPRINTF(SWM_D_QUIRK,
6856 "parsequirks: %s\n", name);
6857 if (i == 0) {
6858 *quirk = 0;
6859 return (0);
6860 }
6861 *quirk |= 1 << (i-1);
6862 break;
6863 }
6864 }
6865 if (i >= LENGTH(quirkname)) {
6866 DNPRINTF(SWM_D_QUIRK,
6867 "parsequirks: invalid quirk [%s]\n", name);
6868 return (1);
6869 }
6870 }
6871 return (0);
6872 }
6873
6874 void
6875 quirk_insert(const char *class, const char *name, unsigned long quirk)
6876 {
6877 struct quirk *qp;
6878
6879 DNPRINTF(SWM_D_QUIRK, "quirk_insert: %s:%s [%lu]\n", class, name,
6880 quirk);
6881
6882 if ((qp = malloc(sizeof *qp)) == NULL)
6883 err(1, "quirk_insert: malloc");
6884 if ((qp->class = strdup(class)) == NULL)
6885 err(1, "quirk_insert: strdup");
6886 if ((qp->name = strdup(name)) == NULL)
6887 err(1, "quirk_insert: strdup");
6888
6889 qp->quirk = quirk;
6890 TAILQ_INSERT_TAIL(&quirks, qp, entry);
6891
6892 DNPRINTF(SWM_D_QUIRK, "quirk_insert: leave\n");
6893 }
6894
6895 void
6896 quirk_remove(struct quirk *qp)
6897 {
6898 DNPRINTF(SWM_D_QUIRK, "quirk_remove: %s:%s [%lu]\n", qp->class,
6899 qp->name, qp->quirk);
6900
6901 TAILQ_REMOVE(&quirks, qp, entry);
6902 free(qp->class);
6903 free(qp->name);
6904 free(qp);
6905
6906 DNPRINTF(SWM_D_QUIRK, "quirk_remove: leave\n");
6907 }
6908
6909 void
6910 quirk_replace(struct quirk *qp, const char *class, const char *name,
6911 unsigned long quirk)
6912 {
6913 DNPRINTF(SWM_D_QUIRK, "quirk_replace: %s:%s [%lu]\n", qp->class,
6914 qp->name, qp->quirk);
6915
6916 quirk_remove(qp);
6917 quirk_insert(class, name, quirk);
6918
6919 DNPRINTF(SWM_D_QUIRK, "quirk_replace: leave\n");
6920 }
6921
6922 void
6923 setquirk(const char *class, const char *name, unsigned long quirk)
6924 {
6925 struct quirk *qp;
6926
6927 DNPRINTF(SWM_D_QUIRK, "setquirk: enter %s:%s [%lu]\n", class, name,
6928 quirk);
6929
6930 /* Remove/replace existing quirk. */
6931 TAILQ_FOREACH(qp, &quirks, entry) {
6932 if (!strcmp(qp->class, class) && !strcmp(qp->name, name)) {
6933 if (!quirk)
6934 quirk_remove(qp);
6935 else
6936 quirk_replace(qp, class, name, quirk);
6937 DNPRINTF(SWM_D_QUIRK, "setquirk: leave\n");
6938 return;
6939 }
6940 }
6941
6942 /* Only insert if quirk is not NONE. */
6943 if (quirk)
6944 quirk_insert(class, name, quirk);
6945
6946 DNPRINTF(SWM_D_QUIRK, "setquirk: leave\n");
6947 }
6948
6949 int
6950 setconfquirk(char *selector, char *value, int flags)
6951 {
6952 char *cp, *class, *name;
6953 int retval;
6954 unsigned long qrks;
6955
6956 /* suppress unused warning since var is needed */
6957 (void)flags;
6958
6959 if (selector == NULL)
6960 return (0);
6961 if ((cp = strchr(selector, ':')) == NULL)
6962 return (0);
6963 *cp = '\0';
6964 class = selector;
6965 name = cp + 1;
6966 if ((retval = parsequirks(value, &qrks)) == 0)
6967 setquirk(class, name, qrks);
6968 return (retval);
6969 }
6970
6971 void
6972 setup_quirks(void)
6973 {
6974 setquirk("MPlayer", "xv", SWM_Q_FLOAT | SWM_Q_FULLSCREEN | SWM_Q_FOCUSPREV);
6975 setquirk("OpenOffice.org 3.2", "VCLSalFrame", SWM_Q_FLOAT);
6976 setquirk("Firefox-bin", "firefox-bin", SWM_Q_TRANSSZ);
6977 setquirk("Firefox", "Dialog", SWM_Q_FLOAT);
6978 setquirk("Gimp", "gimp", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
6979 setquirk("XTerm", "xterm", SWM_Q_XTERM_FONTADJ);
6980 setquirk("xine", "Xine Window", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
6981 setquirk("Xitk", "Xitk Combo", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
6982 setquirk("xine", "xine Panel", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
6983 setquirk("Xitk", "Xine Window", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
6984 setquirk("xine", "xine Video Fullscreen Window", SWM_Q_FULLSCREEN | SWM_Q_FLOAT);
6985 setquirk("pcb", "pcb", SWM_Q_FLOAT);
6986 setquirk("SDL_App", "SDL_App", SWM_Q_FLOAT | SWM_Q_FULLSCREEN);
6987 }
6988
6989 /* conf file stuff */
6990 #define SWM_CONF_FILE "spectrwm.conf"
6991 #define SWM_CONF_FILE_OLD "scrotwm.conf"
6992
6993 enum {
6994 SWM_S_BAR_ACTION,
6995 SWM_S_BAR_AT_BOTTOM,
6996 SWM_S_BAR_BORDER_WIDTH,
6997 SWM_S_BAR_DELAY,
6998 SWM_S_BAR_ENABLED,
6999 SWM_S_BAR_ENABLED_WS,
7000 SWM_S_BAR_FONT,
7001 SWM_S_BAR_FORMAT,
7002 SWM_S_BAR_JUSTIFY,
7003 SWM_S_BORDER_WIDTH,
7004 SWM_S_BOUNDARY_WIDTH,
7005 SWM_S_CLOCK_ENABLED,
7006 SWM_S_CLOCK_FORMAT,
7007 SWM_S_CYCLE_EMPTY,
7008 SWM_S_CYCLE_VISIBLE,
7009 SWM_S_DIALOG_RATIO,
7010 SWM_S_DISABLE_BORDER,
7011 SWM_S_FOCUS_CLOSE,
7012 SWM_S_FOCUS_CLOSE_WRAP,
7013 SWM_S_FOCUS_DEFAULT,
7014 SWM_S_FOCUS_MODE,
7015 SWM_S_REGION_PADDING,
7016 SWM_S_SPAWN_ORDER,
7017 SWM_S_SPAWN_TERM,
7018 SWM_S_SS_APP,
7019 SWM_S_SS_ENABLED,
7020 SWM_S_STACK_ENABLED,
7021 SWM_S_TERM_WIDTH,
7022 SWM_S_TILE_GAP,
7023 SWM_S_TITLE_CLASS_ENABLED,
7024 SWM_S_TITLE_NAME_ENABLED,
7025 SWM_S_URGENT_ENABLED,
7026 SWM_S_VERBOSE_LAYOUT,
7027 SWM_S_WINDOW_NAME_ENABLED,
7028 SWM_S_WORKSPACE_LIMIT
7029 };
7030
7031 int
7032 setconfvalue(char *selector, char *value, int flags)
7033 {
7034 struct workspace *ws;
7035 int i, ws_id, num_screens;
7036 char *b;
7037
7038 /* suppress unused warning since var is needed */
7039 (void)selector;
7040
7041 switch (flags) {
7042 case SWM_S_BAR_ACTION:
7043 free(bar_argv[0]);
7044 if ((bar_argv[0] = expand_tilde(value)) == NULL)
7045 err(1, "setconfvalue: bar_action");
7046 break;
7047 case SWM_S_BAR_AT_BOTTOM:
7048 bar_at_bottom = atoi(value);
7049 break;
7050 case SWM_S_BAR_BORDER_WIDTH:
7051 bar_border_width = atoi(value);
7052 if (bar_border_width < 0)
7053 bar_border_width = 0;
7054 break;
7055 case SWM_S_BAR_DELAY:
7056 /* No longer needed; leave to not break old conf files. */
7057 break;
7058 case SWM_S_BAR_ENABLED:
7059 bar_enabled = atoi(value);
7060 break;
7061 case SWM_S_BAR_ENABLED_WS:
7062 ws_id = atoi(selector) - 1;
7063 if (ws_id < 0 || ws_id >= workspace_limit)
7064 errx(1, "setconfvalue: bar_enabled_ws: invalid "
7065 "workspace %d.", ws_id + 1);
7066
7067 num_screens = get_screen_count();
7068 for (i = 0; i < num_screens; i++) {
7069 ws = (struct workspace *)&screens[i].ws;
7070 ws[ws_id].bar_enabled = atoi(value);
7071 }
7072 break;
7073 case SWM_S_BAR_FONT:
7074 b = bar_fonts;
7075 if (asprintf(&bar_fonts, "%s,%s", value, bar_fonts) == -1)
7076 err(1, "setconfvalue: asprintf: failed to allocate "
7077 "memory for bar_fonts.");
7078 free(b);
7079
7080 /* If already in xft mode, then we are done. */
7081 if (!bar_font_legacy)
7082 break;
7083
7084 /* If there are any non-XLFD entries, switch to Xft mode. */
7085 while ((b = strsep(&value, ",")) != NULL) {
7086 if (*b == '\0')
7087 continue;
7088 if (!isxlfd(b)) {
7089 bar_font_legacy = 0;
7090 break;
7091 }
7092 }
7093 break;
7094 case SWM_S_BAR_FORMAT:
7095 free(bar_format);
7096 if ((bar_format = strdup(value)) == NULL)
7097 err(1, "setconfvalue: bar_format");
7098 break;
7099 case SWM_S_BAR_JUSTIFY:
7100 if (!strcmp(value, "left"))
7101 bar_justify = SWM_BAR_JUSTIFY_LEFT;
7102 else if (!strcmp(value, "center"))
7103 bar_justify = SWM_BAR_JUSTIFY_CENTER;
7104 else if (!strcmp(value, "right"))
7105 bar_justify = SWM_BAR_JUSTIFY_RIGHT;
7106 else
7107 errx(1, "invalid bar_justify");
7108 break;
7109 case SWM_S_BORDER_WIDTH:
7110 border_width = atoi(value);
7111 if (border_width < 0)
7112 border_width = 0;
7113 break;
7114 case SWM_S_BOUNDARY_WIDTH:
7115 boundary_width = atoi(value);
7116 if (boundary_width < 0)
7117 boundary_width = 0;
7118 break;
7119 case SWM_S_CLOCK_ENABLED:
7120 clock_enabled = atoi(value);
7121 break;
7122 case SWM_S_CLOCK_FORMAT:
7123 #ifndef SWM_DENY_CLOCK_FORMAT
7124 free(clock_format);
7125 if ((clock_format = strdup(value)) == NULL)
7126 err(1, "setconfvalue: clock_format");
7127 #endif
7128 break;
7129 case SWM_S_CYCLE_EMPTY:
7130 cycle_empty = atoi(value);
7131 break;
7132 case SWM_S_CYCLE_VISIBLE:
7133 cycle_visible = atoi(value);
7134 break;
7135 case SWM_S_DIALOG_RATIO:
7136 dialog_ratio = atof(value);
7137 if (dialog_ratio > 1.0 || dialog_ratio <= .3)
7138 dialog_ratio = .6;
7139 break;
7140 case SWM_S_DISABLE_BORDER:
7141 disable_border = atoi(value);
7142 break;
7143 case SWM_S_FOCUS_CLOSE:
7144 if (!strcmp(value, "first"))
7145 focus_close = SWM_STACK_BOTTOM;
7146 else if (!strcmp(value, "last"))
7147 focus_close = SWM_STACK_TOP;
7148 else if (!strcmp(value, "next"))
7149 focus_close = SWM_STACK_ABOVE;
7150 else if (!strcmp(value, "previous"))
7151 focus_close = SWM_STACK_BELOW;
7152 else
7153 errx(1, "focus_close");
7154 break;
7155 case SWM_S_FOCUS_CLOSE_WRAP:
7156 focus_close_wrap = atoi(value);
7157 break;
7158 case SWM_S_FOCUS_DEFAULT:
7159 if (!strcmp(value, "last"))
7160 focus_default = SWM_STACK_TOP;
7161 else if (!strcmp(value, "first"))
7162 focus_default = SWM_STACK_BOTTOM;
7163 else
7164 errx(1, "focus_default");
7165 break;
7166 case SWM_S_FOCUS_MODE:
7167 if (!strcmp(value, "default"))
7168 focus_mode = SWM_FOCUS_DEFAULT;
7169 else if (!strcmp(value, "follow") ||
7170 !strcmp(value, "follow_cursor"))
7171 focus_mode = SWM_FOCUS_FOLLOW;
7172 else if (!strcmp(value, "manual"))
7173 focus_mode = SWM_FOCUS_MANUAL;
7174 else
7175 errx(1, "focus_mode");
7176 break;
7177 case SWM_S_REGION_PADDING:
7178 region_padding = atoi(value);
7179 if (region_padding < 0)
7180 region_padding = 0;
7181 break;
7182 case SWM_S_SPAWN_ORDER:
7183 if (!strcmp(value, "first"))
7184 spawn_position = SWM_STACK_BOTTOM;
7185 else if (!strcmp(value, "last"))
7186 spawn_position = SWM_STACK_TOP;
7187 else if (!strcmp(value, "next"))
7188 spawn_position = SWM_STACK_ABOVE;
7189 else if (!strcmp(value, "previous"))
7190 spawn_position = SWM_STACK_BELOW;
7191 else
7192 errx(1, "spawn_position");
7193 break;
7194 case SWM_S_SPAWN_TERM:
7195 setconfspawn("term", value, 0);
7196 setconfspawn("spawn_term", value, 0);
7197 break;
7198 case SWM_S_SS_APP:
7199 /* No longer needed; leave to not break old conf files. */
7200 break;
7201 case SWM_S_SS_ENABLED:
7202 /* No longer needed; leave to not break old conf files. */
7203 break;
7204 case SWM_S_STACK_ENABLED:
7205 stack_enabled = atoi(value);
7206 break;
7207 case SWM_S_TERM_WIDTH:
7208 term_width = atoi(value);
7209 if (term_width < 0)
7210 term_width = 0;
7211 break;
7212 case SWM_S_TILE_GAP:
7213 tile_gap = atoi(value);
7214 break;
7215 case SWM_S_TITLE_CLASS_ENABLED:
7216 title_class_enabled = atoi(value);
7217 break;
7218 case SWM_S_TITLE_NAME_ENABLED:
7219 title_name_enabled = atoi(value);
7220 break;
7221 case SWM_S_URGENT_ENABLED:
7222 urgent_enabled = atoi(value);
7223 break;
7224 case SWM_S_VERBOSE_LAYOUT:
7225 verbose_layout = atoi(value);
7226 for (i = 0; layouts[i].l_stack != NULL; i++) {
7227 if (verbose_layout)
7228 layouts[i].l_string = fancy_stacker;
7229 else
7230 layouts[i].l_string = plain_stacker;
7231 }
7232 break;
7233 case SWM_S_WINDOW_NAME_ENABLED:
7234 window_name_enabled = atoi(value);
7235 break;
7236 case SWM_S_WORKSPACE_LIMIT:
7237 workspace_limit = atoi(value);
7238 if (workspace_limit > SWM_WS_MAX)
7239 workspace_limit = SWM_WS_MAX;
7240 else if (workspace_limit < 1)
7241 workspace_limit = 1;
7242 break;
7243 default:
7244 return (1);
7245 }
7246 return (0);
7247 }
7248
7249 int
7250 setconfmodkey(char *selector, char *value, int flags)
7251 {
7252 /* suppress unused warnings since vars are needed */
7253 (void)selector;
7254 (void)flags;
7255
7256 if (!strncasecmp(value, "Mod1", strlen("Mod1")))
7257 update_modkey(XCB_MOD_MASK_1);
7258 else if (!strncasecmp(value, "Mod2", strlen("Mod2")))
7259 update_modkey(XCB_MOD_MASK_2);
7260 else if (!strncasecmp(value, "Mod3", strlen("Mod3")))
7261 update_modkey(XCB_MOD_MASK_3);
7262 else if (!strncasecmp(value, "Mod4", strlen("Mod4")))
7263 update_modkey(XCB_MOD_MASK_4);
7264 else
7265 return (1);
7266 return (0);
7267 }
7268
7269 int
7270 setconfcolor(char *selector, char *value, int flags)
7271 {
7272 setscreencolor(value, ((selector == NULL)?-1:atoi(selector)), flags);
7273 return (0);
7274 }
7275
7276 int
7277 setconfregion(char *selector, char *value, int flags)
7278 {
7279 /* suppress unused warnings since vars are needed */
7280 (void)selector;
7281 (void)flags;
7282
7283 custom_region(value);
7284 return (0);
7285 }
7286
7287 int
7288 setautorun(char *selector, char *value, int flags)
7289 {
7290 int ws_id;
7291 char s[1024];
7292 char *ap, *sp;
7293 union arg a;
7294 int argc = 0;
7295 pid_t pid;
7296 struct pid_e *p;
7297
7298 /* suppress unused warnings since vars are needed */
7299 (void)selector;
7300 (void)flags;
7301
7302 if (getenv("SWM_STARTED"))
7303 return (0);
7304
7305 bzero(s, sizeof s);
7306 if (sscanf(value, "ws[%d]:%1023c", &ws_id, s) != 2)
7307 errx(1, "invalid autorun entry, should be 'ws[<idx>]:command'");
7308 ws_id--;
7309 if (ws_id < 0 || ws_id >= workspace_limit)
7310 errx(1, "autorun: invalid workspace %d", ws_id + 1);
7311
7312 sp = expand_tilde((char *)&s);
7313
7314 /*
7315 * This is a little intricate
7316 *
7317 * If the pid already exists we simply reuse it because it means it was
7318 * used before AND not claimed by manage_window. We get away with
7319 * altering it in the parent after INSERT because this can not be a race
7320 */
7321 a.argv = NULL;
7322 while ((ap = strsep(&sp, " \t")) != NULL) {
7323 if (*ap == '\0')
7324 continue;
7325 DNPRINTF(SWM_D_SPAWN, "setautorun: arg [%s]\n", ap);
7326 argc++;
7327 if ((a.argv = realloc(a.argv, argc * sizeof(char *))) == NULL)
7328 err(1, "setautorun: realloc");
7329 a.argv[argc - 1] = ap;
7330 }
7331 free(sp);
7332
7333 if ((a.argv = realloc(a.argv, (argc + 1) * sizeof(char *))) == NULL)
7334 err(1, "setautorun: realloc");
7335 a.argv[argc] = NULL;
7336
7337 if ((pid = fork()) == 0) {
7338 spawn(ws_id, &a, 1);
7339 /* NOTREACHED */
7340 _exit(1);
7341 }
7342 free(a.argv);
7343
7344 /* parent */
7345 p = find_pid(pid);
7346 if (p == NULL) {
7347 p = calloc(1, sizeof *p);
7348 if (p == NULL)
7349 return (1);
7350 TAILQ_INSERT_TAIL(&pidlist, p, entry);
7351 }
7352
7353 p->pid = pid;
7354 p->ws = ws_id;
7355
7356 return (0);
7357 }
7358
7359 int
7360 setlayout(char *selector, char *value, int flags)
7361 {
7362 int ws_id, i, x, mg, ma, si, ar, f = 0;
7363 int st = SWM_V_STACK, num_screens;
7364 char s[1024];
7365 struct workspace *ws;
7366
7367 /* suppress unused warnings since vars are needed */
7368 (void)selector;
7369 (void)flags;
7370
7371 if (getenv("SWM_STARTED"))
7372 return (0);
7373
7374 bzero(s, sizeof s);
7375 if (sscanf(value, "ws[%d]:%d:%d:%d:%d:%1023c",
7376 &ws_id, &mg, &ma, &si, &ar, s) != 6)
7377 errx(1, "invalid layout entry, should be 'ws[<idx>]:"
7378 "<master_grow>:<master_add>:<stack_inc>:<always_raise>:"
7379 "<type>'");
7380 ws_id--;
7381 if (ws_id < 0 || ws_id >= workspace_limit)
7382 errx(1, "layout: invalid workspace %d", ws_id + 1);
7383
7384 if (!strcasecmp(s, "vertical"))
7385 st = SWM_V_STACK;
7386 else if (!strcasecmp(s, "vertical_flip")) {
7387 st = SWM_V_STACK;
7388 f = 1;
7389 } else if (!strcasecmp(s, "horizontal"))
7390 st = SWM_H_STACK;
7391 else if (!strcasecmp(s, "horizontal_flip")) {
7392 st = SWM_H_STACK;
7393 f = 1;
7394 } else if (!strcasecmp(s, "fullscreen"))
7395 st = SWM_MAX_STACK;
7396 else
7397 errx(1, "invalid layout entry, should be 'ws[<idx>]:"
7398 "<master_grow>:<master_add>:<stack_inc>:<always_raise>:"
7399 "<type>'");
7400
7401 num_screens = get_screen_count();
7402 for (i = 0; i < num_screens; i++) {
7403 ws = (struct workspace *)&screens[i].ws;
7404 ws[ws_id].cur_layout = &layouts[st];
7405
7406 ws[ws_id].always_raise = ar;
7407 if (st == SWM_MAX_STACK)
7408 continue;
7409
7410 /* master grow */
7411 for (x = 0; x < abs(mg); x++) {
7412 ws[ws_id].cur_layout->l_config(&ws[ws_id],
7413 mg >= 0 ? SWM_ARG_ID_MASTERGROW :
7414 SWM_ARG_ID_MASTERSHRINK);
7415 stack();
7416 }
7417 /* master add */
7418 for (x = 0; x < abs(ma); x++) {
7419 ws[ws_id].cur_layout->l_config(&ws[ws_id],
7420 ma >= 0 ? SWM_ARG_ID_MASTERADD :
7421 SWM_ARG_ID_MASTERDEL);
7422 stack();
7423 }
7424 /* stack inc */
7425 for (x = 0; x < abs(si); x++) {
7426 ws[ws_id].cur_layout->l_config(&ws[ws_id],
7427 si >= 0 ? SWM_ARG_ID_STACKINC :
7428 SWM_ARG_ID_STACKDEC);
7429 stack();
7430 }
7431 /* Apply flip */
7432 if (f) {
7433 ws[ws_id].cur_layout->l_config(&ws[ws_id],
7434 SWM_ARG_ID_FLIPLAYOUT);
7435 stack();
7436 }
7437 }
7438
7439 focus_flush();
7440
7441 return (0);
7442 }
7443
7444 /* config options */
7445 struct config_option {
7446 char *optname;
7447 int (*func)(char*, char*, int);
7448 int funcflags;
7449 };
7450 struct config_option configopt[] = {
7451 { "autorun", setautorun, 0 },
7452 { "bar_action", setconfvalue, SWM_S_BAR_ACTION },
7453 { "bar_at_bottom", setconfvalue, SWM_S_BAR_AT_BOTTOM },
7454 { "bar_border", setconfcolor, SWM_S_COLOR_BAR_BORDER },
7455 { "bar_border_unfocus", setconfcolor, SWM_S_COLOR_BAR_BORDER_UNFOCUS },
7456 { "bar_border_width", setconfvalue, SWM_S_BAR_BORDER_WIDTH },
7457 { "bar_color", setconfcolor, SWM_S_COLOR_BAR },
7458 { "bar_delay", setconfvalue, SWM_S_BAR_DELAY },
7459 { "bar_enabled", setconfvalue, SWM_S_BAR_ENABLED },
7460 { "bar_enabled_ws", setconfvalue, SWM_S_BAR_ENABLED_WS },
7461 { "bar_font", setconfvalue, SWM_S_BAR_FONT },
7462 { "bar_font_color", setconfcolor, SWM_S_COLOR_BAR_FONT },
7463 { "bar_format", setconfvalue, SWM_S_BAR_FORMAT },
7464 { "bar_justify", setconfvalue, SWM_S_BAR_JUSTIFY },
7465 { "bind", setconfbinding, 0 },
7466 { "border_width", setconfvalue, SWM_S_BORDER_WIDTH },
7467 { "boundary_width", setconfvalue, SWM_S_BOUNDARY_WIDTH },
7468 { "clock_enabled", setconfvalue, SWM_S_CLOCK_ENABLED },
7469 { "clock_format", setconfvalue, SWM_S_CLOCK_FORMAT },
7470 { "color_focus", setconfcolor, SWM_S_COLOR_FOCUS },
7471 { "color_unfocus", setconfcolor, SWM_S_COLOR_UNFOCUS },
7472 { "cycle_empty", setconfvalue, SWM_S_CYCLE_EMPTY },
7473 { "cycle_visible", setconfvalue, SWM_S_CYCLE_VISIBLE },
7474 { "dialog_ratio", setconfvalue, SWM_S_DIALOG_RATIO },
7475 { "disable_border", setconfvalue, SWM_S_DISABLE_BORDER },
7476 { "focus_close", setconfvalue, SWM_S_FOCUS_CLOSE },
7477 { "focus_close_wrap", setconfvalue, SWM_S_FOCUS_CLOSE_WRAP },
7478 { "focus_default", setconfvalue, SWM_S_FOCUS_DEFAULT },
7479 { "focus_mode", setconfvalue, SWM_S_FOCUS_MODE },
7480 { "keyboard_mapping", setkeymapping, 0 },
7481 { "layout", setlayout, 0 },
7482 { "modkey", setconfmodkey, 0 },
7483 { "program", setconfspawn, 0 },
7484 { "quirk", setconfquirk, 0 },
7485 { "region", setconfregion, 0 },
7486 { "region_padding", setconfvalue, SWM_S_REGION_PADDING },
7487 { "screenshot_app", setconfvalue, SWM_S_SS_APP },
7488 { "screenshot_enabled", setconfvalue, SWM_S_SS_ENABLED },
7489 { "spawn_position", setconfvalue, SWM_S_SPAWN_ORDER },
7490 { "spawn_term", setconfvalue, SWM_S_SPAWN_TERM },
7491 { "stack_enabled", setconfvalue, SWM_S_STACK_ENABLED },
7492 { "term_width", setconfvalue, SWM_S_TERM_WIDTH },
7493 { "tile_gap", setconfvalue, SWM_S_TILE_GAP },
7494 { "title_class_enabled", setconfvalue, SWM_S_TITLE_CLASS_ENABLED },
7495 { "title_name_enabled", setconfvalue, SWM_S_TITLE_NAME_ENABLED },
7496 { "urgent_enabled", setconfvalue, SWM_S_URGENT_ENABLED },
7497 { "verbose_layout", setconfvalue, SWM_S_VERBOSE_LAYOUT },
7498 { "window_name_enabled", setconfvalue, SWM_S_WINDOW_NAME_ENABLED },
7499 { "workspace_limit", setconfvalue, SWM_S_WORKSPACE_LIMIT },
7500 };
7501
7502 void
7503 _add_startup_exception(const char *fmt, va_list ap)
7504 {
7505 if (vasprintf(&startup_exception, fmt, ap) == -1)
7506 warn("%s: asprintf", __func__);
7507 }
7508
7509 void
7510 add_startup_exception(const char *fmt, ...)
7511 {
7512 va_list ap;
7513
7514 nr_exceptions++;
7515
7516 if (startup_exception)
7517 return;
7518
7519 /* force bar to be enabled due to exception */
7520 bar_enabled = 1;
7521
7522 va_start(ap, fmt);
7523 _add_startup_exception(fmt, ap);
7524 va_end(ap);
7525 }
7526
7527 int
7528 conf_load(const char *filename, int keymapping)
7529 {
7530 FILE *config;
7531 char *line = NULL, *cp, *optsub, *optval = NULL;
7532 size_t linelen, lineno = 0;
7533 int wordlen, i, optidx;
7534 struct config_option *opt = NULL;
7535
7536 DNPRINTF(SWM_D_CONF, "conf_load: begin\n");
7537
7538 if (filename == NULL) {
7539 warnx("conf_load: no filename");
7540 return (1);
7541 }
7542
7543 DNPRINTF(SWM_D_CONF, "conf_load: open %s\n", filename);
7544
7545 if ((config = fopen(filename, "r")) == NULL) {
7546 warn("conf_load: fopen: %s", filename);
7547 return (1);
7548 }
7549
7550 while (!feof(config)) {
7551 if (line)
7552 free(line);
7553
7554 if ((line = fparseln(config, &linelen, &lineno, NULL,
7555 FPARSELN_UNESCCOMM | FPARSELN_UNESCCONT)) == NULL) {
7556 if (ferror(config))
7557 err(1, "%s", filename);
7558 else
7559 continue;
7560 }
7561 cp = line;
7562 cp += strspn(cp, " \t\n"); /* eat whitespace */
7563 if (cp[0] == '\0') {
7564 /* empty line */
7565 continue;
7566 }
7567 /* get config option */
7568 wordlen = strcspn(cp, "=[ \t\n");
7569 if (wordlen == 0) {
7570 add_startup_exception("%s: line %zd: no option found",
7571 filename, lineno);
7572 continue;
7573 }
7574 optidx = -1;
7575 for (i = 0; i < LENGTH(configopt); i++) {
7576 opt = &configopt[i];
7577 if (!strncasecmp(cp, opt->optname, wordlen) &&
7578 (int)strlen(opt->optname) == wordlen) {
7579 optidx = i;
7580 break;
7581 }
7582 }
7583 if (optidx == -1) {
7584 add_startup_exception("%s: line %zd: unknown option "
7585 "%.*s", filename, lineno, wordlen, cp);
7586 continue;
7587 }
7588 if (keymapping && opt && strcmp(opt->optname, "bind")) {
7589 add_startup_exception("%s: line %zd: invalid option "
7590 "%.*s", filename, lineno, wordlen, cp);
7591 continue;
7592 }
7593 cp += wordlen;
7594 cp += strspn(cp, " \t\n"); /* eat whitespace */
7595
7596 /* from here on out we call goto invalid to continue */
7597
7598 /* get [selector] if any */
7599 optsub = NULL;
7600 if (*cp == '[') {
7601 cp++;
7602 wordlen = strcspn(cp, "]");
7603 if (*cp != ']') {
7604 if (wordlen == 0) {
7605 add_startup_exception("%s: line %zd: "
7606 "syntax error", filename, lineno);
7607 goto invalid;
7608 }
7609
7610 if (asprintf(&optsub, "%.*s", wordlen, cp) ==
7611 -1) {
7612 add_startup_exception("%s: line %zd: "
7613 "unable to allocatememory for "
7614 "selector", filename, lineno);
7615 goto invalid;
7616 }
7617 }
7618 cp += wordlen;
7619 cp += strspn(cp, "] \t\n"); /* eat trailing */
7620 }
7621 cp += strspn(cp, "= \t\n"); /* eat trailing */
7622 /* get RHS value */
7623 optval = strdup(cp);
7624 if (strlen(optval) == 0) {
7625 add_startup_exception("%s: line %zd: must supply value "
7626 "to %s", filename, lineno,
7627 configopt[optidx].optname);
7628 goto invalid;
7629 }
7630 /* call function to deal with it all */
7631 if (configopt[optidx].func(optsub, optval,
7632 configopt[optidx].funcflags) != 0) {
7633 add_startup_exception("%s: line %zd: invalid data for "
7634 "%s", filename, lineno, configopt[optidx].optname);
7635 goto invalid;
7636 }
7637 invalid:
7638 if (optval) {
7639 free(optval);
7640 optval = NULL;
7641 }
7642 if (optsub) {
7643 free(optsub);
7644 optsub = NULL;
7645 }
7646 }
7647
7648 if (line)
7649 free(line);
7650 fclose(config);
7651 DNPRINTF(SWM_D_CONF, "conf_load: end\n");
7652
7653 return (0);
7654 }
7655
7656 void
7657 set_child_transient(struct ws_win *win, xcb_window_t *trans)
7658 {
7659 struct ws_win *parent, *w;
7660 struct swm_region *r;
7661 struct workspace *ws;
7662 xcb_icccm_wm_hints_t wmh;
7663
7664 parent = find_window(win->transient);
7665 if (parent)
7666 parent->focus_child = win;
7667 else {
7668 DNPRINTF(SWM_D_MISC, "set_child_transient: parent doesn't exist"
7669 " for 0x%x trans 0x%x\n", win->id, win->transient);
7670
7671 r = root_to_region(win->wa->root, SWM_CK_ALL);
7672 ws = r->ws;
7673 /* parent doen't exist in our window list */
7674 TAILQ_FOREACH(w, &ws->winlist, entry) {
7675 if (xcb_icccm_get_wm_hints_reply(conn,
7676 xcb_icccm_get_wm_hints(conn, w->id),
7677 &wmh, NULL) != 1) {
7678 warnx("can't get hints for 0x%x", w->id);
7679 continue;
7680 }
7681
7682 if (win->hints.window_group != wmh.window_group)
7683 continue;
7684
7685 w->focus_child = win;
7686 win->transient = w->id;
7687 *trans = w->id;
7688 DNPRINTF(SWM_D_MISC, "set_child_transient: adjusting "
7689 "transient to 0x%x\n", win->transient);
7690 break;
7691 }
7692 }
7693 }
7694
7695 pid_t
7696 window_get_pid(xcb_window_t win)
7697 {
7698 pid_t ret = 0;
7699 const char *errstr;
7700 xcb_atom_t apid;
7701 xcb_get_property_cookie_t pc;
7702 xcb_get_property_reply_t *pr;
7703
7704 apid = get_atom_from_string("_NET_WM_PID");
7705 if (apid == XCB_ATOM_NONE)
7706 goto tryharder;
7707
7708 pc = xcb_get_property(conn, 0, win, apid, XCB_ATOM_CARDINAL, 0, 1);
7709 pr = xcb_get_property_reply(conn, pc, NULL);
7710 if (!pr)
7711 goto tryharder;
7712 if (pr->type != XCB_ATOM_CARDINAL) {
7713 free(pr);
7714 goto tryharder;
7715 }
7716
7717 if (pr->type == apid && pr->format == 32)
7718 ret = *((pid_t *)xcb_get_property_value(pr));
7719 free(pr);
7720
7721 return (ret);
7722
7723 tryharder:
7724 apid = get_atom_from_string("_SWM_PID");
7725 pc = xcb_get_property(conn, 0, win, apid, XCB_ATOM_STRING,
7726 0, SWM_PROPLEN);
7727 pr = xcb_get_property_reply(conn, pc, NULL);
7728 if (!pr)
7729 return (0);
7730 if (pr->type != apid) {
7731 free(pr);
7732 return (0);
7733 }
7734
7735 ret = (pid_t)strtonum(xcb_get_property_value(pr), 0, INT_MAX, &errstr);
7736 free(pr);
7737
7738 return (ret);
7739 }
7740
7741 int
7742 get_ws_idx(xcb_window_t id)
7743 {
7744 int ws_idx = -1;
7745 char *prop = NULL;
7746 size_t proplen;
7747 const char *errstr;
7748 xcb_get_property_reply_t *gpr;
7749
7750 gpr = xcb_get_property_reply(conn,
7751 xcb_get_property(conn, 0, id, a_swm_ws,
7752 XCB_ATOM_STRING, 0, SWM_PROPLEN),
7753 NULL);
7754 if (!gpr)
7755 return (-1);
7756 if (gpr->type) {
7757 proplen = xcb_get_property_value_length(gpr);
7758 if (proplen > 0) {
7759 prop = malloc(proplen + 1);
7760 if (prop) {
7761 memcpy(prop,
7762 xcb_get_property_value(gpr),
7763 proplen);
7764 prop[proplen] = '\0';
7765 }
7766 }
7767 }
7768 free(gpr);
7769
7770 if (prop) {
7771 DNPRINTF(SWM_D_PROP, "get_ws_idx: _SWM_WS: %s\n", prop);
7772 ws_idx = (int)strtonum(prop, 0, workspace_limit - 1, &errstr);
7773 if (errstr) {
7774 DNPRINTF(SWM_D_PROP, "get_ws_idx: window: #%s: %s",
7775 errstr, prop);
7776 }
7777 free(prop);
7778 }
7779
7780 return ws_idx;
7781 }
7782
7783 struct ws_win *
7784 manage_window(xcb_window_t id, uint16_t mapped)
7785 {
7786 xcb_window_t trans = XCB_WINDOW_NONE;
7787 struct ws_win *win, *ww;
7788 int ws_idx;
7789 char ws_idx_str[SWM_PROPLEN];
7790 struct swm_region *r;
7791 struct pid_e *p;
7792 struct quirk *qp;
7793 uint32_t i, wa[2];
7794 xcb_icccm_get_wm_protocols_reply_t wpr;
7795
7796 if ((win = find_window(id)) != NULL) {
7797 DNPRINTF(SWM_D_MISC, "manage_window: win 0x%x already "
7798 "managed; skipping.)\n", id);
7799 return (win); /* Already managed. */
7800 }
7801
7802 /* See if window is on the unmanaged list. */
7803 if ((win = find_unmanaged_window(id)) != NULL) {
7804 DNPRINTF(SWM_D_MISC, "manage_window: win 0x%x found on "
7805 "unmanaged list.\n", id);
7806 TAILQ_REMOVE(&win->ws->unmanagedlist, win, entry);
7807
7808 if (win->transient)
7809 set_child_transient(win, &trans);
7810
7811 goto out;
7812 } else {
7813 DNPRINTF(SWM_D_MISC, "manage_window: win 0x%x is new.\n", id);
7814 }
7815
7816 /* Create and initialize ws_win object. */
7817 if ((win = calloc(1, sizeof(struct ws_win))) == NULL)
7818 err(1, "manage_window: calloc: failed to allocate memory for "
7819 "new window");
7820
7821 win->id = id;
7822
7823 /* Get window geometry. */
7824 win->wa = xcb_get_geometry_reply(conn,
7825 xcb_get_geometry(conn, win->id),
7826 NULL);
7827
7828 /* Figure out which region the window belongs to. */
7829 r = root_to_region(win->wa->root, SWM_CK_ALL);
7830
7831 /* Ignore window border if there is one. */
7832 WIDTH(win) = win->wa->width;
7833 HEIGHT(win) = win->wa->height;
7834 X(win) = win->wa->x + win->wa->border_width - border_width;
7835 Y(win) = win->wa->y + win->wa->border_width - border_width;
7836 win->bordered = 1;
7837 win->mapped = mapped;
7838 win->floatmaxed = 0;
7839 win->ewmh_flags = 0;
7840 win->s = r->s; /* this never changes */
7841
7842 /* Get WM_SIZE_HINTS. */
7843 xcb_icccm_get_wm_normal_hints_reply(conn,
7844 xcb_icccm_get_wm_normal_hints(conn, win->id),
7845 &win->sh, NULL);
7846
7847 /* Get WM_HINTS. */
7848 xcb_icccm_get_wm_hints_reply(conn,
7849 xcb_icccm_get_wm_hints(conn, win->id),
7850 &win->hints, NULL);
7851
7852 /* Get WM_TRANSIENT_FOR; see if window is a transient. */
7853 xcb_icccm_get_wm_transient_for_reply(conn,
7854 xcb_icccm_get_wm_transient_for(conn, win->id),
7855 &trans, NULL);
7856 if (trans) {
7857 win->transient = trans;
7858 set_child_transient(win, &win->transient);
7859 }
7860
7861 /* Get supported protocols. */
7862 if (xcb_icccm_get_wm_protocols_reply(conn,
7863 xcb_icccm_get_wm_protocols(conn, win->id, a_prot),
7864 &wpr, NULL)) {
7865 for (i = 0; i < wpr.atoms_len; i++) {
7866 if (wpr.atoms[i] == a_takefocus)
7867 win->take_focus = 1;
7868 if (wpr.atoms[i] == a_delete)
7869 win->can_delete = 1;
7870 }
7871 xcb_icccm_get_wm_protocols_reply_wipe(&wpr);
7872 }
7873
7874 win->iconic = get_swm_iconic(win);
7875
7876 /* Figure out which workspace the window belongs to. */
7877 if ((p = find_pid(window_get_pid(win->id))) != NULL) {
7878 win->ws = &r->s->ws[p->ws];
7879 TAILQ_REMOVE(&pidlist, p, entry);
7880 free(p);
7881 p = NULL;
7882 } else if ((ws_idx = get_ws_idx(win->id)) != -1 &&
7883 !win->transient) {
7884 /* _SWM_WS is set; use that. */
7885 win->ws = &r->s->ws[ws_idx];
7886 } else if (trans && (ww = find_window(trans)) != NULL) {
7887 /* Launch transients in the same ws as parent. */
7888 win->ws = ww->ws;
7889 } else {
7890 win->ws = r->ws;
7891 }
7892
7893 /* Set the _SWM_WS atom so we can remember this after reincarnation. */
7894 if (snprintf(ws_idx_str, SWM_PROPLEN, "%d", win->ws->idx) <
7895 SWM_PROPLEN) {
7896 DNPRINTF(SWM_D_PROP, "manage_window: set _SWM_WS: %s\n",
7897 ws_idx_str);
7898 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
7899 a_swm_ws, XCB_ATOM_STRING, 8, strlen(ws_idx_str),
7900 ws_idx_str);
7901 }
7902
7903 /* WS must already be set for this to work. */
7904 store_float_geom(win);
7905
7906 /* Handle EWMH */
7907 ewmh_autoquirk(win);
7908
7909 /* Determine initial quirks. */
7910 if (xcb_icccm_get_wm_class_reply(conn,
7911 xcb_icccm_get_wm_class(conn, win->id),
7912 &win->ch, NULL)) {
7913 DNPRINTF(SWM_D_CLASS, "manage_window: class: %s, name: %s\n",
7914 win->ch.class_name, win->ch.instance_name);
7915
7916 /* java is retarded so treat it special */
7917 if (strstr(win->ch.instance_name, "sun-awt")) {
7918 DNPRINTF(SWM_D_CLASS, "manage_window: java window "
7919 "detected.\n");
7920 win->java = 1;
7921 }
7922
7923 TAILQ_FOREACH(qp, &quirks, entry) {
7924 if (!strcmp(win->ch.class_name, qp->class) &&
7925 !strcmp(win->ch.instance_name, qp->name)) {
7926 DNPRINTF(SWM_D_CLASS, "manage_window: on quirks"
7927 "list; mask: 0x%lx\n", qp->quirk);
7928 if (qp->quirk & SWM_Q_FLOAT)
7929 win->floating = 1;
7930 win->quirks = qp->quirk;
7931 }
7932 }
7933 }
7934
7935 /* Alter window position if quirky */
7936 if (win->quirks & SWM_Q_ANYWHERE)
7937 win->manual = 1;
7938
7939 /* Reset font sizes (the bruteforce way; no default keybinding). */
7940 if (win->quirks & SWM_Q_XTERM_FONTADJ) {
7941 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
7942 fake_keypress(win, XK_KP_Subtract, XCB_MOD_MASK_SHIFT);
7943 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
7944 fake_keypress(win, XK_KP_Add, XCB_MOD_MASK_SHIFT);
7945 }
7946
7947 /* Make sure window is positioned inside its region, if its active. */
7948 if (win->ws->r) {
7949 region_containment(win, r, SWM_CW_ALLSIDES |
7950 SWM_CW_HARDBOUNDARY);
7951 update_window(win);
7952 }
7953
7954 /* Select which X events to monitor and set border pixel color. */
7955 wa[0] = win->s->c[SWM_S_COLOR_UNFOCUS].pixel;
7956 wa[1] = XCB_EVENT_MASK_ENTER_WINDOW | XCB_EVENT_MASK_PROPERTY_CHANGE |
7957 XCB_EVENT_MASK_STRUCTURE_NOTIFY;
7958 #ifdef SWM_DEBUG
7959 wa[1] |= XCB_EVENT_MASK_LEAVE_WINDOW | XCB_EVENT_MASK_FOCUS_CHANGE;
7960 #endif
7961
7962 xcb_change_window_attributes(conn, win->id, XCB_CW_BORDER_PIXEL |
7963 XCB_CW_EVENT_MASK, wa);
7964
7965 out:
7966 /* Figure out where to stack the window in the workspace. */
7967 if (trans && (ww = find_window(trans)))
7968 TAILQ_INSERT_AFTER(&win->ws->winlist, ww, win, entry);
7969 else if (win->ws->focus && spawn_position == SWM_STACK_ABOVE)
7970 TAILQ_INSERT_AFTER(&win->ws->winlist, win->ws->focus, win,
7971 entry);
7972 else if (win->ws->focus && spawn_position == SWM_STACK_BELOW)
7973 TAILQ_INSERT_BEFORE(win->ws->focus, win, entry);
7974 else switch (spawn_position) {
7975 default:
7976 case SWM_STACK_TOP:
7977 case SWM_STACK_ABOVE:
7978 TAILQ_INSERT_TAIL(&win->ws->winlist, win, entry);
7979 break;
7980 case SWM_STACK_BOTTOM:
7981 case SWM_STACK_BELOW:
7982 TAILQ_INSERT_HEAD(&win->ws->winlist, win, entry);
7983 }
7984
7985 /* Get initial _NET_WM_STATE */
7986 ewmh_get_win_state(win);
7987 /* Set initial _NET_WM_ALLOWED_ACTIONS */
7988 ewmh_update_actions(win);
7989
7990 grabbuttons(win);
7991
7992 DNPRINTF(SWM_D_MISC, "manage_window: done. window: 0x%x, (x,y) w x h: "
7993 "(%d,%d) %d x %d, ws: %d, iconic: %s, transient: 0x%x\n", win->id,
7994 X(win), Y(win), WIDTH(win), HEIGHT(win), win->ws->idx,
7995 YESNO(win->iconic), win->transient);
7996
7997 return (win);
7998 }
7999
8000 void
8001 free_window(struct ws_win *win)
8002 {
8003 DNPRINTF(SWM_D_MISC, "free_window: window: 0x%x\n", win->id);
8004
8005 if (win == NULL)
8006 return;
8007
8008 TAILQ_REMOVE(&win->ws->unmanagedlist, win, entry);
8009
8010 if (win->wa)
8011 free(win->wa);
8012
8013 xcb_icccm_get_wm_class_reply_wipe(&win->ch);
8014
8015 kill_refs(win);
8016
8017 /* paint memory */
8018 memset(win, 0xff, sizeof *win); /* XXX kill later */
8019
8020 free(win);
8021 DNPRINTF(SWM_D_MISC, "free_window: done.\n");
8022 }
8023
8024 void
8025 unmanage_window(struct ws_win *win)
8026 {
8027 struct ws_win *parent;
8028
8029 if (win == NULL)
8030 return;
8031
8032 DNPRINTF(SWM_D_MISC, "unmanage_window: window: 0x%x\n", win->id);
8033
8034 if (win->transient) {
8035 parent = find_window(win->transient);
8036 if (parent)
8037 parent->focus_child = NULL;
8038 }
8039
8040 TAILQ_REMOVE(&win->ws->winlist, win, entry);
8041 TAILQ_INSERT_TAIL(&win->ws->unmanagedlist, win, entry);
8042 }
8043
8044 void
8045 expose(xcb_expose_event_t *e)
8046 {
8047 int i, num_screens;
8048 struct swm_region *r;
8049
8050 DNPRINTF(SWM_D_EVENT, "expose: window: 0x%x\n", e->window);
8051
8052 num_screens = get_screen_count();
8053 for (i = 0; i < num_screens; i++)
8054 TAILQ_FOREACH(r, &screens[i].rl, entry)
8055 if (e->window == WINID(r->bar))
8056 bar_draw();
8057
8058 xcb_flush(conn);
8059 }
8060
8061 #ifdef SWM_DEBUG
8062 void
8063 focusin(xcb_focus_in_event_t *e)
8064 {
8065 DNPRINTF(SWM_D_EVENT, "focusin: window: 0x%x, mode: %s(%u), "
8066 "detail: %s(%u)\n", e->event, get_notify_mode_label(e->mode),
8067 e->mode, get_notify_detail_label(e->detail), e->detail);
8068 }
8069
8070 void
8071 focusout(xcb_focus_out_event_t *e)
8072 {
8073 DNPRINTF(SWM_D_EVENT, "focusout: window: 0x%x, mode: %s(%u), "
8074 "detail: %s(%u)\n", e->event, get_notify_mode_label(e->mode),
8075 e->mode, get_notify_detail_label(e->detail), e->detail);
8076 }
8077 #endif
8078
8079 void
8080 keypress(xcb_key_press_event_t *e)
8081 {
8082 xcb_keysym_t keysym;
8083 struct key *kp;
8084
8085 keysym = xcb_key_press_lookup_keysym(syms, e, 0);
8086
8087 DNPRINTF(SWM_D_EVENT, "keypress: keysym: %u, win (x,y): 0x%x (%d,%d), "
8088 "detail: %u, time: %u, root (x,y): 0x%x (%d,%d), child: 0x%x, "
8089 "state: %u, same_screen: %s\n", keysym, e->event, e->event_x,
8090 e->event_y, e->detail, e->time, e->root, e->root_x, e->root_y,
8091 e->child, e->state, YESNO(e->same_screen));
8092
8093 if ((kp = key_lookup(CLEANMASK(e->state), keysym)) == NULL)
8094 goto out;
8095
8096 last_event_time = e->time;
8097
8098 if (kp->funcid == KF_SPAWN_CUSTOM)
8099 spawn_custom(root_to_region(e->root, SWM_CK_ALL),
8100 &(keyfuncs[kp->funcid].args), kp->spawn_name);
8101 else if (keyfuncs[kp->funcid].func)
8102 keyfuncs[kp->funcid].func(root_to_region(e->root, SWM_CK_ALL),
8103 &(keyfuncs[kp->funcid].args));
8104
8105 out:
8106 /* Unfreeze grab events. */
8107 xcb_allow_events(conn, XCB_ALLOW_ASYNC_KEYBOARD, e->time);
8108 xcb_flush(conn);
8109
8110 DNPRINTF(SWM_D_EVENT, "keypress: done.\n");
8111 }
8112
8113 void
8114 buttonpress(xcb_button_press_event_t *e)
8115 {
8116 struct ws_win *win = NULL;
8117 struct swm_region *r, *old_r;
8118 int i;
8119 int handled = 0;
8120
8121 DNPRINTF(SWM_D_EVENT, "buttonpress: win (x,y): 0x%x (%d,%d), "
8122 "detail: %u, time: %u, root (x,y): 0x%x (%d,%d), child: 0x%x, "
8123 "state: %u, same_screen: %s\n", e->event, e->event_x, e->event_y,
8124 e->detail, e->time, e->root, e->root_x, e->root_y, e->child,
8125 e->state, YESNO(e->same_screen));
8126
8127 if (e->event == e->root) {
8128 if (e->child != 0) {
8129 win = find_window(e->child);
8130 /* Pass ButtonPress to window if it isn't managed. */
8131 if (win == NULL)
8132 goto out;
8133 } else {
8134 /* Focus on empty region */
8135 /* If no windows on region if its empty. */
8136 r = root_to_region(e->root, SWM_CK_POINTER);
8137 if (r == NULL) {
8138 DNPRINTF(SWM_D_EVENT, "buttonpress: "
8139 "NULL region; ignoring.\n");
8140 goto out;
8141 }
8142
8143 if (TAILQ_EMPTY(&r->ws->winlist)) {
8144 old_r = root_to_region(e->root, SWM_CK_FOCUS);
8145 if (old_r && old_r != r)
8146 unfocus_win(old_r->ws->focus);
8147
8148 xcb_set_input_focus(conn,
8149 XCB_INPUT_FOCUS_PARENT, e->root, e->time);
8150
8151 /* Clear bar since empty. */
8152 bar_draw();
8153
8154 handled = 1;
8155 goto out;
8156 }
8157 }
8158 } else {
8159 win = find_window(e->event);
8160 }
8161
8162 if (win == NULL)
8163 goto out;
8164
8165 last_event_time = e->time;
8166
8167 focus_win(get_focus_magic(win));
8168
8169 for (i = 0; i < LENGTH(buttons); i++)
8170 if (client_click == buttons[i].action && buttons[i].func &&
8171 buttons[i].button == e->detail &&
8172 CLEANMASK(buttons[i].mask) == CLEANMASK(e->state)) {
8173 buttons[i].func(win, &buttons[i].args);
8174 handled = 1;
8175 }
8176
8177 out:
8178 if (!handled) {
8179 DNPRINTF(SWM_D_EVENT, "buttonpress: passing to window.\n");
8180 /* Replay event to event window */
8181 xcb_allow_events(conn, XCB_ALLOW_REPLAY_POINTER, e->time);
8182 } else {
8183 DNPRINTF(SWM_D_EVENT, "buttonpress: handled.\n");
8184 /* Unfreeze grab events. */
8185 xcb_allow_events(conn, XCB_ALLOW_SYNC_POINTER, e->time);
8186 }
8187
8188 xcb_flush(conn);
8189 }
8190
8191 #ifdef SWM_DEBUG
8192 void
8193 print_win_geom(xcb_window_t w)
8194 {
8195 xcb_get_geometry_reply_t *wa;
8196
8197 wa = xcb_get_geometry_reply(conn, xcb_get_geometry(conn, w), NULL);
8198
8199 if (!wa) {
8200 DNPRINTF(SWM_D_MISC, "print_win_geom: window not found: 0x%x\n",
8201 w);
8202 return;
8203 }
8204
8205 DNPRINTF(SWM_D_MISC, "print_win_geom: window: 0x%x, root: 0x%x, "
8206 "depth: %u, (x,y) w x h: (%d,%d) %d x %d, border: %d\n",
8207 w, wa->root, wa->depth, wa->x, wa->y, wa->width, wa->height,
8208 wa->border_width);
8209
8210 free(wa);
8211 }
8212 #endif
8213
8214 #ifdef SWM_DEBUG
8215 char *
8216 get_stack_mode_name(uint8_t mode)
8217 {
8218 char *name;
8219
8220 switch(mode) {
8221 case XCB_STACK_MODE_ABOVE:
8222 name = "Above";
8223 break;
8224 case XCB_STACK_MODE_BELOW:
8225 name = "Below";
8226 break;
8227 case XCB_STACK_MODE_TOP_IF:
8228 name = "TopIf";
8229 break;
8230 case XCB_STACK_MODE_BOTTOM_IF:
8231 name = "BottomIf";
8232 break;
8233 case XCB_STACK_MODE_OPPOSITE:
8234 name = "Opposite";
8235 break;
8236 default:
8237 name = "Unknown";
8238 }
8239
8240 return name;
8241 }
8242 #endif
8243
8244 void
8245 configurerequest(xcb_configure_request_event_t *e)
8246 {
8247 struct ws_win *win;
8248 struct swm_region *r = NULL;
8249 int new = 0, i = 0;
8250 uint16_t mask = 0;
8251 uint32_t wc[7] = {0};
8252
8253 if ((win = find_window(e->window)) == NULL)
8254 if ((win = find_unmanaged_window(e->window)) == NULL)
8255 new = 1;
8256
8257 #ifdef SWM_DEBUG
8258 if (swm_debug & SWM_D_EVENT) {
8259 print_win_geom(e->window);
8260
8261 DNPRINTF(SWM_D_EVENT, "configurerequest: window: 0x%x, "
8262 "parent: 0x%x, new: %s, value_mask: %u { ", e->window,
8263 e->parent, YESNO(new), e->value_mask);
8264 if (e->value_mask & XCB_CONFIG_WINDOW_X)
8265 DPRINTF("X: %d ", e->x);
8266 if (e->value_mask & XCB_CONFIG_WINDOW_Y)
8267 DPRINTF("Y: %d ", e->y);
8268 if (e->value_mask & XCB_CONFIG_WINDOW_WIDTH)
8269 DPRINTF("W: %u ", e->width);
8270 if (e->value_mask & XCB_CONFIG_WINDOW_HEIGHT)
8271 DPRINTF("H: %u ", e->height);
8272 if (e->value_mask & XCB_CONFIG_WINDOW_BORDER_WIDTH)
8273 DPRINTF("Border: %u ", e->border_width);
8274 if (e->value_mask & XCB_CONFIG_WINDOW_SIBLING)
8275 DPRINTF("Sibling: 0x%x ", e->sibling);
8276 if (e->value_mask & XCB_CONFIG_WINDOW_STACK_MODE)
8277 DPRINTF("StackMode: %s(%u) ",
8278 get_stack_mode_name(e->stack_mode), e->stack_mode);
8279 DPRINTF("}\n");
8280 }
8281 #endif
8282
8283 if (new) {
8284 if (e->value_mask & XCB_CONFIG_WINDOW_X) {
8285 mask |= XCB_CONFIG_WINDOW_X;
8286 wc[i++] = e->x;
8287 }
8288 if (e->value_mask & XCB_CONFIG_WINDOW_Y) {
8289 mask |= XCB_CONFIG_WINDOW_Y;
8290 wc[i++] = e->y;
8291 }
8292 if (e->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
8293 mask |= XCB_CONFIG_WINDOW_WIDTH;
8294 wc[i++] = e->width;
8295 }
8296 if (e->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
8297 mask |= XCB_CONFIG_WINDOW_HEIGHT;
8298 wc[i++] = e->height;
8299 }
8300 if (e->value_mask & XCB_CONFIG_WINDOW_BORDER_WIDTH) {
8301 mask |= XCB_CONFIG_WINDOW_BORDER_WIDTH;
8302 wc[i++] = e->border_width;
8303 }
8304 if (e->value_mask & XCB_CONFIG_WINDOW_SIBLING) {
8305 mask |= XCB_CONFIG_WINDOW_SIBLING;
8306 wc[i++] = e->sibling;
8307 }
8308 if (e->value_mask & XCB_CONFIG_WINDOW_STACK_MODE) {
8309 mask |= XCB_CONFIG_WINDOW_STACK_MODE;
8310 wc[i++] = e->stack_mode;
8311 }
8312
8313 if (mask != 0) {
8314 xcb_configure_window(conn, e->window, mask, wc);
8315 xcb_flush(conn);
8316 }
8317 } else if ((!win->manual || win->quirks & SWM_Q_ANYWHERE) &&
8318 !(win->ewmh_flags & EWMH_F_FULLSCREEN)) {
8319 if (win->ws->r)
8320 r = win->ws->r;
8321 else if (win->ws->old_r)
8322 r = win->ws->old_r;
8323
8324 /* windows are centered unless ANYWHERE quirk is set. */
8325 if (win->quirks & SWM_Q_ANYWHERE) {
8326 if (e->value_mask & XCB_CONFIG_WINDOW_X) {
8327 win->g_float.x = e->x;
8328 if (r)
8329 win->g_float.x -= X(r);
8330 }
8331
8332 if (e->value_mask & XCB_CONFIG_WINDOW_Y) {
8333 win->g_float.y = e->y;
8334 if (r)
8335 win->g_float.y -= Y(r);
8336 }
8337 }
8338
8339 if (e->value_mask & XCB_CONFIG_WINDOW_WIDTH)
8340 win->g_float.w = e->width;
8341
8342 if (e->value_mask & XCB_CONFIG_WINDOW_HEIGHT)
8343 win->g_float.h = e->height;
8344
8345 win->g_floatvalid = 1;
8346
8347 if (win->floating && r && (win->transient ||
8348 win->ws->cur_layout != &layouts[SWM_MAX_STACK])) {
8349 WIDTH(win) = win->g_float.w;
8350 HEIGHT(win) = win->g_float.h;
8351
8352 if (r) {
8353 stack_floater(win, r);
8354 focus_flush();
8355 }
8356 } else {
8357 config_win(win, e);
8358 xcb_flush(conn);
8359 }
8360 } else {
8361 config_win(win, e);
8362 xcb_flush(conn);
8363 }
8364
8365 DNPRINTF(SWM_D_EVENT, "configurerequest: done.\n");
8366 }
8367
8368 void
8369 configurenotify(xcb_configure_notify_event_t *e)
8370 {
8371 struct ws_win *win;
8372
8373 DNPRINTF(SWM_D_EVENT, "configurenotify: win 0x%x, event win: 0x%x, "
8374 "(x,y) WxH: (%d,%d) %ux%u, border: %u, above_sibling: 0x%x, "
8375 "override_redirect: %s\n", e->window, e->event, e->x, e->y,
8376 e->width, e->height, e->border_width, e->above_sibling,
8377 YESNO(e->override_redirect));
8378
8379 win = find_window(e->window);
8380 if (win) {
8381 xcb_icccm_get_wm_normal_hints_reply(conn,
8382 xcb_icccm_get_wm_normal_hints(conn, win->id),
8383 &win->sh, NULL);
8384 adjust_font(win);
8385 if (font_adjusted) {
8386 stack();
8387 xcb_flush(conn);
8388 }
8389 }
8390 }
8391
8392 void
8393 destroynotify(xcb_destroy_notify_event_t *e)
8394 {
8395 struct ws_win *win;
8396
8397 DNPRINTF(SWM_D_EVENT, "destroynotify: window: 0x%x\n", e->window);
8398
8399 if ((win = find_window(e->window)) == NULL) {
8400 if ((win = find_unmanaged_window(e->window)) == NULL)
8401 return;
8402 free_window(win);
8403 return;
8404 }
8405
8406 if (focus_mode != SWM_FOCUS_FOLLOW) {
8407 /* If we were focused, make sure we focus on something else. */
8408 if (win == win->ws->focus)
8409 win->ws->focus_pending = get_focus_prev(win);
8410 }
8411
8412 unmanage_window(win);
8413 stack();
8414
8415 if (focus_mode != SWM_FOCUS_FOLLOW) {
8416 if (win->ws->focus_pending) {
8417 focus_win(win->ws->focus_pending);
8418 win->ws->focus_pending = NULL;
8419 } else if (win == win->ws->focus && win->ws->r) {
8420 xcb_set_input_focus(conn, XCB_INPUT_FOCUS_PARENT,
8421 win->ws->r->id, XCB_CURRENT_TIME);
8422 }
8423 }
8424
8425 free_window(win);
8426
8427 focus_flush();
8428 }
8429
8430 #ifdef SWM_DEBUG
8431 char *
8432 get_notify_detail_label(uint8_t detail)
8433 {
8434 char *label;
8435
8436 switch (detail) {
8437 case XCB_NOTIFY_DETAIL_ANCESTOR:
8438 label = "Ancestor";
8439 break;
8440 case XCB_NOTIFY_DETAIL_VIRTUAL:
8441 label = "Virtual";
8442 break;
8443 case XCB_NOTIFY_DETAIL_INFERIOR:
8444 label = "Inferior";
8445 break;
8446 case XCB_NOTIFY_DETAIL_NONLINEAR:
8447 label = "Nonlinear";
8448 break;
8449 case XCB_NOTIFY_DETAIL_NONLINEAR_VIRTUAL:
8450 label = "NonlinearVirtual";
8451 break;
8452 case XCB_NOTIFY_DETAIL_POINTER:
8453 label = "Pointer";
8454 break;
8455 case XCB_NOTIFY_DETAIL_POINTER_ROOT:
8456 label = "PointerRoot";
8457 break;
8458 case XCB_NOTIFY_DETAIL_NONE:
8459 label = "None";
8460 break;
8461 default:
8462 label = "Unknown";
8463 }
8464
8465 return label;
8466 }
8467
8468 char *
8469 get_notify_mode_label(uint8_t mode)
8470 {
8471 char *label;
8472
8473 switch (mode) {
8474 case XCB_NOTIFY_MODE_NORMAL:
8475 label = "Normal";
8476 break;
8477 case XCB_NOTIFY_MODE_GRAB:
8478 label = "Grab";
8479 break;
8480 case XCB_NOTIFY_MODE_UNGRAB:
8481 label = "Ungrab";
8482 break;
8483 case XCB_NOTIFY_MODE_WHILE_GRABBED:
8484 label = "WhileGrabbed";
8485 break;
8486 default:
8487 label = "Unknown";
8488 }
8489
8490 return label;
8491 }
8492 #endif
8493
8494 void
8495 enternotify(xcb_enter_notify_event_t *e)
8496 {
8497 struct ws_win *win;
8498 struct swm_region *r;
8499
8500 DNPRINTF(SWM_D_FOCUS, "enternotify: time: %u, win (x,y): 0x%x "
8501 "(%d,%d), mode: %s(%d), detail: %s(%d), root (x,y): 0x%x (%d,%d), "
8502 "child: 0x%x, same_screen_focus: %s, state: %d\n",
8503 e->time, e->event, e->event_x, e->event_y,
8504 get_notify_mode_label(e->mode), e->mode,
8505 get_notify_detail_label(e->detail), e->detail,
8506 e->root, e->root_x, e->root_y, e->child,
8507 YESNO(e->same_screen_focus), e->state);
8508
8509 if (focus_mode == SWM_FOCUS_MANUAL &&
8510 e->mode == XCB_NOTIFY_MODE_NORMAL) {
8511 DNPRINTF(SWM_D_EVENT, "enternotify: manual focus; ignoring.\n");
8512 return;
8513 }
8514
8515 last_event_time = e->time;
8516
8517 if ((win = find_window(e->event)) == NULL) {
8518 if (e->event == e->root) {
8519 /* If no windows on pointer region, then focus root. */
8520 r = root_to_region(e->root, SWM_CK_POINTER);
8521 if (r == NULL) {
8522 DNPRINTF(SWM_D_EVENT, "enternotify: "
8523 "NULL region; ignoring.\n");
8524 return;
8525 }
8526
8527 focus_region(r);
8528 } else {
8529 DNPRINTF(SWM_D_EVENT, "enternotify: window is NULL; "
8530 "ignoring\n");
8531 return;
8532 }
8533 } else {
8534 focus_win(get_focus_magic(win));
8535 }
8536
8537 xcb_flush(conn);
8538 }
8539
8540 #ifdef SWM_DEBUG
8541 void
8542 leavenotify(xcb_leave_notify_event_t *e)
8543 {
8544 DNPRINTF(SWM_D_FOCUS, "leavenotify: time: %u, win (x,y): 0x%x "
8545 "(%d,%d), mode: %s(%d), detail: %s(%d), root (x,y): 0x%x (%d,%d), "
8546 "child: 0x%x, same_screen_focus: %s, state: %d\n",
8547 e->time, e->event, e->event_x, e->event_y,
8548 get_notify_mode_label(e->mode), e->mode,
8549 get_notify_detail_label(e->detail), e->detail,
8550 e->root, e->root_x, e->root_y, e->child,
8551 YESNO(e->same_screen_focus), e->state);
8552 }
8553 #endif
8554
8555 void
8556 mapnotify(xcb_map_notify_event_t *e)
8557 {
8558 struct ws_win *win;
8559
8560 DNPRINTF(SWM_D_EVENT, "mapnotify: window: 0x%x\n", e->window);
8561
8562 if ((win = find_window(e->window)) == NULL)
8563 win = manage_window(e->window, 1);
8564
8565 win->mapped = 1;
8566 set_win_state(win, XCB_ICCCM_WM_STATE_NORMAL);
8567
8568 if (focus_mode != SWM_FOCUS_FOLLOW) {
8569 if (win->ws->focus_pending == win) {
8570 focus_win(win);
8571 win->ws->focus_pending = NULL;
8572 focus_flush();
8573 }
8574 }
8575
8576 xcb_flush(conn);
8577 }
8578
8579 void
8580 mappingnotify(xcb_mapping_notify_event_t *e)
8581 {
8582 xcb_refresh_keyboard_mapping(syms, e);
8583
8584 if (e->request == XCB_MAPPING_KEYBOARD)
8585 grabkeys();
8586 }
8587
8588 void
8589 maprequest(xcb_map_request_event_t *e)
8590 {
8591 struct ws_win *win, *w = NULL;
8592 xcb_get_window_attributes_reply_t *war;
8593
8594 DNPRINTF(SWM_D_EVENT, "maprequest: win 0x%x\n",
8595 e->window);
8596
8597 war = xcb_get_window_attributes_reply(conn,
8598 xcb_get_window_attributes(conn, e->window),
8599 NULL);
8600 if (war == NULL) {
8601 DNPRINTF(SWM_D_EVENT, "maprequest: window lost.\n");
8602 goto out;
8603 }
8604
8605 if (war->override_redirect) {
8606 DNPRINTF(SWM_D_EVENT, "maprequest: override_redirect; "
8607 "skipping.\n");
8608 goto out;
8609 }
8610
8611 win = manage_window(e->window,
8612 (war->map_state == XCB_MAP_STATE_VIEWABLE));
8613
8614 /* The new window should get focus; prepare. */
8615 if (focus_mode != SWM_FOCUS_FOLLOW &&
8616 !(win->quirks & SWM_Q_NOFOCUSONMAP)) {
8617 if (win->quirks & SWM_Q_FOCUSONMAP_SINGLE) {
8618 /* See if other wins of same type are already mapped. */
8619 TAILQ_FOREACH(w, &win->ws->winlist, entry) {
8620 if (w == win || !w->mapped)
8621 continue;
8622
8623 if (w->ch.class_name &&
8624 win->ch.class_name &&
8625 !strcmp(w->ch.class_name,
8626 win->ch.class_name) &&
8627 w->ch.instance_name &&
8628 win->ch.instance_name &&
8629 !strcmp(w->ch.instance_name,
8630 win->ch.instance_name))
8631 break;
8632 }
8633 }
8634
8635 if (w == NULL)
8636 win->ws->focus_pending = get_focus_magic(win);
8637 }
8638
8639 /* All windows need to be mapped if they are in the current workspace.*/
8640 if (win->ws->r)
8641 stack();
8642
8643 /* Ignore EnterNotify to handle the mapnotify without interference. */
8644 if (focus_mode == SWM_FOCUS_DEFAULT)
8645 event_drain(XCB_ENTER_NOTIFY);
8646 out:
8647 free(war);
8648 DNPRINTF(SWM_D_EVENT, "maprequest: done.\n");
8649 }
8650
8651 void
8652 motionnotify(xcb_motion_notify_event_t *e)
8653 {
8654 struct swm_region *r;
8655 int i, num_screens;
8656
8657 DNPRINTF(SWM_D_FOCUS, "motionnotify: time: %u, win (x,y): 0x%x "
8658 "(%d,%d), detail: %s(%d), root (x,y): 0x%x (%d,%d), "
8659 "child: 0x%x, same_screen_focus: %s, state: %d\n",
8660 e->time, e->event, e->event_x, e->event_y,
8661 get_notify_detail_label(e->detail), e->detail,
8662 e->root, e->root_x, e->root_y, e->child,
8663 YESNO(e->same_screen), e->state);
8664
8665 last_event_time = e->time;
8666
8667 if (focus_mode == SWM_FOCUS_MANUAL)
8668 return;
8669
8670 num_screens = get_screen_count();
8671 for (i = 0; i < num_screens; i++)
8672 if (screens[i].root == e->root)
8673 break;
8674
8675 TAILQ_FOREACH(r, &screens[i].rl, entry)
8676 if (X(r) <= e->root_x && e->root_x < MAX_X(r) &&
8677 Y(r) <= e->root_y && e->root_y < MAX_Y(r))
8678 break;
8679
8680 focus_region(r);
8681 }
8682
8683 #ifdef SWM_DEBUG
8684 char *
8685 get_atom_name(xcb_atom_t atom)
8686 {
8687 char *name = NULL;
8688 #if 0
8689 /*
8690 * This should be disabled during most debugging since
8691 * xcb_get_* causes an xcb_flush.
8692 */
8693 size_t len;
8694 xcb_get_atom_name_reply_t *r;
8695
8696 r = xcb_get_atom_name_reply(conn,
8697 xcb_get_atom_name(conn, atom),
8698 NULL);
8699 if (r) {
8700 len = xcb_get_atom_name_name_length(r);
8701 if (len > 0) {
8702 name = malloc(len + 1);
8703 if (name) {
8704 memcpy(name, xcb_get_atom_name_name(r), len);
8705 name[len] = '\0';
8706 }
8707 }
8708 free(r);
8709 }
8710 #else
8711 (void)atom;
8712 #endif
8713 return (name);
8714 }
8715 #endif
8716
8717 void
8718 propertynotify(xcb_property_notify_event_t *e)
8719 {
8720 struct ws_win *win;
8721 struct workspace *ws;
8722 #ifdef SWM_DEBUG
8723 char *name;
8724
8725 name = get_atom_name(e->atom);
8726 DNPRINTF(SWM_D_EVENT, "propertynotify: window: 0x%x, atom: %s(%u), "
8727 "time: %#x, state: %u\n", e->window, name, e->atom, e->time,
8728 e->state);
8729 free(name);
8730 #endif
8731 win = find_window(e->window);
8732 if (win == NULL)
8733 return;
8734
8735 ws = win->ws;
8736
8737 last_event_time = e->time;
8738
8739 if (e->atom == a_swm_iconic) {
8740 if (e->state == XCB_PROPERTY_NEW_VALUE) {
8741 if (focus_mode != SWM_FOCUS_FOLLOW)
8742 ws->focus_pending = get_focus_prev(win);
8743
8744 unfocus_win(win);
8745 unmap_window(win);
8746
8747 if (ws->r) {
8748 stack();
8749
8750 if (focus_mode != SWM_FOCUS_FOLLOW) {
8751 if (ws->focus_pending) {
8752 focus_win(ws->focus_pending);
8753 ws->focus_pending = NULL;
8754 } else {
8755 xcb_set_input_focus(conn,
8756 XCB_INPUT_FOCUS_PARENT,
8757 ws->r->id,
8758 XCB_CURRENT_TIME);
8759 }
8760 }
8761
8762 focus_flush();
8763 }
8764 } else if (e->state == XCB_PROPERTY_DELETE) {
8765 /* The window is no longer iconic, restack ws. */
8766 if (focus_mode != SWM_FOCUS_FOLLOW)
8767 ws->focus_pending = get_focus_magic(win);
8768
8769 stack();
8770
8771 /* Flush EnterNotify for mapnotify, if needed. */
8772 focus_flush();
8773 }
8774 } else if (e->atom == a_state) {
8775 /* State just changed, make sure it gets focused if mapped. */
8776 if (e->state == XCB_PROPERTY_NEW_VALUE) {
8777 if (focus_mode != SWM_FOCUS_FOLLOW) {
8778 if (win->mapped &&
8779 ws->focus_pending == win) {
8780 focus_win(ws->focus_pending);
8781 ws->focus_pending = NULL;
8782 }
8783 }
8784 }
8785 } else if (e->atom == XCB_ATOM_WM_CLASS ||
8786 e->atom == XCB_ATOM_WM_NAME) {
8787 bar_draw();
8788 }
8789
8790 xcb_flush(conn);
8791 }
8792
8793 void
8794 unmapnotify(xcb_unmap_notify_event_t *e)
8795 {
8796 struct ws_win *win;
8797 struct workspace *ws;
8798
8799 DNPRINTF(SWM_D_EVENT, "unmapnotify: window: 0x%x\n", e->window);
8800
8801 /* If we aren't managing the window, then ignore. */
8802 win = find_window(e->window);
8803 if (win == NULL || win->id != e->window)
8804 return;
8805
8806 ws = win->ws;
8807
8808 if (getstate(e->window) != XCB_ICCCM_WM_STATE_ICONIC)
8809 set_win_state(win, XCB_ICCCM_WM_STATE_ICONIC);
8810
8811 if (win->mapped) {
8812 /* window unmapped itself */
8813 /* do unmap/unfocus/restack and unmanage */
8814 win->mapped = 0;
8815
8816 /* If win was focused, make sure to focus on something else. */
8817 if (win == ws->focus) {
8818 if (focus_mode != SWM_FOCUS_FOLLOW) {
8819 ws->focus_pending = get_focus_prev(win);
8820 DNPRINTF(SWM_D_EVENT, "unmapnotify: "
8821 "focus_pending: 0x%x\n",
8822 WINID(ws->focus_pending));
8823 }
8824
8825 unfocus_win(win);
8826 }
8827
8828 unmanage_window(win);
8829
8830 if (ws->r)
8831 stack();
8832
8833 if (focus_mode == SWM_FOCUS_FOLLOW) {
8834 if (ws->r)
8835 focus_win(get_pointer_win(ws->r->s->root));
8836 } else if (ws->focus_pending) {
8837 focus_win(ws->focus_pending);
8838 ws->focus_pending = NULL;
8839 } else if (ws->focus == NULL && ws->r) {
8840 xcb_set_input_focus(conn, XCB_INPUT_FOCUS_PARENT,
8841 ws->r->id, XCB_CURRENT_TIME);
8842 }
8843 }
8844
8845 if (getstate(e->window) == XCB_ICCCM_WM_STATE_NORMAL)
8846 set_win_state(win, XCB_ICCCM_WM_STATE_ICONIC);
8847
8848 focus_flush();
8849 }
8850
8851 #if 0
8852 void
8853 visibilitynotify(xcb_visibility_notify_event_t *e)
8854 {
8855 DNPRINTF(SWM_D_EVENT, "visibilitynotify: window: 0x%x\n",
8856 e->window);
8857 }
8858 #endif
8859
8860 void
8861 clientmessage(xcb_client_message_event_t *e)
8862 {
8863 struct ws_win *win;
8864 xcb_map_request_event_t mre;
8865 #ifdef SWM_DEBUG
8866 char *name;
8867
8868 name = get_atom_name(e->type);
8869 DNPRINTF(SWM_D_EVENT, "clientmessage: window: 0x%x, atom: %s(%u)\n",
8870 e->window, name, e->type);
8871 free(name);
8872 #endif
8873 win = find_window(e->window);
8874
8875 if (win == NULL) {
8876 if (e->type == ewmh[_NET_ACTIVE_WINDOW].atom) {
8877 /* Manage the window with maprequest. */
8878 DNPRINTF(SWM_D_EVENT, "clientmessage: request focus on "
8879 "unmanaged window.\n");
8880 mre.window = e->window;
8881 maprequest(&mre);
8882 }
8883 return;
8884 }
8885
8886 if (e->type == ewmh[_NET_ACTIVE_WINDOW].atom) {
8887 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_ACTIVE_WINDOW\n");
8888 focus_win(win);
8889 }
8890 if (e->type == ewmh[_NET_CLOSE_WINDOW].atom) {
8891 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_CLOSE_WINDOW\n");
8892 if (win->can_delete)
8893 client_msg(win, a_delete, 0);
8894 else
8895 xcb_kill_client(conn, win->id);
8896 }
8897 if (e->type == ewmh[_NET_MOVERESIZE_WINDOW].atom) {
8898 DNPRINTF(SWM_D_EVENT,
8899 "clientmessage: _NET_MOVERESIZE_WINDOW\n");
8900 if (win->floating) {
8901 if (e->data.data32[0] & (1<<8)) /* x */
8902 X(win) = e->data.data32[1];
8903 if (e->data.data32[0] & (1<<9)) /* y */
8904 Y(win) = e->data.data32[2];
8905 if (e->data.data32[0] & (1<<10)) /* width */
8906 WIDTH(win) = e->data.data32[3];
8907 if (e->data.data32[0] & (1<<11)) /* height */
8908 HEIGHT(win) = e->data.data32[4];
8909
8910 update_window(win);
8911 }
8912 else {
8913 /* TODO: Change stack sizes */
8914 /* notify no change was made. */
8915 config_win(win, NULL);
8916 }
8917 }
8918 if (e->type == ewmh[_NET_WM_STATE].atom) {
8919 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_WM_STATE\n");
8920 ewmh_update_win_state(win, e->data.data32[1], e->data.data32[0]);
8921 if (e->data.data32[2])
8922 ewmh_update_win_state(win, e->data.data32[2],
8923 e->data.data32[0]);
8924
8925 stack();
8926 }
8927
8928 focus_flush();
8929 }
8930
8931 void
8932 check_conn(void)
8933 {
8934 int errcode = xcb_connection_has_error(conn);
8935 #ifdef XCB_CONN_ERROR
8936 char *s;
8937 switch (errcode) {
8938 case XCB_CONN_ERROR:
8939 s = "Socket error, pipe error or other stream error.";
8940 break;
8941 case XCB_CONN_CLOSED_EXT_NOTSUPPORTED:
8942 s = "Extension not supported.";
8943 break;
8944 case XCB_CONN_CLOSED_MEM_INSUFFICIENT:
8945 s = "Insufficient memory.";
8946 break;
8947 case XCB_CONN_CLOSED_REQ_LEN_EXCEED:
8948 s = "Request length was exceeded.";
8949 break;
8950 case XCB_CONN_CLOSED_PARSE_ERR:
8951 s = "Error parsing display string.";
8952 break;
8953 default:
8954 s = "Unknown error.";
8955 }
8956 if (errcode)
8957 errx(errcode, "X CONNECTION ERROR: %s", s);
8958 #else
8959 if (errcode)
8960 errx(errcode, "X CONNECTION ERROR");
8961 #endif
8962 }
8963
8964 int
8965 enable_wm(void)
8966 {
8967 int num_screens, i;
8968 const uint32_t val = XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT |
8969 XCB_EVENT_MASK_ENTER_WINDOW;
8970 xcb_screen_t *sc;
8971 xcb_void_cookie_t wac;
8972 xcb_generic_error_t *error;
8973
8974 /* this causes an error if some other window manager is running */
8975 num_screens = get_screen_count();
8976 for (i = 0; i < num_screens; i++) {
8977 if ((sc = get_screen(i)) == NULL)
8978 errx(1, "ERROR: can't get screen %d.", i);
8979 DNPRINTF(SWM_D_INIT, "enable_wm: screen %d, root: 0x%x\n",
8980 i, sc->root);
8981 wac = xcb_change_window_attributes_checked(conn, sc->root,
8982 XCB_CW_EVENT_MASK, &val);
8983 if ((error = xcb_request_check(conn, wac))) {
8984 DNPRINTF(SWM_D_INIT, "enable_wm: error_code: %u\n",
8985 error->error_code);
8986 free(error);
8987 return 1;
8988 }
8989
8990 /* click to focus on empty region */
8991 xcb_grab_button(conn, 1, sc->root, BUTTONMASK,
8992 XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC, XCB_WINDOW_NONE,
8993 XCB_CURSOR_NONE, XCB_BUTTON_INDEX_1, XCB_BUTTON_MASK_ANY);
8994 }
8995
8996 return 0;
8997 }
8998
8999 void
9000 new_region(struct swm_screen *s, int x, int y, int w, int h)
9001 {
9002 struct swm_region *r, *n;
9003 struct workspace *ws = NULL;
9004 int i;
9005 uint32_t wa[1];
9006
9007 DNPRINTF(SWM_D_MISC, "new region: screen[%d]:%dx%d+%d+%d\n",
9008 s->idx, w, h, x, y);
9009
9010 /* remove any conflicting regions */
9011 n = TAILQ_FIRST(&s->rl);
9012 while (n) {
9013 r = n;
9014 n = TAILQ_NEXT(r, entry);
9015 if (X(r) < (x + w) && (X(r) + WIDTH(r)) > x &&
9016 Y(r) < (y + h) && (Y(r) + HEIGHT(r)) > y) {
9017 if (r->ws->r != NULL)
9018 r->ws->old_r = r->ws->r;
9019 r->ws->r = NULL;
9020 bar_cleanup(r);
9021 xcb_destroy_window(conn, r->id);
9022 TAILQ_REMOVE(&s->rl, r, entry);
9023 TAILQ_INSERT_TAIL(&s->orl, r, entry);
9024 }
9025 }
9026
9027 /* search old regions for one to reuse */
9028
9029 /* size + location match */
9030 TAILQ_FOREACH(r, &s->orl, entry)
9031 if (X(r) == x && Y(r) == y &&
9032 HEIGHT(r) == h && WIDTH(r) == w)
9033 break;
9034
9035 /* size match */
9036 TAILQ_FOREACH(r, &s->orl, entry)
9037 if (HEIGHT(r) == h && WIDTH(r) == w)
9038 break;
9039
9040 if (r != NULL) {
9041 TAILQ_REMOVE(&s->orl, r, entry);
9042 /* try to use old region's workspace */
9043 if (r->ws->r == NULL)
9044 ws = r->ws;
9045 } else
9046 if ((r = calloc(1, sizeof(struct swm_region))) == NULL)
9047 err(1, "new_region: calloc: failed to allocate memory "
9048 "for screen");
9049
9050 /* if we don't have a workspace already, find one */
9051 if (ws == NULL) {
9052 for (i = 0; i < workspace_limit; i++)
9053 if (s->ws[i].r == NULL) {
9054 ws = &s->ws[i];
9055 break;
9056 }
9057 }
9058
9059 if (ws == NULL)
9060 errx(1, "new_region: no free workspaces");
9061
9062 X(r) = x;
9063 Y(r) = y;
9064 WIDTH(r) = w;
9065 HEIGHT(r) = h;
9066 r->s = s;
9067 r->ws = ws;
9068 r->ws_prior = NULL;
9069 ws->r = r;
9070 outputs++;
9071 TAILQ_INSERT_TAIL(&s->rl, r, entry);
9072
9073 /* Invisible region window to detect pointer events on empty regions. */
9074 r->id = xcb_generate_id(conn);
9075 wa[0] = XCB_EVENT_MASK_POINTER_MOTION |
9076 XCB_EVENT_MASK_POINTER_MOTION_HINT;
9077
9078 xcb_create_window(conn, XCB_COPY_FROM_PARENT, r->id, r->s->root,
9079 X(r), Y(r), WIDTH(r), HEIGHT(r), 0, XCB_WINDOW_CLASS_INPUT_ONLY,
9080 XCB_COPY_FROM_PARENT, XCB_CW_EVENT_MASK, wa);
9081
9082 xcb_map_window(conn, r->id);
9083 }
9084
9085 void
9086 scan_xrandr(int i)
9087 {
9088 #ifdef SWM_XRR_HAS_CRTC
9089 int c;
9090 int ncrtc = 0;
9091 #endif /* SWM_XRR_HAS_CRTC */
9092 struct swm_region *r;
9093 struct ws_win *win;
9094 int num_screens;
9095 xcb_randr_get_screen_resources_current_cookie_t src;
9096 xcb_randr_get_screen_resources_current_reply_t *srr;
9097 xcb_randr_get_crtc_info_cookie_t cic;
9098 xcb_randr_get_crtc_info_reply_t *cir = NULL;
9099 xcb_randr_crtc_t *crtc;
9100 xcb_screen_t *screen;
9101
9102 DNPRINTF(SWM_D_MISC, "scan_xrandr: screen: %d\n", i);
9103
9104 if ((screen = get_screen(i)) == NULL)
9105 errx(1, "ERROR: can't get screen %d.", i);
9106
9107 num_screens = get_screen_count();
9108 if (i >= num_screens)
9109 errx(1, "scan_xrandr: invalid screen");
9110
9111 /* remove any old regions */
9112 while ((r = TAILQ_FIRST(&screens[i].rl)) != NULL) {
9113 r->ws->old_r = r->ws->r = NULL;
9114 bar_cleanup(r);
9115 xcb_destroy_window(conn, r->id);
9116 TAILQ_REMOVE(&screens[i].rl, r, entry);
9117 TAILQ_INSERT_TAIL(&screens[i].orl, r, entry);
9118 }
9119 outputs = 0;
9120
9121 /* map virtual screens onto physical screens */
9122 #ifdef SWM_XRR_HAS_CRTC
9123 if (xrandr_support) {
9124 src = xcb_randr_get_screen_resources_current(conn,
9125 screens[i].root);
9126 srr = xcb_randr_get_screen_resources_current_reply(conn, src,
9127 NULL);
9128 if (srr == NULL) {
9129 new_region(&screens[i], 0, 0,
9130 screen->width_in_pixels,
9131 screen->height_in_pixels);
9132 goto out;
9133 } else
9134 ncrtc = srr->num_crtcs;
9135
9136 crtc = xcb_randr_get_screen_resources_current_crtcs(srr);
9137 for (c = 0; c < ncrtc; c++) {
9138 cic = xcb_randr_get_crtc_info(conn, crtc[c],
9139 XCB_CURRENT_TIME);
9140 cir = xcb_randr_get_crtc_info_reply(conn, cic, NULL);
9141 if (cir == NULL)
9142 continue;
9143 if (cir->num_outputs == 0) {
9144 free(cir);
9145 continue;
9146 }
9147
9148 if (cir->mode == 0)
9149 new_region(&screens[i], 0, 0,
9150 screen->width_in_pixels,
9151 screen->height_in_pixels);
9152 else
9153 new_region(&screens[i],
9154 cir->x, cir->y, cir->width, cir->height);
9155 free(cir);
9156 }
9157 free(srr);
9158 }
9159 #endif /* SWM_XRR_HAS_CRTC */
9160
9161 /* If detection failed, create a single region that spans the screen. */
9162 if (TAILQ_EMPTY(&screens[i].rl))
9163 new_region(&screens[i], 0, 0, screen->width_in_pixels,
9164 screen->height_in_pixels);
9165
9166 out:
9167 /* Cleanup unused previously visible workspaces. */
9168 TAILQ_FOREACH(r, &screens[i].orl, entry) {
9169 TAILQ_FOREACH(win, &r->ws->winlist, entry)
9170 unmap_window(win);
9171
9172 /* The screen shouldn't focus on an unused region. */
9173 if (screens[i].r_focus == r)
9174 screens[i].r_focus = NULL;
9175 }
9176
9177 DNPRINTF(SWM_D_MISC, "scan_xrandr: done.\n");
9178 }
9179
9180 void
9181 screenchange(xcb_randr_screen_change_notify_event_t *e)
9182 {
9183 struct swm_region *r;
9184 int i, num_screens;
9185
9186 DNPRINTF(SWM_D_EVENT, "screenchange: root: 0x%x\n", e->root);
9187
9188 num_screens = get_screen_count();
9189 /* silly event doesn't include the screen index */
9190 for (i = 0; i < num_screens; i++)
9191 if (screens[i].root == e->root)
9192 break;
9193 if (i >= num_screens)
9194 errx(1, "screenchange: screen not found");
9195
9196 /* brute force for now, just re-enumerate the regions */
9197 scan_xrandr(i);
9198
9199 #ifdef SWM_DEBUG
9200 print_win_geom(e->root);
9201 #endif
9202 /* add bars to all regions */
9203 for (i = 0; i < num_screens; i++) {
9204 TAILQ_FOREACH(r, &screens[i].rl, entry)
9205 bar_setup(r);
9206 }
9207
9208 stack();
9209
9210 /* Make sure a region has focus on each screen. */
9211 for (i = 0; i < num_screens; i++) {
9212 if (screens[i].r_focus == NULL) {
9213 r = TAILQ_FIRST(&screens[i].rl);
9214 if (r != NULL)
9215 focus_region(r);
9216 }
9217 }
9218
9219 bar_draw();
9220 focus_flush();
9221 }
9222
9223 void
9224 grab_windows(void)
9225 {
9226 struct swm_region *r = NULL;
9227 xcb_window_t *wins = NULL, trans;
9228 int no;
9229 int i, j, num_screens;
9230 uint16_t state, manage, mapped;
9231
9232 xcb_query_tree_cookie_t qtc;
9233 xcb_query_tree_reply_t *qtr;
9234 xcb_get_window_attributes_cookie_t gac;
9235 xcb_get_window_attributes_reply_t *gar;
9236 xcb_get_property_cookie_t pc;
9237
9238 DNPRINTF(SWM_D_INIT, "grab_windows: begin\n");
9239 num_screens = get_screen_count();
9240 for (i = 0; i < num_screens; i++) {
9241 qtc = xcb_query_tree(conn, screens[i].root);
9242 qtr = xcb_query_tree_reply(conn, qtc, NULL);
9243 if (!qtr)
9244 continue;
9245 wins = xcb_query_tree_children(qtr);
9246 no = xcb_query_tree_children_length(qtr);
9247 /* attach windows to a region */
9248 /* normal windows */
9249 DNPRINTF(SWM_D_INIT, "grab_windows: grab top level windows.\n");
9250 for (j = 0; j < no; j++) {
9251 TAILQ_FOREACH(r, &screens[i].rl, entry) {
9252 if (r->id == wins[j]) {
9253 DNPRINTF(SWM_D_INIT, "grab_windows: "
9254 "skip %#x; region input window.\n",
9255 wins[j]);
9256 break;
9257 }
9258 }
9259
9260 if (r)
9261 continue;
9262
9263 gac = xcb_get_window_attributes(conn, wins[j]);
9264 gar = xcb_get_window_attributes_reply(conn, gac, NULL);
9265 if (!gar) {
9266 DNPRINTF(SWM_D_INIT, "grab_windows: skip %#x; "
9267 "doesn't exist.\n", wins[j]);
9268 continue;
9269 }
9270
9271 if (gar->override_redirect) {
9272 DNPRINTF(SWM_D_INIT, "grab_windows: skip %#x; "
9273 "override_redirect set.\n", wins[j]);
9274 free(gar);
9275 continue;
9276 }
9277
9278 pc = xcb_icccm_get_wm_transient_for(conn, wins[j]);
9279 if (xcb_icccm_get_wm_transient_for_reply(conn, pc,
9280 &trans, NULL)) {
9281 DNPRINTF(SWM_D_INIT, "grab_windows: skip %#x; "
9282 "is transient for %#x.\n", wins[j], trans);
9283 free(gar);
9284 continue;
9285 }
9286
9287 state = getstate(wins[j]);
9288 manage = state != XCB_ICCCM_WM_STATE_WITHDRAWN;
9289 mapped = gar->map_state != XCB_MAP_STATE_UNMAPPED;
9290 if (mapped || manage)
9291 manage_window(wins[j], mapped);
9292 free(gar);
9293 }
9294 /* transient windows */
9295 DNPRINTF(SWM_D_INIT, "grab_windows: grab transient windows.\n");
9296 for (j = 0; j < no; j++) {
9297 gac = xcb_get_window_attributes(conn, wins[j]);
9298 gar = xcb_get_window_attributes_reply(conn, gac, NULL);
9299 if (!gar) {
9300 DNPRINTF(SWM_D_INIT, "grab_windows: skip %#x; "
9301 "doesn't exist.\n", wins[j]);
9302 continue;
9303 }
9304
9305 if (gar->override_redirect) {
9306 DNPRINTF(SWM_D_INIT, "grab_windows: skip %#x; "
9307 "override_redirect set.\n", wins[j]);
9308 free(gar);
9309 continue;
9310 }
9311
9312 state = getstate(wins[j]);
9313 manage = state != XCB_ICCCM_WM_STATE_WITHDRAWN;
9314 mapped = gar->map_state != XCB_MAP_STATE_UNMAPPED;
9315 pc = xcb_icccm_get_wm_transient_for(conn, wins[j]);
9316 if (xcb_icccm_get_wm_transient_for_reply(conn, pc,
9317 &trans, NULL) && manage)
9318 manage_window(wins[j], mapped);
9319 free(gar);
9320 }
9321 free(qtr);
9322 }
9323 DNPRINTF(SWM_D_INIT, "grab_windows: done.\n");
9324 }
9325
9326 void
9327 setup_screens(void)
9328 {
9329 int i, j, k, num_screens;
9330 struct workspace *ws;
9331 uint32_t gcv[1], wa[1];
9332 const xcb_query_extension_reply_t *qep;
9333 xcb_screen_t *screen;
9334 xcb_randr_query_version_cookie_t c;
9335 xcb_randr_query_version_reply_t *r;
9336
9337 num_screens = get_screen_count();
9338 if ((screens = calloc(num_screens,
9339 sizeof(struct swm_screen))) == NULL)
9340 err(1, "setup_screens: calloc: failed to allocate memory for "
9341 "screens");
9342
9343 /* initial Xrandr setup */
9344 xrandr_support = 0;
9345 qep = xcb_get_extension_data(conn, &xcb_randr_id);
9346 if (qep->present) {
9347 c = xcb_randr_query_version(conn, 1, 1);
9348 r = xcb_randr_query_version_reply(conn, c, NULL);
9349 if (r) {
9350 if (r->major_version >= 1) {
9351 xrandr_support = 1;
9352 xrandr_eventbase = qep->first_event;
9353 }
9354 free(r);
9355 }
9356 }
9357
9358 wa[0] = cursors[XC_LEFT_PTR].cid;
9359
9360 /* map physical screens */
9361 for (i = 0; i < num_screens; i++) {
9362 DNPRINTF(SWM_D_WS, "setup_screens: init screen: %d\n", i);
9363 screens[i].idx = i;
9364 screens[i].r_focus = NULL;
9365
9366 TAILQ_INIT(&screens[i].rl);
9367 TAILQ_INIT(&screens[i].orl);
9368 if ((screen = get_screen(i)) == NULL)
9369 errx(1, "ERROR: can't get screen %d.", i);
9370 screens[i].root = screen->root;
9371
9372 /* set default colors */
9373 setscreencolor("red", i + 1, SWM_S_COLOR_FOCUS);
9374 setscreencolor("rgb:88/88/88", i + 1, SWM_S_COLOR_UNFOCUS);
9375 setscreencolor("rgb:00/80/80", i + 1, SWM_S_COLOR_BAR_BORDER);
9376 setscreencolor("rgb:00/40/40", i + 1,
9377 SWM_S_COLOR_BAR_BORDER_UNFOCUS);
9378 setscreencolor("black", i + 1, SWM_S_COLOR_BAR);
9379 setscreencolor("rgb:a0/a0/a0", i + 1, SWM_S_COLOR_BAR_FONT);
9380
9381 /* create graphics context on screen */
9382 screens[i].bar_gc = xcb_generate_id(conn);
9383 gcv[0] = 0;
9384 xcb_create_gc(conn, screens[i].bar_gc, screens[i].root,
9385 XCB_GC_GRAPHICS_EXPOSURES, gcv);
9386
9387 /* set default cursor */
9388 xcb_change_window_attributes(conn, screens[i].root,
9389 XCB_CW_CURSOR, wa);
9390
9391 /* init all workspaces */
9392 /* XXX these should be dynamically allocated too */
9393 for (j = 0; j < SWM_WS_MAX; j++) {
9394 ws = &screens[i].ws[j];
9395 ws->idx = j;
9396 ws->name = NULL;
9397 ws->bar_enabled = 1;
9398 ws->focus = NULL;
9399 ws->focus_prev = NULL;
9400 ws->focus_pending = NULL;
9401 ws->r = NULL;
9402 ws->old_r = NULL;
9403 TAILQ_INIT(&ws->winlist);
9404 TAILQ_INIT(&ws->unmanagedlist);
9405
9406 for (k = 0; layouts[k].l_stack != NULL; k++)
9407 if (layouts[k].l_config != NULL)
9408 layouts[k].l_config(ws,
9409 SWM_ARG_ID_STACKINIT);
9410 ws->cur_layout = &layouts[0];
9411 ws->cur_layout->l_string(ws);
9412 }
9413
9414 scan_xrandr(i);
9415
9416 if (xrandr_support)
9417 xcb_randr_select_input(conn, screens[i].root,
9418 XCB_RANDR_NOTIFY_MASK_SCREEN_CHANGE);
9419 }
9420 }
9421
9422 void
9423 setup_globals(void)
9424 {
9425 if ((bar_fonts = strdup(SWM_BAR_FONTS)) == NULL)
9426 err(1, "setup_globals: strdup: failed to allocate memory.");
9427
9428 if ((clock_format = strdup("%a %b %d %R %Z %Y")) == NULL)
9429 err(1, "setup_globals: strdup: failed to allocate memory.");
9430
9431 if ((syms = xcb_key_symbols_alloc(conn)) == NULL)
9432 errx(1, "unable to allocate key symbols");
9433
9434 a_state = get_atom_from_string("WM_STATE");
9435 a_prot = get_atom_from_string("WM_PROTOCOLS");
9436 a_delete = get_atom_from_string("WM_DELETE_WINDOW");
9437 a_takefocus = get_atom_from_string("WM_TAKE_FOCUS");
9438 a_utf8_string = get_atom_from_string("UTF8_STRING");
9439 a_swm_iconic = get_atom_from_string("_SWM_ICONIC");
9440 a_swm_ws = get_atom_from_string("_SWM_WS");
9441 }
9442
9443 void
9444 workaround(void)
9445 {
9446 int i, num_screens;
9447 xcb_atom_t netwmcheck;
9448 xcb_window_t root, win;
9449
9450 /* work around sun jdk bugs, code from wmname */
9451 netwmcheck = get_atom_from_string("_NET_SUPPORTING_WM_CHECK");
9452
9453 num_screens = get_screen_count();
9454 for (i = 0; i < num_screens; i++) {
9455 root = screens[i].root;
9456
9457 win = xcb_generate_id(conn);
9458 xcb_create_window(conn, XCB_COPY_FROM_PARENT, win, root,
9459 0, 0, 1, 1, 0, XCB_WINDOW_CLASS_INPUT_OUTPUT,
9460 XCB_COPY_FROM_PARENT, 0, NULL);
9461
9462 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root,
9463 netwmcheck, XCB_ATOM_WINDOW, 32, 1, &win);
9464 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win,
9465 netwmcheck, XCB_ATOM_WINDOW, 32, 1, &win);
9466 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win,
9467 ewmh[_NET_WM_NAME].atom, a_utf8_string, 8, strlen("LG3D"),
9468 "LG3D");
9469 }
9470 }
9471
9472 void
9473 shutdown_cleanup(void)
9474 {
9475 int i, num_screens;
9476
9477 /* disable alarm because the following code may not be interrupted */
9478 alarm(0);
9479 if (signal(SIGALRM, SIG_IGN) == SIG_ERR)
9480 err(1, "can't disable alarm");
9481
9482 bar_extra_stop();
9483 unmap_all();
9484
9485 cursors_cleanup();
9486
9487 teardown_ewmh();
9488
9489 num_screens = get_screen_count();
9490 for (i = 0; i < num_screens; ++i) {
9491 if (screens[i].bar_gc != 0)
9492 xcb_free_gc(conn, screens[i].bar_gc);
9493 if (!bar_font_legacy)
9494 XftColorFree(display, DefaultVisual(display, i),
9495 DefaultColormap(display, i), &bar_font_color);
9496 }
9497
9498 if (bar_font_legacy)
9499 XFreeFontSet(display, bar_fs);
9500 else {
9501 XftFontClose(display, bar_font);
9502 }
9503
9504 xcb_key_symbols_free(syms);
9505 xcb_flush(conn);
9506 xcb_disconnect(conn);
9507 }
9508
9509 void
9510 event_error(xcb_generic_error_t *e)
9511 {
9512 (void)e;
9513
9514 DNPRINTF(SWM_D_EVENT, "event_error: %s(%u) from %s(%u), sequence: %u, "
9515 "resource_id: %u, minor_code: %u\n",
9516 xcb_event_get_error_label(e->error_code), e->error_code,
9517 xcb_event_get_request_label(e->major_code), e->major_code,
9518 e->sequence, e->resource_id, e->minor_code);
9519 }
9520
9521 void
9522 event_handle(xcb_generic_event_t *evt)
9523 {
9524 uint8_t type = XCB_EVENT_RESPONSE_TYPE(evt);
9525
9526 DNPRINTF(SWM_D_EVENT, "XCB Event: %s(%d), seq %u\n",
9527 xcb_event_get_label(XCB_EVENT_RESPONSE_TYPE(evt)),
9528 XCB_EVENT_RESPONSE_TYPE(evt), evt->sequence);
9529
9530 switch (type) {
9531 #define EVENT(type, callback) case type: callback((void *)evt); return
9532 EVENT(0, event_error);
9533 EVENT(XCB_BUTTON_PRESS, buttonpress);
9534 /*EVENT(XCB_BUTTON_RELEASE, buttonpress);*/
9535 /*EVENT(XCB_CIRCULATE_NOTIFY, );*/
9536 /*EVENT(XCB_CIRCULATE_REQUEST, );*/
9537 EVENT(XCB_CLIENT_MESSAGE, clientmessage);
9538 /*EVENT(XCB_COLORMAP_NOTIFY, );*/
9539 EVENT(XCB_CONFIGURE_NOTIFY, configurenotify);
9540 EVENT(XCB_CONFIGURE_REQUEST, configurerequest);
9541 /*EVENT(XCB_CREATE_NOTIFY, );*/
9542 EVENT(XCB_DESTROY_NOTIFY, destroynotify);
9543 EVENT(XCB_ENTER_NOTIFY, enternotify);
9544 EVENT(XCB_EXPOSE, expose);
9545 #ifdef SWM_DEBUG
9546 EVENT(XCB_FOCUS_IN, focusin);
9547 EVENT(XCB_FOCUS_OUT, focusout);
9548 #endif
9549 /*EVENT(XCB_GRAPHICS_EXPOSURE, );*/
9550 /*EVENT(XCB_GRAVITY_NOTIFY, );*/
9551 EVENT(XCB_KEY_PRESS, keypress);
9552 /*EVENT(XCB_KEY_RELEASE, keypress);*/
9553 /*EVENT(XCB_KEYMAP_NOTIFY, );*/
9554 #ifdef SWM_DEBUG
9555 EVENT(XCB_LEAVE_NOTIFY, leavenotify);
9556 #endif
9557 EVENT(XCB_MAP_NOTIFY, mapnotify);
9558 EVENT(XCB_MAP_REQUEST, maprequest);
9559 EVENT(XCB_MAPPING_NOTIFY, mappingnotify);
9560 EVENT(XCB_MOTION_NOTIFY, motionnotify);
9561 /*EVENT(XCB_NO_EXPOSURE, );*/
9562 EVENT(XCB_PROPERTY_NOTIFY, propertynotify);
9563 /*EVENT(XCB_REPARENT_NOTIFY, );*/
9564 /*EVENT(XCB_RESIZE_REQUEST, );*/
9565 /*EVENT(XCB_SELECTION_CLEAR, );*/
9566 /*EVENT(XCB_SELECTION_NOTIFY, );*/
9567 /*EVENT(XCB_SELECTION_REQUEST, );*/
9568 EVENT(XCB_UNMAP_NOTIFY, unmapnotify);
9569 /*EVENT(XCB_VISIBILITY_NOTIFY, visibilitynotify);*/
9570 #undef EVENT
9571 }
9572 if (type - xrandr_eventbase == XCB_RANDR_SCREEN_CHANGE_NOTIFY)
9573 screenchange((void *)evt);
9574 }
9575
9576 int
9577 main(int argc, char *argv[])
9578 {
9579 struct swm_region *r;
9580 char conf[PATH_MAX], *cfile = NULL;
9581 struct stat sb;
9582 int xfd, i, num_screens, startup = 1;
9583 struct sigaction sact;
9584 xcb_generic_event_t *evt;
9585 struct timeval tv;
9586 fd_set rd;
9587 int rd_max;
9588 int stdin_ready = 0;
9589 int num_readable;
9590
9591 /* suppress unused warning since var is needed */
9592 (void)argc;
9593
9594 time_started = time(NULL);
9595
9596 start_argv = argv;
9597 warnx("Welcome to spectrwm V%s Build: %s", SPECTRWM_VERSION, buildstr);
9598 if (!setlocale(LC_CTYPE, "") || !setlocale(LC_TIME, ""))
9599 warnx("no locale support");
9600
9601 /* handle some signals */
9602 bzero(&sact, sizeof(sact));
9603 sigemptyset(&sact.sa_mask);
9604 sact.sa_flags = 0;
9605 sact.sa_handler = sighdlr;
9606 sigaction(SIGINT, &sact, NULL);
9607 sigaction(SIGQUIT, &sact, NULL);
9608 sigaction(SIGTERM, &sact, NULL);
9609 sigaction(SIGHUP, &sact, NULL);
9610
9611 sact.sa_handler = sighdlr;
9612 sact.sa_flags = SA_NOCLDSTOP;
9613 sigaction(SIGCHLD, &sact, NULL);
9614
9615 if (!(display = XOpenDisplay(0)))
9616 errx(1, "can not open display");
9617
9618 conn = XGetXCBConnection(display);
9619 if (xcb_connection_has_error(conn))
9620 errx(1, "can not get XCB connection");
9621
9622 XSetEventQueueOwner(display, XCBOwnsEventQueue);
9623
9624 xcb_prefetch_extension_data(conn, &xcb_randr_id);
9625 xfd = xcb_get_file_descriptor(conn);
9626
9627 /* look for local and global conf file */
9628 pwd = getpwuid(getuid());
9629 if (pwd == NULL)
9630 errx(1, "invalid user: %d", getuid());
9631
9632 xcb_grab_server(conn);
9633 xcb_aux_sync(conn);
9634
9635 /* flush all events */
9636 while ((evt = xcb_poll_for_event(conn))) {
9637 if (XCB_EVENT_RESPONSE_TYPE(evt) == 0)
9638 event_handle(evt);
9639 free(evt);
9640 }
9641
9642 if (enable_wm() != 0)
9643 errx(1, "another window manager is currently running");
9644
9645 /* Load Xcursors and/or cursorfont glyph cursors. */
9646 cursors_load();
9647
9648 xcb_aux_sync(conn);
9649
9650 setup_globals();
9651 setup_screens();
9652 setup_keys();
9653 setup_quirks();
9654 setup_spawn();
9655
9656 /* load config */
9657 for (i = 0; ; i++) {
9658 conf[0] = '\0';
9659 switch (i) {
9660 case 0:
9661 /* ~ */
9662 snprintf(conf, sizeof conf, "%s/.%s",
9663 pwd->pw_dir, SWM_CONF_FILE);
9664 break;
9665 case 1:
9666 /* global */
9667 snprintf(conf, sizeof conf, "/etc/%s",
9668 SWM_CONF_FILE);
9669 break;
9670 case 2:
9671 /* ~ compat */
9672 snprintf(conf, sizeof conf, "%s/.%s",
9673 pwd->pw_dir, SWM_CONF_FILE_OLD);
9674 break;
9675 case 3:
9676 /* global compat */
9677 snprintf(conf, sizeof conf, "/etc/%s",
9678 SWM_CONF_FILE_OLD);
9679 break;
9680 default:
9681 goto noconfig;
9682 }
9683
9684 if (strlen(conf) && stat(conf, &sb) != -1)
9685 if (S_ISREG(sb.st_mode)) {
9686 cfile = conf;
9687 break;
9688 }
9689 }
9690 noconfig:
9691
9692 /* load conf (if any) */
9693 if (cfile)
9694 conf_load(cfile, SWM_CONF_DEFAULT);
9695
9696 validate_spawns();
9697
9698 setup_ewmh();
9699 /* set some values to work around bad programs */
9700 workaround();
9701 /* grab existing windows (before we build the bars) */
9702 grab_windows();
9703
9704 if (getenv("SWM_STARTED") == NULL)
9705 setenv("SWM_STARTED", "YES", 1);
9706
9707 /* setup all bars */
9708 num_screens = get_screen_count();
9709 for (i = 0; i < num_screens; i++)
9710 TAILQ_FOREACH(r, &screens[i].rl, entry)
9711 bar_setup(r);
9712
9713 grabkeys();
9714 stack();
9715 bar_draw();
9716
9717 xcb_ungrab_server(conn);
9718 xcb_flush(conn);
9719
9720 rd_max = xfd > STDIN_FILENO ? xfd : STDIN_FILENO;
9721
9722 while (running) {
9723 while ((evt = xcb_poll_for_event(conn))) {
9724 if (!running)
9725 goto done;
9726 event_handle(evt);
9727 free(evt);
9728 }
9729
9730 /* If just (re)started, set default focus if needed. */
9731 if (startup) {
9732 startup = 0;
9733
9734 if (focus_mode != SWM_FOCUS_FOLLOW) {
9735 r = TAILQ_FIRST(&screens[0].rl);
9736 if (r) {
9737 focus_region(r);
9738 focus_flush();
9739 }
9740 continue;
9741 }
9742 }
9743
9744 FD_ZERO(&rd);
9745
9746 if (bar_extra)
9747 FD_SET(STDIN_FILENO, &rd);
9748
9749 FD_SET(xfd, &rd);
9750 tv.tv_sec = 1;
9751 tv.tv_usec = 0;
9752 num_readable = select(rd_max + 1, &rd, NULL, NULL, &tv);
9753 if (num_readable == -1 && errno != EINTR) {
9754 DNPRINTF(SWM_D_MISC, "select failed");
9755 } else if (num_readable > 0 && FD_ISSET(STDIN_FILENO, &rd)) {
9756 stdin_ready = 1;
9757 }
9758
9759 if (restart_wm)
9760 restart(NULL, NULL);
9761
9762 if (search_resp)
9763 search_do_resp();
9764
9765 if (!running)
9766 goto done;
9767
9768 if (stdin_ready) {
9769 stdin_ready = 0;
9770 bar_extra_update();
9771 }
9772
9773 bar_draw();
9774 xcb_flush(conn);
9775 }
9776 done:
9777 shutdown_cleanup();
9778
9779 return (0);
9780 }