2 * Copyright (c) 2009-2012 Marco Peereboom <marco@peereboom.us>
3 * Copyright (c) 2009-2011 Ryan McBride <mcbride@countersiege.com>
4 * Copyright (c) 2009 Darrin Chandler <dwchandler@stilyagin.com>
5 * Copyright (c) 2009 Pierre-Yves Ritschard <pyr@spootnik.org>
6 * Copyright (c) 2010 Tuukka Kataja <stuge@xor.fi>
7 * Copyright (c) 2011 Jason L. Wright <jason@thought.net>
8 * Copyright (c) 2011-2012 Reginald Kennedy <rk@rejii.com>
9 * Copyright (c) 2011-2012 Lawrence Teo <lteo@lteo.net>
10 * Copyright (c) 2011-2012 Tiago Cunha <tcunha@gmx.com>
11 * Copyright (c) 2012 David Hill <dhill@mindcry.org>
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.
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.
26 * Much code and ideas taken from dwm under the following license:
27 * MIT/X Consortium License
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>
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:
46 * The above copyright notice and this permission notice shall be included in
47 * all copies or substantial portions of the Software.
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.
59 #include <sys/types.h>
63 #include <sys/queue.h>
64 #include <sys/param.h>
65 #include <sys/select.h>
66 #if defined(__linux__)
68 #elif defined(__OpenBSD__)
70 #elif defined(__FreeBSD__)
91 #include <X11/cursorfont.h>
92 #include <X11/extensions/Xrandr.h>
93 #include <X11/Xft/Xft.h>
94 #include <X11/Xlib-xcb.h>
95 #include <xcb/xcb_atom.h>
96 #include <xcb/xcb_aux.h>
97 #include <xcb/xcb_event.h>
98 #include <xcb/xcb_icccm.h>
99 #include <xcb/xcb_keysyms.h>
100 #include <xcb/xtest.h>
101 #include <xcb/randr.h>
109 #ifdef SPECTRWM_BUILDSTR
110 static const char *buildstr = SPECTRWM_BUILDSTR;
112 static const char *buildstr = SPECTRWM_VERSION;
115 #if !defined(__CYGWIN__) /* cygwin chokes on xrandr stuff */
117 # error XRandR versions less than 1.0 are not supported
120 # if RANDR_MAJOR >= 1
121 # if RANDR_MINOR >= 2
122 # define SWM_XRR_HAS_CRTC
125 #endif /* __CYGWIN__ */
127 #ifndef XCB_ICCCM_NUM_WM_HINTS_ELEMENTS
128 #define XCB_ICCCM_SIZE_HINT_P_MIN_SIZE XCB_SIZE_HINT_P_MIN_SIZE
129 #define XCB_ICCCM_SIZE_HINT_P_MAX_SIZE XCB_SIZE_HINT_P_MAX_SIZE
130 #define XCB_ICCCM_SIZE_HINT_P_RESIZE_INC XCB_SIZE_HINT_P_RESIZE_INC
131 #define XCB_ICCCM_WM_HINT_X_URGENCY XCB_WM_HINT_X_URGENCY
132 #define XCB_ICCCM_WM_STATE_ICONIC XCB_WM_STATE_ICONIC
133 #define XCB_ICCCM_WM_STATE_WITHDRAWN XCB_WM_STATE_WITHDRAWN
134 #define XCB_ICCCM_WM_STATE_NORMAL XCB_WM_STATE_NORMAL
135 #define xcb_icccm_get_text_property_reply_t xcb_get_text_property_reply_t
136 #define xcb_icccm_get_text_property_reply_wipe xcb_get_text_property_reply_wipe
137 #define xcb_icccm_get_wm_class xcb_get_wm_class
138 #define xcb_icccm_get_wm_class_reply xcb_get_wm_class_reply
139 #define xcb_icccm_get_wm_class_reply_t xcb_get_wm_class_reply_t
140 #define xcb_icccm_get_wm_class_reply_wipe xcb_get_wm_class_reply_wipe
141 #define xcb_icccm_get_wm_hints xcb_get_wm_hints
142 #define xcb_icccm_get_wm_hints_reply xcb_get_wm_hints_reply
143 #define xcb_icccm_get_wm_name xcb_get_wm_name
144 #define xcb_icccm_get_wm_name_reply xcb_get_wm_name_reply
145 #define xcb_icccm_get_wm_normal_hints xcb_get_wm_normal_hints
146 #define xcb_icccm_get_wm_normal_hints_reply xcb_get_wm_normal_hints_reply
147 #define xcb_icccm_get_wm_protocols xcb_get_wm_protocols
148 #define xcb_icccm_get_wm_protocols_reply xcb_get_wm_protocols_reply
149 #define xcb_icccm_get_wm_protocols_reply_t xcb_get_wm_protocols_reply_t
150 #define xcb_icccm_get_wm_protocols_reply_wipe xcb_get_wm_protocols_reply_wipe
151 #define xcb_icccm_get_wm_transient_for xcb_get_wm_transient_for
152 #define xcb_icccm_get_wm_transient_for_reply xcb_get_wm_transient_for_reply
153 #define xcb_icccm_wm_hints_t xcb_wm_hints_t
156 /*#define SWM_DEBUG*/
158 #define DPRINTF(x...) do { \
160 fprintf(stderr, x); \
162 #define DNPRINTF(n,x...) do { \
163 if (swm_debug & n) { \
164 fprintf(stderr, "%ld ", (long)(time(NULL) - time_started)); \
165 fprintf(stderr, x); \
168 #define SWM_D_MISC 0x0001
169 #define SWM_D_EVENT 0x0002
170 #define SWM_D_WS 0x0004
171 #define SWM_D_FOCUS 0x0008
172 #define SWM_D_MOVE 0x0010
173 #define SWM_D_STACK 0x0020
174 #define SWM_D_MOUSE 0x0040
175 #define SWM_D_PROP 0x0080
176 #define SWM_D_CLASS 0x0100
177 #define SWM_D_KEY 0x0200
178 #define SWM_D_QUIRK 0x0400
179 #define SWM_D_SPAWN 0x0800
180 #define SWM_D_EVENTQ 0x1000
181 #define SWM_D_CONF 0x2000
182 #define SWM_D_BAR 0x4000
183 #define SWM_D_INIT 0x8000
185 u_int32_t swm_debug = 0
204 #define DPRINTF(x...)
205 #define DNPRINTF(n,x...)
208 /* convert 8-bit to 16-bit */
209 #define RGB_8_TO_16(col) ((col) << 8) + (col)
211 #define PIXEL_TO_XRENDERCOLOR(px, xrc) \
212 xrc.red = RGB_8_TO_16((px) >> 16 & 0xff); \
213 xrc.green = RGB_8_TO_16((px) >> 8 & 0xff); \
214 xrc.blue = RGB_8_TO_16((px) & 0xff); \
217 #define LENGTH(x) (int)(sizeof (x) / sizeof (x)[0])
218 #define MODKEY XCB_MOD_MASK_1
219 #define CLEANMASK(mask) ((mask) & ~(numlockmask | XCB_MOD_MASK_LOCK))
220 #define BUTTONMASK (XCB_EVENT_MASK_BUTTON_PRESS | \
221 XCB_EVENT_MASK_BUTTON_RELEASE)
222 #define MOUSEMASK (BUTTONMASK|XCB_EVENT_MASK_POINTER_MOTION)
223 #define SWM_PROPLEN (16)
224 #define SWM_FUNCNAME_LEN (32)
225 #define SWM_KEYS_LEN (255)
226 #define SWM_QUIRK_LEN (64)
227 #define X(r) (r)->g.x
228 #define Y(r) (r)->g.y
229 #define WIDTH(r) (r)->g.w
230 #define HEIGHT(r) (r)->g.h
231 #define BORDER(w) ((w)->bordered ? border_width : 0)
232 #define MAX_X(r) ((r)->g.x + (r)->g.w)
233 #define MAX_Y(r) ((r)->g.y + (r)->g.h)
234 #define SH_MIN(w) (w)->sh.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE
235 #define SH_MIN_W(w) (w)->sh.min_width
236 #define SH_MIN_H(w) (w)->sh.min_height
237 #define SH_MAX(w) (w)->sh.flags & XCB_ICCCM_SIZE_HINT_P_MAX_SIZE
238 #define SH_MAX_W(w) (w)->sh.max_width
239 #define SH_MAX_H(w) (w)->sh.max_height
240 #define SH_INC(w) (w)->sh.flags & XCB_ICCCM_SIZE_HINT_P_RESIZE_INC
241 #define SH_INC_W(w) (w)->sh.width_inc
242 #define SH_INC_H(w) (w)->sh.height_inc
243 #define SWM_MAX_FONT_STEPS (3)
244 #define WINID(w) ((w) ? (w)->id : 0)
245 #define YESNO(x) ((x) ? "yes" : "no")
247 #define SWM_FOCUS_DEFAULT (0)
248 #define SWM_FOCUS_SYNERGY (1)
249 #define SWM_FOCUS_FOLLOW (2)
251 #define SWM_CONF_DEFAULT (0)
252 #define SWM_CONF_KEYMAPPING (1)
255 #define SWM_LIB "/usr/local/lib/libswmhack.so"
262 xcb_atom_t a_takefocus;
264 xcb_atom_t a_netwmname;
265 xcb_atom_t a_utf8_string;
267 xcb_atom_t a_swm_iconic;
269 volatile sig_atomic_t running = 1;
270 volatile sig_atomic_t restart_wm = 0;
272 /*int last_focus_event = FocusOut;*/
276 int xrandr_eventbase;
277 unsigned int numlockmask = 0;
280 xcb_connection_t *conn;
281 xcb_key_symbols_t *syms;
284 int cycle_visible = 0;
286 int font_adjusted = 0;
287 unsigned int mod_key = MODKEY;
290 struct swm_region *search_r;
291 int select_list_pipe[2];
292 int select_resp_pipe[2];
294 volatile sig_atomic_t search_resp;
295 int search_resp_action;
297 struct search_window {
298 TAILQ_ENTRY(search_window) entry;
302 xcb_window_t indicator;
304 TAILQ_HEAD(search_winlist, search_window);
305 struct search_winlist search_wl;
310 SWM_SEARCH_UNICONIFY,
311 SWM_SEARCH_NAME_WORKSPACE,
312 SWM_SEARCH_SEARCH_WORKSPACE,
313 SWM_SEARCH_SEARCH_WINDOW
316 #define SWM_STACK_TOP (0)
317 #define SWM_STACK_BOTTOM (1)
318 #define SWM_STACK_ABOVE (2)
319 #define SWM_STACK_BELOW (3)
322 double dialog_ratio = 0.6;
324 #define SWM_BAR_MAX (256)
325 #define SWM_BAR_JUSTIFY_LEFT (0)
326 #define SWM_BAR_JUSTIFY_CENTER (1)
327 #define SWM_BAR_JUSTIFY_RIGHT (2)
328 #define SWM_BAR_OFFSET (4)
329 #define SWM_BAR_FONTS "-*-terminus-medium-*-*-*-12-*-*-*-*-*-*-*," \
330 "-*-profont-*-*-*-*-12-*-*-*-*-*-*-*," \
331 "-*-times-medium-r-*-*-12-*-*-*-*-*-*-*," \
332 "-misc-fixed-medium-r-*-*-12-*-*-*-*-*-*-*," \
333 "-*-*-*-r-*-*-*-*-*-*-*-*-*-*"
335 #ifdef X_HAVE_UTF8_STRING
336 #define DRAWSTRING(x...) Xutf8DrawString(x)
338 #define DRAWSTRING(x...) XmbDrawString(x)
341 char *bar_argv[] = { NULL, NULL };
343 unsigned char bar_ext[SWM_BAR_MAX];
344 char bar_vertext[SWM_BAR_MAX];
346 sig_atomic_t bar_alarm = 0;
349 int bar_border_width = 1;
350 int bar_at_bottom = 0;
352 int bar_extra_running = 0;
355 int bar_justify = SWM_BAR_JUSTIFY_LEFT;
356 char *bar_format = NULL;
357 int stack_enabled = 1;
358 int clock_enabled = 1;
359 int urgent_enabled = 0;
360 char *clock_format = NULL;
361 int title_name_enabled = 0;
362 int title_class_enabled = 0;
363 int window_name_enabled = 0;
364 int focus_mode = SWM_FOCUS_DEFAULT;
365 int focus_close = SWM_STACK_BELOW;
366 int focus_close_wrap = 1;
367 int focus_default = SWM_STACK_TOP;
368 int spawn_position = SWM_STACK_TOP;
369 int disable_border = 0;
370 int border_width = 1;
371 int verbose_layout = 0;
375 XFontSetExtents *bar_fs_extents;
377 int bar_font_legacy = 1;
379 XftColor bar_font_color;
382 /* layout manager data */
383 struct swm_geometry {
396 struct swm_geometry g;
399 /* virtual "screens" */
401 TAILQ_ENTRY(swm_region) entry;
402 struct swm_geometry g;
403 struct workspace *ws; /* current workspace on this region */
404 struct workspace *ws_prior; /* prior workspace on this region */
405 struct swm_screen *s; /* screen idx */
408 TAILQ_HEAD(swm_region_list, swm_region);
411 TAILQ_ENTRY(ws_win) entry;
413 xcb_window_t transient;
414 struct ws_win *child_trans; /* transient child window */
415 struct swm_geometry g; /* current geometry */
416 struct swm_geometry g_float; /* region coordinates */
417 int g_floatvalid; /* g_float geometry validity */
418 int floatmaxed; /* whether maxed by max_stack */
423 unsigned int ewmh_flags;
424 int font_size_boundary[SWM_MAX_FONT_STEPS];
430 unsigned long quirks;
431 struct workspace *ws; /* always valid */
432 struct swm_screen *s; /* always valid, never changes */
433 xcb_get_geometry_reply_t *wa;
435 xcb_icccm_get_wm_class_reply_t ch;
436 xcb_icccm_wm_hints_t hints;
438 TAILQ_HEAD(ws_win_list, ws_win);
442 TAILQ_ENTRY(pid_e) entry;
446 TAILQ_HEAD(pid_list, pid_e);
447 struct pid_list pidlist = TAILQ_HEAD_INITIALIZER(pidlist);
449 /* layout handlers */
451 void vertical_config(struct workspace *, int);
452 void vertical_stack(struct workspace *, struct swm_geometry *);
453 void horizontal_config(struct workspace *, int);
454 void horizontal_stack(struct workspace *, struct swm_geometry *);
455 void max_stack(struct workspace *, struct swm_geometry *);
456 void plain_stacker(struct workspace *);
457 void fancy_stacker(struct workspace *);
460 void (*l_stack)(struct workspace *, struct swm_geometry *);
461 void (*l_config)(struct workspace *, int);
463 #define SWM_L_FOCUSPREV (1<<0)
464 #define SWM_L_MAPONFOCUS (1<<1)
465 void (*l_string)(struct workspace *);
467 /* stack, configure */
468 { vertical_stack, vertical_config, 0, plain_stacker },
469 { horizontal_stack, horizontal_config, 0, plain_stacker },
471 SWM_L_MAPONFOCUS | SWM_L_FOCUSPREV, plain_stacker },
472 { NULL, NULL, 0, NULL },
475 /* position of max_stack mode in the layouts array, index into layouts! */
476 #define SWM_V_STACK (0)
477 #define SWM_H_STACK (1)
478 #define SWM_MAX_STACK (2)
480 #define SWM_H_SLICE (32)
481 #define SWM_V_SLICE (32)
483 /* define work spaces */
485 int idx; /* workspace index */
486 char *name; /* workspace name */
487 int always_raise; /* raise windows on focus */
488 struct layout *cur_layout; /* current layout handlers */
489 struct ws_win *focus; /* may be NULL */
490 struct ws_win *focus_prev; /* may be NULL */
491 struct swm_region *r; /* may be NULL */
492 struct swm_region *old_r; /* may be NULL */
493 struct ws_win_list winlist; /* list of windows in ws */
494 struct ws_win_list unmanagedlist; /* list of dead windows in ws */
495 char stacker[10]; /* display stacker and layout */
499 int horizontal_msize;
501 int horizontal_stacks;
512 SWM_S_COLOR_BAR_BORDER,
513 SWM_S_COLOR_BAR_FONT,
519 /* physical screen mapping */
520 #define SWM_WS_MAX (22) /* hard limit */
521 int workspace_limit = 10; /* soft limit */
524 int idx; /* screen index */
525 struct swm_region_list rl; /* list of regions on this screen */
526 struct swm_region_list orl; /* list of old regions */
528 struct workspace ws[SWM_WS_MAX];
534 } c[SWM_S_COLOR_MAX];
536 xcb_gcontext_t bar_gc;
539 struct swm_screen *screens;
541 /* args to functions */
544 #define SWM_ARG_ID_FOCUSNEXT (0)
545 #define SWM_ARG_ID_FOCUSPREV (1)
546 #define SWM_ARG_ID_FOCUSMAIN (2)
547 #define SWM_ARG_ID_FOCUSCUR (4)
548 #define SWM_ARG_ID_SWAPNEXT (10)
549 #define SWM_ARG_ID_SWAPPREV (11)
550 #define SWM_ARG_ID_SWAPMAIN (12)
551 #define SWM_ARG_ID_MOVELAST (13)
552 #define SWM_ARG_ID_MASTERSHRINK (20)
553 #define SWM_ARG_ID_MASTERGROW (21)
554 #define SWM_ARG_ID_MASTERADD (22)
555 #define SWM_ARG_ID_MASTERDEL (23)
556 #define SWM_ARG_ID_FLIPLAYOUT (24)
557 #define SWM_ARG_ID_STACKRESET (30)
558 #define SWM_ARG_ID_STACKINIT (31)
559 #define SWM_ARG_ID_CYCLEWS_UP (40)
560 #define SWM_ARG_ID_CYCLEWS_DOWN (41)
561 #define SWM_ARG_ID_CYCLESC_UP (42)
562 #define SWM_ARG_ID_CYCLESC_DOWN (43)
563 #define SWM_ARG_ID_CYCLEWS_UP_ALL (44)
564 #define SWM_ARG_ID_CYCLEWS_DOWN_ALL (45)
565 #define SWM_ARG_ID_STACKINC (50)
566 #define SWM_ARG_ID_STACKDEC (51)
567 #define SWM_ARG_ID_SS_ALL (60)
568 #define SWM_ARG_ID_SS_WINDOW (61)
569 #define SWM_ARG_ID_DONTCENTER (70)
570 #define SWM_ARG_ID_CENTER (71)
571 #define SWM_ARG_ID_KILLWINDOW (80)
572 #define SWM_ARG_ID_DELETEWINDOW (81)
573 #define SWM_ARG_ID_WIDTHGROW (90)
574 #define SWM_ARG_ID_WIDTHSHRINK (91)
575 #define SWM_ARG_ID_HEIGHTGROW (92)
576 #define SWM_ARG_ID_HEIGHTSHRINK (93)
577 #define SWM_ARG_ID_MOVEUP (100)
578 #define SWM_ARG_ID_MOVEDOWN (101)
579 #define SWM_ARG_ID_MOVELEFT (102)
580 #define SWM_ARG_ID_MOVERIGHT (103)
586 TAILQ_ENTRY(quirk) entry;
590 #define SWM_Q_FLOAT (1<<0) /* float this window */
591 #define SWM_Q_TRANSSZ (1<<1) /* transiend window size too small */
592 #define SWM_Q_ANYWHERE (1<<2) /* don't position this window */
593 #define SWM_Q_XTERM_FONTADJ (1<<3) /* adjust xterm fonts when resizing */
594 #define SWM_Q_FULLSCREEN (1<<4) /* remove border */
595 #define SWM_Q_FOCUSPREV (1<<5) /* focus on caller */
597 TAILQ_HEAD(quirk_list, quirk);
598 struct quirk_list quirks = TAILQ_HEAD_INITIALIZER(quirks);
601 * Supported EWMH hints should be added to
602 * both the enum and the ewmh array
607 _NET_MOVERESIZE_WINDOW,
608 _NET_WM_ACTION_CLOSE,
609 _NET_WM_ACTION_FULLSCREEN,
611 _NET_WM_ACTION_RESIZE,
612 _NET_WM_ALLOWED_ACTIONS,
616 _NET_WM_STATE_FULLSCREEN,
617 _NET_WM_STATE_HIDDEN,
618 _NET_WM_STATE_MAXIMIZED_HORZ,
619 _NET_WM_STATE_MAXIMIZED_VERT,
620 _NET_WM_STATE_SKIP_PAGER,
621 _NET_WM_STATE_SKIP_TASKBAR,
623 _NET_WM_WINDOW_TYPE_DIALOG,
624 _NET_WM_WINDOW_TYPE_DOCK,
625 _NET_WM_WINDOW_TYPE_NORMAL,
626 _NET_WM_WINDOW_TYPE_SPLASH,
627 _NET_WM_WINDOW_TYPE_TOOLBAR,
628 _NET_WM_WINDOW_TYPE_UTILITY,
629 _SWM_WM_STATE_MANUAL,
636 } ewmh[SWM_EWMH_HINT_MAX] = {
637 /* must be in same order as in the enum */
638 {"_NET_ACTIVE_WINDOW", XCB_ATOM_NONE},
639 {"_NET_CLOSE_WINDOW", XCB_ATOM_NONE},
640 {"_NET_MOVERESIZE_WINDOW", XCB_ATOM_NONE},
641 {"_NET_WM_ACTION_CLOSE", XCB_ATOM_NONE},
642 {"_NET_WM_ACTION_FULLSCREEN", XCB_ATOM_NONE},
643 {"_NET_WM_ACTION_MOVE", XCB_ATOM_NONE},
644 {"_NET_WM_ACTION_RESIZE", XCB_ATOM_NONE},
645 {"_NET_WM_ALLOWED_ACTIONS", XCB_ATOM_NONE},
646 {"_NET_WM_NAME", XCB_ATOM_NONE},
647 {"_NET_WM_STATE", XCB_ATOM_NONE},
648 {"_NET_WM_STATE_ABOVE", XCB_ATOM_NONE},
649 {"_NET_WM_STATE_FULLSCREEN", XCB_ATOM_NONE},
650 {"_NET_WM_STATE_HIDDEN", XCB_ATOM_NONE},
651 {"_NET_WM_STATE_MAXIMIZED_HORZ", XCB_ATOM_NONE},
652 {"_NET_WM_STATE_MAXIMIZED_VERT", XCB_ATOM_NONE},
653 {"_NET_WM_STATE_SKIP_PAGER", XCB_ATOM_NONE},
654 {"_NET_WM_STATE_SKIP_TASKBAR", XCB_ATOM_NONE},
655 {"_NET_WM_WINDOW_TYPE", XCB_ATOM_NONE},
656 {"_NET_WM_WINDOW_TYPE_DIALOG", XCB_ATOM_NONE},
657 {"_NET_WM_WINDOW_TYPE_DOCK", XCB_ATOM_NONE},
658 {"_NET_WM_WINDOW_TYPE_NORMAL", XCB_ATOM_NONE},
659 {"_NET_WM_WINDOW_TYPE_SPLASH", XCB_ATOM_NONE},
660 {"_NET_WM_WINDOW_TYPE_TOOLBAR", XCB_ATOM_NONE},
661 {"_NET_WM_WINDOW_TYPE_UTILITY", XCB_ATOM_NONE},
662 {"_SWM_WM_STATE_MANUAL", XCB_ATOM_NONE},
665 /* function prototypes */
666 void buttonpress(xcb_button_press_event_t *);
667 void check_conn(void);
668 void clientmessage(xcb_client_message_event_t *);
669 int conf_load(char *, int);
670 void configurenotify(xcb_configure_notify_event_t *);
671 void configurerequest(xcb_configure_request_event_t *);
672 void constrain_window(struct ws_win *, struct swm_region *, int);
673 void destroynotify(xcb_destroy_notify_event_t *);
675 void enternotify(xcb_enter_notify_event_t *);
676 void event_error(xcb_generic_error_t *);
677 void event_handle(xcb_generic_event_t *);
678 char *expand_tilde(char *);
679 void expose(xcb_expose_event_t *);
680 struct ws_win *find_window(xcb_window_t);
681 int floating_toggle_win(struct ws_win *);
682 void focus(struct swm_region *, union arg *);
683 void focus_magic(struct ws_win *);
685 void focusin(xcb_focus_in_event_t *);
687 xcb_atom_t get_atom_from_string(const char *);
689 char *get_atom_name(xcb_atom_t);
690 char *get_notify_detail_label(uint8_t);
691 char *get_notify_mode_label(uint8_t);
693 xcb_screen_t *get_screen(int);
694 char *get_win_name(xcb_window_t);
695 uint32_t getstate(xcb_window_t);
696 void grabbuttons(struct ws_win *, int);
697 void keypress(xcb_key_press_event_t *);
699 void leavenotify(xcb_leave_notify_event_t *);
701 void map_window_raised(xcb_window_t);
702 void mapnotify(xcb_map_notify_event_t *);
703 void mappingnotify(xcb_mapping_notify_event_t *);
704 void maprequest(xcb_map_request_event_t *);
705 void new_region(struct swm_screen *, int, int, int, int);
706 int parse_rgb(const char *, uint16_t *, uint16_t *, uint16_t *);
707 void propertynotify(xcb_property_notify_event_t *);
708 void spawn_select(struct swm_region *, union arg *, char *, int *);
709 void screenchange(xcb_randr_screen_change_notify_event_t *);
710 void shutdown_cleanup(void);
711 void store_float_geom(struct ws_win *, struct swm_region *);
712 void unmanage_window(struct ws_win *);
713 void unmapnotify(xcb_unmap_notify_event_t *);
714 void update_window(struct ws_win *);
715 /*void visibilitynotify(xcb_visibility_notify_event_t *);*/
718 expand_tilde(char *s)
727 errx(1, "expand_tilde: NULL string.");
736 if ((max = sysconf(_SC_LOGIN_NAME_MAX)) == -1)
737 errx(1, "expand_tilde: sysconf");
739 if ((user = calloc(1, max + 1)) == NULL)
740 errx(1, "expand_tilde: calloc");
742 for (i = 0; s[i] != '/' && s[i] != '\0'; ++i)
747 ppwd = strlen(user) == 0 ? getpwuid(getuid()) : getpwnam(user);
751 if (asprintf(&result, "%s%s", ppwd->pw_dir, s) == -1)
755 errx(1, "expand_tilde: failed to allocate memory.");
761 parse_rgb(const char *rgb, uint16_t *rr, uint16_t *gg, uint16_t *bb)
763 unsigned int tmpr, tmpg, tmpb;
765 if (sscanf(rgb, "rgb:%x/%x/%x", &tmpr, &tmpg, &tmpb) != 3)
768 *rr = RGB_8_TO_16(tmpr);
769 *gg = RGB_8_TO_16(tmpg);
770 *bb = RGB_8_TO_16(tmpb);
776 get_screen(int screen)
778 const xcb_setup_t *r;
779 xcb_screen_iterator_t iter;
781 if ((r = xcb_get_setup(conn)) == NULL) {
782 DNPRINTF(SWM_D_MISC, "get_screen: xcb_get_setup\n");
786 iter = xcb_setup_roots_iterator(r);
787 for (; iter.rem; --screen, xcb_screen_next(&iter))
797 xcb_get_input_focus_cookie_t c;
798 xcb_get_input_focus_reply_t *r;
801 c = xcb_get_input_focus(conn);
803 r = xcb_get_input_focus_reply(conn, c, NULL);
809 map_window_raised(xcb_window_t win)
811 uint32_t val = XCB_STACK_MODE_ABOVE;
813 xcb_configure_window(conn, win,
814 XCB_CONFIG_WINDOW_STACK_MODE, &val);
816 xcb_map_window(conn, win);
820 get_atom_from_string(const char *str)
822 xcb_intern_atom_cookie_t c;
823 xcb_intern_atom_reply_t *r;
826 c = xcb_intern_atom(conn, 0, strlen(str), str);
827 r = xcb_intern_atom_reply(conn, c, NULL);
835 return (XCB_ATOM_NONE);
839 update_iconic(struct ws_win *win, int newv)
846 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
847 a_swm_iconic, XCB_ATOM_INTEGER, 32, 1, &v);
849 xcb_delete_property(conn, win->id, a_swm_iconic);
853 get_iconic(struct ws_win *win)
856 xcb_get_property_reply_t *pr = NULL;
859 pr = xcb_get_property_reply(conn,
860 xcb_get_property(conn, 0, win->id, a_swm_iconic,
861 XCB_ATOM_INTEGER, 0, 1), NULL);
864 if (pr->type != XCB_ATOM_INTEGER || pr->format != 32)
866 v = *((int32_t *)xcb_get_property_value(pr));
877 int i, j, num_screens;
879 sup_list = get_atom_from_string("_NET_SUPPORTED");
881 for (i = 0; i < LENGTH(ewmh); i++)
882 ewmh[i].atom = get_atom_from_string(ewmh[i].name);
884 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
885 for (i = 0; i < num_screens; i++) {
886 /* Support check window will be created by workaround(). */
888 /* Report supported atoms */
889 xcb_delete_property(conn, screens[i].root, sup_list);
890 for (j = 0; j < LENGTH(ewmh); j++)
891 xcb_change_property(conn, XCB_PROP_MODE_APPEND,
892 screens[i].root, sup_list, XCB_ATOM_ATOM, 32, 1,
901 xcb_atom_t sup_check, sup_list;
903 xcb_get_property_cookie_t pc;
904 xcb_get_property_reply_t *pr;
906 sup_check = get_atom_from_string("_NET_SUPPORTING_WM_CHECK");
907 sup_list = get_atom_from_string("_NET_SUPPORTED");
908 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
910 for (i = 0; i < num_screens; i++) {
911 /* Get the support check window and destroy it */
912 pc = xcb_get_property(conn, 0, screens[i].root, sup_check,
913 XCB_ATOM_WINDOW, 0, 1);
914 pr = xcb_get_property_reply(conn, pc, NULL);
917 if (pr->format == sup_check) {
918 id = *((xcb_window_t *)xcb_get_property_value(pr));
920 xcb_destroy_window(conn, id);
921 xcb_delete_property(conn, screens[i].root, sup_check);
922 xcb_delete_property(conn, screens[i].root, sup_list);
929 ewmh_autoquirk(struct ws_win *win)
933 xcb_get_property_cookie_t c;
934 xcb_get_property_reply_t *r;
936 c = xcb_get_property(conn, 0, win->id,
937 ewmh[_NET_WM_WINDOW_TYPE].atom, XCB_ATOM_ATOM, 0, UINT32_MAX);
938 r = xcb_get_property_reply(conn, c, NULL);
942 n = xcb_get_property_value_length(r);
943 type = xcb_get_property_value(r);
945 for (i = 0; i < n; i++) {
946 if (type[i] == ewmh[_NET_WM_WINDOW_TYPE_NORMAL].atom)
948 if (type[i] == ewmh[_NET_WM_WINDOW_TYPE_DOCK].atom ||
949 type[i] == ewmh[_NET_WM_WINDOW_TYPE_TOOLBAR].atom ||
950 type[i] == ewmh[_NET_WM_WINDOW_TYPE_UTILITY].atom) {
952 win->quirks = SWM_Q_FLOAT | SWM_Q_ANYWHERE;
955 if (type[i] == ewmh[_NET_WM_WINDOW_TYPE_SPLASH].atom ||
956 type[i] == ewmh[_NET_WM_WINDOW_TYPE_DIALOG].atom) {
958 win->quirks = SWM_Q_FLOAT;
965 #define SWM_EWMH_ACTION_COUNT_MAX (6)
966 #define EWMH_F_FULLSCREEN (1<<0)
967 #define EWMH_F_ABOVE (1<<1)
968 #define EWMH_F_HIDDEN (1<<2)
969 #define EWMH_F_SKIP_PAGER (1<<3)
970 #define EWMH_F_SKIP_TASKBAR (1<<4)
971 #define SWM_F_MANUAL (1<<5)
974 ewmh_set_win_fullscreen(struct ws_win *win, int fs)
982 DNPRINTF(SWM_D_MISC, "ewmh_set_win_fullscreen: window: 0x%x, "
983 "fullscreen %s\n", win->id, YESNO(fs));
986 if (!win->g_floatvalid)
987 store_float_geom(win, win->ws->r);
989 win->g = win->ws->r->g;
992 if (win->g_floatvalid) {
993 /* refloat at last floating relative position */
994 win->g = win->g_float;
995 X(win) += X(win->ws->r);
996 Y(win) += Y(win->ws->r);
1004 ewmh_update_actions(struct ws_win *win)
1006 xcb_atom_t actions[SWM_EWMH_ACTION_COUNT_MAX];
1012 actions[n++] = ewmh[_NET_WM_ACTION_CLOSE].atom;
1014 if (win->floating) {
1015 actions[n++] = ewmh[_NET_WM_ACTION_MOVE].atom;
1016 actions[n++] = ewmh[_NET_WM_ACTION_RESIZE].atom;
1019 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
1020 ewmh[_NET_WM_ALLOWED_ACTIONS].atom, XCB_ATOM_ATOM, 32, 1, actions);
1023 #define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
1024 #define _NET_WM_STATE_ADD 1 /* add/set property */
1025 #define _NET_WM_STATE_TOGGLE 2 /* toggle property */
1028 ewmh_update_win_state(struct ws_win *win, xcb_atom_t state, long action)
1030 unsigned int mask = 0;
1031 unsigned int changed = 0;
1032 unsigned int orig_flags;
1037 DNPRINTF(SWM_D_PROP, "ewmh_update_win_state: window: 0x%x, state: %ld, "
1038 "action: %ld\n", win->id, (unsigned long)state, action);
1040 if (state == ewmh[_NET_WM_STATE_FULLSCREEN].atom)
1041 mask = EWMH_F_FULLSCREEN;
1042 if (state == ewmh[_NET_WM_STATE_ABOVE].atom)
1043 mask = EWMH_F_ABOVE;
1044 if (state == ewmh[_SWM_WM_STATE_MANUAL].atom)
1045 mask = SWM_F_MANUAL;
1046 if (state == ewmh[_NET_WM_STATE_SKIP_PAGER].atom)
1047 mask = EWMH_F_SKIP_PAGER;
1048 if (state == ewmh[_NET_WM_STATE_SKIP_TASKBAR].atom)
1049 mask = EWMH_F_SKIP_TASKBAR;
1052 orig_flags = win->ewmh_flags;
1055 case _NET_WM_STATE_REMOVE:
1056 win->ewmh_flags &= ~mask;
1058 case _NET_WM_STATE_ADD:
1059 win->ewmh_flags |= mask;
1061 case _NET_WM_STATE_TOGGLE:
1062 win->ewmh_flags ^= mask;
1066 changed = (win->ewmh_flags & mask) ^ (orig_flags & mask) ? 1 : 0;
1068 if (state == ewmh[_NET_WM_STATE_ABOVE].atom)
1070 if (!floating_toggle_win(win))
1071 win->ewmh_flags = orig_flags; /* revert */
1072 if (state == ewmh[_SWM_WM_STATE_MANUAL].atom)
1074 win->manual = (win->ewmh_flags & SWM_F_MANUAL) != 0;
1075 if (state == ewmh[_NET_WM_STATE_FULLSCREEN].atom)
1077 if (!ewmh_set_win_fullscreen(win,
1078 win->ewmh_flags & EWMH_F_FULLSCREEN))
1079 win->ewmh_flags = orig_flags; /* revert */
1081 xcb_delete_property(conn, win->id, ewmh[_NET_WM_STATE].atom);
1083 if (win->ewmh_flags & EWMH_F_FULLSCREEN)
1084 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1085 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1086 &ewmh[_NET_WM_STATE_FULLSCREEN].atom);
1087 if (win->ewmh_flags & EWMH_F_SKIP_PAGER)
1088 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1089 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1090 &ewmh[_NET_WM_STATE_SKIP_PAGER].atom);
1091 if (win->ewmh_flags & EWMH_F_SKIP_TASKBAR)
1092 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1093 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1094 &ewmh[_NET_WM_STATE_SKIP_TASKBAR].atom);
1095 if (win->ewmh_flags & EWMH_F_ABOVE)
1096 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1097 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1098 &ewmh[_NET_WM_STATE_ABOVE].atom);
1099 if (win->ewmh_flags & SWM_F_MANUAL)
1100 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1101 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1102 &ewmh[_SWM_WM_STATE_MANUAL].atom);
1106 ewmh_get_win_state(struct ws_win *win)
1109 xcb_get_property_cookie_t c;
1110 xcb_get_property_reply_t *r;
1116 win->ewmh_flags = 0;
1118 win->ewmh_flags |= EWMH_F_ABOVE;
1120 win->ewmh_flags |= SWM_F_MANUAL;
1122 c = xcb_get_property(conn, 0, win->id, ewmh[_NET_WM_STATE].atom,
1123 XCB_ATOM_ATOM, 0, UINT32_MAX);
1124 r = xcb_get_property_reply(conn, c, NULL);
1128 states = xcb_get_property_value(r);
1129 n = xcb_get_property_value_length(r);
1131 for (i = 0; i < n; i++)
1132 ewmh_update_win_state(win, states[i], _NET_WM_STATE_ADD);
1140 dumpwins(struct swm_region *r, union arg *args)
1144 xcb_get_window_attributes_cookie_t c;
1145 xcb_get_window_attributes_reply_t *wa;
1147 /* suppress unused warning since var is needed */
1150 if (r->ws == NULL) {
1151 warnx("dumpwins: invalid workspace");
1155 warnx("=== managed window list ws %02d ===", r->ws->idx);
1156 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
1157 state = getstate(win->id);
1158 c = xcb_get_window_attributes(conn, win->id);
1159 wa = xcb_get_window_attributes_reply(conn, c, NULL);
1161 warnx("window: 0x%x, map_state: %d, state: %u, "
1162 "transient: 0x%x", win->id, wa->map_state,
1163 state, win->transient);
1166 warnx("window: 0x%x, failed xcb_get_window_attributes",
1170 warnx("===== unmanaged window list =====");
1171 TAILQ_FOREACH(win, &r->ws->unmanagedlist, entry) {
1172 state = getstate(win->id);
1173 c = xcb_get_window_attributes(conn, win->id);
1174 wa = xcb_get_window_attributes_reply(conn, c, NULL);
1176 warnx("window: 0x%x, map_state: %d, state: %u, "
1177 "transient: 0x%x", win->id, wa->map_state,
1178 state, win->transient);
1181 warnx("window: 0x%x, failed xcb_get_window_attributes",
1185 warnx("=================================");
1189 dumpwins(struct swm_region *r, union arg *s)
1194 #endif /* SWM_DEBUG */
1199 int saved_errno, status;
1202 saved_errno = errno;
1206 while ((pid = waitpid(WAIT_ANY, &status, WNOHANG)) != 0) {
1211 if (errno != ECHILD)
1212 warn("sighdlr: waitpid");
1213 #endif /* SWM_DEBUG */
1216 if (pid == searchpid)
1220 if (WIFEXITED(status)) {
1221 if (WEXITSTATUS(status) != 0)
1222 warnx("sighdlr: child exit status: %d",
1223 WEXITSTATUS(status));
1225 warnx("sighdlr: child is terminated "
1227 #endif /* SWM_DEBUG */
1241 errno = saved_errno;
1247 struct pid_e *p = NULL;
1249 DNPRINTF(SWM_D_MISC, "find_pid: %d\n", pid);
1254 TAILQ_FOREACH(p, &pidlist, entry) {
1263 name_to_pixel(const char *colorname)
1265 uint32_t result = 0;
1266 char cname[32] = "#";
1267 xcb_screen_t *screen;
1268 xcb_colormap_t cmap;
1269 xcb_alloc_color_reply_t *cr;
1270 xcb_alloc_named_color_reply_t *nr;
1271 uint16_t rr, gg, bb;
1273 screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
1274 cmap = screen->default_colormap;
1276 /* color is in format rgb://rr/gg/bb */
1277 if (strncmp(colorname, "rgb:", 4) == 0) {
1278 if (parse_rgb(colorname, &rr, &gg, &bb) == -1)
1279 warnx("could not parse rgb %s", colorname);
1281 cr = xcb_alloc_color_reply(conn,
1282 xcb_alloc_color(conn, cmap, rr, gg, bb),
1288 warnx("color '%s' not found", colorname);
1291 nr = xcb_alloc_named_color_reply(conn,
1292 xcb_alloc_named_color(conn, cmap, strlen(colorname),
1295 strlcat(cname, colorname + 2, sizeof cname - 1);
1296 nr = xcb_alloc_named_color_reply(conn,
1297 xcb_alloc_named_color(conn, cmap, strlen(cname),
1304 warnx("color '%s' not found", colorname);
1311 setscreencolor(char *val, int i, int c)
1315 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1316 if (i > 0 && i <= num_screens) {
1317 screens[i - 1].c[c].pixel = name_to_pixel(val);
1318 free(screens[i - 1].c[c].name);
1319 if ((screens[i - 1].c[c].name = strdup(val)) == NULL)
1321 } else if (i == -1) {
1322 for (i = 0; i < num_screens; i++) {
1323 screens[i].c[c].pixel = name_to_pixel(val);
1324 free(screens[i].c[c].name);
1325 if ((screens[i].c[c].name = strdup(val)) == NULL)
1329 errx(1, "invalid screen index: %d out of bounds (maximum %d)",
1334 fancy_stacker(struct workspace *ws)
1336 strlcpy(ws->stacker, "[ ]", sizeof ws->stacker);
1337 if (ws->cur_layout->l_stack == vertical_stack)
1338 snprintf(ws->stacker, sizeof ws->stacker,
1339 ws->l_state.vertical_flip ? "[%d>%d]" : "[%d|%d]",
1340 ws->l_state.vertical_mwin, ws->l_state.vertical_stacks);
1341 if (ws->cur_layout->l_stack == horizontal_stack)
1342 snprintf(ws->stacker, sizeof ws->stacker,
1343 ws->l_state.horizontal_flip ? "[%dv%d]" : "[%d-%d]",
1344 ws->l_state.horizontal_mwin, ws->l_state.horizontal_stacks);
1348 plain_stacker(struct workspace *ws)
1350 strlcpy(ws->stacker, "[ ]", sizeof ws->stacker);
1351 if (ws->cur_layout->l_stack == vertical_stack)
1352 strlcpy(ws->stacker, ws->l_state.vertical_flip ? "[>]" : "[|]",
1353 sizeof ws->stacker);
1354 if (ws->cur_layout->l_stack == horizontal_stack)
1355 strlcpy(ws->stacker, ws->l_state.horizontal_flip ? "[v]" : "[-]",
1356 sizeof ws->stacker);
1360 custom_region(char *val)
1362 unsigned int x, y, w, h;
1363 int sidx, num_screens;
1364 xcb_screen_t *screen;
1366 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1367 if (sscanf(val, "screen[%d]:%ux%u+%u+%u", &sidx, &w, &h, &x, &y) != 5)
1368 errx(1, "invalid custom region, "
1369 "should be 'screen[<n>]:<n>x<n>+<n>+<n>");
1370 if (sidx < 1 || sidx > num_screens)
1371 errx(1, "invalid screen index: %d out of bounds (maximum %d)",
1375 if ((screen = get_screen(sidx)) == NULL)
1376 errx(1, "ERROR: can't get screen %d.", sidx);
1379 errx(1, "region %ux%u+%u+%u too small", w, h, x, y);
1381 if (x > screen->width_in_pixels ||
1382 y > screen->height_in_pixels ||
1383 w + x > screen->width_in_pixels ||
1384 h + y > screen->height_in_pixels) {
1385 warnx("ignoring region %ux%u+%u+%u - not within screen "
1386 "boundaries (%ux%u)", w, h, x, y,
1387 screen->width_in_pixels, screen->height_in_pixels);
1391 new_region(&screens[sidx], x, y, w, h);
1395 socket_setnonblock(int fd)
1399 if ((flags = fcntl(fd, F_GETFL, 0)) == -1)
1400 err(1, "fcntl F_GETFL");
1401 flags |= O_NONBLOCK;
1402 if ((flags = fcntl(fd, F_SETFL, flags)) == -1)
1403 err(1, "fcntl F_SETFL");
1407 bar_print_legacy(struct swm_region *r, const char *s)
1409 xcb_rectangle_t rect;
1414 XRectangle ibox, lbox;
1418 XmbTextExtents(bar_fs, s, len, &ibox, &lbox);
1420 switch (bar_justify) {
1421 case SWM_BAR_JUSTIFY_LEFT:
1424 case SWM_BAR_JUSTIFY_CENTER:
1425 x = (WIDTH(r) - lbox.width) / 2;
1427 case SWM_BAR_JUSTIFY_RIGHT:
1428 x = WIDTH(r) - lbox.width - SWM_BAR_OFFSET;
1432 if (x < SWM_BAR_OFFSET)
1437 rect.width = WIDTH(r->bar);
1438 rect.height = HEIGHT(r->bar);
1440 /* clear back buffer */
1441 gcv[0] = r->s->c[SWM_S_COLOR_BAR].pixel;
1442 xcb_change_gc(conn, r->s->bar_gc, XCB_GC_FOREGROUND, gcv);
1443 xcb_poly_fill_rectangle(conn, r->bar->buffer, r->s->bar_gc,
1444 sizeof(rect), &rect);
1446 /* draw back buffer */
1447 gcvd.graphics_exposures = 0;
1448 draw = XCreateGC(display, r->bar->buffer, GCGraphicsExposures, &gcvd);
1449 XSetForeground(display, draw, r->s->c[SWM_S_COLOR_BAR_FONT].pixel);
1450 DRAWSTRING(display, r->bar->buffer, bar_fs, draw,
1451 x, (bar_fs_extents->max_logical_extent.height - lbox.height) / 2 -
1453 XFreeGC(display, draw);
1456 xcb_copy_area(conn, r->bar->buffer, r->bar->id, r->s->bar_gc, 0, 0,
1457 0, 0, WIDTH(r->bar), HEIGHT(r->bar));
1461 bar_print(struct swm_region *r, const char *s)
1464 xcb_rectangle_t rect;
1472 XftTextExtentsUtf8(display, bar_font, (FcChar8 *)s, len, &info);
1474 switch (bar_justify) {
1475 case SWM_BAR_JUSTIFY_LEFT:
1478 case SWM_BAR_JUSTIFY_CENTER:
1479 x = (WIDTH(r) - info.width) / 2;
1481 case SWM_BAR_JUSTIFY_RIGHT:
1482 x = WIDTH(r) - info.width - SWM_BAR_OFFSET;
1486 if (x < SWM_BAR_OFFSET)
1491 rect.width = WIDTH(r->bar);
1492 rect.height = HEIGHT(r->bar);
1494 /* clear back buffer */
1495 gcv[0] = r->s->c[SWM_S_COLOR_BAR].pixel;
1496 xcb_change_gc(conn, r->s->bar_gc, XCB_GC_FOREGROUND, gcv);
1497 xcb_poly_fill_rectangle(conn, r->bar->buffer, r->s->bar_gc,
1498 sizeof(rect), &rect);
1500 /* draw back buffer */
1501 draw = XftDrawCreate(display, r->bar->buffer,
1502 DefaultVisual(display, r->s->idx),
1503 DefaultColormap(display, r->s->idx));
1505 XftDrawStringUtf8(draw, &bar_font_color, bar_font, x,
1506 (HEIGHT(r->bar) + bar_font->height) / 2 - bar_font->descent,
1509 XftDrawDestroy(draw);
1512 xcb_copy_area(conn, r->bar->buffer, r->bar->id, r->s->bar_gc, 0, 0,
1513 0, 0, WIDTH(r->bar), HEIGHT(r->bar));
1517 bar_extra_stop(void)
1521 bzero(bar_pipe, sizeof bar_pipe);
1524 kill(bar_pid, SIGTERM);
1527 strlcpy((char *)bar_ext, "", sizeof bar_ext);
1532 bar_class_name(char *s, size_t sz, struct swm_region *r)
1534 if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1536 if (r->ws->focus->ch.class_name != NULL)
1537 strlcat(s, r->ws->focus->ch.class_name, sz);
1541 bar_title_name(char *s, size_t sz, struct swm_region *r)
1543 if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1545 if (r->ws->focus->ch.instance_name != NULL)
1546 strlcat(s, r->ws->focus->ch.instance_name, sz);
1550 bar_class_title_name(char *s, size_t sz, struct swm_region *r)
1552 if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1555 bar_class_name(s, sz, r);
1556 strlcat(s, ":", sz);
1557 bar_title_name(s, sz, r);
1561 bar_window_float(char *s, size_t sz, struct swm_region *r)
1563 if (r == NULL || r ->ws == NULL || r->ws->focus == NULL)
1565 if (r->ws->focus->floating)
1566 strlcat(s, "(f)", sz);
1570 bar_window_name(char *s, size_t sz, struct swm_region *r)
1574 if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1576 if ((title = get_win_name(r->ws->focus->id)) == NULL)
1579 strlcat(s, title, sz);
1583 int urgent[SWM_WS_MAX];
1585 bar_urgent(char *s, size_t sz)
1588 int i, j, num_screens;
1590 xcb_get_property_cookie_t c;
1591 xcb_icccm_wm_hints_t hints;
1593 for (i = 0; i < workspace_limit; i++)
1596 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1597 for (i = 0; i < num_screens; i++)
1598 for (j = 0; j < workspace_limit; j++)
1599 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry) {
1600 c = xcb_icccm_get_wm_hints(conn, win->id);
1601 if (xcb_icccm_get_wm_hints_reply(conn, c,
1604 if (hints.flags & XCB_ICCCM_WM_HINT_X_URGENCY)
1608 for (i = 0; i < workspace_limit; i++) {
1610 snprintf(b, sizeof b, "%d ", i + 1);
1612 snprintf(b, sizeof b, "- ");
1618 bar_workspace_name(char *s, size_t sz, struct swm_region *r)
1620 if (r == NULL || r->ws == NULL)
1622 if (r->ws->name != NULL)
1623 strlcat(s, r->ws->name, sz);
1626 /* build the default bar format according to the defined enabled options */
1628 bar_fmt(const char *fmtexp, char *fmtnew, struct swm_region *r, size_t sz)
1630 /* if format provided, just copy the buffers */
1631 if (bar_format != NULL) {
1632 strlcpy(fmtnew, fmtexp, sz);
1636 /* reset the output buffer */
1639 strlcat(fmtnew, "+N:+I ", sz);
1641 strlcat(fmtnew, "+S", sz);
1642 strlcat(fmtnew, " ", sz);
1644 /* only show the workspace name if there's actually one */
1645 if (r != NULL && r->ws != NULL && r->ws->name != NULL)
1646 strlcat(fmtnew, "<+D>", sz);
1647 strlcat(fmtnew, "+3<", sz);
1649 if (clock_enabled) {
1650 strlcat(fmtnew, fmtexp, sz);
1651 strlcat(fmtnew, "+4<", sz);
1654 /* bar_urgent already adds the space before the last asterisk */
1656 strlcat(fmtnew, "* +U*+4<", sz);
1658 if (title_class_enabled) {
1659 strlcat(fmtnew, "+C", sz);
1660 if (title_name_enabled == 0)
1661 strlcat(fmtnew, "+4<", sz);
1664 /* checks needed by the colon and floating strlcat(3) calls below */
1665 if (r != NULL && r->ws != NULL && r->ws->focus != NULL) {
1666 if (title_name_enabled) {
1667 if (title_class_enabled)
1668 strlcat(fmtnew, ":", sz);
1669 strlcat(fmtnew, "+T+4<", sz);
1671 if (window_name_enabled) {
1672 if (r->ws->focus->floating)
1673 strlcat(fmtnew, "+F ", sz);
1674 strlcat(fmtnew, "+64W ", sz);
1678 /* finally add the action script output and the version */
1679 strlcat(fmtnew, "+4<+A+4<+V", sz);
1683 bar_replace_pad(char *tmp, int *limit, size_t sz)
1685 /* special case; no limit given, pad one space, instead */
1686 if (*limit == (int)sz - 1)
1688 snprintf(tmp, sz, "%*s", *limit, " ");
1691 /* replaces the bar format character sequences (like in tmux(1)) */
1693 bar_replace_seq(char *fmt, char *fmtrep, struct swm_region *r, size_t *offrep,
1697 char tmp[SWM_BAR_MAX];
1701 /* reset strlcat(3) buffer */
1704 /* get number, if any */
1707 if (sscanf(fmt, "%d%n", &limit, &size) != 1)
1708 limit = sizeof tmp - 1;
1709 if (limit <= 0 || limit >= (int)sizeof tmp)
1710 limit = sizeof tmp - 1;
1712 /* there is nothing to replace (ie EOL) */
1719 bar_replace_pad(tmp, &limit, sizeof tmp);
1722 snprintf(tmp, sizeof tmp, "%s", bar_ext);
1725 bar_class_name(tmp, sizeof tmp, r);
1728 bar_workspace_name(tmp, sizeof tmp, r);
1731 bar_window_float(tmp, sizeof tmp, r);
1734 snprintf(tmp, sizeof tmp, "%d", r->ws->idx + 1);
1737 snprintf(tmp, sizeof tmp, "%d", r->s->idx + 1);
1740 bar_class_title_name(tmp, sizeof tmp, r);
1743 snprintf(tmp, sizeof tmp, "%s", r->ws->stacker);
1746 bar_title_name(tmp, sizeof tmp, r);
1749 bar_urgent(tmp, sizeof tmp);
1752 snprintf(tmp, sizeof tmp, "%s", bar_vertext);
1755 bar_window_name(tmp, sizeof tmp, r);
1758 /* unknown character sequence; copy as-is */
1759 snprintf(tmp, sizeof tmp, "+%c", *fmt);
1765 if ((int)len < limit)
1767 while (limit-- > 0) {
1768 if (*offrep >= sz - 1)
1770 fmtrep[(*offrep)++] = *ptr++;
1778 bar_replace(char *fmt, char *fmtrep, struct swm_region *r, size_t sz)
1783 while (*fmt != '\0') {
1785 /* skip ordinary characters */
1788 fmtrep[off++] = *fmt++;
1792 /* character sequence found; replace it */
1793 fmt = bar_replace_seq(fmt, fmtrep, r, &off, sz);
1802 bar_fmt_expand(char *fmtexp, size_t sz)
1809 /* start by grabbing the current time and date */
1811 localtime_r(&tmt, &tm);
1813 /* figure out what to expand */
1814 if (bar_format != NULL)
1816 else if (bar_format == NULL && clock_enabled)
1818 /* if nothing to expand bail out */
1824 /* copy as-is, just in case the format shouldn't be expanded below */
1825 strlcpy(fmtexp, fmt, sz);
1826 /* finally pass the string through strftime(3) */
1827 #ifndef SWM_DENY_CLOCK_FORMAT
1828 if ((len = strftime(fmtexp, sz, fmt, &tm)) == 0)
1829 warnx("format too long");
1837 char fmtexp[SWM_BAR_MAX], fmtnew[SWM_BAR_MAX];
1838 char fmtrep[SWM_BAR_MAX];
1840 struct swm_region *r;
1842 /* expand the format by first passing it through strftime(3) */
1843 bar_fmt_expand(fmtexp, sizeof fmtexp);
1845 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1846 for (i = 0; i < num_screens; i++) {
1847 TAILQ_FOREACH(r, &screens[i].rl, entry) {
1850 bar_fmt(fmtexp, fmtnew, r, sizeof fmtnew);
1851 bar_replace(fmtnew, fmtrep, r, sizeof fmtrep);
1852 if (bar_font_legacy)
1853 bar_print_legacy(r, fmtrep);
1855 bar_print(r, fmtrep);
1866 if (bar_enabled == 0)
1868 if (bar_extra && bar_extra_running) {
1869 /* ignore short reads; it'll correct itself */
1870 while ((b = fgetln(stdin, &len)) != NULL)
1871 if (b && b[len - 1] == '\n') {
1873 strlcpy((char *)bar_ext, b, sizeof bar_ext);
1875 if (b == NULL && errno != EAGAIN) {
1876 warn("bar_update: bar_extra failed");
1880 strlcpy((char *)bar_ext, "", sizeof bar_ext);
1889 /* suppress unused warning since var is needed */
1896 bar_toggle(struct swm_region *r, union arg *args)
1898 struct swm_region *tmpr;
1901 /* suppress unused warnings since vars are needed */
1905 DNPRINTF(SWM_D_BAR, "bar_toggle\n");
1907 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1909 for (i = 0; i < num_screens; i++)
1910 TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
1912 xcb_unmap_window(conn, tmpr->bar->id);
1914 for (i = 0; i < num_screens; i++)
1915 TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
1917 map_window_raised(tmpr->bar->id);
1920 bar_enabled = !bar_enabled;
1923 /* must be after stack */
1932 struct swm_region *r;
1936 /* do this here because the conf file is in memory */
1937 if (bar_extra && bar_extra_running == 0 && bar_argv[0]) {
1938 /* launch external status app */
1939 bar_extra_running = 1;
1940 if (pipe(bar_pipe) == -1)
1941 err(1, "pipe error");
1942 socket_setnonblock(bar_pipe[0]);
1943 socket_setnonblock(bar_pipe[1]); /* XXX hmmm, really? */
1944 if (dup2(bar_pipe[0], 0) == -1)
1946 if (dup2(bar_pipe[1], 1) == -1)
1948 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
1949 err(1, "could not disable SIGPIPE");
1950 switch (bar_pid = fork()) {
1952 err(1, "cannot fork");
1956 execvp(bar_argv[0], bar_argv);
1957 err(1, "%s external app failed", bar_argv[0]);
1959 default: /* parent */
1965 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1966 for (i = 0; i < num_screens; i++)
1967 TAILQ_FOREACH(r, &screens[i].rl, entry) {
1970 wa[0] = screens[i].c[SWM_S_COLOR_BAR].pixel;
1971 wa[1] = screens[i].c[SWM_S_COLOR_BAR_BORDER].pixel;
1972 xcb_change_window_attributes(conn, r->bar->id,
1973 XCB_CW_BACK_PIXEL | XCB_CW_BORDER_PIXEL, wa);
1983 while ((s = index(s, '-'))) {
1988 return (count == 14);
1994 char *default_string;
1995 char **missing_charsets;
1996 int num_missing_charsets = 0;
2000 XFreeFontSet(display, bar_fs);
2004 DNPRINTF(SWM_D_INIT, "fontset_init: loading bar_fonts: %s\n", bar_fonts);
2006 bar_fs = XCreateFontSet(display, bar_fonts, &missing_charsets,
2007 &num_missing_charsets, &default_string);
2009 if (num_missing_charsets > 0) {
2010 warnx("Unable to load charset(s):");
2012 for (i = 0; i < num_missing_charsets; ++i)
2013 warnx("%s", missing_charsets[i]);
2015 XFreeStringList(missing_charsets);
2017 if (strcmp(default_string, ""))
2018 warnx("Glyphs from those sets will be replaced "
2019 "by '%s'.", default_string);
2021 warnx("Glyphs from those sets won't be drawn.");
2025 errx(1, "Error creating font set structure.");
2027 bar_fs_extents = XExtentsOfFontSet(bar_fs);
2029 bar_height = bar_fs_extents->max_logical_extent.height +
2030 2 * bar_border_width;
2037 xft_init(struct swm_region *r)
2039 char *font, *d, *search;
2042 if (bar_font == NULL) {
2043 if ((d = strdup(bar_fonts)) == NULL)
2044 errx(1, "insufficient memory.");
2046 while ((font = strsep(&search, ",")) != NULL) {
2050 DNPRINTF(SWM_D_INIT, "xft_init: try font %s\n", font);
2053 bar_font = XftFontOpenXlfd(display, r->s->idx,
2056 bar_font = XftFontOpenName(display, r->s->idx,
2061 warnx("unable to load font %s", font);
2064 DNPRINTF(SWM_D_INIT, "successfully opened "
2072 if (bar_font == NULL)
2073 errx(1, "unable to open a font");
2075 PIXEL_TO_XRENDERCOLOR(r->s->c[SWM_S_COLOR_BAR_FONT].pixel, color);
2077 if (!XftColorAllocValue(display, DefaultVisual(display, r->s->idx),
2078 DefaultColormap(display, r->s->idx), &color, &bar_font_color))
2079 warn("unable to allocate Xft color");
2081 bar_height = bar_font->height + 2 * bar_border_width;
2088 bar_setup(struct swm_region *r)
2090 xcb_screen_t *screen;
2093 DNPRINTF(SWM_D_BAR, "bar_setup: screen %d.\n",
2096 if ((screen = get_screen(r->s->idx)) == NULL)
2097 errx(1, "ERROR: can't get screen %d.", r->s->idx);
2102 if ((r->bar = calloc(1, sizeof(struct swm_bar))) == NULL)
2103 err(1, "bar_setup: calloc: failed to allocate memory.");
2105 if (bar_font_legacy)
2111 Y(r->bar) = bar_at_bottom ? (Y(r) + HEIGHT(r) - bar_height) : Y(r);
2112 WIDTH(r->bar) = WIDTH(r) - 2 * bar_border_width;
2113 HEIGHT(r->bar) = bar_height - 2 * bar_border_width;
2115 r->bar->id = xcb_generate_id(conn);
2116 wa[0] = r->s->c[SWM_S_COLOR_BAR].pixel;
2117 wa[1] = r->s->c[SWM_S_COLOR_BAR_BORDER].pixel;
2118 wa[2] = XCB_EVENT_MASK_EXPOSURE;
2120 xcb_create_window(conn, XCB_COPY_FROM_PARENT, r->bar->id, r->s->root,
2121 X(r->bar), Y(r->bar), WIDTH(r->bar), HEIGHT(r->bar),
2122 bar_border_width, XCB_WINDOW_CLASS_INPUT_OUTPUT,
2123 XCB_COPY_FROM_PARENT, XCB_CW_BACK_PIXEL | XCB_CW_BORDER_PIXEL
2124 | XCB_CW_EVENT_MASK, wa);
2126 r->bar->buffer = xcb_generate_id(conn);
2127 xcb_create_pixmap(conn, screen->root_depth, r->bar->buffer, r->bar->id,
2128 WIDTH(r->bar), HEIGHT(r->bar));
2131 xcb_randr_select_input(conn, r->bar->id,
2132 XCB_RANDR_NOTIFY_MASK_OUTPUT_CHANGE);
2135 map_window_raised(r->bar->id);
2137 DNPRINTF(SWM_D_BAR, "bar_setup: window: 0x%x, (x,y) w x h: (%d,%d) "
2138 "%d x %d\n", WINID(r->bar), X(r->bar), Y(r->bar), WIDTH(r->bar),
2141 if (signal(SIGALRM, bar_signal) == SIG_ERR)
2142 err(1, "could not install bar_signal");
2147 bar_cleanup(struct swm_region *r)
2151 xcb_destroy_window(conn, r->bar->id);
2152 xcb_free_pixmap(conn, r->bar->buffer);
2158 set_win_state(struct ws_win *win, uint16_t state)
2160 uint16_t data[2] = { state, XCB_ATOM_NONE };
2162 DNPRINTF(SWM_D_EVENT, "set_win_state: window: 0x%x\n", win->id);
2167 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id, a_state,
2168 a_state, 32, 2, data);
2172 getstate(xcb_window_t w)
2174 uint32_t result = 0;
2175 xcb_get_property_cookie_t c;
2176 xcb_get_property_reply_t *r;
2178 c = xcb_get_property(conn, 0, w, a_state, a_state, 0L, 2L);
2179 r = xcb_get_property_reply(conn, c, NULL);
2182 if (r->type == a_state && r->format == 32 && r->length == 2)
2183 result = *((uint32_t *)xcb_get_property_value(r));
2187 DNPRINTF(SWM_D_MISC, "getstate property: win 0x%x state %u\n", w,
2193 version(struct swm_region *r, union arg *args)
2195 /* suppress unused warnings since vars are needed */
2199 bar_version = !bar_version;
2201 snprintf(bar_vertext, sizeof bar_vertext,
2202 "Version: %s Build: %s", SPECTRWM_VERSION, buildstr);
2204 strlcpy(bar_vertext, "", sizeof bar_vertext);
2211 client_msg(struct ws_win *win, xcb_atom_t a)
2213 xcb_client_message_event_t ev;
2218 bzero(&ev, sizeof ev);
2219 ev.response_type = XCB_CLIENT_MESSAGE;
2220 ev.window = win->id;
2223 ev.data.data32[0] = a;
2224 ev.data.data32[1] = XCB_CURRENT_TIME;
2226 xcb_send_event(conn, 0, win->id,
2227 XCB_EVENT_MASK_NO_EVENT, (const char *)&ev);
2230 /* synthetic response to a ConfigureRequest when not making a change */
2232 config_win(struct ws_win *win, xcb_configure_request_event_t *ev)
2234 xcb_configure_notify_event_t ce;
2239 /* send notification of unchanged state. */
2240 bzero(&ce, sizeof(ce));
2241 ce.response_type = XCB_CONFIGURE_NOTIFY;
2244 ce.width = WIDTH(win);
2245 ce.height = HEIGHT(win);
2246 ce.override_redirect = 0;
2251 ce.window = win->id;
2252 ce.border_width = BORDER(win);
2253 ce.above_sibling = XCB_WINDOW_NONE;
2256 ce.event = ev->window;
2257 ce.window = ev->window;
2259 /* make response appear more WM_SIZE_HINTS-compliant */
2260 if (win->sh.flags) {
2261 DNPRINTF(SWM_D_MISC, "config_win: hints: window: 0x%x,"
2262 " sh.flags: %u, min: %d x %d, max: %d x %d, inc: "
2263 "%d x %d\n", win->id, win->sh.flags, SH_MIN_W(win),
2264 SH_MIN_H(win), SH_MAX_W(win), SH_MAX_H(win),
2265 SH_INC_W(win), SH_INC_H(win));
2270 /* the hint may be set... to 0! */
2271 if (SH_MIN_W(win) > 0 && ce.width < SH_MIN_W(win))
2272 ce.width = SH_MIN_W(win);
2273 if (SH_MIN_H(win) > 0 && ce.height < SH_MIN_H(win))
2274 ce.height = SH_MIN_H(win);
2279 /* may also be advertized as 0 */
2280 if (SH_MAX_W(win) > 0 && ce.width > SH_MAX_W(win))
2281 ce.width = SH_MAX_W(win);
2282 if (SH_MAX_H(win) > 0 && ce.height > SH_MAX_H(win))
2283 ce.height = SH_MAX_H(win);
2286 /* resize increment. */
2288 if (SH_INC_W(win) > 1 && ce.width > SH_INC_W(win))
2289 ce.width -= (ce.width - SH_MIN_W(win)) %
2291 if (SH_INC_H(win) > 1 && ce.height > SH_INC_H(win))
2292 ce.height -= (ce.height - SH_MIN_H(win)) %
2296 /* adjust x and y for requested border_width. */
2297 ce.x += BORDER(win) - ev->border_width;
2298 ce.y += BORDER(win) - ev->border_width;
2299 ce.border_width = ev->border_width;
2300 ce.above_sibling = ev->sibling;
2303 DNPRINTF(SWM_D_MISC, "config_win: ewmh: %s, window: 0x%x, (x,y) w x h: "
2304 "(%d,%d) %d x %d, border: %d\n", YESNO(ev == NULL), win->id, ce.x,
2305 ce.y, ce.width, ce.height, ce.border_width);
2307 xcb_send_event(conn, 0, win->id, XCB_EVENT_MASK_STRUCTURE_NOTIFY,
2312 count_win(struct workspace *ws, int count_transient)
2317 TAILQ_FOREACH(win, &ws->winlist, entry) {
2318 if (count_transient == 0 && win->floating)
2320 if (count_transient == 0 && win->transient)
2326 DNPRINTF(SWM_D_MISC, "count_win: %d\n", count);
2332 quit(struct swm_region *r, union arg *args)
2334 /* suppress unused warnings since vars are needed */
2338 DNPRINTF(SWM_D_MISC, "quit\n");
2343 unmap_window(struct ws_win *win)
2345 DNPRINTF(SWM_D_EVENT, "unmap_window: window: 0x%x\n", win->id);
2350 /* don't unmap again */
2351 if (getstate(win->id) == XCB_ICCCM_WM_STATE_ICONIC)
2354 set_win_state(win, XCB_ICCCM_WM_STATE_ICONIC);
2356 xcb_unmap_window(conn, win->id);
2357 xcb_change_window_attributes(conn, win->id,
2358 XCB_CW_BORDER_PIXEL, &win->s->c[SWM_S_COLOR_UNFOCUS].pixel);
2365 int i, j, num_screens;
2367 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2368 for (i = 0; i < num_screens; i++)
2369 for (j = 0; j < workspace_limit; j++)
2370 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
2375 fake_keypress(struct ws_win *win, xcb_keysym_t keysym, uint16_t modifiers)
2377 xcb_key_press_event_t event;
2378 xcb_keycode_t *keycode;
2383 keycode = xcb_key_symbols_get_keycode(syms, keysym);
2385 DNPRINTF(SWM_D_MISC, "fake_keypress: win 0x%x keycode %u\n",
2388 bzero(&event, sizeof(event));
2389 event.event = win->id;
2390 event.root = win->s->root;
2391 event.child = XCB_WINDOW_NONE;
2392 event.time = XCB_CURRENT_TIME;
2393 event.event_x = X(win);
2394 event.event_y = Y(win);
2397 event.same_screen = 1;
2398 event.detail = *keycode;
2399 event.state = modifiers;
2401 event.response_type = XCB_KEY_PRESS;
2402 xcb_send_event(conn, 1, win->id,
2403 XCB_EVENT_MASK_KEY_PRESS, (const char *)&event);
2405 event.response_type = XCB_KEY_RELEASE;
2406 xcb_send_event(conn, 1, win->id,
2407 XCB_EVENT_MASK_KEY_RELEASE, (const char *)&event);
2413 restart(struct swm_region *r, union arg *args)
2415 /* suppress unused warning since var is needed */
2419 DNPRINTF(SWM_D_MISC, "restart: %s\n", start_argv[0]);
2423 execvp(start_argv[0], start_argv);
2424 warn("execvp failed");
2429 root_to_region(xcb_window_t root)
2431 struct swm_region *r = NULL;
2433 xcb_query_pointer_reply_t *qpr;
2435 DNPRINTF(SWM_D_MISC, "root_to_region: window: 0x%x\n", root);
2437 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2438 for (i = 0; i < num_screens; i++)
2439 if (screens[i].root == root)
2442 qpr = xcb_query_pointer_reply(conn, xcb_query_pointer(conn,
2443 screens[i].root), NULL);
2446 DNPRINTF(SWM_D_MISC, "root_to_region: pointer: (%d,%d)\n",
2447 qpr->root_x, qpr->root_y);
2448 /* choose a region based on pointer location */
2449 TAILQ_FOREACH(r, &screens[i].rl, entry)
2450 if (X(r) <= qpr->root_x && qpr->root_x < MAX_X(r) &&
2451 Y(r) <= qpr->root_y && qpr->root_y < MAX_Y(r))
2457 r = TAILQ_FIRST(&screens[i].rl);
2463 find_unmanaged_window(xcb_window_t id)
2466 int i, j, num_screens;
2468 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2469 for (i = 0; i < num_screens; i++)
2470 for (j = 0; j < workspace_limit; j++)
2471 TAILQ_FOREACH(win, &screens[i].ws[j].unmanagedlist,
2479 find_window(xcb_window_t id)
2482 int i, j, num_screens;
2483 xcb_query_tree_reply_t *r;
2485 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2486 for (i = 0; i < num_screens; i++)
2487 for (j = 0; j < workspace_limit; j++)
2488 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
2492 r = xcb_query_tree_reply(conn, xcb_query_tree(conn, id), NULL);
2496 /* if we were looking for the parent return that window instead */
2497 if (r->parent == 0 || r->root == r->parent) {
2502 /* look for parent */
2503 for (i = 0; i < num_screens; i++)
2504 for (j = 0; j < workspace_limit; j++)
2505 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
2506 if (r->parent == win->id) {
2516 spawn(int ws_idx, union arg *args, int close_fd)
2521 DNPRINTF(SWM_D_MISC, "spawn: %s\n", args->argv[0]);
2523 close(xcb_get_file_descriptor(conn));
2525 setenv("LD_PRELOAD", SWM_LIB, 1);
2527 if (asprintf(&ret, "%d", ws_idx) == -1) {
2528 warn("spawn: asprintf SWM_WS");
2531 setenv("_SWM_WS", ret, 1);
2535 if (asprintf(&ret, "%d", getpid()) == -1) {
2536 warn("spawn: asprintf _SWM_PID");
2539 setenv("_SWM_PID", ret, 1);
2543 if (setsid() == -1) {
2544 warn("spawn: setsid");
2550 * close stdin and stdout to prevent interaction between apps
2551 * and the baraction script
2552 * leave stderr open to record errors
2554 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) == -1) {
2555 warn("spawn: open");
2558 dup2(fd, STDIN_FILENO);
2559 dup2(fd, STDOUT_FILENO);
2564 execvp(args->argv[0], args->argv);
2566 warn("spawn: execvp");
2571 kill_refs(struct ws_win *win)
2573 int i, x, num_screens;
2574 struct swm_region *r;
2575 struct workspace *ws;
2580 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2581 for (i = 0; i < num_screens; i++)
2582 TAILQ_FOREACH(r, &screens[i].rl, entry)
2583 for (x = 0; x < workspace_limit; x++) {
2585 if (win == ws->focus)
2587 if (win == ws->focus_prev)
2588 ws->focus_prev = NULL;
2593 validate_win(struct ws_win *testwin)
2596 struct workspace *ws;
2597 struct swm_region *r;
2598 int i, x, num_screens;
2600 if (testwin == NULL)
2603 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2604 for (i = 0; i < num_screens; i++)
2605 TAILQ_FOREACH(r, &screens[i].rl, entry)
2606 for (x = 0; x < workspace_limit; x++) {
2608 TAILQ_FOREACH(win, &ws->winlist, entry)
2616 validate_ws(struct workspace *testws)
2618 struct swm_region *r;
2619 struct workspace *ws;
2620 int i, x, num_screens;
2622 /* validate all ws */
2623 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2624 for (i = 0; i < num_screens; i++)
2625 TAILQ_FOREACH(r, &screens[i].rl, entry)
2626 for (x = 0; x < workspace_limit; x++) {
2635 unfocus_win(struct ws_win *win)
2637 xcb_window_t none = XCB_WINDOW_NONE;
2639 DNPRINTF(SWM_D_FOCUS, "unfocus_win: window: 0x%x\n", WINID(win));
2643 if (win->ws == NULL)
2646 if (validate_ws(win->ws))
2647 return; /* XXX this gets hit with thunderbird, needs fixing */
2649 if (win->ws->r == NULL)
2652 if (validate_win(win)) {
2657 if (win->ws->focus == win) {
2658 win->ws->focus = NULL;
2659 win->ws->focus_prev = win;
2662 if (validate_win(win->ws->focus)) {
2663 kill_refs(win->ws->focus);
2664 win->ws->focus = NULL;
2666 if (validate_win(win->ws->focus_prev)) {
2667 kill_refs(win->ws->focus_prev);
2668 win->ws->focus_prev = NULL;
2671 grabbuttons(win, 0);
2672 xcb_change_window_attributes(conn, win->id, XCB_CW_BORDER_PIXEL,
2673 &win->ws->r->s->c[SWM_S_COLOR_UNFOCUS].pixel);
2674 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->s->root,
2675 ewmh[_NET_ACTIVE_WINDOW].atom, XCB_ATOM_WINDOW, 32, 1, &none);
2682 int i, j, num_screens;
2684 DNPRINTF(SWM_D_FOCUS, "unfocus_all\n");
2686 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2687 for (i = 0; i < num_screens; i++)
2688 for (j = 0; j < workspace_limit; j++)
2689 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
2694 focus_win(struct ws_win *win)
2696 struct ws_win *cfw = NULL;
2697 xcb_get_input_focus_reply_t *r;
2698 xcb_window_t cur_focus = XCB_WINDOW_NONE;
2700 DNPRINTF(SWM_D_FOCUS, "focus_win: window: 0x%x\n", WINID(win));
2704 if (win->ws == NULL)
2707 if (validate_ws(win->ws))
2708 return; /* XXX this gets hit with thunderbird, needs fixing */
2710 if (validate_win(win)) {
2715 if (validate_win(win)) {
2720 r = xcb_get_input_focus_reply(conn, xcb_get_input_focus(conn), NULL);
2722 cur_focus = r->focus;
2725 if ((cfw = find_window(cur_focus)) != NULL)
2729 /* use larger hammer since the window was killed somehow */
2730 TAILQ_FOREACH(cfw, &win->ws->winlist, entry)
2731 if (cfw->ws && cfw->ws->r && cfw->ws->r->s)
2732 xcb_change_window_attributes(conn, cfw->id,
2733 XCB_CW_BORDER_PIXEL,
2734 &cfw->ws->r->s->c[SWM_S_COLOR_UNFOCUS].pixel);
2738 win->ws->focus = win;
2740 if (win->ws->r != NULL) {
2742 xcb_set_input_focus(conn, XCB_INPUT_FOCUS_PARENT,
2743 win->id, XCB_CURRENT_TIME);
2744 grabbuttons(win, 1);
2745 xcb_change_window_attributes(conn, win->id,
2746 XCB_CW_BORDER_PIXEL,
2747 &win->ws->r->s->c[SWM_S_COLOR_FOCUS].pixel);
2748 if (win->ws->cur_layout->flags & SWM_L_MAPONFOCUS ||
2749 win->ws->always_raise)
2750 map_window_raised(win->id);
2752 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->s->root,
2753 ewmh[_NET_ACTIVE_WINDOW].atom, XCB_ATOM_WINDOW, 32, 1,
2761 event_drain(uint8_t rt)
2763 xcb_generic_event_t *evt;
2766 while ((evt = xcb_poll_for_event(conn))) {
2767 if (XCB_EVENT_RESPONSE_TYPE(evt) != rt)
2775 switchws(struct swm_region *r, union arg *args)
2777 int wsid = args->id, unmap_old = 0;
2778 struct swm_region *this_r, *other_r;
2780 struct workspace *new_ws, *old_ws;
2786 if (wsid >= workspace_limit)
2790 old_ws = this_r->ws;
2791 new_ws = &this_r->s->ws[wsid];
2793 DNPRINTF(SWM_D_WS, "switchws: screen[%d]:%dx%d+%d+%d: %d -> %d\n",
2794 r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), old_ws->idx, wsid);
2796 if (new_ws == NULL || old_ws == NULL)
2798 if (new_ws == old_ws)
2801 other_r = new_ws->r;
2802 if (other_r == NULL) {
2803 /* the other workspace is hidden, hide this one */
2807 /* the other ws is visible in another region, exchange them */
2808 other_r->ws_prior = new_ws;
2809 other_r->ws = old_ws;
2810 old_ws->r = other_r;
2812 this_r->ws_prior = old_ws;
2813 this_r->ws = new_ws;
2816 /* this is needed so that we can click on a window after a restart */
2820 a.id = SWM_ARG_ID_FOCUSCUR;
2821 focus(new_ws->r, &a);
2823 /* unmap old windows */
2825 TAILQ_FOREACH(win, &old_ws->winlist, entry)
2828 if (focus_mode == SWM_FOCUS_DEFAULT)
2829 event_drain(XCB_ENTER_NOTIFY);
2833 DNPRINTF(SWM_D_WS, "switchws: done\n");
2837 cyclews(struct swm_region *r, union arg *args)
2840 struct swm_screen *s = r->s;
2843 DNPRINTF(SWM_D_WS, "cyclews: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
2844 args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
2849 case SWM_ARG_ID_CYCLEWS_UP_ALL:
2852 case SWM_ARG_ID_CYCLEWS_UP:
2853 if (a.id < workspace_limit - 1)
2858 case SWM_ARG_ID_CYCLEWS_DOWN_ALL:
2861 case SWM_ARG_ID_CYCLEWS_DOWN:
2865 a.id = workspace_limit - 1;
2872 (cycle_empty == 0 && TAILQ_EMPTY(&s->ws[a.id].winlist)))
2874 if (cycle_visible == 0 && s->ws[a.id].r != NULL)
2878 } while (a.id != r->ws->idx);
2882 priorws(struct swm_region *r, union arg *args)
2888 DNPRINTF(SWM_D_WS, "priorws: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
2889 args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
2891 if (r->ws_prior == NULL)
2894 a.id = r->ws_prior->idx;
2899 cyclescr(struct swm_region *r, union arg *args)
2901 struct swm_region *rr = NULL;
2903 int i, x, y, num_screens;
2905 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2906 /* do nothing if we don't have more than one screen */
2907 if (!(num_screens > 1 || outputs > 1))
2912 case SWM_ARG_ID_CYCLESC_UP:
2913 rr = TAILQ_NEXT(r, entry);
2915 rr = TAILQ_FIRST(&screens[i].rl);
2917 case SWM_ARG_ID_CYCLESC_DOWN:
2918 rr = TAILQ_PREV(r, swm_region_list, entry);
2920 rr = TAILQ_LAST(&screens[i].rl, swm_region_list);
2928 /* move mouse to region */
2930 y = Y(rr) + 1 + (bar_enabled ? bar_height : 0);
2931 xcb_warp_pointer(conn, XCB_WINDOW_NONE, rr->s[i].root, 0, 0, 0, 0,
2934 a.id = SWM_ARG_ID_FOCUSCUR;
2937 if (rr->ws->focus) {
2938 /* move to focus window */
2939 x = X(rr->ws->focus) + 1;
2940 y = Y(rr->ws->focus) + 1;
2941 xcb_warp_pointer(conn, XCB_WINDOW_NONE, rr->s[i].root, 0, 0, 0,
2947 sort_windows(struct ws_win_list *wl)
2949 struct ws_win *win, *parent, *nxt;
2954 for (win = TAILQ_FIRST(wl); win != TAILQ_END(wl); win = nxt) {
2955 nxt = TAILQ_NEXT(win, entry);
2956 if (win->transient) {
2957 parent = find_window(win->transient);
2958 if (parent == NULL) {
2959 warnx("not possible bug");
2962 TAILQ_REMOVE(wl, win, entry);
2963 TAILQ_INSERT_AFTER(wl, parent, win, entry);
2970 swapwin(struct swm_region *r, union arg *args)
2972 struct ws_win *target, *source;
2973 struct ws_win *cur_focus;
2974 struct ws_win_list *wl;
2977 DNPRINTF(SWM_D_WS, "swapwin: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
2978 args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
2980 cur_focus = r->ws->focus;
2981 if (cur_focus == NULL)
2985 wl = &source->ws->winlist;
2988 case SWM_ARG_ID_SWAPPREV:
2989 if (source->transient)
2990 source = find_window(source->transient);
2991 target = TAILQ_PREV(source, ws_win_list, entry);
2992 if (target && target->transient)
2993 target = find_window(target->transient);
2994 TAILQ_REMOVE(wl, source, entry);
2996 TAILQ_INSERT_TAIL(wl, source, entry);
2998 TAILQ_INSERT_BEFORE(target, source, entry);
3000 case SWM_ARG_ID_SWAPNEXT:
3001 target = TAILQ_NEXT(source, entry);
3002 /* move the parent and let the sort handle the move */
3003 if (source->transient)
3004 source = find_window(source->transient);
3005 TAILQ_REMOVE(wl, source, entry);
3007 TAILQ_INSERT_HEAD(wl, source, entry);
3009 TAILQ_INSERT_AFTER(wl, target, source, entry);
3011 case SWM_ARG_ID_SWAPMAIN:
3012 target = TAILQ_FIRST(wl);
3013 if (target == source) {
3014 if (source->ws->focus_prev != NULL &&
3015 source->ws->focus_prev != target)
3016 source = source->ws->focus_prev;
3020 if (target == NULL || source == NULL)
3022 source->ws->focus_prev = target;
3023 TAILQ_REMOVE(wl, target, entry);
3024 TAILQ_INSERT_BEFORE(source, target, entry);
3025 TAILQ_REMOVE(wl, source, entry);
3026 TAILQ_INSERT_HEAD(wl, source, entry);
3028 case SWM_ARG_ID_MOVELAST:
3029 TAILQ_REMOVE(wl, source, entry);
3030 TAILQ_INSERT_TAIL(wl, source, entry);
3033 DNPRINTF(SWM_D_MOVE, "swapwin: invalid id: %d\n", args->id);
3045 focus_prev(struct ws_win *win)
3047 struct ws_win *winfocus = NULL;
3048 struct ws_win *cur_focus = NULL;
3049 struct ws_win_list *wl = NULL;
3050 struct workspace *ws = NULL;
3052 if (!(win && win->ws))
3057 cur_focus = ws->focus;
3059 DNPRINTF(SWM_D_FOCUS, "focus_prev: window: 0x%x, cur_focus: 0x%x\n",
3060 WINID(win), WINID(cur_focus));
3062 /* pickle, just focus on whatever */
3063 if (cur_focus == NULL) {
3064 /* use prev_focus if valid */
3065 if (ws->focus_prev && ws->focus_prev != cur_focus &&
3066 find_window(WINID(ws->focus_prev)))
3067 winfocus = ws->focus_prev;
3071 /* if transient focus on parent */
3072 if (cur_focus->transient) {
3073 winfocus = find_window(cur_focus->transient);
3077 /* if in max_stack try harder */
3078 if ((win->quirks & SWM_Q_FOCUSPREV) ||
3079 (ws->cur_layout->flags & SWM_L_FOCUSPREV)) {
3080 if (cur_focus != ws->focus_prev)
3081 winfocus = ws->focus_prev;
3083 winfocus = TAILQ_PREV(win, ws_win_list, entry);
3088 DNPRINTF(SWM_D_FOCUS, "focus_prev: focus_close: %d\n", focus_close);
3090 if (winfocus == NULL || winfocus == win) {
3091 switch (focus_close) {
3092 case SWM_STACK_BOTTOM:
3093 winfocus = TAILQ_FIRST(wl);
3096 winfocus = TAILQ_LAST(wl, ws_win_list);
3098 case SWM_STACK_ABOVE:
3099 if ((winfocus = TAILQ_NEXT(cur_focus, entry)) == NULL) {
3100 if (focus_close_wrap)
3101 winfocus = TAILQ_FIRST(wl);
3103 winfocus = TAILQ_PREV(cur_focus,
3104 ws_win_list, entry);
3107 case SWM_STACK_BELOW:
3108 if ((winfocus = TAILQ_PREV(cur_focus, ws_win_list,
3110 if (focus_close_wrap)
3111 winfocus = TAILQ_LAST(wl, ws_win_list);
3113 winfocus = TAILQ_NEXT(cur_focus, entry);
3119 if (winfocus == NULL) {
3120 if (focus_default == SWM_STACK_TOP)
3121 winfocus = TAILQ_LAST(wl, ws_win_list);
3123 winfocus = TAILQ_FIRST(wl);
3127 focus_magic(winfocus);
3131 focus(struct swm_region *r, union arg *args)
3133 struct ws_win *winfocus = NULL, *head;
3134 struct ws_win *cur_focus = NULL;
3135 struct ws_win_list *wl = NULL;
3136 struct workspace *ws = NULL;
3142 DNPRINTF(SWM_D_FOCUS, "focus: id: %d\n", args->id);
3144 /* treat FOCUS_CUR special */
3145 if (args->id == SWM_ARG_ID_FOCUSCUR) {
3146 if (r->ws->focus && r->ws->focus->iconic == 0)
3147 winfocus = r->ws->focus;
3148 else if (r->ws->focus_prev && r->ws->focus_prev->iconic == 0)
3149 winfocus = r->ws->focus_prev;
3151 TAILQ_FOREACH(winfocus, &r->ws->winlist, entry)
3152 if (winfocus->iconic == 0)
3155 focus_magic(winfocus);
3159 if ((cur_focus = r->ws->focus) == NULL)
3163 if (TAILQ_EMPTY(wl))
3165 /* make sure there is at least one uniconified window */
3167 TAILQ_FOREACH(winfocus, wl, entry)
3168 if (winfocus->iconic == 0) {
3176 case SWM_ARG_ID_FOCUSPREV:
3177 head = TAILQ_PREV(cur_focus, ws_win_list, entry);
3179 head = TAILQ_LAST(wl, ws_win_list);
3181 if (WINID(winfocus) == cur_focus->transient) {
3182 head = TAILQ_PREV(winfocus, ws_win_list, entry);
3184 head = TAILQ_LAST(wl, ws_win_list);
3189 if (winfocus && winfocus->iconic) {
3190 while (winfocus != cur_focus) {
3191 if (winfocus == NULL)
3192 winfocus = TAILQ_LAST(wl, ws_win_list);
3193 if (winfocus->iconic == 0)
3195 winfocus = TAILQ_PREV(winfocus, ws_win_list,
3201 case SWM_ARG_ID_FOCUSNEXT:
3202 head = TAILQ_NEXT(cur_focus, entry);
3204 head = TAILQ_FIRST(wl);
3208 if (winfocus && winfocus->iconic) {
3209 while (winfocus != cur_focus) {
3210 if (winfocus == NULL)
3211 winfocus = TAILQ_FIRST(wl);
3212 if (winfocus->iconic == 0)
3214 winfocus = TAILQ_NEXT(winfocus, entry);
3219 case SWM_ARG_ID_FOCUSMAIN:
3220 winfocus = TAILQ_FIRST(wl);
3221 if (winfocus == cur_focus)
3222 winfocus = cur_focus->ws->focus_prev;
3229 focus_magic(winfocus);
3235 cycle_layout(struct swm_region *r, union arg *args)
3237 struct workspace *ws = r->ws;
3240 /* suppress unused warning since var is needed */
3243 DNPRINTF(SWM_D_EVENT, "cycle_layout: workspace: %d\n", ws->idx);
3246 if (ws->cur_layout->l_stack == NULL)
3247 ws->cur_layout = &layouts[0];
3252 if (focus_mode == SWM_FOCUS_DEFAULT)
3253 event_drain(XCB_ENTER_NOTIFY);
3255 a.id = SWM_ARG_ID_FOCUSCUR;
3260 stack_config(struct swm_region *r, union arg *args)
3262 struct workspace *ws = r->ws;
3264 DNPRINTF(SWM_D_STACK, "stack_config: id: %d workspace: %d\n",
3267 if (ws->cur_layout->l_config != NULL)
3268 ws->cur_layout->l_config(ws, args->id);
3270 if (args->id != SWM_ARG_ID_STACKINIT)
3277 struct swm_geometry g;
3278 struct swm_region *r;
3284 DNPRINTF(SWM_D_STACK, "stack: begin\n");
3286 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
3287 for (i = 0; i < num_screens; i++) {
3291 TAILQ_FOREACH(r, &screens[i].rl, entry) {
3292 DNPRINTF(SWM_D_STACK, "stack: workspace: %d "
3293 "(screen: %d, region: %d)\n", r->ws->idx, i, j++);
3295 /* start with screen geometry, adjust for bar */
3297 g.w -= 2 * border_width;
3298 g.h -= 2 * border_width;
3304 r->ws->cur_layout->l_stack(r->ws, &g);
3305 r->ws->cur_layout->l_string(r->ws);
3306 /* save r so we can track region changes */
3313 if (focus_mode == SWM_FOCUS_DEFAULT)
3314 event_drain(XCB_ENTER_NOTIFY);
3316 DNPRINTF(SWM_D_STACK, "stack: end\n");
3320 store_float_geom(struct ws_win *win, struct swm_region *r)
3322 /* retain window geom and region geom */
3323 win->g_float = win->g;
3324 win->g_float.x -= X(r);
3325 win->g_float.y -= Y(r);
3326 win->g_floatvalid = 1;
3327 DNPRINTF(SWM_D_MISC, "store_float_geom: window: 0x%x, g: (%d,%d)"
3328 " %d x %d, g_float: (%d,%d) %d x %d\n", win->id, X(win), Y(win),
3329 WIDTH(win), HEIGHT(win), win->g_float.x, win->g_float.y,
3330 win->g_float.w, win->g_float.h);
3334 stack_floater(struct ws_win *win, struct swm_region *r)
3339 DNPRINTF(SWM_D_MISC, "stack_floater: window: 0x%x\n", win->id);
3342 * to allow windows to change their size (e.g. mplayer fs) only retrieve
3343 * geom on ws switches or return from max mode
3345 if (win->g_floatvalid && (win->floatmaxed || (r != r->ws->old_r &&
3346 !(win->ewmh_flags & EWMH_F_FULLSCREEN)))) {
3347 /* refloat at last floating relative position */
3348 win->g = win->g_float;
3353 win->floatmaxed = 0;
3356 * if set to fullscreen mode, configure window to maximum size.
3358 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
3359 if (!win->g_floatvalid)
3360 store_float_geom(win, win->ws->r);
3362 win->g = win->ws->r->g;
3366 * remove border on fullscreen floater when in fullscreen mode or when
3367 * the quirk is present.
3369 if ((win->ewmh_flags & EWMH_F_FULLSCREEN) ||
3370 ((win->quirks & SWM_Q_FULLSCREEN) &&
3371 (WIDTH(win) >= WIDTH(r)) && (HEIGHT(win) >= HEIGHT(r)))) {
3372 if (win->bordered) {
3374 X(win) += border_width;
3375 Y(win) += border_width;
3377 } else if (!win->bordered) {
3379 X(win) -= border_width;
3380 Y(win) -= border_width;
3383 if (win->transient && (win->quirks & SWM_Q_TRANSSZ)) {
3384 WIDTH(win) = (double)WIDTH(r) * dialog_ratio;
3385 HEIGHT(win) = (double)HEIGHT(r) * dialog_ratio;
3390 * floaters and transients are auto-centred unless moved
3393 X(win) = X(r) + (WIDTH(r) - WIDTH(win)) / 2 - BORDER(win);
3394 Y(win) = Y(r) + (HEIGHT(r) - HEIGHT(win)) / 2 - BORDER(win);
3397 /* keep window within region bounds */
3398 constrain_window(win, r, 0);
3404 * Send keystrokes to terminal to decrease/increase the font size as the
3405 * window size changes.
3408 adjust_font(struct ws_win *win)
3410 if (!(win->quirks & SWM_Q_XTERM_FONTADJ) ||
3411 win->floating || win->transient)
3414 if (win->sh.width_inc && win->last_inc != win->sh.width_inc &&
3415 WIDTH(win) / win->sh.width_inc < term_width &&
3416 win->font_steps < SWM_MAX_FONT_STEPS) {
3417 win->font_size_boundary[win->font_steps] =
3418 (win->sh.width_inc * term_width) + win->sh.base_width;
3421 win->last_inc = win->sh.width_inc;
3422 fake_keypress(win, XK_KP_Subtract, XCB_MOD_MASK_SHIFT);
3423 } else if (win->font_steps && win->last_inc != win->sh.width_inc &&
3424 WIDTH(win) > win->font_size_boundary[win->font_steps - 1]) {
3427 win->last_inc = win->sh.width_inc;
3428 fake_keypress(win, XK_KP_Add, XCB_MOD_MASK_SHIFT);
3432 #define SWAPXY(g) do { \
3434 tmp = (g)->y; (g)->y = (g)->x; (g)->x = tmp; \
3435 tmp = (g)->h; (g)->h = (g)->w; (g)->w = tmp; \
3438 stack_master(struct workspace *ws, struct swm_geometry *g, int rot, int flip)
3440 struct swm_geometry win_g, r_g = *g;
3441 struct ws_win *win, *fs_win = NULL;
3442 int i, j, s, stacks;
3443 int w_inc = 1, h_inc, w_base = 1, h_base;
3444 int hrh, extra = 0, h_slice, last_h = 0;
3445 int split, colno, winno, mwin, msize, mscale;
3446 int remain, missing, v_slice, reconfigure;
3448 xcb_get_window_attributes_reply_t *war;
3450 DNPRINTF(SWM_D_STACK, "stack_master: workspace: %d, rot: %s, "
3451 "flip: %s\n", ws->idx, YESNO(rot), YESNO(flip));
3453 winno = count_win(ws, 0);
3454 if (winno == 0 && count_win(ws, 1) == 0)
3457 TAILQ_FOREACH(win, &ws->winlist, entry)
3458 if (win->transient == 0 && win->floating == 0
3459 && win->iconic == 0)
3466 w_inc = win->sh.width_inc;
3467 w_base = win->sh.base_width;
3468 mwin = ws->l_state.horizontal_mwin;
3469 mscale = ws->l_state.horizontal_msize;
3470 stacks = ws->l_state.horizontal_stacks;
3473 w_inc = win->sh.height_inc;
3474 w_base = win->sh.base_height;
3475 mwin = ws->l_state.vertical_mwin;
3476 mscale = ws->l_state.vertical_msize;
3477 stacks = ws->l_state.vertical_stacks;
3481 if (stacks > winno - mwin)
3482 stacks = winno - mwin;
3486 h_slice = r_g.h / SWM_H_SLICE;
3487 if (mwin && winno > mwin) {
3488 v_slice = r_g.w / SWM_V_SLICE;
3492 win_g.w = v_slice * mscale;
3494 if (w_inc > 1 && w_inc < v_slice) {
3495 /* adjust for window's requested size increment */
3496 remain = (win_g.w - w_base) % w_inc;
3502 win_g.x += r_g.w - msize;
3505 colno = split = winno / stacks;
3506 win_g.w = ((r_g.w - (stacks * 2 * border_width) +
3507 2 * border_width) / stacks);
3509 hrh = r_g.h / colno;
3510 extra = r_g.h - (colno * hrh);
3511 win_g.h = hrh - 2 * border_width;
3513 /* stack all the tiled windows */
3514 i = j = 0, s = stacks;
3515 TAILQ_FOREACH(win, &ws->winlist, entry) {
3516 if (win->transient != 0 || win->floating != 0)
3518 if (win->iconic != 0)
3521 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
3526 if (split && i == split) {
3527 colno = (winno - mwin) / stacks;
3528 if (s <= (winno - mwin) % stacks)
3530 split = split + colno;
3531 hrh = (r_g.h / colno);
3532 extra = r_g.h - (colno * hrh);
3536 win_g.x += win_g.w + 2 * border_width;
3537 win_g.w = (r_g.w - msize -
3538 (stacks * 2 * border_width)) / stacks;
3540 win_g.w += (r_g.w - msize -
3541 (stacks * 2 * border_width)) % stacks;
3545 win_g.h = hrh - 2 * border_width;
3547 h_inc = win->sh.width_inc;
3548 h_base = win->sh.base_width;
3550 h_inc = win->sh.height_inc;
3551 h_base = win->sh.base_height;
3553 if (j == colno - 1) {
3554 win_g.h = hrh + extra;
3555 } else if (h_inc > 1 && h_inc < h_slice) {
3556 /* adjust for window's requested size increment */
3557 remain = (win_g.h - h_base) % h_inc;
3558 missing = h_inc - remain;
3560 if (missing <= extra || j == 0) {
3572 win_g.y += last_h + 2 * border_width;
3574 if (disable_border && bar_enabled == 0 && winno == 1){
3576 win_g.w += 2 * border_width;
3577 win_g.h += 2 * border_width;
3582 if (X(win) != win_g.y || Y(win) != win_g.x ||
3583 WIDTH(win) != win_g.h || HEIGHT(win) != win_g.w) {
3587 WIDTH(win) = win_g.h;
3588 HEIGHT(win) = win_g.w;
3591 if (X(win) != win_g.x || Y(win) != win_g.y ||
3592 WIDTH(win) != win_g.w || HEIGHT(win) != win_g.h) {
3596 WIDTH(win) = win_g.w;
3597 HEIGHT(win) = win_g.h;
3601 if (bordered != win->bordered) {
3603 win->bordered = bordered;
3611 war = xcb_get_window_attributes_reply(conn,
3612 xcb_get_window_attributes(conn, win->id),
3615 if (war->map_state == XCB_MAP_STATE_UNMAPPED)
3616 map_window_raised(win->id);
3626 /* now, stack all the floaters and transients */
3627 TAILQ_FOREACH(win, &ws->winlist, entry) {
3628 if (win->transient == 0 && win->floating == 0)
3630 if (win->iconic == 1)
3632 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
3637 stack_floater(win, ws->r);
3638 map_window_raised(win->id);
3642 stack_floater(fs_win, ws->r);
3643 map_window_raised(fs_win->id);
3648 vertical_config(struct workspace *ws, int id)
3650 DNPRINTF(SWM_D_STACK, "vertical_config: id: %d, workspace: %d\n",
3654 case SWM_ARG_ID_STACKRESET:
3655 case SWM_ARG_ID_STACKINIT:
3656 ws->l_state.vertical_msize = SWM_V_SLICE / 2;
3657 ws->l_state.vertical_mwin = 1;
3658 ws->l_state.vertical_stacks = 1;
3660 case SWM_ARG_ID_MASTERSHRINK:
3661 if (ws->l_state.vertical_msize > 1)
3662 ws->l_state.vertical_msize--;
3664 case SWM_ARG_ID_MASTERGROW:
3665 if (ws->l_state.vertical_msize < SWM_V_SLICE - 1)
3666 ws->l_state.vertical_msize++;
3668 case SWM_ARG_ID_MASTERADD:
3669 ws->l_state.vertical_mwin++;
3671 case SWM_ARG_ID_MASTERDEL:
3672 if (ws->l_state.vertical_mwin > 0)
3673 ws->l_state.vertical_mwin--;
3675 case SWM_ARG_ID_STACKINC:
3676 ws->l_state.vertical_stacks++;
3678 case SWM_ARG_ID_STACKDEC:
3679 if (ws->l_state.vertical_stacks > 1)
3680 ws->l_state.vertical_stacks--;
3682 case SWM_ARG_ID_FLIPLAYOUT:
3683 ws->l_state.vertical_flip = !ws->l_state.vertical_flip;
3691 vertical_stack(struct workspace *ws, struct swm_geometry *g)
3693 DNPRINTF(SWM_D_STACK, "vertical_stack: workspace: %d\n", ws->idx);
3695 stack_master(ws, g, 0, ws->l_state.vertical_flip);
3699 horizontal_config(struct workspace *ws, int id)
3701 DNPRINTF(SWM_D_STACK, "horizontal_config: workspace: %d\n", ws->idx);
3704 case SWM_ARG_ID_STACKRESET:
3705 case SWM_ARG_ID_STACKINIT:
3706 ws->l_state.horizontal_mwin = 1;
3707 ws->l_state.horizontal_msize = SWM_H_SLICE / 2;
3708 ws->l_state.horizontal_stacks = 1;
3710 case SWM_ARG_ID_MASTERSHRINK:
3711 if (ws->l_state.horizontal_msize > 1)
3712 ws->l_state.horizontal_msize--;
3714 case SWM_ARG_ID_MASTERGROW:
3715 if (ws->l_state.horizontal_msize < SWM_H_SLICE - 1)
3716 ws->l_state.horizontal_msize++;
3718 case SWM_ARG_ID_MASTERADD:
3719 ws->l_state.horizontal_mwin++;
3721 case SWM_ARG_ID_MASTERDEL:
3722 if (ws->l_state.horizontal_mwin > 0)
3723 ws->l_state.horizontal_mwin--;
3725 case SWM_ARG_ID_STACKINC:
3726 ws->l_state.horizontal_stacks++;
3728 case SWM_ARG_ID_STACKDEC:
3729 if (ws->l_state.horizontal_stacks > 1)
3730 ws->l_state.horizontal_stacks--;
3732 case SWM_ARG_ID_FLIPLAYOUT:
3733 ws->l_state.horizontal_flip = !ws->l_state.horizontal_flip;
3741 horizontal_stack(struct workspace *ws, struct swm_geometry *g)
3743 DNPRINTF(SWM_D_STACK, "horizontal_stack: workspace: %d\n", ws->idx);
3745 stack_master(ws, g, 1, ws->l_state.horizontal_flip);
3748 /* fullscreen view */
3750 max_stack(struct workspace *ws, struct swm_geometry *g)
3752 struct swm_geometry gg = *g;
3753 struct ws_win *win, *wintrans = NULL, *parent = NULL;
3754 int winno, num_screens;
3756 DNPRINTF(SWM_D_STACK, "max_stack: workspace: %d\n", ws->idx);
3761 winno = count_win(ws, 0);
3762 if (winno == 0 && count_win(ws, 1) == 0)
3765 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
3766 TAILQ_FOREACH(win, &ws->winlist, entry) {
3767 if (win->transient) {
3769 parent = find_window(win->transient);
3773 if (win->floating && win->floatmaxed == 0 ) {
3775 * retain geometry for retrieval on exit from
3778 store_float_geom(win, ws->r);
3779 win->floatmaxed = 1;
3782 /* only reconfigure if necessary */
3783 if (X(win) != gg.x || Y(win) != gg.y || WIDTH(win) != gg.w ||
3784 HEIGHT(win) != gg.h) {
3790 WIDTH(win) += 2 * border_width;
3791 HEIGHT(win) += 2 * border_width;
3796 /* unmap only if we don't have multi screen */
3797 if (win != ws->focus)
3798 if (!(num_screens > 1 || outputs > 1))
3802 /* put the last transient on top */
3805 map_window_raised(parent->id);
3806 stack_floater(wintrans, ws->r);
3807 focus_magic(wintrans);
3812 send_to_ws(struct swm_region *r, union arg *args)
3814 int wsid = args->id;
3815 struct ws_win *win = NULL, *parent;
3816 struct workspace *ws, *nws;
3817 char ws_idx_str[SWM_PROPLEN];
3820 if (wsid >= workspace_limit)
3823 if (r && r->ws && r->ws->focus)
3829 if (win->ws->idx == wsid)
3832 DNPRINTF(SWM_D_MOVE, "send_to_ws: window: 0x%x\n", win->id);
3835 nws = &win->s->ws[wsid];
3837 a.id = SWM_ARG_ID_FOCUSPREV;
3839 if (win->transient) {
3840 parent = find_window(win->transient);
3842 unmap_window(parent);
3843 TAILQ_REMOVE(&ws->winlist, parent, entry);
3844 TAILQ_INSERT_TAIL(&nws->winlist, parent, entry);
3849 TAILQ_REMOVE(&ws->winlist, win, entry);
3850 TAILQ_INSERT_TAIL(&nws->winlist, win, entry);
3851 if (TAILQ_EMPTY(&ws->winlist))
3852 r->ws->focus = NULL;
3855 /* Try to update the window's workspace property */
3856 if (snprintf(ws_idx_str, SWM_PROPLEN, "%d", nws->idx) < SWM_PROPLEN) {
3857 DNPRINTF(SWM_D_PROP, "send_to_ws: set property: _SWM_WS: %s\n",
3859 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
3860 a_swm_ws, XCB_ATOM_STRING, 8, strlen(ws_idx_str),
3871 pressbutton(struct swm_region *r, union arg *args)
3873 /* suppress unused warning since var is needed */
3876 xcb_test_fake_input(conn, XCB_BUTTON_PRESS, args->id,
3877 XCB_CURRENT_TIME, XCB_WINDOW_NONE, 0, 0, 0);
3878 xcb_test_fake_input(conn, XCB_BUTTON_RELEASE, args->id,
3879 XCB_CURRENT_TIME, XCB_WINDOW_NONE, 0, 0, 0);
3883 raise_toggle(struct swm_region *r, union arg *args)
3885 /* suppress unused warning since var is needed */
3888 if (r == NULL || r->ws == NULL)
3891 r->ws->always_raise = !r->ws->always_raise;
3893 /* bring floaters back to top */
3894 if (r->ws->always_raise == 0)
3901 iconify(struct swm_region *r, union arg *args)
3905 /* suppress unused warning since var is needed */
3908 if (r->ws->focus == NULL)
3910 unmap_window(r->ws->focus);
3911 update_iconic(r->ws->focus, 1);
3914 r->ws->focus = NULL;
3915 a.id = SWM_ARG_ID_FOCUSCUR;
3922 get_win_name(xcb_window_t win)
3925 xcb_get_property_cookie_t c;
3926 xcb_get_property_reply_t *r;
3928 /* First try _NET_WM_NAME for UTF-8. */
3929 c = xcb_get_property(conn, 0, win, a_netwmname,
3930 XCB_GET_PROPERTY_TYPE_ANY, 0, UINT_MAX);
3931 r = xcb_get_property_reply(conn, c, NULL);
3933 if (!r || r->type == XCB_NONE) {
3935 /* Use WM_NAME instead; no UTF-8. */
3936 c = xcb_get_property(conn, 0, win, XCB_ATOM_WM_NAME,
3937 XCB_GET_PROPERTY_TYPE_ANY, 0, UINT_MAX);
3938 r = xcb_get_property_reply(conn, c, NULL);
3940 if(!r || r->type == XCB_NONE) {
3947 name = strndup(xcb_get_property_value(r),
3948 xcb_get_property_value_length(r));
3955 uniconify(struct swm_region *r, union arg *args)
3962 DNPRINTF(SWM_D_MISC, "uniconify\n");
3964 if (r == NULL || r->ws == NULL)
3967 /* make sure we have anything to uniconify */
3968 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
3969 if (win->ws == NULL)
3970 continue; /* should never happen */
3971 if (win->iconic == 0)
3979 search_resp_action = SWM_SEARCH_UNICONIFY;
3981 spawn_select(r, args, "search", &searchpid);
3983 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
3986 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
3987 if (win->ws == NULL)
3988 continue; /* should never happen */
3989 if (win->iconic == 0)
3992 name = get_win_name(win->id);
3995 fprintf(lfile, "%s.%u\n", name, win->id);
4005 name_workspace(struct swm_region *r, union arg *args)
4009 DNPRINTF(SWM_D_MISC, "name_workspace\n");
4015 search_resp_action = SWM_SEARCH_NAME_WORKSPACE;
4017 spawn_select(r, args, "name_workspace", &searchpid);
4019 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
4022 fprintf(lfile, "%s", "");
4027 search_workspace(struct swm_region *r, union arg *args)
4030 struct workspace *ws;
4033 DNPRINTF(SWM_D_MISC, "search_workspace\n");
4039 search_resp_action = SWM_SEARCH_SEARCH_WORKSPACE;
4041 spawn_select(r, args, "search", &searchpid);
4043 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
4046 for (i = 0; i < workspace_limit; i++) {
4050 fprintf(lfile, "%d%s%s\n", ws->idx + 1,
4051 (ws->name ? ":" : ""), (ws->name ? ws->name : ""));
4058 search_win_cleanup(void)
4060 struct search_window *sw = NULL;
4062 while ((sw = TAILQ_FIRST(&search_wl)) != NULL) {
4063 xcb_destroy_window(conn, sw->indicator);
4064 TAILQ_REMOVE(&search_wl, sw, entry);
4070 search_win(struct swm_region *r, union arg *args)
4072 struct ws_win *win = NULL;
4073 struct search_window *sw = NULL;
4076 int i, width, height;
4084 XRectangle l_ibox, l_lbox;
4086 DNPRINTF(SWM_D_MISC, "search_win\n");
4089 search_resp_action = SWM_SEARCH_SEARCH_WINDOW;
4091 spawn_select(r, args, "search", &searchpid);
4093 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
4096 TAILQ_INIT(&search_wl);
4099 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
4100 if (win->iconic == 1)
4103 sw = calloc(1, sizeof(struct search_window));
4105 warn("search_win: calloc");
4107 search_win_cleanup();
4113 snprintf(s, sizeof s, "%d", i);
4116 w = xcb_generate_id(conn);
4117 wa[0] = r->s->c[SWM_S_COLOR_FOCUS].pixel;
4118 wa[1] = r->s->c[SWM_S_COLOR_UNFOCUS].pixel;
4120 if (bar_font_legacy) {
4121 XmbTextExtents(bar_fs, s, len, &l_ibox, &l_lbox);
4122 width = l_lbox.width + 4;
4123 height = bar_fs_extents->max_logical_extent.height + 4;
4125 XftTextExtentsUtf8(display, bar_font, (FcChar8 *)s, len,
4127 width = info.width + 4;
4128 height = bar_font->height + 4;
4131 xcb_create_window(conn, XCB_COPY_FROM_PARENT, w, win->id, 0, 0,
4132 width, height, 1, XCB_WINDOW_CLASS_INPUT_OUTPUT,
4133 XCB_COPY_FROM_PARENT, XCB_CW_BACK_PIXEL |
4134 XCB_CW_BORDER_PIXEL, wa);
4136 map_window_raised(w);
4139 TAILQ_INSERT_TAIL(&search_wl, sw, entry);
4141 if (bar_font_legacy) {
4142 l_gcv.graphics_exposures = 0;
4143 l_draw = XCreateGC(display, w, 0, &l_gcv);
4145 XSetForeground(display, l_draw,
4146 r->s->c[SWM_S_COLOR_BAR].pixel);
4148 DRAWSTRING(display, w, bar_fs, l_draw, 2,
4149 (bar_fs_extents->max_logical_extent.height -
4150 l_lbox.height) / 2 - l_lbox.y, s, len);
4152 XFreeGC(display, l_draw);
4155 draw = XftDrawCreate(display, w,
4156 DefaultVisual(display, r->s->idx),
4157 DefaultColormap(display, r->s->idx));
4159 XftDrawStringUtf8(draw, &bar_font_color, bar_font, 2,
4160 (HEIGHT(r->bar) + bar_font->height) / 2 -
4161 bar_font->descent, (FcChar8 *)s, len);
4163 XftDrawDestroy(draw);
4166 DNPRINTF(SWM_D_MISC, "search_win: mapped window: 0x%x\n", w);
4168 fprintf(lfile, "%d\n", i);
4178 search_resp_uniconify(char *resp, unsigned long len)
4184 DNPRINTF(SWM_D_MISC, "search_resp_uniconify: resp: %s\n", resp);
4186 TAILQ_FOREACH(win, &search_r->ws->winlist, entry) {
4187 if (win->iconic == 0)
4189 name = get_win_name(win->id);
4192 if (asprintf(&s, "%s.%u", name, win->id) == -1) {
4197 if (strncmp(s, resp, len) == 0) {
4198 /* XXX this should be a callback to generalize */
4199 update_iconic(win, 0);
4208 search_resp_name_workspace(char *resp, unsigned long len)
4210 struct workspace *ws;
4212 DNPRINTF(SWM_D_MISC, "search_resp_name_workspace: resp: %s\n", resp);
4214 if (search_r->ws == NULL)
4219 free(search_r->ws->name);
4220 search_r->ws->name = NULL;
4224 ws->name = strdup(resp);
4225 if (ws->name == NULL) {
4226 DNPRINTF(SWM_D_MISC, "search_resp_name_workspace: "
4227 "strdup: %s", strerror(errno));
4234 search_resp_search_workspace(char *resp)
4241 DNPRINTF(SWM_D_MISC, "search_resp_search_workspace: resp: %s\n", resp);
4245 DNPRINTF(SWM_D_MISC, "search_resp_search_workspace: strdup: %s",
4252 ws_idx = (int)strtonum(q, 1, workspace_limit, &errstr);
4254 DNPRINTF(SWM_D_MISC, "workspace idx is %s: %s",
4261 switchws(search_r, &a);
4265 search_resp_search_window(char *resp)
4270 struct search_window *sw;
4272 DNPRINTF(SWM_D_MISC, "search_resp_search_window: resp: %s\n", resp);
4276 DNPRINTF(SWM_D_MISC, "search_resp_search_window: strdup: %s",
4281 idx = (int)strtonum(s, 1, INT_MAX, &errstr);
4283 DNPRINTF(SWM_D_MISC, "window idx is %s: %s",
4290 TAILQ_FOREACH(sw, &search_wl, entry)
4291 if (idx == sw->idx) {
4297 #define MAX_RESP_LEN 1024
4300 search_do_resp(void)
4306 DNPRINTF(SWM_D_MISC, "search_do_resp:\n");
4311 if ((resp = calloc(1, MAX_RESP_LEN + 1)) == NULL) {
4312 warn("search: calloc");
4316 rbytes = read(select_resp_pipe[0], resp, MAX_RESP_LEN);
4318 warn("search: read error");
4321 resp[rbytes] = '\0';
4324 * Older versions of dmenu (Atleast pre 4.4.1) do not send a
4325 * newline, so work around that by sanitizing the resp now.
4327 resp[strcspn(resp, "\n")] = '\0';
4330 switch (search_resp_action) {
4331 case SWM_SEARCH_UNICONIFY:
4332 search_resp_uniconify(resp, len);
4334 case SWM_SEARCH_NAME_WORKSPACE:
4335 search_resp_name_workspace(resp, len);
4337 case SWM_SEARCH_SEARCH_WORKSPACE:
4338 search_resp_search_workspace(resp);
4340 case SWM_SEARCH_SEARCH_WINDOW:
4341 search_resp_search_window(resp);
4346 if (search_resp_action == SWM_SEARCH_SEARCH_WINDOW)
4347 search_win_cleanup();
4349 search_resp_action = SWM_SEARCH_NONE;
4350 close(select_resp_pipe[0]);
4355 wkill(struct swm_region *r, union arg *args)
4357 DNPRINTF(SWM_D_MISC, "wkill: id: %d\n", args->id);
4359 if (r->ws->focus == NULL)
4362 if (args->id == SWM_ARG_ID_KILLWINDOW)
4363 xcb_kill_client(conn, r->ws->focus->id);
4365 if (r->ws->focus->can_delete)
4366 client_msg(r->ws->focus, a_delete);
4373 floating_toggle_win(struct ws_win *win)
4375 struct swm_region *r;
4385 /* reject floating toggles in max stack mode */
4386 if (win->ws->cur_layout == &layouts[SWM_MAX_STACK])
4389 if (win->floating) {
4390 if (!win->floatmaxed) {
4391 /* retain position for refloat */
4392 store_float_geom(win, r);
4396 if (win->g_floatvalid) {
4397 /* refloat at last floating relative position */
4398 X(win) = win->g_float.x + X(r);
4399 Y(win) = win->g_float.y + Y(r);
4400 WIDTH(win) = win->g_float.w;
4401 HEIGHT(win) = win->g_float.h;
4406 ewmh_update_actions(win);
4412 floating_toggle(struct swm_region *r, union arg *args)
4414 struct ws_win *win = r->ws->focus;
4417 /* suppress unused warning since var is needed */
4423 ewmh_update_win_state(win, ewmh[_NET_WM_STATE_ABOVE].atom,
4424 _NET_WM_STATE_TOGGLE);
4428 if (win == win->ws->focus) {
4429 a.id = SWM_ARG_ID_FOCUSCUR;
4430 focus(win->ws->r, &a);
4434 event_drain(XCB_ENTER_NOTIFY);
4438 constrain_window(struct ws_win *win, struct swm_region *r, int resizable)
4440 if (MAX_X(win) + BORDER(win) > MAX_X(r)) {
4442 WIDTH(win) = MAX_X(r) - X(win) - BORDER(win);
4444 X(win) = MAX_X(r)- WIDTH(win) - BORDER(win);
4447 if (X(win) + BORDER(win) < X(r)) {
4449 WIDTH(win) -= X(r) - X(win) - BORDER(win);
4451 X(win) = X(r) - BORDER(win);
4454 if (MAX_Y(win) + BORDER(win) > MAX_Y(r)) {
4456 HEIGHT(win) = MAX_Y(r) - Y(win) - BORDER(win);
4458 Y(win) = MAX_Y(r) - HEIGHT(win) - BORDER(win);
4461 if (Y(win) + BORDER(win) < Y(r)) {
4463 HEIGHT(win) -= Y(r) - Y(win) - BORDER(win);
4465 Y(win) = Y(r) - BORDER(win);
4471 if (HEIGHT(win) < 1)
4477 update_window(struct ws_win *win)
4482 mask = XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y |
4483 XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT |
4484 XCB_CONFIG_WINDOW_BORDER_WIDTH;
4488 wc[3] = HEIGHT(win);
4489 wc[4] = BORDER(win);
4491 DNPRINTF(SWM_D_EVENT, "update_window: window: 0x%x, (x,y) w x h: "
4492 "(%d,%d) %d x %d, bordered: %s\n", win->id, wc[0], wc[1], wc[2],
4493 wc[3], YESNO(win->bordered));
4495 xcb_configure_window(conn, win->id, mask, wc);
4498 #define SWM_RESIZE_STEPS (50)
4501 resize(struct ws_win *win, union arg *args)
4503 xcb_timestamp_t timestamp = 0;
4504 struct swm_region *r = NULL;
4505 int resize_step = 0;
4506 struct swm_geometry g;
4507 int top = 0, left = 0, resizing;
4509 unsigned int shape; /* cursor style */
4510 xcb_cursor_t cursor;
4511 xcb_font_t cursor_font;
4512 xcb_query_pointer_reply_t *xpr;
4513 xcb_generic_event_t *evt;
4514 xcb_motion_notify_event_t *mne;
4520 if (win->ewmh_flags & EWMH_F_FULLSCREEN)
4523 DNPRINTF(SWM_D_EVENT, "resize: window: 0x%x, floating: %s, "
4524 "transient: 0x%x\n", win->id, YESNO(win->floating),
4527 if (!(win->transient != 0 || win->floating != 0))
4530 /* reject resizes in max mode for floaters (transient ok) */
4531 if (win->floatmaxed)
4535 ewmh_update_win_state(win, ewmh[_SWM_WM_STATE_MANUAL].atom,
4541 case SWM_ARG_ID_WIDTHSHRINK:
4542 WIDTH(win) -= SWM_RESIZE_STEPS;
4545 case SWM_ARG_ID_WIDTHGROW:
4546 WIDTH(win) += SWM_RESIZE_STEPS;
4549 case SWM_ARG_ID_HEIGHTSHRINK:
4550 HEIGHT(win) -= SWM_RESIZE_STEPS;
4553 case SWM_ARG_ID_HEIGHTGROW:
4554 HEIGHT(win) += SWM_RESIZE_STEPS;
4561 constrain_window(win, r, 1);
4563 store_float_geom(win,r);
4567 /* get cursor offset from window root */
4568 xpr = xcb_query_pointer_reply(conn, xcb_query_pointer(conn, win->id),
4575 if (xpr->win_x < WIDTH(win) / 2)
4578 if (xpr->win_y < HEIGHT(win) / 2)
4581 if (args->id == SWM_ARG_ID_CENTER)
4584 shape = (left) ? XC_top_left_corner : XC_top_right_corner;
4586 shape = (left) ? XC_bottom_left_corner : XC_bottom_right_corner;
4588 cursor_font = xcb_generate_id(conn);
4589 xcb_open_font(conn, cursor_font, strlen("cursor"), "cursor");
4591 cursor = xcb_generate_id(conn);
4592 xcb_create_glyph_cursor(conn, cursor, cursor_font, cursor_font,
4593 shape, shape + 1, 0, 0, 0, 0xffff, 0xffff, 0xffff);
4595 xcb_grab_pointer(conn, 0, win->id, MOUSEMASK,
4596 XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC, XCB_WINDOW_NONE, cursor,
4601 while ((evt = xcb_wait_for_event(conn)) && resizing) {
4602 switch (XCB_EVENT_RESPONSE_TYPE(evt)) {
4603 case XCB_BUTTON_RELEASE:
4604 DNPRINTF(SWM_D_EVENT, "resize: BUTTON_RELEASE\n");
4607 case XCB_MOTION_NOTIFY:
4608 mne = (xcb_motion_notify_event_t *)evt;
4609 /* cursor offset/delta from start of the operation */
4610 dx = mne->root_x - xpr->root_x;
4611 dy = mne->root_y - xpr->root_y;
4617 if (args->id == SWM_ARG_ID_CENTER) {
4618 if (g.h / 2 + dy < 1)
4622 HEIGHT(win) = g.h + 2 * dy;
4630 HEIGHT(win) = g.h + dy;
4637 if (args->id == SWM_ARG_ID_CENTER) {
4638 if (g.w / 2 + dx < 1)
4642 WIDTH(win) = g.w + 2 * dx;
4650 WIDTH(win) = g.w + dx;
4653 constrain_window(win, r, 1);
4655 /* not free, don't sync more than 120 times / second */
4656 if ((mne->time - timestamp) > (1000 / 120) ) {
4657 timestamp = mne->time;
4672 store_float_geom(win,r);
4674 xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
4675 xcb_free_cursor(conn, cursor);
4676 xcb_close_font(conn, cursor_font);
4678 DNPRINTF(SWM_D_EVENT, "resize: done\n");
4682 resize_step(struct swm_region *r, union arg *args)
4684 struct ws_win *win = NULL;
4686 if (r && r->ws && r->ws->focus)
4694 #define SWM_MOVE_STEPS (50)
4697 move(struct ws_win *win, union arg *args)
4699 xcb_timestamp_t timestamp = 0;
4700 int move_step = 0, moving;
4701 struct swm_region *r = NULL;
4702 xcb_font_t cursor_font;
4703 xcb_cursor_t cursor;
4704 xcb_query_pointer_reply_t *qpr;
4705 xcb_generic_event_t *evt;
4706 xcb_motion_notify_event_t *mne;
4712 if (win->ewmh_flags & EWMH_F_FULLSCREEN)
4715 DNPRINTF(SWM_D_EVENT, "move: window: 0x%x, floating: %s, transient: "
4716 "0x%x\n", win->id, YESNO(win->floating), win->transient);
4718 /* in max_stack mode should only move transients */
4719 if (win->ws->cur_layout == &layouts[SWM_MAX_STACK] && !win->transient)
4723 if (win->floating == 0 && !win->transient) {
4724 store_float_geom(win, r);
4725 ewmh_update_win_state(win, ewmh[_NET_WM_STATE_ABOVE].atom,
4728 ewmh_update_win_state(win, ewmh[_SWM_WM_STATE_MANUAL].atom,
4735 case SWM_ARG_ID_MOVELEFT:
4736 X(win) -= (SWM_MOVE_STEPS - border_width);
4739 case SWM_ARG_ID_MOVERIGHT:
4740 X(win) += (SWM_MOVE_STEPS - border_width);
4743 case SWM_ARG_ID_MOVEUP:
4744 Y(win) -= (SWM_MOVE_STEPS - border_width);
4747 case SWM_ARG_ID_MOVEDOWN:
4748 Y(win) += (SWM_MOVE_STEPS - border_width);
4755 constrain_window(win, r, 0);
4757 store_float_geom(win, r);
4761 cursor_font = xcb_generate_id(conn);
4762 xcb_open_font(conn, cursor_font, strlen("cursor"), "cursor");
4764 cursor = xcb_generate_id(conn);
4765 xcb_create_glyph_cursor(conn, cursor, cursor_font, cursor_font,
4766 XC_fleur, XC_fleur + 1, 0, 0, 0, 0xffff, 0xffff, 0xffff);
4768 xcb_grab_pointer(conn, 0, win->id, MOUSEMASK,
4769 XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC,
4770 XCB_WINDOW_NONE, cursor, XCB_CURRENT_TIME);
4772 /* get cursor offset from window root */
4773 qpr = xcb_query_pointer_reply(conn, xcb_query_pointer(conn, win->id),
4776 xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
4777 xcb_free_cursor(conn, cursor);
4778 xcb_close_font(conn, cursor_font);
4784 while ((evt = xcb_wait_for_event(conn)) && moving) {
4785 switch (XCB_EVENT_RESPONSE_TYPE(evt)) {
4786 case XCB_BUTTON_RELEASE:
4787 DNPRINTF(SWM_D_EVENT, "move: BUTTON_RELEASE\n");
4790 case XCB_MOTION_NOTIFY:
4791 mne = (xcb_motion_notify_event_t *)evt;
4792 X(win) = mne->root_x - qpr->win_x - border_width;
4793 Y(win) = mne->root_y - qpr->win_y - border_width;
4795 constrain_window(win, r, 0);
4797 /* not free, don't sync more than 120 times / second */
4798 if ((mne->time - timestamp) > (1000 / 120) ) {
4799 timestamp = mne->time;
4814 store_float_geom(win, r);
4816 xcb_free_cursor(conn, cursor);
4817 xcb_close_font(conn, cursor_font);
4818 xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
4819 DNPRINTF(SWM_D_EVENT, "move: done\n");
4823 move_step(struct swm_region *r, union arg *args)
4825 struct ws_win *win = NULL;
4827 if (r && r->ws && r->ws->focus)
4832 if (!(win->transient != 0 || win->floating != 0))
4839 /* user/key callable function IDs */
4889 KF_SEARCH_WORKSPACE,
4930 KF_DUMPWINS, /* MUST BE LAST */
4934 /* key definitions */
4936 char name[SWM_FUNCNAME_LEN];
4937 void (*func)(struct swm_region *r, union arg *);
4939 } keyfuncs[KF_INVALID + 1] = {
4940 /* name function argument */
4941 { "bar_toggle", bar_toggle, {0} },
4942 { "button2", pressbutton, {2} },
4943 { "cycle_layout", cycle_layout, {0} },
4944 { "flip_layout", stack_config, {.id = SWM_ARG_ID_FLIPLAYOUT} },
4945 { "float_toggle", floating_toggle,{0} },
4946 { "focus_main", focus, {.id = SWM_ARG_ID_FOCUSMAIN} },
4947 { "focus_next", focus, {.id = SWM_ARG_ID_FOCUSNEXT} },
4948 { "focus_prev", focus, {.id = SWM_ARG_ID_FOCUSPREV} },
4949 { "height_grow", resize_step, {.id = SWM_ARG_ID_HEIGHTGROW} },
4950 { "height_shrink", resize_step, {.id = SWM_ARG_ID_HEIGHTSHRINK} },
4951 { "iconify", iconify, {0} },
4952 { "master_shrink", stack_config, {.id = SWM_ARG_ID_MASTERSHRINK} },
4953 { "master_grow", stack_config, {.id = SWM_ARG_ID_MASTERGROW} },
4954 { "master_add", stack_config, {.id = SWM_ARG_ID_MASTERADD} },
4955 { "master_del", stack_config, {.id = SWM_ARG_ID_MASTERDEL} },
4956 { "move_down", move_step, {.id = SWM_ARG_ID_MOVEDOWN} },
4957 { "move_left", move_step, {.id = SWM_ARG_ID_MOVELEFT} },
4958 { "move_right", move_step, {.id = SWM_ARG_ID_MOVERIGHT} },
4959 { "move_up", move_step, {.id = SWM_ARG_ID_MOVEUP} },
4960 { "mvws_1", send_to_ws, {.id = 0} },
4961 { "mvws_2", send_to_ws, {.id = 1} },
4962 { "mvws_3", send_to_ws, {.id = 2} },
4963 { "mvws_4", send_to_ws, {.id = 3} },
4964 { "mvws_5", send_to_ws, {.id = 4} },
4965 { "mvws_6", send_to_ws, {.id = 5} },
4966 { "mvws_7", send_to_ws, {.id = 6} },
4967 { "mvws_8", send_to_ws, {.id = 7} },
4968 { "mvws_9", send_to_ws, {.id = 8} },
4969 { "mvws_10", send_to_ws, {.id = 9} },
4970 { "mvws_11", send_to_ws, {.id = 10} },
4971 { "mvws_12", send_to_ws, {.id = 11} },
4972 { "mvws_13", send_to_ws, {.id = 12} },
4973 { "mvws_14", send_to_ws, {.id = 13} },
4974 { "mvws_15", send_to_ws, {.id = 14} },
4975 { "mvws_16", send_to_ws, {.id = 15} },
4976 { "mvws_17", send_to_ws, {.id = 16} },
4977 { "mvws_18", send_to_ws, {.id = 17} },
4978 { "mvws_19", send_to_ws, {.id = 18} },
4979 { "mvws_20", send_to_ws, {.id = 19} },
4980 { "mvws_21", send_to_ws, {.id = 20} },
4981 { "mvws_22", send_to_ws, {.id = 21} },
4982 { "name_workspace", name_workspace, {0} },
4983 { "quit", quit, {0} },
4984 { "raise_toggle", raise_toggle, {0} },
4985 { "restart", restart, {0} },
4986 { "screen_next", cyclescr, {.id = SWM_ARG_ID_CYCLESC_UP} },
4987 { "screen_prev", cyclescr, {.id = SWM_ARG_ID_CYCLESC_DOWN} },
4988 { "search_win", search_win, {0} },
4989 { "search_workspace", search_workspace, {0} },
4990 { "spawn_custom", NULL, {0} },
4991 { "stack_inc", stack_config, {.id = SWM_ARG_ID_STACKINC} },
4992 { "stack_dec", stack_config, {.id = SWM_ARG_ID_STACKDEC} },
4993 { "stack_reset", stack_config, {.id = SWM_ARG_ID_STACKRESET} },
4994 { "swap_main", swapwin, {.id = SWM_ARG_ID_SWAPMAIN} },
4995 { "swap_next", swapwin, {.id = SWM_ARG_ID_SWAPNEXT} },
4996 { "swap_prev", swapwin, {.id = SWM_ARG_ID_SWAPPREV} },
4997 { "uniconify", uniconify, {0} },
4998 { "version", version, {0} },
4999 { "width_grow", resize_step, {.id = SWM_ARG_ID_WIDTHGROW} },
5000 { "width_shrink", resize_step, {.id = SWM_ARG_ID_WIDTHSHRINK} },
5001 { "wind_del", wkill, {.id = SWM_ARG_ID_DELETEWINDOW} },
5002 { "wind_kill", wkill, {.id = SWM_ARG_ID_KILLWINDOW} },
5003 { "ws_1", switchws, {.id = 0} },
5004 { "ws_2", switchws, {.id = 1} },
5005 { "ws_3", switchws, {.id = 2} },
5006 { "ws_4", switchws, {.id = 3} },
5007 { "ws_5", switchws, {.id = 4} },
5008 { "ws_6", switchws, {.id = 5} },
5009 { "ws_7", switchws, {.id = 6} },
5010 { "ws_8", switchws, {.id = 7} },
5011 { "ws_9", switchws, {.id = 8} },
5012 { "ws_10", switchws, {.id = 9} },
5013 { "ws_11", switchws, {.id = 10} },
5014 { "ws_12", switchws, {.id = 11} },
5015 { "ws_13", switchws, {.id = 12} },
5016 { "ws_14", switchws, {.id = 13} },
5017 { "ws_15", switchws, {.id = 14} },
5018 { "ws_16", switchws, {.id = 15} },
5019 { "ws_17", switchws, {.id = 16} },
5020 { "ws_18", switchws, {.id = 17} },
5021 { "ws_19", switchws, {.id = 18} },
5022 { "ws_20", switchws, {.id = 19} },
5023 { "ws_21", switchws, {.id = 20} },
5024 { "ws_22", switchws, {.id = 21} },
5025 { "ws_next", cyclews, {.id = SWM_ARG_ID_CYCLEWS_UP} },
5026 { "ws_next_all", cyclews, {.id = SWM_ARG_ID_CYCLEWS_UP_ALL} },
5027 { "ws_prev", cyclews, {.id = SWM_ARG_ID_CYCLEWS_DOWN} },
5028 { "ws_prev_all", cyclews, {.id = SWM_ARG_ID_CYCLEWS_DOWN_ALL} },
5029 { "ws_prior", priorws, {0} },
5030 { "dumpwins", dumpwins, {0} }, /* MUST BE LAST */
5031 { "invalid key func", NULL, {0} },
5034 RB_ENTRY(key) entry;
5037 enum keyfuncid funcid;
5040 RB_HEAD(key_tree, key);
5043 key_cmp(struct key *kp1, struct key *kp2)
5045 if (kp1->keysym < kp2->keysym)
5047 if (kp1->keysym > kp2->keysym)
5050 if (kp1->mod < kp2->mod)
5052 if (kp1->mod > kp2->mod)
5058 RB_GENERATE(key_tree, key, entry, key_cmp);
5059 struct key_tree keys;
5062 enum { client_click, root_click };
5064 unsigned int action;
5066 unsigned int button;
5067 void (*func)(struct ws_win *, union arg *);
5070 #define MODKEY_SHIFT MODKEY | XCB_MOD_MASK_SHIFT
5071 /* action key mouse button func args */
5072 { client_click, MODKEY, Button3, resize, {.id = SWM_ARG_ID_DONTCENTER} },
5073 { client_click, MODKEY_SHIFT, Button3, resize, {.id = SWM_ARG_ID_CENTER} },
5074 { client_click, MODKEY, Button1, move, {0} },
5079 update_modkey(unsigned int mod)
5085 RB_FOREACH(kp, key_tree, &keys)
5086 if (kp->mod & XCB_MOD_MASK_SHIFT)
5087 kp->mod = mod | XCB_MOD_MASK_SHIFT;
5091 for (i = 0; i < LENGTH(buttons); i++)
5092 if (buttons[i].mask & XCB_MOD_MASK_SHIFT)
5093 buttons[i].mask = mod | XCB_MOD_MASK_SHIFT;
5095 buttons[i].mask = mod;
5100 TAILQ_ENTRY(spawn_prog) entry;
5105 TAILQ_HEAD(spawn_list, spawn_prog);
5106 struct spawn_list spawns = TAILQ_HEAD_INITIALIZER(spawns);
5109 spawn_expand(struct swm_region *r, union arg *args, char *spawn_name,
5112 struct spawn_prog *prog = NULL;
5114 char *ap, **real_args;
5116 /* suppress unused warning since var is needed */
5119 DNPRINTF(SWM_D_SPAWN, "spawn_expand: %s\n", spawn_name);
5122 TAILQ_FOREACH(prog, &spawns, entry) {
5123 if (!strcasecmp(spawn_name, prog->name))
5127 warnx("spawn_custom: program %s not found", spawn_name);
5131 /* make room for expanded args */
5132 if ((real_args = calloc(prog->argc + 1, sizeof(char *))) == NULL)
5133 err(1, "spawn_custom: calloc real_args");
5135 /* expand spawn_args into real_args */
5136 for (i = 0; i < prog->argc; i++) {
5138 DNPRINTF(SWM_D_SPAWN, "spawn_custom: raw arg: %s\n", ap);
5139 if (!strcasecmp(ap, "$bar_border")) {
5141 strdup(r->s->c[SWM_S_COLOR_BAR_BORDER].name))
5143 err(1, "spawn_custom border color");
5144 } else if (!strcasecmp(ap, "$bar_color")) {
5146 strdup(r->s->c[SWM_S_COLOR_BAR].name))
5148 err(1, "spawn_custom bar color");
5149 } else if (!strcasecmp(ap, "$bar_font")) {
5150 if ((real_args[i] = strdup(bar_fonts))
5152 err(1, "spawn_custom bar fonts");
5153 } else if (!strcasecmp(ap, "$bar_font_color")) {
5155 strdup(r->s->c[SWM_S_COLOR_BAR_FONT].name))
5157 err(1, "spawn_custom color font");
5158 } else if (!strcasecmp(ap, "$color_focus")) {
5160 strdup(r->s->c[SWM_S_COLOR_FOCUS].name))
5162 err(1, "spawn_custom color focus");
5163 } else if (!strcasecmp(ap, "$color_unfocus")) {
5165 strdup(r->s->c[SWM_S_COLOR_UNFOCUS].name))
5167 err(1, "spawn_custom color unfocus");
5169 /* no match --> copy as is */
5170 if ((real_args[i] = strdup(ap)) == NULL)
5171 err(1, "spawn_custom strdup(ap)");
5173 DNPRINTF(SWM_D_SPAWN, "spawn_custom: cooked arg: %s\n",
5178 DNPRINTF(SWM_D_SPAWN, "spawn_custom: result: ");
5179 for (i = 0; i < prog->argc; i++)
5180 DNPRINTF(SWM_D_SPAWN, "\"%s\" ", real_args[i]);
5181 DNPRINTF(SWM_D_SPAWN, "\n");
5183 *ret_args = real_args;
5184 return (prog->argc);
5188 spawn_custom(struct swm_region *r, union arg *args, char *spawn_name)
5194 if ((spawn_argc = spawn_expand(r, args, spawn_name, &real_args)) < 0)
5198 spawn(r->ws->idx, &a, 1);
5200 for (i = 0; i < spawn_argc; i++)
5206 spawn_select(struct swm_region *r, union arg *args, char *spawn_name, int *pid)
5212 if ((spawn_argc = spawn_expand(r, args, spawn_name, &real_args)) < 0)
5216 if (pipe(select_list_pipe) == -1)
5217 err(1, "pipe error");
5218 if (pipe(select_resp_pipe) == -1)
5219 err(1, "pipe error");
5221 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
5222 err(1, "could not disable SIGPIPE");
5223 switch (*pid = fork()) {
5225 err(1, "cannot fork");
5228 if (dup2(select_list_pipe[0], 0) == -1)
5230 if (dup2(select_resp_pipe[1], 1) == -1)
5232 close(select_list_pipe[1]);
5233 close(select_resp_pipe[0]);
5234 spawn(r->ws->idx, &a, 0);
5236 default: /* parent */
5237 close(select_list_pipe[0]);
5238 close(select_resp_pipe[1]);
5242 for (i = 0; i < spawn_argc; i++)
5248 spawn_insert(char *name, char *args)
5250 char *arg, *cp, *ptr;
5251 struct spawn_prog *sp;
5253 DNPRINTF(SWM_D_SPAWN, "spawn_insert: %s\n", name);
5255 if ((sp = calloc(1, sizeof *sp)) == NULL)
5256 err(1, "spawn_insert: calloc");
5257 if ((sp->name = strdup(name)) == NULL)
5258 err(1, "spawn_insert: strdup");
5260 /* convert the arguments to an argument list */
5261 if ((ptr = cp = strdup(args)) == NULL)
5262 err(1, "spawn_insert: strdup");
5263 while ((arg = strsep(&ptr, " \t")) != NULL) {
5264 /* empty field; skip it */
5269 if ((sp->argv = realloc(sp->argv, sp->argc *
5270 sizeof *sp->argv)) == NULL)
5271 err(1, "spawn_insert: realloc");
5272 if ((sp->argv[sp->argc - 1] = strdup(arg)) == NULL)
5273 err(1, "spawn_insert: strdup");
5277 TAILQ_INSERT_TAIL(&spawns, sp, entry);
5278 DNPRINTF(SWM_D_SPAWN, "spawn_insert: leave\n");
5282 spawn_remove(struct spawn_prog *sp)
5286 DNPRINTF(SWM_D_SPAWN, "spawn_remove: %s\n", sp->name);
5288 TAILQ_REMOVE(&spawns, sp, entry);
5289 for (i = 0; i < sp->argc; i++)
5295 DNPRINTF(SWM_D_SPAWN, "spawn_remove: leave\n");
5299 spawn_replace(struct spawn_prog *sp, char *name, char *args)
5301 DNPRINTF(SWM_D_SPAWN, "spawn_replace: %s [%s]\n", sp->name, name);
5304 spawn_insert(name, args);
5306 DNPRINTF(SWM_D_SPAWN, "spawn_replace: leave\n");
5310 setspawn(char *name, char *args)
5312 struct spawn_prog *sp;
5314 DNPRINTF(SWM_D_SPAWN, "setspawn: %s\n", name);
5319 TAILQ_FOREACH(sp, &spawns, entry) {
5320 if (!strcmp(sp->name, name)) {
5324 spawn_replace(sp, name, args);
5325 DNPRINTF(SWM_D_SPAWN, "setspawn: leave\n");
5329 if (*args == '\0') {
5330 warnx("error: setspawn: cannot find program: %s", name);
5334 spawn_insert(name, args);
5335 DNPRINTF(SWM_D_SPAWN, "setspawn: leave\n");
5339 setconfspawn(char *selector, char *value, int flags)
5343 /* suppress unused warning since var is needed */
5346 args = expand_tilde(value);
5348 DNPRINTF(SWM_D_SPAWN, "setconfspawn: [%s] [%s]\n", selector, args);
5350 setspawn(selector, args);
5353 DNPRINTF(SWM_D_SPAWN, "setconfspawn: done\n");
5360 setconfspawn("term", "xterm", 0);
5361 setconfspawn("spawn_term", "xterm", 0);
5362 setconfspawn("screenshot_all", "screenshot.sh full", 0);
5363 setconfspawn("screenshot_wind", "screenshot.sh window", 0);
5364 setconfspawn("lock", "xlock", 0);
5365 setconfspawn("initscr", "initscreen.sh", 0);
5366 setconfspawn("menu", "dmenu_run"
5369 " -nf $bar_font_color"
5371 " -sf $bar_color", 0);
5372 setconfspawn("search", "dmenu"
5376 " -nf $bar_font_color"
5378 " -sf $bar_color", 0);
5379 setconfspawn("name_workspace", "dmenu"
5383 " -nf $bar_font_color"
5385 " -sf $bar_color", 0);
5389 #define SWM_MODNAME_SIZE 32
5390 #define SWM_KEY_WS "\n+ \t"
5392 parsekeys(char *keystr, unsigned int currmod, unsigned int *mod, KeySym *ks)
5396 DNPRINTF(SWM_D_KEY, "parsekeys: enter [%s]\n", keystr);
5397 if (mod == NULL || ks == NULL) {
5398 DNPRINTF(SWM_D_KEY, "parsekeys: no mod or key vars\n");
5401 if (keystr == NULL || strlen(keystr) == 0) {
5402 DNPRINTF(SWM_D_KEY, "parsekeys: no keystr\n");
5406 *ks = XCB_NO_SYMBOL;
5408 while ((name = strsep(&cp, SWM_KEY_WS)) != NULL) {
5409 DNPRINTF(SWM_D_KEY, "parsekeys: key [%s]\n", name);
5411 cp += (long)strspn(cp, SWM_KEY_WS);
5412 if (strncasecmp(name, "MOD", SWM_MODNAME_SIZE) == 0)
5414 else if (!strncasecmp(name, "Mod1", SWM_MODNAME_SIZE))
5415 *mod |= XCB_MOD_MASK_1;
5416 else if (!strncasecmp(name, "Mod2", SWM_MODNAME_SIZE))
5417 *mod += XCB_MOD_MASK_2;
5418 else if (!strncmp(name, "Mod3", SWM_MODNAME_SIZE))
5419 *mod |= XCB_MOD_MASK_3;
5420 else if (!strncmp(name, "Mod4", SWM_MODNAME_SIZE))
5421 *mod |= XCB_MOD_MASK_4;
5422 else if (strncasecmp(name, "SHIFT", SWM_MODNAME_SIZE) == 0)
5423 *mod |= XCB_MOD_MASK_SHIFT;
5424 else if (strncasecmp(name, "CONTROL", SWM_MODNAME_SIZE) == 0)
5425 *mod |= XCB_MOD_MASK_CONTROL;
5427 *ks = XStringToKeysym(name);
5428 XConvertCase(*ks, ks, &uks);
5429 if (ks == XCB_NO_SYMBOL) {
5431 "parsekeys: invalid key %s\n",
5437 DNPRINTF(SWM_D_KEY, "parsekeys: leave ok\n");
5442 strdupsafe(char *str)
5447 return (strdup(str));
5451 key_insert(unsigned int mod, KeySym ks, enum keyfuncid kfid, char *spawn_name)
5455 DNPRINTF(SWM_D_KEY, "key_insert: enter %s [%s]\n",
5456 keyfuncs[kfid].name, spawn_name);
5458 if ((kp = malloc(sizeof *kp)) == NULL)
5459 err(1, "key_insert: malloc");
5464 kp->spawn_name = strdupsafe(spawn_name);
5465 RB_INSERT(key_tree, &keys, kp);
5467 DNPRINTF(SWM_D_KEY, "key_insert: leave\n");
5471 key_lookup(unsigned int mod, KeySym ks)
5478 return (RB_FIND(key_tree, &keys, &kp));
5482 key_remove(struct key *kp)
5484 DNPRINTF(SWM_D_KEY, "key_remove: %s\n", keyfuncs[kp->funcid].name);
5486 RB_REMOVE(key_tree, &keys, kp);
5487 free(kp->spawn_name);
5490 DNPRINTF(SWM_D_KEY, "key_remove: leave\n");
5494 key_replace(struct key *kp, unsigned int mod, KeySym ks, enum keyfuncid kfid,
5497 DNPRINTF(SWM_D_KEY, "key_replace: %s [%s]\n", keyfuncs[kp->funcid].name,
5501 key_insert(mod, ks, kfid, spawn_name);
5503 DNPRINTF(SWM_D_KEY, "key_replace: leave\n");
5507 setkeybinding(unsigned int mod, KeySym ks, enum keyfuncid kfid,
5512 DNPRINTF(SWM_D_KEY, "setkeybinding: enter %s [%s]\n",
5513 keyfuncs[kfid].name, spawn_name);
5515 if ((kp = key_lookup(mod, ks)) != NULL) {
5516 if (kfid == KF_INVALID)
5519 key_replace(kp, mod, ks, kfid, spawn_name);
5520 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
5523 if (kfid == KF_INVALID) {
5524 warnx("error: setkeybinding: cannot find mod/key combination");
5525 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
5529 key_insert(mod, ks, kfid, spawn_name);
5530 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
5534 setconfbinding(char *selector, char *value, int flags)
5536 enum keyfuncid kfid;
5539 struct spawn_prog *sp;
5541 /* suppress unused warning since var is needed */
5544 DNPRINTF(SWM_D_KEY, "setconfbinding: enter\n");
5545 if (selector == NULL) {
5546 DNPRINTF(SWM_D_KEY, "setconfbinding: unbind %s\n", value);
5547 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
5549 setkeybinding(mod, ks, kfid, NULL);
5554 /* search by key function name */
5555 for (kfid = 0; kfid < KF_INVALID; (kfid)++) {
5556 if (strncasecmp(selector, keyfuncs[kfid].name,
5557 SWM_FUNCNAME_LEN) == 0) {
5558 DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match\n",
5560 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
5561 setkeybinding(mod, ks, kfid, NULL);
5567 /* search by custom spawn name */
5568 TAILQ_FOREACH(sp, &spawns, entry) {
5569 if (strcasecmp(selector, sp->name) == 0) {
5570 DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match\n",
5572 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
5573 setkeybinding(mod, ks, KF_SPAWN_CUSTOM,
5580 DNPRINTF(SWM_D_KEY, "setconfbinding: no match\n");
5587 #define MODKEY_SHIFT MODKEY | XCB_MOD_MASK_SHIFT
5588 setkeybinding(MODKEY, XK_space, KF_CYCLE_LAYOUT,NULL);
5589 setkeybinding(MODKEY_SHIFT, XK_backslash, KF_FLIP_LAYOUT, NULL);
5590 setkeybinding(MODKEY_SHIFT, XK_space, KF_STACK_RESET, NULL);
5591 setkeybinding(MODKEY, XK_h, KF_MASTER_SHRINK, NULL);
5592 setkeybinding(MODKEY, XK_l, KF_MASTER_GROW, NULL);
5593 setkeybinding(MODKEY, XK_comma, KF_MASTER_ADD, NULL);
5594 setkeybinding(MODKEY, XK_period, KF_MASTER_DEL, NULL);
5595 setkeybinding(MODKEY_SHIFT, XK_comma, KF_STACK_INC, NULL);
5596 setkeybinding(MODKEY_SHIFT, XK_period, KF_STACK_DEC, NULL);
5597 setkeybinding(MODKEY, XK_Return, KF_SWAP_MAIN, NULL);
5598 setkeybinding(MODKEY, XK_j, KF_FOCUS_NEXT, NULL);
5599 setkeybinding(MODKEY, XK_k, KF_FOCUS_PREV, NULL);
5600 setkeybinding(MODKEY_SHIFT, XK_j, KF_SWAP_NEXT, NULL);
5601 setkeybinding(MODKEY_SHIFT, XK_k, KF_SWAP_PREV, NULL);
5602 setkeybinding(MODKEY_SHIFT, XK_Return, KF_SPAWN_CUSTOM,"term");
5603 setkeybinding(MODKEY, XK_p, KF_SPAWN_CUSTOM,"menu");
5604 setkeybinding(MODKEY_SHIFT, XK_q, KF_QUIT, NULL);
5605 setkeybinding(MODKEY, XK_q, KF_RESTART, NULL);
5606 setkeybinding(MODKEY, XK_m, KF_FOCUS_MAIN, NULL);
5607 setkeybinding(MODKEY, XK_1, KF_WS_1, NULL);
5608 setkeybinding(MODKEY, XK_2, KF_WS_2, NULL);
5609 setkeybinding(MODKEY, XK_3, KF_WS_3, NULL);
5610 setkeybinding(MODKEY, XK_4, KF_WS_4, NULL);
5611 setkeybinding(MODKEY, XK_5, KF_WS_5, NULL);
5612 setkeybinding(MODKEY, XK_6, KF_WS_6, NULL);
5613 setkeybinding(MODKEY, XK_7, KF_WS_7, NULL);
5614 setkeybinding(MODKEY, XK_8, KF_WS_8, NULL);
5615 setkeybinding(MODKEY, XK_9, KF_WS_9, NULL);
5616 setkeybinding(MODKEY, XK_0, KF_WS_10, NULL);
5617 setkeybinding(MODKEY, XK_F1, KF_WS_11, NULL);
5618 setkeybinding(MODKEY, XK_F2, KF_WS_12, NULL);
5619 setkeybinding(MODKEY, XK_F3, KF_WS_13, NULL);
5620 setkeybinding(MODKEY, XK_F4, KF_WS_14, NULL);
5621 setkeybinding(MODKEY, XK_F5, KF_WS_15, NULL);
5622 setkeybinding(MODKEY, XK_F6, KF_WS_16, NULL);
5623 setkeybinding(MODKEY, XK_F7, KF_WS_17, NULL);
5624 setkeybinding(MODKEY, XK_F8, KF_WS_18, NULL);
5625 setkeybinding(MODKEY, XK_F9, KF_WS_19, NULL);
5626 setkeybinding(MODKEY, XK_F10, KF_WS_20, NULL);
5627 setkeybinding(MODKEY, XK_F11, KF_WS_21, NULL);
5628 setkeybinding(MODKEY, XK_F12, KF_WS_22, NULL);
5629 setkeybinding(MODKEY, XK_Right, KF_WS_NEXT, NULL);
5630 setkeybinding(MODKEY, XK_Left, KF_WS_PREV, NULL);
5631 setkeybinding(MODKEY, XK_Up, KF_WS_NEXT_ALL, NULL);
5632 setkeybinding(MODKEY, XK_Down, KF_WS_PREV_ALL, NULL);
5633 setkeybinding(MODKEY, XK_a, KF_WS_PRIOR, NULL);
5634 setkeybinding(MODKEY_SHIFT, XK_Right, KF_SCREEN_NEXT, NULL);
5635 setkeybinding(MODKEY_SHIFT, XK_Left, KF_SCREEN_PREV, NULL);
5636 setkeybinding(MODKEY_SHIFT, XK_1, KF_MVWS_1, NULL);
5637 setkeybinding(MODKEY_SHIFT, XK_2, KF_MVWS_2, NULL);
5638 setkeybinding(MODKEY_SHIFT, XK_3, KF_MVWS_3, NULL);
5639 setkeybinding(MODKEY_SHIFT, XK_4, KF_MVWS_4, NULL);
5640 setkeybinding(MODKEY_SHIFT, XK_5, KF_MVWS_5, NULL);
5641 setkeybinding(MODKEY_SHIFT, XK_6, KF_MVWS_6, NULL);
5642 setkeybinding(MODKEY_SHIFT, XK_7, KF_MVWS_7, NULL);
5643 setkeybinding(MODKEY_SHIFT, XK_8, KF_MVWS_8, NULL);
5644 setkeybinding(MODKEY_SHIFT, XK_9, KF_MVWS_9, NULL);
5645 setkeybinding(MODKEY_SHIFT, XK_0, KF_MVWS_10, NULL);
5646 setkeybinding(MODKEY_SHIFT, XK_F1, KF_MVWS_11, NULL);
5647 setkeybinding(MODKEY_SHIFT, XK_F2, KF_MVWS_12, NULL);
5648 setkeybinding(MODKEY_SHIFT, XK_F3, KF_MVWS_13, NULL);
5649 setkeybinding(MODKEY_SHIFT, XK_F4, KF_MVWS_14, NULL);
5650 setkeybinding(MODKEY_SHIFT, XK_F5, KF_MVWS_15, NULL);
5651 setkeybinding(MODKEY_SHIFT, XK_F6, KF_MVWS_16, NULL);
5652 setkeybinding(MODKEY_SHIFT, XK_F7, KF_MVWS_17, NULL);
5653 setkeybinding(MODKEY_SHIFT, XK_F8, KF_MVWS_18, NULL);
5654 setkeybinding(MODKEY_SHIFT, XK_F9, KF_MVWS_19, NULL);
5655 setkeybinding(MODKEY_SHIFT, XK_F10, KF_MVWS_20, NULL);
5656 setkeybinding(MODKEY_SHIFT, XK_F11, KF_MVWS_21, NULL);
5657 setkeybinding(MODKEY_SHIFT, XK_F12, KF_MVWS_22, NULL);
5658 setkeybinding(MODKEY, XK_b, KF_BAR_TOGGLE, NULL);
5659 setkeybinding(MODKEY, XK_Tab, KF_FOCUS_NEXT, NULL);
5660 setkeybinding(MODKEY_SHIFT, XK_Tab, KF_FOCUS_PREV, NULL);
5661 setkeybinding(MODKEY_SHIFT, XK_x, KF_WIND_KILL, NULL);
5662 setkeybinding(MODKEY, XK_x, KF_WIND_DEL, NULL);
5663 setkeybinding(MODKEY, XK_s, KF_SPAWN_CUSTOM,"screenshot_all");
5664 setkeybinding(MODKEY_SHIFT, XK_s, KF_SPAWN_CUSTOM,"screenshot_wind");
5665 setkeybinding(MODKEY, XK_t, KF_FLOAT_TOGGLE,NULL);
5666 setkeybinding(MODKEY_SHIFT, XK_v, KF_VERSION, NULL);
5667 setkeybinding(MODKEY_SHIFT, XK_Delete, KF_SPAWN_CUSTOM,"lock");
5668 setkeybinding(MODKEY_SHIFT, XK_i, KF_SPAWN_CUSTOM,"initscr");
5669 setkeybinding(MODKEY, XK_w, KF_ICONIFY, NULL);
5670 setkeybinding(MODKEY_SHIFT, XK_w, KF_UNICONIFY, NULL);
5671 setkeybinding(MODKEY_SHIFT, XK_r, KF_RAISE_TOGGLE,NULL);
5672 setkeybinding(MODKEY, XK_v, KF_BUTTON2, NULL);
5673 setkeybinding(MODKEY, XK_equal, KF_WIDTH_GROW, NULL);
5674 setkeybinding(MODKEY, XK_minus, KF_WIDTH_SHRINK,NULL);
5675 setkeybinding(MODKEY_SHIFT, XK_equal, KF_HEIGHT_GROW,NULL);
5676 setkeybinding(MODKEY_SHIFT, XK_minus, KF_HEIGHT_SHRINK,NULL);
5677 setkeybinding(MODKEY, XK_bracketleft, KF_MOVE_LEFT,NULL);
5678 setkeybinding(MODKEY, XK_bracketright,KF_MOVE_RIGHT,NULL);
5679 setkeybinding(MODKEY_SHIFT, XK_bracketleft, KF_MOVE_UP, NULL);
5680 setkeybinding(MODKEY_SHIFT, XK_bracketright,KF_MOVE_DOWN,NULL);
5681 setkeybinding(MODKEY_SHIFT, XK_slash, KF_NAME_WORKSPACE,NULL);
5682 setkeybinding(MODKEY, XK_slash, KF_SEARCH_WORKSPACE,NULL);
5683 setkeybinding(MODKEY, XK_f, KF_SEARCH_WIN, NULL);
5685 setkeybinding(MODKEY_SHIFT, XK_d, KF_DUMPWINS, NULL);
5695 while (RB_EMPTY(&keys) == 0) {
5696 kp = RB_ROOT(&keys);
5702 setkeymapping(char *selector, char *value, int flags)
5704 char keymapping_file[PATH_MAX];
5706 /* suppress unused warnings since vars are needed */
5710 DNPRINTF(SWM_D_KEY, "setkeymapping: enter\n");
5711 if (value[0] == '~')
5712 snprintf(keymapping_file, sizeof keymapping_file, "%s/%s",
5713 pwd->pw_dir, &value[1]);
5715 strlcpy(keymapping_file, value, sizeof keymapping_file);
5717 /* load new key bindings; if it fails, revert to default bindings */
5718 if (conf_load(keymapping_file, SWM_CONF_KEYMAPPING)) {
5722 DNPRINTF(SWM_D_KEY, "setkeymapping: leave\n");
5727 updatenumlockmask(void)
5730 xcb_get_modifier_mapping_reply_t *modmap_r;
5731 xcb_keycode_t *modmap, kc, *keycode;
5735 modmap_r = xcb_get_modifier_mapping_reply(conn,
5736 xcb_get_modifier_mapping(conn),
5739 modmap = xcb_get_modifier_mapping_keycodes(modmap_r);
5740 for (i = 0; i < 8; i++) {
5741 for (j = 0; j < modmap_r->keycodes_per_modifier; j++) {
5742 kc = modmap[i * modmap_r->keycodes_per_modifier
5744 keycode = xcb_key_symbols_get_keycode(syms,
5747 numlockmask = (1 << i);
5753 DNPRINTF(SWM_D_MISC, "updatenumlockmask: %d\n", numlockmask);
5760 int num_screens, k, j;
5761 unsigned int modifiers[3];
5762 xcb_keycode_t *code;
5764 DNPRINTF(SWM_D_MISC, "grabkeys\n");
5765 updatenumlockmask();
5768 modifiers[1] = numlockmask;
5769 modifiers[2] = numlockmask | XCB_MOD_MASK_LOCK;
5771 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
5772 for (k = 0; k < num_screens; k++) {
5773 if (TAILQ_EMPTY(&screens[k].rl))
5775 xcb_ungrab_key(conn, XCB_GRAB_ANY, screens[k].root,
5777 RB_FOREACH(kp, key_tree, &keys) {
5778 if ((code = xcb_key_symbols_get_keycode(syms,
5780 for (j = 0; j < LENGTH(modifiers); j++)
5781 xcb_grab_key(conn, 1,
5783 kp->mod | modifiers[j],
5784 *code, XCB_GRAB_MODE_ASYNC,
5785 XCB_GRAB_MODE_ASYNC);
5792 grabbuttons(struct ws_win *win, int focused)
5796 xcb_ungrab_button(conn, XCB_BUTTON_INDEX_ANY, win->id,
5797 XCB_BUTTON_MASK_ANY);
5799 for (i = 0; i < LENGTH(buttons); i++)
5800 if (buttons[i].action == client_click)
5801 xcb_grab_button(conn, 0, win->id,
5803 XCB_GRAB_MODE_ASYNC,
5810 xcb_grab_button(conn, 0, win->id, BUTTONMASK,
5811 XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_SYNC, XCB_WINDOW_NONE,
5812 XCB_CURSOR_NONE, XCB_BUTTON_INDEX_ANY, XCB_BUTTON_MASK_ANY);
5815 const char *quirkname[] = {
5816 "NONE", /* config string for "no value" */
5825 /* SWM_Q_WS: retain '|' for back compat for now (2009-08-11) */
5826 #define SWM_Q_WS "\n|+ \t"
5828 parsequirks(char *qstr, unsigned long *quirk)
5838 while ((name = strsep(&cp, SWM_Q_WS)) != NULL) {
5840 cp += (long)strspn(cp, SWM_Q_WS);
5841 for (i = 0; i < LENGTH(quirkname); i++) {
5842 if (!strncasecmp(name, quirkname[i], SWM_QUIRK_LEN)) {
5843 DNPRINTF(SWM_D_QUIRK,
5844 "parsequirks: %s\n", name);
5849 *quirk |= 1 << (i-1);
5853 if (i >= LENGTH(quirkname)) {
5854 DNPRINTF(SWM_D_QUIRK,
5855 "parsequirks: invalid quirk [%s]\n", name);
5863 quirk_insert(const char *class, const char *name, unsigned long quirk)
5867 DNPRINTF(SWM_D_QUIRK, "quirk_insert: %s:%s [%lu]\n", class, name,
5870 if ((qp = malloc(sizeof *qp)) == NULL)
5871 err(1, "quirk_insert: malloc");
5872 if ((qp->class = strdup(class)) == NULL)
5873 err(1, "quirk_insert: strdup");
5874 if ((qp->name = strdup(name)) == NULL)
5875 err(1, "quirk_insert: strdup");
5878 TAILQ_INSERT_TAIL(&quirks, qp, entry);
5880 DNPRINTF(SWM_D_QUIRK, "quirk_insert: leave\n");
5884 quirk_remove(struct quirk *qp)
5886 DNPRINTF(SWM_D_QUIRK, "quirk_remove: %s:%s [%lu]\n", qp->class,
5887 qp->name, qp->quirk);
5889 TAILQ_REMOVE(&quirks, qp, entry);
5894 DNPRINTF(SWM_D_QUIRK, "quirk_remove: leave\n");
5898 quirk_replace(struct quirk *qp, const char *class, const char *name,
5899 unsigned long quirk)
5901 DNPRINTF(SWM_D_QUIRK, "quirk_replace: %s:%s [%lu]\n", qp->class,
5902 qp->name, qp->quirk);
5905 quirk_insert(class, name, quirk);
5907 DNPRINTF(SWM_D_QUIRK, "quirk_replace: leave\n");
5911 setquirk(const char *class, const char *name, unsigned long quirk)
5915 DNPRINTF(SWM_D_QUIRK, "setquirk: enter %s:%s [%lu]\n", class, name,
5918 TAILQ_FOREACH(qp, &quirks, entry) {
5919 if (!strcmp(qp->class, class) && !strcmp(qp->name, name)) {
5923 quirk_replace(qp, class, name, quirk);
5924 DNPRINTF(SWM_D_QUIRK, "setquirk: leave\n");
5929 warnx("error: setquirk: cannot find class/name combination");
5933 quirk_insert(class, name, quirk);
5934 DNPRINTF(SWM_D_QUIRK, "setquirk: leave\n");
5938 setconfquirk(char *selector, char *value, int flags)
5940 char *cp, *class, *name;
5944 /* suppress unused warning since var is needed */
5947 if (selector == NULL)
5949 if ((cp = strchr(selector, ':')) == NULL)
5954 if ((retval = parsequirks(value, &qrks)) == 0)
5955 setquirk(class, name, qrks);
5962 setquirk("MPlayer", "xv", SWM_Q_FLOAT | SWM_Q_FULLSCREEN | SWM_Q_FOCUSPREV);
5963 setquirk("OpenOffice.org 3.2", "VCLSalFrame", SWM_Q_FLOAT);
5964 setquirk("Firefox-bin", "firefox-bin", SWM_Q_TRANSSZ);
5965 setquirk("Firefox", "Dialog", SWM_Q_FLOAT);
5966 setquirk("Gimp", "gimp", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
5967 setquirk("XTerm", "xterm", SWM_Q_XTERM_FONTADJ);
5968 setquirk("xine", "Xine Window", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
5969 setquirk("Xitk", "Xitk Combo", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
5970 setquirk("xine", "xine Panel", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
5971 setquirk("Xitk", "Xine Window", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
5972 setquirk("xine", "xine Video Fullscreen Window", SWM_Q_FULLSCREEN | SWM_Q_FLOAT);
5973 setquirk("pcb", "pcb", SWM_Q_FLOAT);
5974 setquirk("SDL_App", "SDL_App", SWM_Q_FLOAT | SWM_Q_FULLSCREEN);
5977 /* conf file stuff */
5978 #define SWM_CONF_FILE "spectrwm.conf"
5979 #define SWM_CONF_FILE_OLD "scrotwm.conf"
5983 SWM_S_BAR_AT_BOTTOM,
5984 SWM_S_BAR_BORDER_WIDTH,
5991 SWM_S_CLOCK_ENABLED,
5994 SWM_S_CYCLE_VISIBLE,
5996 SWM_S_DISABLE_BORDER,
5998 SWM_S_FOCUS_CLOSE_WRAP,
5999 SWM_S_FOCUS_DEFAULT,
6005 SWM_S_STACK_ENABLED,
6007 SWM_S_TITLE_CLASS_ENABLED,
6008 SWM_S_TITLE_NAME_ENABLED,
6009 SWM_S_URGENT_ENABLED,
6010 SWM_S_VERBOSE_LAYOUT,
6011 SWM_S_WINDOW_NAME_ENABLED,
6012 SWM_S_WORKSPACE_LIMIT
6016 setconfvalue(char *selector, char *value, int flags)
6021 /* suppress unused warning since var is needed */
6025 case SWM_S_BAR_ACTION:
6027 if ((bar_argv[0] = expand_tilde(value)) == NULL)
6028 err(1, "setconfvalue: bar_action");
6030 case SWM_S_BAR_AT_BOTTOM:
6031 bar_at_bottom = atoi(value);
6033 case SWM_S_BAR_BORDER_WIDTH:
6034 bar_border_width = atoi(value);
6035 if (bar_border_width < 0)
6036 bar_border_width = 0;
6038 case SWM_S_BAR_DELAY:
6039 bar_delay = atoi(value);
6041 case SWM_S_BAR_ENABLED:
6042 bar_enabled = atoi(value);
6044 case SWM_S_BAR_FONT:
6046 if (asprintf(&bar_fonts, "%s,%s", value, bar_fonts) == -1)
6047 err(1, "setconfvalue: asprintf: failed to allocate "
6048 "memory for bar_fonts.");
6051 /* If already in xft mode, then we are done. */
6052 if (!bar_font_legacy)
6055 /* If there are any non-XLFD entries, switch to Xft mode. */
6056 while ((b = strsep(&value, ",")) != NULL) {
6060 bar_font_legacy = 0;
6065 case SWM_S_BAR_FORMAT:
6067 if ((bar_format = strdup(value)) == NULL)
6068 err(1, "setconfvalue: bar_format");
6070 case SWM_S_BAR_JUSTIFY:
6071 if (!strcmp(value, "left"))
6072 bar_justify = SWM_BAR_JUSTIFY_LEFT;
6073 else if (!strcmp(value, "center"))
6074 bar_justify = SWM_BAR_JUSTIFY_CENTER;
6075 else if (!strcmp(value, "right"))
6076 bar_justify = SWM_BAR_JUSTIFY_RIGHT;
6078 errx(1, "invalid bar_justify");
6080 case SWM_S_BORDER_WIDTH:
6081 border_width = atoi(value);
6082 if (border_width < 0)
6085 case SWM_S_CLOCK_ENABLED:
6086 clock_enabled = atoi(value);
6088 case SWM_S_CLOCK_FORMAT:
6089 #ifndef SWM_DENY_CLOCK_FORMAT
6091 if ((clock_format = strdup(value)) == NULL)
6092 err(1, "setconfvalue: clock_format");
6095 case SWM_S_CYCLE_EMPTY:
6096 cycle_empty = atoi(value);
6098 case SWM_S_CYCLE_VISIBLE:
6099 cycle_visible = atoi(value);
6101 case SWM_S_DIALOG_RATIO:
6102 dialog_ratio = atof(value);
6103 if (dialog_ratio > 1.0 || dialog_ratio <= .3)
6106 case SWM_S_DISABLE_BORDER:
6107 disable_border = atoi(value);
6109 case SWM_S_FOCUS_CLOSE:
6110 if (!strcmp(value, "first"))
6111 focus_close = SWM_STACK_BOTTOM;
6112 else if (!strcmp(value, "last"))
6113 focus_close = SWM_STACK_TOP;
6114 else if (!strcmp(value, "next"))
6115 focus_close = SWM_STACK_ABOVE;
6116 else if (!strcmp(value, "previous"))
6117 focus_close = SWM_STACK_BELOW;
6119 errx(1, "focus_close");
6121 case SWM_S_FOCUS_CLOSE_WRAP:
6122 focus_close_wrap = atoi(value);
6124 case SWM_S_FOCUS_DEFAULT:
6125 if (!strcmp(value, "last"))
6126 focus_default = SWM_STACK_TOP;
6127 else if (!strcmp(value, "first"))
6128 focus_default = SWM_STACK_BOTTOM;
6130 errx(1, "focus_default");
6132 case SWM_S_FOCUS_MODE:
6133 if (!strcmp(value, "default"))
6134 focus_mode = SWM_FOCUS_DEFAULT;
6135 else if (!strcmp(value, "follow_cursor"))
6136 focus_mode = SWM_FOCUS_FOLLOW;
6137 else if (!strcmp(value, "synergy"))
6138 focus_mode = SWM_FOCUS_SYNERGY;
6140 errx(1, "focus_mode");
6142 case SWM_S_SPAWN_ORDER:
6143 if (!strcmp(value, "first"))
6144 spawn_position = SWM_STACK_BOTTOM;
6145 else if (!strcmp(value, "last"))
6146 spawn_position = SWM_STACK_TOP;
6147 else if (!strcmp(value, "next"))
6148 spawn_position = SWM_STACK_ABOVE;
6149 else if (!strcmp(value, "previous"))
6150 spawn_position = SWM_STACK_BELOW;
6152 errx(1, "spawn_position");
6154 case SWM_S_SPAWN_TERM:
6155 setconfspawn("term", value, 0);
6156 setconfspawn("spawn_term", value, 0);
6160 case SWM_S_SS_ENABLED:
6161 ss_enabled = atoi(value);
6163 case SWM_S_STACK_ENABLED:
6164 stack_enabled = atoi(value);
6166 case SWM_S_TERM_WIDTH:
6167 term_width = atoi(value);
6171 case SWM_S_TITLE_CLASS_ENABLED:
6172 title_class_enabled = atoi(value);
6174 case SWM_S_TITLE_NAME_ENABLED:
6175 title_name_enabled = atoi(value);
6177 case SWM_S_URGENT_ENABLED:
6178 urgent_enabled = atoi(value);
6180 case SWM_S_VERBOSE_LAYOUT:
6181 verbose_layout = atoi(value);
6182 for (i = 0; layouts[i].l_stack != NULL; i++) {
6184 layouts[i].l_string = fancy_stacker;
6186 layouts[i].l_string = plain_stacker;
6189 case SWM_S_WINDOW_NAME_ENABLED:
6190 window_name_enabled = atoi(value);
6192 case SWM_S_WORKSPACE_LIMIT:
6193 workspace_limit = atoi(value);
6194 if (workspace_limit > SWM_WS_MAX)
6195 workspace_limit = SWM_WS_MAX;
6196 else if (workspace_limit < 1)
6197 workspace_limit = 1;
6206 setconfmodkey(char *selector, char *value, int flags)
6208 /* suppress unused warnings since vars are needed */
6212 if (!strncasecmp(value, "Mod1", strlen("Mod1")))
6213 update_modkey(XCB_MOD_MASK_1);
6214 else if (!strncasecmp(value, "Mod2", strlen("Mod2")))
6215 update_modkey(XCB_MOD_MASK_2);
6216 else if (!strncasecmp(value, "Mod3", strlen("Mod3")))
6217 update_modkey(XCB_MOD_MASK_3);
6218 else if (!strncasecmp(value, "Mod4", strlen("Mod4")))
6219 update_modkey(XCB_MOD_MASK_4);
6226 setconfcolor(char *selector, char *value, int flags)
6228 setscreencolor(value, ((selector == NULL)?-1:atoi(selector)), flags);
6233 setconfregion(char *selector, char *value, int flags)
6235 /* suppress unused warnings since vars are needed */
6239 custom_region(value);
6244 setautorun(char *selector, char *value, int flags)
6254 /* suppress unused warnings since vars are needed */
6258 if (getenv("SWM_STARTED"))
6262 if (sscanf(value, "ws[%d]:%1023c", &ws_id, s) != 2)
6263 errx(1, "invalid autorun entry, should be 'ws[<idx>]:command'");
6265 if (ws_id < 0 || ws_id >= workspace_limit)
6266 errx(1, "autorun: invalid workspace %d", ws_id + 1);
6269 * This is a little intricate
6271 * If the pid already exists we simply reuse it because it means it was
6272 * used before AND not claimed by manage_window. We get away with
6273 * altering it in the parent after INSERT because this can not be a race
6276 while ((ap = strsep(&sp, " \t")) != NULL) {
6279 DNPRINTF(SWM_D_SPAWN, "setautorun: arg [%s]\n", ap);
6281 if ((a.argv = realloc(a.argv, argc * sizeof(char *))) == NULL)
6282 err(1, "setautorun: realloc");
6283 a.argv[argc - 1] = ap;
6286 if ((a.argv = realloc(a.argv, (argc + 1) * sizeof(char *))) == NULL)
6287 err(1, "setautorun: realloc");
6288 a.argv[argc] = NULL;
6290 if ((pid = fork()) == 0) {
6291 spawn(ws_id, &a, 1);
6300 p = calloc(1, sizeof *p);
6303 TAILQ_INSERT_TAIL(&pidlist, p, entry);
6313 setlayout(char *selector, char *value, int flags)
6315 int ws_id, i, x, mg, ma, si, ar, f = 0;
6316 int st = SWM_V_STACK, num_screens;
6318 struct workspace *ws;
6320 /* suppress unused warnings since vars are needed */
6324 if (getenv("SWM_STARTED"))
6328 if (sscanf(value, "ws[%d]:%d:%d:%d:%d:%1023c",
6329 &ws_id, &mg, &ma, &si, &ar, s) != 6)
6330 errx(1, "invalid layout entry, should be 'ws[<idx>]:"
6331 "<master_grow>:<master_add>:<stack_inc>:<always_raise>:"
6334 if (ws_id < 0 || ws_id >= workspace_limit)
6335 errx(1, "layout: invalid workspace %d", ws_id + 1);
6337 if (!strcasecmp(s, "vertical"))
6339 else if (!strcasecmp(s, "vertical_flip")) {
6342 } else if (!strcasecmp(s, "horizontal"))
6344 else if (!strcasecmp(s, "horizontal_flip")) {
6347 } else if (!strcasecmp(s, "fullscreen"))
6350 errx(1, "invalid layout entry, should be 'ws[<idx>]:"
6351 "<master_grow>:<master_add>:<stack_inc>:<always_raise>:"
6354 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
6355 for (i = 0; i < num_screens; i++) {
6356 ws = (struct workspace *)&screens[i].ws;
6357 ws[ws_id].cur_layout = &layouts[st];
6359 ws[ws_id].always_raise = ar;
6360 if (st == SWM_MAX_STACK)
6364 for (x = 0; x < abs(mg); x++) {
6365 ws[ws_id].cur_layout->l_config(&ws[ws_id],
6366 mg >= 0 ? SWM_ARG_ID_MASTERGROW :
6367 SWM_ARG_ID_MASTERSHRINK);
6371 for (x = 0; x < abs(ma); x++) {
6372 ws[ws_id].cur_layout->l_config(&ws[ws_id],
6373 ma >= 0 ? SWM_ARG_ID_MASTERADD :
6374 SWM_ARG_ID_MASTERDEL);
6378 for (x = 0; x < abs(si); x++) {
6379 ws[ws_id].cur_layout->l_config(&ws[ws_id],
6380 si >= 0 ? SWM_ARG_ID_STACKINC :
6381 SWM_ARG_ID_STACKDEC);
6386 ws[ws_id].cur_layout->l_config(&ws[ws_id],
6387 SWM_ARG_ID_FLIPLAYOUT);
6395 /* config options */
6396 struct config_option {
6398 int (*func)(char*, char*, int);
6401 struct config_option configopt[] = {
6402 { "bar_enabled", setconfvalue, SWM_S_BAR_ENABLED },
6403 { "bar_at_bottom", setconfvalue, SWM_S_BAR_AT_BOTTOM },
6404 { "bar_border", setconfcolor, SWM_S_COLOR_BAR_BORDER },
6405 { "bar_border_width", setconfvalue, SWM_S_BAR_BORDER_WIDTH },
6406 { "bar_color", setconfcolor, SWM_S_COLOR_BAR },
6407 { "bar_font_color", setconfcolor, SWM_S_COLOR_BAR_FONT },
6408 { "bar_font", setconfvalue, SWM_S_BAR_FONT },
6409 { "bar_action", setconfvalue, SWM_S_BAR_ACTION },
6410 { "bar_delay", setconfvalue, SWM_S_BAR_DELAY },
6411 { "bar_justify", setconfvalue, SWM_S_BAR_JUSTIFY },
6412 { "bar_format", setconfvalue, SWM_S_BAR_FORMAT },
6413 { "keyboard_mapping", setkeymapping, 0 },
6414 { "bind", setconfbinding, 0 },
6415 { "stack_enabled", setconfvalue, SWM_S_STACK_ENABLED },
6416 { "clock_enabled", setconfvalue, SWM_S_CLOCK_ENABLED },
6417 { "clock_format", setconfvalue, SWM_S_CLOCK_FORMAT },
6418 { "color_focus", setconfcolor, SWM_S_COLOR_FOCUS },
6419 { "color_unfocus", setconfcolor, SWM_S_COLOR_UNFOCUS },
6420 { "cycle_empty", setconfvalue, SWM_S_CYCLE_EMPTY },
6421 { "cycle_visible", setconfvalue, SWM_S_CYCLE_VISIBLE },
6422 { "workspace_limit", setconfvalue, SWM_S_WORKSPACE_LIMIT },
6423 { "dialog_ratio", setconfvalue, SWM_S_DIALOG_RATIO },
6424 { "verbose_layout", setconfvalue, SWM_S_VERBOSE_LAYOUT },
6425 { "modkey", setconfmodkey, 0 },
6426 { "program", setconfspawn, 0 },
6427 { "quirk", setconfquirk, 0 },
6428 { "region", setconfregion, 0 },
6429 { "spawn_term", setconfvalue, SWM_S_SPAWN_TERM },
6430 { "screenshot_enabled", setconfvalue, SWM_S_SS_ENABLED },
6431 { "screenshot_app", setconfvalue, SWM_S_SS_APP },
6432 { "window_name_enabled", setconfvalue, SWM_S_WINDOW_NAME_ENABLED },
6433 { "urgent_enabled", setconfvalue, SWM_S_URGENT_ENABLED },
6434 { "term_width", setconfvalue, SWM_S_TERM_WIDTH },
6435 { "title_class_enabled", setconfvalue, SWM_S_TITLE_CLASS_ENABLED },
6436 { "title_name_enabled", setconfvalue, SWM_S_TITLE_NAME_ENABLED },
6437 { "focus_mode", setconfvalue, SWM_S_FOCUS_MODE },
6438 { "focus_close", setconfvalue, SWM_S_FOCUS_CLOSE },
6439 { "focus_close_wrap", setconfvalue, SWM_S_FOCUS_CLOSE_WRAP },
6440 { "focus_default", setconfvalue, SWM_S_FOCUS_DEFAULT },
6441 { "spawn_position", setconfvalue, SWM_S_SPAWN_ORDER },
6442 { "disable_border", setconfvalue, SWM_S_DISABLE_BORDER },
6443 { "border_width", setconfvalue, SWM_S_BORDER_WIDTH },
6444 { "autorun", setautorun, 0 },
6445 { "layout", setlayout, 0 },
6450 conf_load(char *filename, int keymapping)
6453 char *line, *cp, *optsub, *optval;
6454 size_t linelen, lineno = 0;
6455 int wordlen, i, optidx;
6456 struct config_option *opt;
6458 DNPRINTF(SWM_D_CONF, "conf_load: begin\n");
6460 if (filename == NULL) {
6461 warnx("conf_load: no filename");
6464 if ((config = fopen(filename, "r")) == NULL) {
6465 warn("conf_load: fopen: %s", filename);
6469 while (!feof(config)) {
6470 if ((line = fparseln(config, &linelen, &lineno, NULL, 0))
6473 err(1, "%s", filename);
6478 cp += strspn(cp, " \t\n"); /* eat whitespace */
6479 if (cp[0] == '\0') {
6484 /* get config option */
6485 wordlen = strcspn(cp, "=[ \t\n");
6487 warnx("%s: line %zd: no option found",
6492 for (i = 0; i < LENGTH(configopt); i++) {
6493 opt = &configopt[i];
6494 if (!strncasecmp(cp, opt->optname, wordlen) &&
6495 (int)strlen(opt->optname) == wordlen) {
6501 warnx("%s: line %zd: unknown option %.*s",
6502 filename, lineno, wordlen, cp);
6505 if (keymapping && strcmp(opt->optname, "bind")) {
6506 warnx("%s: line %zd: invalid option %.*s",
6507 filename, lineno, wordlen, cp);
6511 cp += strspn(cp, " \t\n"); /* eat whitespace */
6512 /* get [selector] if any */
6516 wordlen = strcspn(cp, "]");
6519 warnx("%s: line %zd: syntax error",
6524 if (asprintf(&optsub, "%.*s", wordlen, cp) ==
6526 warnx("%s: line %zd: unable to allocate"
6527 "memory for selector", filename,
6533 cp += strspn(cp, "] \t\n"); /* eat trailing */
6535 cp += strspn(cp, "= \t\n"); /* eat trailing */
6537 optval = strdup(cp);
6538 /* call function to deal with it all */
6539 if (configopt[optidx].func(optsub, optval,
6540 configopt[optidx].funcflags) != 0)
6541 errx(1, "%s: line %zd: invalid data for %s",
6542 filename, lineno, configopt[optidx].optname);
6549 DNPRINTF(SWM_D_CONF, "conf_load: end\n");
6556 DNPRINTF(SWM_D_CONF, "conf_load: end with error.\n");
6562 set_child_transient(struct ws_win *win, xcb_window_t *trans)
6564 struct ws_win *parent, *w;
6565 struct swm_region *r;
6566 struct workspace *ws;
6567 xcb_icccm_wm_hints_t wmh;
6569 parent = find_window(win->transient);
6571 parent->child_trans = win;
6573 DNPRINTF(SWM_D_MISC, "set_child_transient: parent doesn't exist"
6574 " for 0x%x trans 0x%x\n", win->id, win->transient);
6576 r = root_to_region(win->wa->root);
6578 /* parent doen't exist in our window list */
6579 TAILQ_FOREACH(w, &ws->winlist, entry) {
6580 if (xcb_icccm_get_wm_hints_reply(conn,
6581 xcb_icccm_get_wm_hints(conn, w->id),
6583 warnx("can't get hints for 0x%x", w->id);
6587 if (win->hints.window_group != wmh.window_group)
6590 w->child_trans = win;
6591 win->transient = w->id;
6593 DNPRINTF(SWM_D_MISC, "set_child_transient: adjusting "
6594 "transient to 0x%x\n", win->transient);
6601 window_get_pid(xcb_window_t win)
6606 xcb_get_property_cookie_t pc;
6607 xcb_get_property_reply_t *pr;
6609 apid = get_atom_from_string("_NET_WM_PID");
6610 if (apid == XCB_ATOM_NONE)
6613 pc = xcb_get_property(conn, 0, win, apid, XCB_ATOM_CARDINAL, 0, 1);
6614 pr = xcb_get_property_reply(conn, pc, NULL);
6617 if (pr->type != XCB_ATOM_CARDINAL) {
6622 if (pr->type == apid && pr->format == 32)
6623 ret = *((pid_t *)xcb_get_property_value(pr));
6629 apid = get_atom_from_string("_SWM_PID");
6630 pc = xcb_get_property(conn, 0, win, apid, XCB_ATOM_STRING,
6632 pr = xcb_get_property_reply(conn, pc, NULL);
6635 if (pr->type != apid) {
6640 ret = (pid_t)strtonum(xcb_get_property_value(pr), 0, INT_MAX, &errstr);
6647 get_ws_idx(xcb_window_t id)
6653 xcb_get_property_reply_t *gpr;
6655 gpr = xcb_get_property_reply(conn,
6656 xcb_get_property(conn, 0, id, a_swm_ws,
6657 XCB_ATOM_STRING, 0, SWM_PROPLEN),
6662 proplen = xcb_get_property_value_length(gpr);
6664 prop = malloc(proplen + 1);
6667 xcb_get_property_value(gpr),
6669 prop[proplen] = '\0';
6676 DNPRINTF(SWM_D_PROP, "get_ws_idx: _SWM_WS: %s\n", prop);
6677 ws_idx = (int)strtonum(prop, 0, workspace_limit - 1, &errstr);
6679 DNPRINTF(SWM_D_PROP, "get_ws_idx: window: #%s: %s",
6689 manage_window(xcb_window_t id)
6691 xcb_window_t trans = XCB_WINDOW_NONE;
6692 struct workspace *ws;
6693 struct ws_win *win, *ww;
6694 int ws_idx, border_me = 0;
6695 char ws_idx_str[SWM_PROPLEN], *prop = NULL;
6696 struct swm_region *r;
6699 uint32_t event_mask, i;
6700 xcb_icccm_get_wm_protocols_reply_t wpr;
6702 if ((win = find_window(id)) != NULL)
6703 return (win); /* already being managed */
6705 /* see if we are on the unmanaged list */
6706 if ((win = find_unmanaged_window(id)) != NULL) {
6707 DNPRINTF(SWM_D_MISC, "manage_window: previously unmanaged "
6708 "window: 0x%x\n", win->id);
6709 TAILQ_REMOVE(&win->ws->unmanagedlist, win, entry);
6711 set_child_transient(win, &trans);
6713 if (trans && (ww = find_window(trans)))
6714 TAILQ_INSERT_AFTER(&win->ws->winlist, ww, win, entry);
6715 else if ((ww = win->ws->focus) &&
6716 spawn_position == SWM_STACK_ABOVE)
6717 TAILQ_INSERT_AFTER(&win->ws->winlist, win->ws->focus,
6719 else if (ww && spawn_position == SWM_STACK_BELOW)
6720 TAILQ_INSERT_BEFORE(win->ws->focus, win, entry);
6721 else switch (spawn_position) {
6724 case SWM_STACK_ABOVE:
6725 TAILQ_INSERT_TAIL(&win->ws->winlist, win, entry);
6727 case SWM_STACK_BOTTOM:
6728 case SWM_STACK_BELOW:
6729 TAILQ_INSERT_HEAD(&win->ws->winlist, win, entry);
6732 ewmh_update_actions(win);
6736 if ((win = calloc(1, sizeof(struct ws_win))) == NULL)
6737 err(1, "manage_window: calloc: failed to allocate memory for "
6743 /* see if we need to override the workspace */
6744 p = find_pid(window_get_pid(id));
6746 /* Get all the window data in one shot */
6747 ws_idx = get_ws_idx(id);
6749 win->wa = xcb_get_geometry_reply(conn,
6750 xcb_get_geometry(conn, id),
6752 xcb_icccm_get_wm_normal_hints_reply(conn,
6753 xcb_icccm_get_wm_normal_hints(conn, id),
6755 xcb_icccm_get_wm_hints_reply(conn,
6756 xcb_icccm_get_wm_hints(conn, id),
6758 xcb_icccm_get_wm_transient_for_reply(conn,
6759 xcb_icccm_get_wm_transient_for(conn, id),
6762 win->transient = trans;
6763 set_child_transient(win, &trans);
6764 DNPRINTF(SWM_D_MISC, "manage_window: window: 0x%x, "
6765 "transient: 0x%x\n", win->id, win->transient);
6768 /* get supported protocols */
6769 if (xcb_icccm_get_wm_protocols_reply(conn,
6770 xcb_icccm_get_wm_protocols(conn, id, a_prot),
6772 for (i = 0; i < wpr.atoms_len; i++) {
6773 if (wpr.atoms[i] == a_takefocus)
6774 win->take_focus = 1;
6775 if (wpr.atoms[i] == a_delete)
6776 win->can_delete = 1;
6778 xcb_icccm_get_wm_protocols_reply_wipe(&wpr);
6781 win->iconic = get_iconic(win);
6784 * Figure out where to put the window. If it was previously assigned to
6785 * a workspace (either by spawn() or manually moving), and isn't
6786 * transient, * put it in the same workspace
6788 r = root_to_region(win->wa->root);
6790 ws = &r->s->ws[p->ws];
6791 TAILQ_REMOVE(&pidlist, p, entry);
6794 } else if (ws_idx != -1 && win->transient == 0) {
6795 ws = &r->s->ws[ws_idx];
6798 /* this should launch transients in the same ws as parent */
6800 if ((ww = find_window(trans)) != NULL)
6806 warnx("manage_window: fix this "
6812 /* set up the window layout */
6815 win->s = r->s; /* this never changes */
6816 if (trans && (ww = find_window(trans)))
6817 TAILQ_INSERT_AFTER(&ws->winlist, ww, win, entry);
6818 else if (win->ws->focus && spawn_position == SWM_STACK_ABOVE)
6819 TAILQ_INSERT_AFTER(&win->ws->winlist, win->ws->focus, win,
6821 else if (win->ws->focus && spawn_position == SWM_STACK_BELOW)
6822 TAILQ_INSERT_BEFORE(win->ws->focus, win, entry);
6823 else switch (spawn_position) {
6826 case SWM_STACK_ABOVE:
6827 TAILQ_INSERT_TAIL(&win->ws->winlist, win, entry);
6829 case SWM_STACK_BOTTOM:
6830 case SWM_STACK_BELOW:
6831 TAILQ_INSERT_HEAD(&win->ws->winlist, win, entry);
6834 /* ignore window border if there is one. */
6835 WIDTH(win) = win->wa->width;
6836 HEIGHT(win) = win->wa->height;
6837 X(win) = win->wa->x + win->wa->border_width;
6838 Y(win) = win->wa->y + win->wa->border_width;
6840 win->g_floatvalid = 0;
6841 win->floatmaxed = 0;
6842 win->ewmh_flags = 0;
6844 DNPRINTF(SWM_D_MISC, "manage_window: window: 0x%x, (x,y) w x h: "
6845 "(%d,%d) %d x %d, ws: %d\n", win->id, X(win), Y(win), WIDTH(win),
6846 HEIGHT(win), ws->idx);
6848 constrain_window(win, r, 0);
6850 /* Set window properties so we can remember this after reincarnation */
6851 if (prop == NULL && snprintf(ws_idx_str, SWM_PROPLEN, "%d", ws->idx) <
6853 DNPRINTF(SWM_D_PROP, "manage_window: set _SWM_WS: %s\n",
6855 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
6856 a_swm_ws, XCB_ATOM_STRING, 8, strlen(ws_idx_str),
6862 ewmh_autoquirk(win);
6864 if (xcb_icccm_get_wm_class_reply(conn,
6865 xcb_icccm_get_wm_class(conn, win->id),
6867 DNPRINTF(SWM_D_CLASS, "manage_window: class: %s, name: %s\n",
6868 win->ch.class_name, win->ch.instance_name);
6870 /* java is retarded so treat it special */
6871 if (strstr(win->ch.instance_name, "sun-awt")) {
6876 TAILQ_FOREACH(qp, &quirks, entry) {
6877 if (!strcmp(win->ch.class_name, qp->class) &&
6878 !strcmp(win->ch.instance_name, qp->name)) {
6879 DNPRINTF(SWM_D_CLASS, "manage_window: found: "
6880 "class: %s, name: %s\n", win->ch.class_name,
6881 win->ch.instance_name);
6882 if (qp->quirk & SWM_Q_FLOAT) {
6886 win->quirks = qp->quirk;
6891 /* alter window position if quirky */
6892 if (win->quirks & SWM_Q_ANYWHERE) {
6893 win->manual = 1; /* don't center the quirky windows */
6894 if (bar_enabled && Y(win) < bar_height)
6895 Y(win) = bar_height;
6896 if (WIDTH(win) + X(win) > WIDTH(r))
6897 X(win) = WIDTH(r) - WIDTH(win) - 2;
6901 /* Reset font sizes (the bruteforce way; no default keybinding). */
6902 if (win->quirks & SWM_Q_XTERM_FONTADJ) {
6903 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
6904 fake_keypress(win, XK_KP_Subtract, XCB_MOD_MASK_SHIFT);
6905 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
6906 fake_keypress(win, XK_KP_Add, XCB_MOD_MASK_SHIFT);
6909 ewmh_get_win_state(win);
6910 ewmh_update_actions(win);
6911 ewmh_update_win_state(win, None, _NET_WM_STATE_REMOVE);
6916 X(win) -= border_width;
6917 Y(win) -= border_width;
6921 event_mask = XCB_EVENT_MASK_ENTER_WINDOW | XCB_EVENT_MASK_FOCUS_CHANGE |
6922 XCB_EVENT_MASK_PROPERTY_CHANGE | XCB_EVENT_MASK_STRUCTURE_NOTIFY;
6924 event_mask |= XCB_EVENT_MASK_LEAVE_WINDOW;
6927 xcb_change_window_attributes(conn, id, XCB_CW_EVENT_MASK, &event_mask);
6929 /* floaters need to be mapped if they are in the current workspace */
6930 if ((win->floating || win->transient) && (ws->idx == r->ws->idx))
6931 map_window_raised(win->id);
6937 free_window(struct ws_win *win)
6939 DNPRINTF(SWM_D_MISC, "free_window: window: 0x%x\n", win->id);
6944 TAILQ_REMOVE(&win->ws->unmanagedlist, win, entry);
6949 xcb_icccm_get_wm_class_reply_wipe(&win->ch);
6954 memset(win, 0xff, sizeof *win); /* XXX kill later */
6957 DNPRINTF(SWM_D_MISC, "free_window: done\n");
6961 unmanage_window(struct ws_win *win)
6963 struct ws_win *parent;
6964 xcb_screen_t *screen;
6969 DNPRINTF(SWM_D_MISC, "unmanage_window: window: 0x%x\n", win->id);
6971 if (win->transient) {
6972 parent = find_window(win->transient);
6974 parent->child_trans = NULL;
6977 /* focus on root just in case */
6978 screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
6979 xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT,
6980 screen->root, XCB_CURRENT_TIME);
6984 TAILQ_REMOVE(&win->ws->winlist, win, entry);
6985 TAILQ_INSERT_TAIL(&win->ws->unmanagedlist, win, entry);
6989 focus_magic(struct ws_win *win)
6991 DNPRINTF(SWM_D_FOCUS, "focus_magic: window: 0x%x\n", WINID(win));
6994 /* if there are no windows clear the status-bar */
6999 if (win->child_trans) {
7000 /* win = parent & has a transient so focus on that */
7002 focus_win(win->child_trans);
7003 if (win->child_trans->take_focus)
7004 client_msg(win, a_takefocus);
7006 /* make sure transient hasn't disappeared */
7007 if (validate_win(win->child_trans) == 0) {
7008 focus_win(win->child_trans);
7009 if (win->child_trans->take_focus)
7010 client_msg(win->child_trans,
7013 win->child_trans = NULL;
7015 if (win->take_focus)
7016 client_msg(win, a_takefocus);
7022 if (win->take_focus)
7023 client_msg(win, a_takefocus);
7028 expose(xcb_expose_event_t *e)
7031 struct swm_region *r;
7033 DNPRINTF(SWM_D_EVENT, "expose: window: 0x%x\n", e->window);
7035 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7036 for (i = 0; i < num_screens; i++)
7037 TAILQ_FOREACH(r, &screens[i].rl, entry)
7038 if (e->window == WINID(r->bar))
7046 focusin(xcb_focus_in_event_t *e)
7048 DNPRINTF(SWM_D_EVENT, "focusin: window: 0x%x, mode: %s(%u), "
7049 "detail: %s(%u)\n", e->event, get_notify_mode_label(e->mode),
7050 e->mode, get_notify_detail_label(e->detail), e->detail);
7055 keypress(xcb_key_press_event_t *e)
7057 xcb_keysym_t keysym;
7060 keysym = xcb_key_press_lookup_keysym(syms, e, 0);
7062 DNPRINTF(SWM_D_EVENT, "keypress: %u %u\n", e->detail, keysym);
7064 if ((kp = key_lookup(CLEANMASK(e->state), keysym)) == NULL)
7067 if (kp->funcid == KF_SPAWN_CUSTOM)
7068 spawn_custom(root_to_region(e->root),
7069 &(keyfuncs[kp->funcid].args), kp->spawn_name);
7070 else if (keyfuncs[kp->funcid].func)
7071 keyfuncs[kp->funcid].func(root_to_region(e->root),
7072 &(keyfuncs[kp->funcid].args));
7076 buttonpress(xcb_button_press_event_t *e)
7080 unsigned int action;
7082 DNPRINTF(SWM_D_EVENT, "buttonpress: window 0x%x, detail: %u\n",
7083 e->event, e->detail);
7085 if ((win = find_window(e->event)) == NULL)
7089 action = client_click;
7091 for (i = 0; i < LENGTH(buttons); i++)
7092 if (action == buttons[i].action && buttons[i].func &&
7093 buttons[i].button == e->detail &&
7094 CLEANMASK(buttons[i].mask) == CLEANMASK(e->state))
7095 buttons[i].func(win, &buttons[i].args);
7102 print_win_geom(xcb_window_t w)
7104 xcb_get_geometry_reply_t *wa;
7106 wa = xcb_get_geometry_reply(conn, xcb_get_geometry(conn, w), NULL);
7109 DNPRINTF(SWM_D_MISC, "print_win_geom: window not found: 0x%x\n",
7114 DNPRINTF(SWM_D_MISC, "print_win_geom: window: 0x%x, root: 0x%x, "
7115 "depth: %u, (x,y) w x h: (%d,%d) %d x %d, border: %d\n",
7116 w, wa->root, wa->depth, wa->x, wa->y, wa->width, wa->height,
7124 configurerequest(xcb_configure_request_event_t *e)
7129 uint32_t wc[7] = {0};
7131 if ((win = find_window(e->window)) == NULL)
7132 if ((win = find_unmanaged_window(e->window)) == NULL)
7135 print_win_geom(e->window);
7138 DNPRINTF(SWM_D_EVENT, "configurerequest: new window: 0x%x, "
7139 "value_mask: 0x%x", e->window, e->value_mask);
7140 if (e->value_mask & XCB_CONFIG_WINDOW_X) {
7141 mask |= XCB_CONFIG_WINDOW_X;
7143 DPRINTF(", X: %d", e->x);
7145 if (e->value_mask & XCB_CONFIG_WINDOW_Y) {
7146 mask |= XCB_CONFIG_WINDOW_Y;
7148 DPRINTF(", Y: %d", e->y);
7150 if (e->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
7151 mask |= XCB_CONFIG_WINDOW_WIDTH;
7153 DPRINTF(", W: %u", e->width);
7155 if (e->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
7156 mask |= XCB_CONFIG_WINDOW_HEIGHT;
7157 wc[i++] = e->height;
7158 DPRINTF(", H: %u", e->height);
7160 if (e->value_mask & XCB_CONFIG_WINDOW_BORDER_WIDTH) {
7161 mask |= XCB_CONFIG_WINDOW_BORDER_WIDTH;
7162 wc[i++] = e->border_width;
7163 DPRINTF(", Border: %u", e->border_width);
7165 if (e->value_mask & XCB_CONFIG_WINDOW_SIBLING) {
7166 mask |= XCB_CONFIG_WINDOW_SIBLING;
7167 wc[i++] = e->sibling;
7168 DPRINTF(", Sibling: 0x%x", e->sibling);
7170 if (e->value_mask & XCB_CONFIG_WINDOW_STACK_MODE) {
7171 mask |= XCB_CONFIG_WINDOW_STACK_MODE;
7172 wc[i++] = e->stack_mode;
7173 DPRINTF(", StackMode: %u", e->stack_mode);
7177 xcb_configure_window(conn, e->window, mask, wc);
7179 DPRINTF(", Sent: %s\n", YESNO((mask != 0)));
7180 } else if ((!win->manual || win->quirks & SWM_Q_ANYWHERE) &&
7181 !(win->ewmh_flags & EWMH_F_FULLSCREEN)) {
7182 win->g_float.x = e->x - X(win->ws->r);
7183 win->g_float.y = e->y - Y(win->ws->r);
7184 win->g_float.w = e->width;
7185 win->g_float.h = e->height;
7186 win->g_floatvalid = 1;
7188 if (win->floating) {
7189 win->g = win->g_float;
7190 win->g.x += X(win->ws->r);
7191 win->g.y += Y(win->ws->r);
7204 configurenotify(xcb_configure_notify_event_t *e)
7208 DNPRINTF(SWM_D_EVENT, "configurenotify: window: 0x%x\n",
7211 win = find_window(e->window);
7213 xcb_icccm_get_wm_normal_hints_reply(conn,
7214 xcb_icccm_get_wm_normal_hints(conn, win->id),
7223 destroynotify(xcb_destroy_notify_event_t *e)
7227 DNPRINTF(SWM_D_EVENT, "destroynotify: window: 0x%x\n", e->window);
7229 if ((win = find_window(e->window)) == NULL) {
7230 if ((win = find_unmanaged_window(e->window)) == NULL)
7236 /* make sure we focus on something */
7239 unmanage_window(win);
7246 get_notify_detail_label(uint8_t detail)
7251 case XCB_NOTIFY_DETAIL_ANCESTOR:
7254 case XCB_NOTIFY_DETAIL_VIRTUAL:
7257 case XCB_NOTIFY_DETAIL_INFERIOR:
7260 case XCB_NOTIFY_DETAIL_NONLINEAR:
7261 label = "Nonlinear";
7263 case XCB_NOTIFY_DETAIL_NONLINEAR_VIRTUAL:
7264 label = "NonlinearVirtual";
7266 case XCB_NOTIFY_DETAIL_POINTER:
7269 case XCB_NOTIFY_DETAIL_POINTER_ROOT:
7270 label = "PointerRoot";
7272 case XCB_NOTIFY_DETAIL_NONE:
7283 get_notify_mode_label(uint8_t mode)
7288 case XCB_NOTIFY_MODE_NORMAL:
7291 case XCB_NOTIFY_MODE_GRAB:
7294 case XCB_NOTIFY_MODE_UNGRAB:
7297 case XCB_NOTIFY_MODE_WHILE_GRABBED:
7298 label = "WhileGrabbed";
7309 enternotify(xcb_enter_notify_event_t *e)
7312 DNPRINTF(SWM_D_FOCUS, "enternotify: window: 0x%x, mode: %s(%d), "
7313 "detail: %s(%d), root: 0x%x, subwindow: 0x%x, same_screen_focus: "
7314 "%s, state: %d\n", e->event, get_notify_mode_label(e->mode),
7315 e->mode, get_notify_detail_label(e->detail), e->detail, e->root,
7316 e->child, YESNO(e->same_screen_focus), e->state);
7318 if (e->mode != XCB_NOTIFY_MODE_NORMAL) {
7319 DNPRINTF(SWM_D_EVENT, "skip enternotify: generated by "
7324 switch (focus_mode) {
7325 case SWM_FOCUS_DEFAULT:
7327 case SWM_FOCUS_FOLLOW:
7329 case SWM_FOCUS_SYNERGY:
7333 if ((win = find_window(e->event)) == NULL) {
7334 DNPRINTF(SWM_D_EVENT, "skip enternotify: window is NULL\n");
7345 leavenotify(xcb_leave_notify_event_t *e)
7347 DNPRINTF(SWM_D_FOCUS, "leavenotify: window: 0x%x, mode: %s(%d), "
7348 "detail: %s(%d), root: 0x%x, subwindow: 0x%x, same_screen_focus: "
7349 "%s, state: %d\n", e->event, get_notify_mode_label(e->mode),
7350 e->mode, get_notify_detail_label(e->detail), e->detail, e->root,
7351 e->child, YESNO(e->same_screen_focus), e->state);
7355 /* lets us use one switch statement for arbitrary mode/detail combinations */
7356 #define MERGE_MEMBERS(a,b) (((a & 0xffff) << 16) | (b & 0xffff))
7359 mapnotify(xcb_map_notify_event_t *e)
7363 DNPRINTF(SWM_D_EVENT, "mapnotify: window: 0x%x\n", e->window);
7365 win = manage_window(e->window);
7367 set_win_state(win, XCB_ICCCM_WM_STATE_NORMAL);
7370 * focus_win can only set input focus on a mapped window.
7371 * make sure the window really has focus since it is just being mapped.
7373 if (win->ws->focus == win)
7378 mappingnotify(xcb_mapping_notify_event_t *e)
7380 xcb_refresh_keyboard_mapping(syms, e);
7382 if (e->request == XCB_MAPPING_KEYBOARD)
7387 maprequest(xcb_map_request_event_t *e)
7390 struct swm_region *r;
7391 xcb_get_window_attributes_reply_t *war;
7393 DNPRINTF(SWM_D_EVENT, "maprequest: window: 0x%x\n",
7396 war = xcb_get_window_attributes_reply(conn,
7397 xcb_get_window_attributes(conn, e->window),
7401 if (war->override_redirect) {
7407 win = manage_window(e->window);
7409 return; /* can't happen */
7414 /* make new win focused */
7415 r = root_to_region(win->wa->root);
7416 if (win->ws == r->ws)
7422 get_atom_name(xcb_atom_t atom)
7426 xcb_get_atom_name_reply_t *r;
7428 r = xcb_get_atom_name_reply(conn,
7429 xcb_get_atom_name(conn, atom),
7432 len = xcb_get_atom_name_name_length(r);
7434 name = malloc(len + 1);
7436 memcpy(name, xcb_get_atom_name_name(r), len);
7448 propertynotify(xcb_property_notify_event_t *e)
7454 name = get_atom_name(e->atom);
7455 DNPRINTF(SWM_D_EVENT, "propertynotify: window: 0x%x, atom: %s(%u)\n",
7456 e->window, name, e->atom);
7460 win = find_window(e->window);
7464 if (e->state == XCB_PROPERTY_DELETE && e->atom == a_swm_iconic) {
7465 update_iconic(win, 0);
7466 map_window_raised(win->id);
7473 case XCB_ATOM_WM_CLASS:
7474 case XCB_ATOM_WM_NAME:
7483 unmapnotify(xcb_unmap_notify_event_t *e)
7487 DNPRINTF(SWM_D_EVENT, "unmapnotify: window: 0x%x\n", e->window);
7489 /* determine if we need to help unmanage this window */
7490 win = find_window(e->window);
7494 if (getstate(e->window) == XCB_ICCCM_WM_STATE_NORMAL) {
7495 unmanage_window(win);
7498 /* resend unmap because we ated it */
7499 xcb_unmap_window(conn, e->window);
7506 visibilitynotify(xcb_visibility_notify_event_t *e)
7508 DNPRINTF(SWM_D_EVENT, "visibilitynotify: window: 0x%x\n",
7514 clientmessage(xcb_client_message_event_t *e)
7517 xcb_map_request_event_t mre;
7521 name = get_atom_name(e->type);
7522 DNPRINTF(SWM_D_EVENT, "clientmessage: window: 0x%x, atom: %s(%u)\n",
7523 e->window, name, e->type);
7526 win = find_window(e->window);
7529 if (e->type == ewmh[_NET_ACTIVE_WINDOW].atom) {
7530 DNPRINTF(SWM_D_EVENT, "clientmessage: request focus on "
7531 "unmanaged window.\n");
7532 mre.window = e->window;
7538 if (e->type == ewmh[_NET_ACTIVE_WINDOW].atom) {
7539 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_ACTIVE_WINDOW\n");
7542 if (e->type == ewmh[_NET_CLOSE_WINDOW].atom) {
7543 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_CLOSE_WINDOW\n");
7544 if (win->can_delete)
7545 client_msg(win, a_delete);
7547 xcb_kill_client(conn, win->id);
7549 if (e->type == ewmh[_NET_MOVERESIZE_WINDOW].atom) {
7550 DNPRINTF(SWM_D_EVENT,
7551 "clientmessage: _NET_MOVERESIZE_WINDOW\n");
7552 if (win->floating) {
7553 if (e->data.data32[0] & (1<<8)) /* x */
7554 X(win) = e->data.data32[1];
7555 if (e->data.data32[0] & (1<<9)) /* y */
7556 Y(win) = e->data.data32[2];
7557 if (e->data.data32[0] & (1<<10)) /* width */
7558 WIDTH(win) = e->data.data32[3];
7559 if (e->data.data32[0] & (1<<11)) /* height */
7560 HEIGHT(win) = e->data.data32[4];
7565 /* TODO: Change stack sizes */
7566 /* notify no change was made. */
7567 config_win(win, NULL);
7570 if (e->type == ewmh[_NET_WM_STATE].atom) {
7571 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_WM_STATE\n");
7572 ewmh_update_win_state(win, e->data.data32[1], e->data.data32[0]);
7573 if (e->data.data32[2])
7574 ewmh_update_win_state(win, e->data.data32[2],
7586 int errcode = xcb_connection_has_error(conn);
7587 #ifdef XCB_CONN_ERROR
7590 case XCB_CONN_ERROR:
7591 s = "Socket error, pipe error or other stream error.";
7593 case XCB_CONN_CLOSED_EXT_NOTSUPPORTED:
7594 s = "Extension not supported.";
7596 case XCB_CONN_CLOSED_MEM_INSUFFICIENT:
7597 s = "Insufficient memory.";
7599 case XCB_CONN_CLOSED_REQ_LEN_EXCEED:
7600 s = "Request length was exceeded.";
7602 case XCB_CONN_CLOSED_PARSE_ERR:
7603 s = "Error parsing display string.";
7606 s = "Unknown error.";
7609 errx(errcode, "X CONNECTION ERROR: %s", s);
7612 errx(errcode, "X CONNECTION ERROR");
7620 const uint32_t val = XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT;
7622 xcb_void_cookie_t wac;
7623 xcb_generic_error_t *error;
7625 /* this causes an error if some other window manager is running */
7626 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7627 for (i = 0; i < num_screens; i++) {
7628 if ((sc = get_screen(i)) == NULL)
7629 errx(1, "ERROR: can't get screen %d.", i);
7630 DNPRINTF(SWM_D_INIT, "enable_wm: screen %d, root: 0x%x\n",
7632 wac = xcb_change_window_attributes_checked(conn, sc->root,
7633 XCB_CW_EVENT_MASK, &val);
7634 if ((error = xcb_request_check(conn, wac))) {
7635 DNPRINTF(SWM_D_INIT, "enable_wm: error_code: %u\n",
7646 new_region(struct swm_screen *s, int x, int y, int w, int h)
7648 struct swm_region *r, *n;
7649 struct workspace *ws = NULL;
7652 DNPRINTF(SWM_D_MISC, "new region: screen[%d]:%dx%d+%d+%d\n",
7653 s->idx, w, h, x, y);
7655 /* remove any conflicting regions */
7656 n = TAILQ_FIRST(&s->rl);
7659 n = TAILQ_NEXT(r, entry);
7660 if (X(r) < (x + w) &&
7661 (X(r) + WIDTH(r)) > x &&
7663 (Y(r) + HEIGHT(r)) > y) {
7664 if (r->ws->r != NULL)
7665 r->ws->old_r = r->ws->r;
7668 TAILQ_REMOVE(&s->rl, r, entry);
7669 TAILQ_INSERT_TAIL(&s->orl, r, entry);
7673 /* search old regions for one to reuse */
7675 /* size + location match */
7676 TAILQ_FOREACH(r, &s->orl, entry)
7677 if (X(r) == x && Y(r) == y &&
7678 HEIGHT(r) == h && WIDTH(r) == w)
7682 TAILQ_FOREACH(r, &s->orl, entry)
7683 if (HEIGHT(r) == h && WIDTH(r) == w)
7687 TAILQ_REMOVE(&s->orl, r, entry);
7688 /* try to use old region's workspace */
7689 if (r->ws->r == NULL)
7692 if ((r = calloc(1, sizeof(struct swm_region))) == NULL)
7693 err(1, "new_region: calloc: failed to allocate memory "
7696 /* if we don't have a workspace already, find one */
7698 for (i = 0; i < workspace_limit; i++)
7699 if (s->ws[i].r == NULL) {
7706 errx(1, "new_region: no free workspaces");
7717 TAILQ_INSERT_TAIL(&s->rl, r, entry);
7723 #ifdef SWM_XRR_HAS_CRTC
7726 #endif /* SWM_XRR_HAS_CRTC */
7727 struct swm_region *r;
7729 xcb_randr_get_screen_resources_current_cookie_t src;
7730 xcb_randr_get_screen_resources_current_reply_t *srr;
7731 xcb_randr_get_crtc_info_cookie_t cic;
7732 xcb_randr_get_crtc_info_reply_t *cir = NULL;
7733 xcb_randr_crtc_t *crtc;
7734 xcb_screen_t *screen;
7736 if ((screen = get_screen(i)) == NULL)
7737 errx(1, "ERROR: can't get screen %d.", i);
7739 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7740 if (i >= num_screens)
7741 errx(1, "scan_xrandr: invalid screen");
7743 /* remove any old regions */
7744 while ((r = TAILQ_FIRST(&screens[i].rl)) != NULL) {
7745 r->ws->old_r = r->ws->r = NULL;
7747 TAILQ_REMOVE(&screens[i].rl, r, entry);
7748 TAILQ_INSERT_TAIL(&screens[i].orl, r, entry);
7752 /* map virtual screens onto physical screens */
7753 #ifdef SWM_XRR_HAS_CRTC
7754 if (xrandr_support) {
7755 src = xcb_randr_get_screen_resources_current(conn,
7757 srr = xcb_randr_get_screen_resources_current_reply(conn, src,
7760 new_region(&screens[i], 0, 0,
7761 screen->width_in_pixels,
7762 screen->height_in_pixels);
7765 ncrtc = srr->num_crtcs;
7767 crtc = xcb_randr_get_screen_resources_current_crtcs(srr);
7768 for (c = 0; c < ncrtc; c++) {
7769 cic = xcb_randr_get_crtc_info(conn, crtc[c],
7771 cir = xcb_randr_get_crtc_info_reply(conn, cic, NULL);
7774 if (cir->num_outputs == 0) {
7780 new_region(&screens[i], 0, 0,
7781 screen->width_in_pixels,
7782 screen->height_in_pixels);
7784 new_region(&screens[i],
7785 cir->x, cir->y, cir->width, cir->height);
7790 #endif /* SWM_XRR_HAS_CRTC */
7792 new_region(&screens[i], 0, 0, screen->width_in_pixels,
7793 screen->height_in_pixels);
7798 screenchange(xcb_randr_screen_change_notify_event_t *e)
7800 struct swm_region *r;
7803 DNPRINTF(SWM_D_EVENT, "screenchange: root: 0x%x\n", e->root);
7805 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7806 /* silly event doesn't include the screen index */
7807 for (i = 0; i < num_screens; i++)
7808 if (screens[i].root == e->root)
7810 if (i >= num_screens)
7811 errx(1, "screenchange: screen not found");
7813 /* brute force for now, just re-enumerate the regions */
7817 print_win_geom(e->root);
7819 /* add bars to all regions */
7820 for (i = 0; i < num_screens; i++)
7821 TAILQ_FOREACH(r, &screens[i].rl, entry)
7829 xcb_window_t *wins = NULL;
7831 int i, j, num_screens;
7832 uint16_t state, manage;
7834 xcb_query_tree_cookie_t qtc;
7835 xcb_query_tree_reply_t *qtr;
7836 xcb_get_window_attributes_cookie_t c;
7837 xcb_get_window_attributes_reply_t *r;
7838 xcb_get_property_cookie_t pc;
7840 DNPRINTF(SWM_D_INIT, "grab_windows: begin\n");
7841 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7842 for (i = 0; i < num_screens; i++) {
7843 qtc = xcb_query_tree(conn, screens[i].root);
7844 qtr = xcb_query_tree_reply(conn, qtc, NULL);
7847 wins = xcb_query_tree_children(qtr);
7848 no = xcb_query_tree_children_length(qtr);
7849 /* attach windows to a region */
7850 /* normal windows */
7851 for (j = 0; j < no; j++) {
7852 c = xcb_get_window_attributes(conn, wins[j]);
7853 r = xcb_get_window_attributes_reply(conn, c, NULL);
7856 if (r->override_redirect) {
7861 pc = xcb_icccm_get_wm_transient_for(conn, wins[j]);
7862 if (xcb_icccm_get_wm_transient_for_reply(conn, pc,
7868 state = getstate(wins[j]);
7869 manage = state == XCB_ICCCM_WM_STATE_ICONIC;
7870 if (r->map_state == XCB_MAP_STATE_VIEWABLE || manage)
7871 manage_window(wins[j]);
7874 /* transient windows */
7875 for (j = 0; j < no; j++) {
7876 c = xcb_get_window_attributes(conn, wins[j]);
7877 r = xcb_get_window_attributes_reply(conn, c, NULL);
7880 if (r->override_redirect) {
7886 state = getstate(wins[j]);
7887 manage = state == XCB_ICCCM_WM_STATE_ICONIC;
7888 pc = xcb_icccm_get_wm_transient_for(conn, wins[j]);
7889 if (xcb_icccm_get_wm_transient_for_reply(conn, pc,
7890 &wins[j], NULL) && manage)
7891 manage_window(wins[j]);
7895 DNPRINTF(SWM_D_INIT, "grab_windows: done\n");
7901 int i, j, k, num_screens;
7902 struct workspace *ws;
7903 uint32_t gcv[1], wa[1];
7904 const xcb_query_extension_reply_t *qep;
7905 xcb_screen_t *screen;
7906 xcb_cursor_t cursor;
7907 xcb_font_t cursor_font;
7908 xcb_randr_query_version_cookie_t c;
7909 xcb_randr_query_version_reply_t *r;
7911 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7912 if ((screens = calloc(num_screens,
7913 sizeof(struct swm_screen))) == NULL)
7914 err(1, "setup_screens: calloc: failed to allocate memory for "
7917 /* initial Xrandr setup */
7919 qep = xcb_get_extension_data(conn, &xcb_randr_id);
7921 c = xcb_randr_query_version(conn, 1, 1);
7922 r = xcb_randr_query_version_reply(conn, c, NULL);
7924 if (r->major_version >= 1) {
7926 xrandr_eventbase = qep->first_event;
7932 cursor_font = xcb_generate_id(conn);
7933 xcb_open_font(conn, cursor_font, strlen("cursor"), "cursor");
7935 cursor = xcb_generate_id(conn);
7936 xcb_create_glyph_cursor(conn, cursor, cursor_font, cursor_font,
7937 XC_left_ptr, XC_left_ptr + 1, 0, 0, 0, 0xffff, 0xffff, 0xffff);
7940 /* map physical screens */
7941 for (i = 0; i < num_screens; i++) {
7942 DNPRINTF(SWM_D_WS, "setup_screens: init screen: %d\n", i);
7944 TAILQ_INIT(&screens[i].rl);
7945 TAILQ_INIT(&screens[i].orl);
7946 if ((screen = get_screen(i)) == NULL)
7947 errx(1, "ERROR: can't get screen %d.", i);
7948 screens[i].root = screen->root;
7950 /* set default colors */
7951 setscreencolor("red", i + 1, SWM_S_COLOR_FOCUS);
7952 setscreencolor("rgb:88/88/88", i + 1, SWM_S_COLOR_UNFOCUS);
7953 setscreencolor("rgb:00/80/80", i + 1, SWM_S_COLOR_BAR_BORDER);
7954 setscreencolor("black", i + 1, SWM_S_COLOR_BAR);
7955 setscreencolor("rgb:a0/a0/a0", i + 1, SWM_S_COLOR_BAR_FONT);
7957 /* create graphics context on screen */
7958 screens[i].bar_gc = xcb_generate_id(conn);
7960 xcb_create_gc(conn, screens[i].bar_gc, screens[i].root,
7961 XCB_GC_GRAPHICS_EXPOSURES, gcv);
7963 /* set default cursor */
7964 xcb_change_window_attributes(conn, screens[i].root,
7967 /* init all workspaces */
7968 /* XXX these should be dynamically allocated too */
7969 for (j = 0; j < SWM_WS_MAX; j++) {
7970 ws = &screens[i].ws[j];
7976 TAILQ_INIT(&ws->winlist);
7977 TAILQ_INIT(&ws->unmanagedlist);
7979 for (k = 0; layouts[k].l_stack != NULL; k++)
7980 if (layouts[k].l_config != NULL)
7981 layouts[k].l_config(ws,
7982 SWM_ARG_ID_STACKINIT);
7983 ws->cur_layout = &layouts[0];
7984 ws->cur_layout->l_string(ws);
7990 xcb_randr_select_input(conn, screens[i].root,
7991 XCB_RANDR_NOTIFY_MASK_SCREEN_CHANGE);
7993 xcb_free_cursor(conn, cursor);
7994 xcb_close_font(conn, cursor_font);
8000 if ((bar_fonts = strdup(SWM_BAR_FONTS)) == NULL)
8001 err(1, "setup_globals: strdup: failed to allocate memory.");
8003 if ((clock_format = strdup("%a %b %d %R %Z %Y")) == NULL)
8004 err(1, "setup_globals: strdup: failed to allocate memory.");
8006 if ((syms = xcb_key_symbols_alloc(conn)) == NULL)
8007 errx(1, "unable to allocate key symbols");
8009 a_state = get_atom_from_string("WM_STATE");
8010 a_prot = get_atom_from_string("WM_PROTOCOLS");
8011 a_delete = get_atom_from_string("WM_DELETE_WINDOW");
8012 a_takefocus = get_atom_from_string("WM_TAKE_FOCUS");
8013 a_wmname = get_atom_from_string("WM_NAME");
8014 a_netwmname = get_atom_from_string("_NET_WM_NAME");
8015 a_utf8_string = get_atom_from_string("UTF8_STRING");
8016 a_string = get_atom_from_string("STRING");
8017 a_swm_iconic = get_atom_from_string("_SWM_ICONIC");
8018 a_swm_ws = get_atom_from_string("_SWM_WS");
8025 xcb_atom_t netwmcheck;
8026 xcb_window_t root, win;
8029 /* work around sun jdk bugs, code from wmname */
8030 netwmcheck = get_atom_from_string("_NET_SUPPORTING_WM_CHECK");
8032 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
8033 for (i = 0; i < num_screens; i++) {
8034 root = screens[i].root;
8036 win = xcb_generate_id(conn);
8037 wa[0] = screens[i].c[SWM_S_COLOR_UNFOCUS].pixel;
8038 wa[1] = screens[i].c[SWM_S_COLOR_UNFOCUS].pixel;
8039 xcb_create_window(conn, XCB_COPY_FROM_PARENT, win, 0, 0, 0, 1,
8040 1, 0, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCB_COPY_FROM_PARENT,
8041 XCB_CW_BACK_PIXEL | XCB_CW_BORDER_PIXEL, wa);
8043 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root,
8044 netwmcheck, XCB_ATOM_WINDOW, 32, 1, &win);
8045 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win,
8046 netwmcheck, XCB_ATOM_WINDOW, 32, 1, &win);
8047 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win,
8048 a_netwmname, a_utf8_string, 8, strlen("LG3D"), "LG3D");
8053 shutdown_cleanup(void)
8057 /* disable alarm because the following code may not be interrupted */
8059 if (signal(SIGALRM, SIG_IGN) == SIG_ERR)
8060 err(1, "can't disable alarm");
8068 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
8069 for (i = 0; i < num_screens; ++i) {
8070 if (screens[i].bar_gc != 0)
8071 xcb_free_gc(conn, screens[i].bar_gc);
8072 if (!bar_font_legacy)
8073 XftColorFree(display, DefaultVisual(display, i),
8074 DefaultColormap(display, i), &bar_font_color);
8077 if (bar_font_legacy)
8078 XFreeFontSet(display, bar_fs);
8080 XftFontClose(display, bar_font);
8083 xcb_key_symbols_free(syms);
8085 xcb_disconnect(conn);
8089 event_error(xcb_generic_error_t *e)
8093 DNPRINTF(SWM_D_EVENT, "event_error: %s(%u) from %s(%u), sequence: %u, "
8094 "resource_id: %u, minor_code: %u\n",
8095 xcb_event_get_error_label(e->error_code), e->error_code,
8096 xcb_event_get_request_label(e->major_code), e->major_code,
8097 e->sequence, e->resource_id, e->minor_code);
8101 event_handle(xcb_generic_event_t *evt)
8103 uint8_t type = XCB_EVENT_RESPONSE_TYPE(evt);
8105 DNPRINTF(SWM_D_EVENT, "XCB Event: %s(%d)\n",
8106 xcb_event_get_label(XCB_EVENT_RESPONSE_TYPE(evt)),
8107 XCB_EVENT_RESPONSE_TYPE(evt));
8110 #define EVENT(type, callback) case type: callback((void *)evt); return
8111 EVENT(0, event_error);
8112 EVENT(XCB_BUTTON_PRESS, buttonpress);
8113 /*EVENT(XCB_BUTTON_RELEASE, buttonpress);*/
8114 /*EVENT(XCB_CIRCULATE_NOTIFY, );*/
8115 /*EVENT(XCB_CIRCULATE_REQUEST, );*/
8116 EVENT(XCB_CLIENT_MESSAGE, clientmessage);
8117 /*EVENT(XCB_COLORMAP_NOTIFY, );*/
8118 EVENT(XCB_CONFIGURE_NOTIFY, configurenotify);
8119 EVENT(XCB_CONFIGURE_REQUEST, configurerequest);
8120 /*EVENT(XCB_CREATE_NOTIFY, );*/
8121 EVENT(XCB_DESTROY_NOTIFY, destroynotify);
8122 EVENT(XCB_ENTER_NOTIFY, enternotify);
8123 EVENT(XCB_EXPOSE, expose);
8125 EVENT(XCB_FOCUS_IN, focusin);
8127 /*EVENT(XCB_FOCUS_OUT, );*/
8128 /*EVENT(XCB_GRAPHICS_EXPOSURE, );*/
8129 /*EVENT(XCB_GRAVITY_NOTIFY, );*/
8130 EVENT(XCB_KEY_PRESS, keypress);
8131 /*EVENT(XCB_KEY_RELEASE, keypress);*/
8132 /*EVENT(XCB_KEYMAP_NOTIFY, );*/
8134 EVENT(XCB_LEAVE_NOTIFY, leavenotify);
8136 EVENT(XCB_MAP_NOTIFY, mapnotify);
8137 EVENT(XCB_MAP_REQUEST, maprequest);
8138 EVENT(XCB_MAPPING_NOTIFY, mappingnotify);
8139 /*EVENT(XCB_MOTION_NOTIFY, );*/
8140 /*EVENT(XCB_NO_EXPOSURE, );*/
8141 EVENT(XCB_PROPERTY_NOTIFY, propertynotify);
8142 /*EVENT(XCB_REPARENT_NOTIFY, );*/
8143 /*EVENT(XCB_RESIZE_REQUEST, );*/
8144 /*EVENT(XCB_SELECTION_CLEAR, );*/
8145 /*EVENT(XCB_SELECTION_NOTIFY, );*/
8146 /*EVENT(XCB_SELECTION_REQUEST, );*/
8147 EVENT(XCB_UNMAP_NOTIFY, unmapnotify);
8148 /*EVENT(XCB_VISIBILITY_NOTIFY, visibilitynotify);*/
8151 if (type - xrandr_eventbase == XCB_RANDR_SCREEN_CHANGE_NOTIFY)
8152 screenchange((void *)evt);
8156 main(int argc, char *argv[])
8158 struct swm_region *r, *rr;
8159 struct ws_win *winfocus = NULL;
8161 char conf[PATH_MAX], *cfile = NULL;
8163 int xfd, i, num_screens;
8164 struct sigaction sact;
8165 xcb_generic_event_t *evt;
8169 /* suppress unused warning since var is needed */
8172 time_started = time(NULL);
8175 warnx("Welcome to spectrwm V%s Build: %s", SPECTRWM_VERSION, buildstr);
8176 if (!setlocale(LC_CTYPE, "") || !setlocale(LC_TIME, ""))
8177 warnx("no locale support");
8179 /* handle some signals */
8180 bzero(&sact, sizeof(sact));
8181 sigemptyset(&sact.sa_mask);
8183 sact.sa_handler = sighdlr;
8184 sigaction(SIGINT, &sact, NULL);
8185 sigaction(SIGQUIT, &sact, NULL);
8186 sigaction(SIGTERM, &sact, NULL);
8187 sigaction(SIGHUP, &sact, NULL);
8189 sact.sa_handler = sighdlr;
8190 sact.sa_flags = SA_NOCLDSTOP;
8191 sigaction(SIGCHLD, &sact, NULL);
8193 if (!(display = XOpenDisplay(0)))
8194 errx(1, "can not open display");
8196 conn = XGetXCBConnection(display);
8197 if (xcb_connection_has_error(conn))
8198 errx(1, "can not get XCB connection");
8200 XSetEventQueueOwner(display, XCBOwnsEventQueue);
8202 xcb_prefetch_extension_data(conn, &xcb_randr_id);
8203 xfd = xcb_get_file_descriptor(conn);
8205 /* look for local and global conf file */
8206 pwd = getpwuid(getuid());
8208 errx(1, "invalid user: %d", getuid());
8210 xcb_grab_server(conn);
8213 /* flush all events */
8214 while ((evt = xcb_poll_for_event(conn))) {
8215 if (XCB_EVENT_RESPONSE_TYPE(evt) == 0)
8220 if (enable_wm() != 0)
8221 errx(1, "another window manager is currently running");
8232 for (i = 0; ; i++) {
8237 snprintf(conf, sizeof conf, "%s/.%s",
8238 pwd->pw_dir, SWM_CONF_FILE);
8242 snprintf(conf, sizeof conf, "/etc/%s",
8247 snprintf(conf, sizeof conf, "%s/.%s",
8248 pwd->pw_dir, SWM_CONF_FILE_OLD);
8252 snprintf(conf, sizeof conf, "/etc/%s",
8259 if (strlen(conf) && stat(conf, &sb) != -1)
8260 if (S_ISREG(sb.st_mode)) {
8267 /* load conf (if any) */
8269 conf_load(cfile, SWM_CONF_DEFAULT);
8272 /* set some values to work around bad programs */
8274 /* grab existing windows (before we build the bars) */
8277 if (getenv("SWM_STARTED") == NULL)
8278 setenv("SWM_STARTED", "YES", 1);
8280 /* setup all bars */
8281 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
8282 for (i = 0; i < num_screens; i++)
8283 TAILQ_FOREACH(r, &screens[i].rl, entry) {
8284 if (winfocus == NULL)
8285 winfocus = TAILQ_FIRST(&r->ws->winlist);
8294 xcb_ungrab_server(conn);
8298 while ((evt = xcb_poll_for_event(conn))) {
8305 /* if we are being restarted go focus on first window */
8307 rr = winfocus->ws->r;
8309 /* not a visible window */
8313 /* move pointer to first screen if multi screen */
8314 if (num_screens > 1 || outputs > 1)
8315 xcb_warp_pointer(conn, XCB_WINDOW_NONE,
8316 rr->s[0].root, 0, 0, 0, 0, X(rr),
8317 Y(rr) + (bar_enabled ? bar_height : 0));
8319 a.id = SWM_ARG_ID_FOCUSCUR;
8329 if (select(xfd + 1, &rd, NULL, NULL, &tv) == -1)
8330 if (errno != EINTR) {
8331 DNPRINTF(SWM_D_MISC, "select failed");
8333 if (restart_wm == 1)
8334 restart(NULL, NULL);
8335 if (search_resp == 1)