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>
12 * Permission to use, copy, modify, and distribute this software for any
13 * purpose with or without fee is hereby granted, provided that the above
14 * copyright notice and this permission notice appear in all copies.
16 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
17 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
18 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
19 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
20 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
21 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
22 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
25 * Much code and ideas taken from dwm under the following license:
26 * MIT/X Consortium License
28 * 2006-2008 Anselm R Garbe <garbeam at gmail dot com>
29 * 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
30 * 2006-2007 Jukka Salmi <jukka at salmi dot ch>
31 * 2007 Premysl Hruby <dfenze at gmail dot com>
32 * 2007 Szabolcs Nagy <nszabolcs at gmail dot com>
33 * 2007 Christof Musik <christof at sendfax dot de>
34 * 2007-2008 Enno Gottox Boland <gottox at s01 dot de>
35 * 2007-2008 Peter Hartlich <sgkkr at hartlich dot com>
36 * 2008 Martin Hurton <martin dot hurton at gmail dot com>
38 * Permission is hereby granted, free of charge, to any person obtaining a
39 * copy of this software and associated documentation files (the "Software"),
40 * to deal in the Software without restriction, including without limitation
41 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
42 * and/or sell copies of the Software, and to permit persons to whom the
43 * Software is furnished to do so, subject to the following conditions:
45 * The above copyright notice and this permission notice shall be included in
46 * all copies or substantial portions of the Software.
48 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
49 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
50 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
51 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
52 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
53 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
54 * DEALINGS IN THE SOFTWARE.
58 #include <sys/types.h>
62 #include <sys/queue.h>
63 #include <sys/param.h>
64 #include <sys/select.h>
65 #if defined(__linux__)
67 #elif defined(__OpenBSD__)
69 #elif defined(__FreeBSD__)
90 #include <X11/cursorfont.h>
91 #include <X11/extensions/Xrandr.h>
92 #include <X11/Xft/Xft.h>
93 #include <X11/Xlib-xcb.h>
94 #include <xcb/xcb_atom.h>
95 #include <xcb/xcb_aux.h>
96 #include <xcb/xcb_event.h>
97 #include <xcb/xcb_icccm.h>
98 #include <xcb/xcb_keysyms.h>
99 #include <xcb/xtest.h>
100 #include <xcb/randr.h>
108 #ifdef SPECTRWM_BUILDSTR
109 static const char *buildstr = SPECTRWM_BUILDSTR;
111 static const char *buildstr = SPECTRWM_VERSION;
115 # error XRandR versions less than 1.0 are not supported
120 #define SWM_XRR_HAS_CRTC
124 #if defined(__OpenBSD__)
125 #define XCB_ICCCM_SIZE_HINT_P_MIN_SIZE XCB_SIZE_HINT_P_MIN_SIZE
126 #define XCB_ICCCM_SIZE_HINT_P_MAX_SIZE XCB_SIZE_HINT_P_MAX_SIZE
127 #define XCB_ICCCM_SIZE_HINT_P_RESIZE_INC XCB_SIZE_HINT_P_RESIZE_INC
128 #define XCB_ICCCM_WM_HINT_X_URGENCY XCB_WM_HINT_X_URGENCY
129 #define XCB_ICCCM_WM_STATE_ICONIC XCB_WM_STATE_ICONIC
130 #define XCB_ICCCM_WM_STATE_WITHDRAWN XCB_WM_STATE_WITHDRAWN
131 #define XCB_ICCCM_WM_STATE_NORMAL XCB_WM_STATE_NORMAL
132 #define xcb_icccm_get_text_property_reply_t xcb_get_text_property_reply_t
133 #define xcb_icccm_get_text_property_reply_wipe xcb_get_text_property_reply_wipe
134 #define xcb_icccm_get_wm_class xcb_get_wm_class
135 #define xcb_icccm_get_wm_class_reply xcb_get_wm_class_reply
136 #define xcb_icccm_get_wm_class_reply_t xcb_get_wm_class_reply_t
137 #define xcb_icccm_get_wm_class_reply_wipe xcb_get_wm_class_reply_wipe
138 #define xcb_icccm_get_wm_hints xcb_get_wm_hints
139 #define xcb_icccm_get_wm_hints_reply xcb_get_wm_hints_reply
140 #define xcb_icccm_get_wm_name xcb_get_wm_name
141 #define xcb_icccm_get_wm_name_reply xcb_get_wm_name_reply
142 #define xcb_icccm_get_wm_normal_hints xcb_get_wm_normal_hints
143 #define xcb_icccm_get_wm_normal_hints_reply xcb_get_wm_normal_hints_reply
144 #define xcb_icccm_get_wm_protocols xcb_get_wm_protocols
145 #define xcb_icccm_get_wm_protocols_reply xcb_get_wm_protocols_reply
146 #define xcb_icccm_get_wm_protocols_reply_t xcb_get_wm_protocols_reply_t
147 #define xcb_icccm_get_wm_protocols_reply_wipe xcb_get_wm_protocols_reply_wipe
148 #define xcb_icccm_get_wm_transient_for xcb_get_wm_transient_for
149 #define xcb_icccm_get_wm_transient_for_reply xcb_get_wm_transient_for_reply
150 #define xcb_icccm_wm_hints_t xcb_wm_hints_t
155 #define DPRINTF(x...) do { \
157 fprintf(stderr, x); \
159 #define DNPRINTF(n,x...) do { \
160 if (swm_debug & n) { \
161 fprintf(stderr, "%ld ", (long)(time(NULL) - time_started)); \
162 fprintf(stderr, x); \
165 #define SWM_D_MISC 0x0001
166 #define SWM_D_EVENT 0x0002
167 #define SWM_D_WS 0x0004
168 #define SWM_D_FOCUS 0x0008
169 #define SWM_D_MOVE 0x0010
170 #define SWM_D_STACK 0x0020
171 #define SWM_D_MOUSE 0x0040
172 #define SWM_D_PROP 0x0080
173 #define SWM_D_CLASS 0x0100
174 #define SWM_D_KEY 0x0200
175 #define SWM_D_QUIRK 0x0400
176 #define SWM_D_SPAWN 0x0800
177 #define SWM_D_EVENTQ 0x1000
178 #define SWM_D_CONF 0x2000
179 #define SWM_D_BAR 0x4000
180 #define SWM_D_INIT 0x8000
182 u_int32_t swm_debug = 0
201 #define DPRINTF(x...)
202 #define DNPRINTF(n,x...)
205 #define LENGTH(x) (int)(sizeof x / sizeof x[0])
206 #define MODKEY Mod1Mask
207 #define CLEANMASK(mask) (mask & ~(numlockmask | LockMask))
208 #define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)
209 #define MOUSEMASK (BUTTONMASK|PointerMotionMask)
210 #define SWM_PROPLEN (16)
211 #define SWM_FUNCNAME_LEN (32)
212 #define SWM_KEYS_LEN (255)
213 #define SWM_QUIRK_LEN (64)
214 #define X(r) (r)->g.x
215 #define Y(r) (r)->g.y
216 #define WIDTH(r) (r)->g.w
217 #define HEIGHT(r) (r)->g.h
218 #define BORDER(w) (w->bordered ? border_width : 0)
219 #define MAX_X(r) ((r)->g.x + (r)->g.w)
220 #define MAX_Y(r) ((r)->g.y + (r)->g.h)
221 #define SH_MIN(w) (w)->sh.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE
222 #define SH_MIN_W(w) (w)->sh.min_width
223 #define SH_MIN_H(w) (w)->sh.min_height
224 #define SH_MAX(w) (w)->sh.flags & XCB_ICCCM_SIZE_HINT_P_MAX_SIZE
225 #define SH_MAX_W(w) (w)->sh.max_width
226 #define SH_MAX_H(w) (w)->sh.max_height
227 #define SH_INC(w) (w)->sh.flags & XCB_ICCCM_SIZE_HINT_P_RESIZE_INC
228 #define SH_INC_W(w) (w)->sh.width_inc
229 #define SH_INC_H(w) (w)->sh.height_inc
230 #define SWM_MAX_FONT_STEPS (3)
231 #define WINID(w) ((w) ? (w)->id : 0)
232 #define YESNO(x) ((x) ? "yes" : "no")
234 #define SWM_FOCUS_DEFAULT (0)
235 #define SWM_FOCUS_SYNERGY (1)
236 #define SWM_FOCUS_FOLLOW (2)
238 #define SWM_CONF_DEFAULT (0)
239 #define SWM_CONF_KEYMAPPING (1)
242 #define SWM_LIB "/usr/local/lib/libswmhack.so"
249 xcb_atom_t a_takefocus;
251 xcb_atom_t a_netwmname;
252 xcb_atom_t a_utf8_string;
254 xcb_atom_t a_swm_iconic;
255 volatile sig_atomic_t running = 1;
256 volatile sig_atomic_t restart_wm = 0;
258 /*int last_focus_event = FocusOut;*/
262 int xrandr_eventbase;
263 unsigned int numlockmask = 0;
266 xcb_connection_t *conn;
267 xcb_key_symbols_t *syms;
270 int cycle_visible = 0;
272 int font_adjusted = 0;
273 unsigned int mod_key = MODKEY;
276 struct swm_region *search_r;
277 int select_list_pipe[2];
278 int select_resp_pipe[2];
280 volatile sig_atomic_t search_resp;
281 int search_resp_action;
283 struct search_window {
284 TAILQ_ENTRY(search_window) entry;
288 xcb_window_t indicator;
290 TAILQ_HEAD(search_winlist, search_window);
291 struct search_winlist search_wl;
296 SWM_SEARCH_UNICONIFY,
297 SWM_SEARCH_NAME_WORKSPACE,
298 SWM_SEARCH_SEARCH_WORKSPACE,
299 SWM_SEARCH_SEARCH_WINDOW
302 #define SWM_STACK_TOP (0)
303 #define SWM_STACK_BOTTOM (1)
304 #define SWM_STACK_ABOVE (2)
305 #define SWM_STACK_BELOW (3)
308 double dialog_ratio = 0.6;
310 #define SWM_BAR_MAX (256)
311 #define SWM_BAR_JUSTIFY_LEFT (0)
312 #define SWM_BAR_JUSTIFY_CENTER (1)
313 #define SWM_BAR_JUSTIFY_RIGHT (2)
314 #define SWM_BAR_OFFSET (4)
315 #define SWM_BAR_FONTS "-*-terminus-medium-*-*-*-*-*-*-*-*-*-*-*," \
316 "-*-profont-*-*-*-*-*-*-*-*-*-*-*-*," \
317 "-*-times-medium-r-*-*-*-*-*-*-*-*-*-*," \
318 "-misc-fixed-medium-r-*-*-*-*-*-*-*-*-*-*," \
319 "-*-*-*-r-*--*-*-*-*-*-*-*-*"
321 char *bar_argv[] = { NULL, NULL };
323 unsigned char bar_ext[SWM_BAR_MAX];
324 char bar_vertext[SWM_BAR_MAX];
326 sig_atomic_t bar_alarm = 0;
329 int bar_border_width = 1;
330 int bar_at_bottom = 0;
332 int bar_extra_running = 0;
335 int bar_justify = SWM_BAR_JUSTIFY_LEFT;
336 char *bar_format = NULL;
337 int stack_enabled = 1;
338 int clock_enabled = 1;
339 int urgent_enabled = 0;
340 char *clock_format = NULL;
341 int title_name_enabled = 0;
342 int title_class_enabled = 0;
343 int window_name_enabled = 0;
344 int focus_mode = SWM_FOCUS_DEFAULT;
345 int focus_close = SWM_STACK_BELOW;
346 int focus_close_wrap = 1;
347 int focus_default = SWM_STACK_TOP;
348 int spawn_position = SWM_STACK_TOP;
349 int disable_border = 0;
350 int border_width = 1;
351 int verbose_layout = 0;
358 /* layout manager data */
359 struct swm_geometry {
372 struct swm_geometry g;
375 /* virtual "screens" */
377 TAILQ_ENTRY(swm_region) entry;
378 struct swm_geometry g;
379 struct workspace *ws; /* current workspace on this region */
380 struct workspace *ws_prior; /* prior workspace on this region */
381 struct swm_screen *s; /* screen idx */
384 TAILQ_HEAD(swm_region_list, swm_region);
387 TAILQ_ENTRY(ws_win) entry;
389 xcb_window_t transient;
390 struct ws_win *child_trans; /* transient child window */
391 struct swm_geometry g; /* current geometry */
392 struct swm_geometry g_float; /* region coordinates */
393 int g_floatvalid; /* g_float geometry validity */
394 int floatmaxed; /* whether maxed by max_stack */
399 unsigned int ewmh_flags;
400 int font_size_boundary[SWM_MAX_FONT_STEPS];
406 unsigned long quirks;
407 struct workspace *ws; /* always valid */
408 struct swm_screen *s; /* always valid, never changes */
409 xcb_get_geometry_reply_t *wa;
411 xcb_icccm_get_wm_class_reply_t ch;
412 xcb_icccm_wm_hints_t hints;
414 TAILQ_HEAD(ws_win_list, ws_win);
418 TAILQ_ENTRY(pid_e) entry;
422 TAILQ_HEAD(pid_list, pid_e);
423 struct pid_list pidlist = TAILQ_HEAD_INITIALIZER(pidlist);
425 /* layout handlers */
427 void vertical_config(struct workspace *, int);
428 void vertical_stack(struct workspace *, struct swm_geometry *);
429 void horizontal_config(struct workspace *, int);
430 void horizontal_stack(struct workspace *, struct swm_geometry *);
431 void max_stack(struct workspace *, struct swm_geometry *);
432 void plain_stacker(struct workspace *);
433 void fancy_stacker(struct workspace *);
436 void (*l_stack)(struct workspace *, struct swm_geometry *);
437 void (*l_config)(struct workspace *, int);
439 #define SWM_L_FOCUSPREV (1<<0)
440 #define SWM_L_MAPONFOCUS (1<<1)
441 void (*l_string)(struct workspace *);
443 /* stack, configure */
444 { vertical_stack, vertical_config, 0, plain_stacker },
445 { horizontal_stack, horizontal_config, 0, plain_stacker },
447 SWM_L_MAPONFOCUS | SWM_L_FOCUSPREV, plain_stacker },
448 { NULL, NULL, 0, NULL },
451 /* position of max_stack mode in the layouts array, index into layouts! */
452 #define SWM_V_STACK (0)
453 #define SWM_H_STACK (1)
454 #define SWM_MAX_STACK (2)
456 #define SWM_H_SLICE (32)
457 #define SWM_V_SLICE (32)
459 /* define work spaces */
461 int idx; /* workspace index */
462 char *name; /* workspace name */
463 int always_raise; /* raise windows on focus */
464 struct layout *cur_layout; /* current layout handlers */
465 struct ws_win *focus; /* may be NULL */
466 struct ws_win *focus_prev; /* may be NULL */
467 struct swm_region *r; /* may be NULL */
468 struct swm_region *old_r; /* may be NULL */
469 struct ws_win_list winlist; /* list of windows in ws */
470 struct ws_win_list unmanagedlist; /* list of dead windows in ws */
471 char stacker[10]; /* display stacker and layout */
475 int horizontal_msize;
477 int horizontal_stacks;
488 SWM_S_COLOR_BAR_BORDER,
489 SWM_S_COLOR_BAR_FONT,
495 /* physical screen mapping */
496 #define SWM_WS_MAX (22) /* hard limit */
497 int workspace_limit = 10; /* soft limit */
500 int idx; /* screen index */
501 struct swm_region_list rl; /* list of regions on this screen */
502 struct swm_region_list orl; /* list of old regions */
504 struct workspace ws[SWM_WS_MAX];
510 } c[SWM_S_COLOR_MAX];
512 xcb_gcontext_t bar_gc;
514 struct swm_screen *screens;
516 /* args to functions */
519 #define SWM_ARG_ID_FOCUSNEXT (0)
520 #define SWM_ARG_ID_FOCUSPREV (1)
521 #define SWM_ARG_ID_FOCUSMAIN (2)
522 #define SWM_ARG_ID_FOCUSCUR (4)
523 #define SWM_ARG_ID_SWAPNEXT (10)
524 #define SWM_ARG_ID_SWAPPREV (11)
525 #define SWM_ARG_ID_SWAPMAIN (12)
526 #define SWM_ARG_ID_MOVELAST (13)
527 #define SWM_ARG_ID_MASTERSHRINK (20)
528 #define SWM_ARG_ID_MASTERGROW (21)
529 #define SWM_ARG_ID_MASTERADD (22)
530 #define SWM_ARG_ID_MASTERDEL (23)
531 #define SWM_ARG_ID_FLIPLAYOUT (24)
532 #define SWM_ARG_ID_STACKRESET (30)
533 #define SWM_ARG_ID_STACKINIT (31)
534 #define SWM_ARG_ID_CYCLEWS_UP (40)
535 #define SWM_ARG_ID_CYCLEWS_DOWN (41)
536 #define SWM_ARG_ID_CYCLESC_UP (42)
537 #define SWM_ARG_ID_CYCLESC_DOWN (43)
538 #define SWM_ARG_ID_CYCLEWS_UP_ALL (44)
539 #define SWM_ARG_ID_CYCLEWS_DOWN_ALL (45)
540 #define SWM_ARG_ID_STACKINC (50)
541 #define SWM_ARG_ID_STACKDEC (51)
542 #define SWM_ARG_ID_SS_ALL (60)
543 #define SWM_ARG_ID_SS_WINDOW (61)
544 #define SWM_ARG_ID_DONTCENTER (70)
545 #define SWM_ARG_ID_CENTER (71)
546 #define SWM_ARG_ID_KILLWINDOW (80)
547 #define SWM_ARG_ID_DELETEWINDOW (81)
548 #define SWM_ARG_ID_WIDTHGROW (90)
549 #define SWM_ARG_ID_WIDTHSHRINK (91)
550 #define SWM_ARG_ID_HEIGHTGROW (92)
551 #define SWM_ARG_ID_HEIGHTSHRINK (93)
552 #define SWM_ARG_ID_MOVEUP (100)
553 #define SWM_ARG_ID_MOVEDOWN (101)
554 #define SWM_ARG_ID_MOVELEFT (102)
555 #define SWM_ARG_ID_MOVERIGHT (103)
561 TAILQ_ENTRY(quirk) entry;
565 #define SWM_Q_FLOAT (1<<0) /* float this window */
566 #define SWM_Q_TRANSSZ (1<<1) /* transiend window size too small */
567 #define SWM_Q_ANYWHERE (1<<2) /* don't position this window */
568 #define SWM_Q_XTERM_FONTADJ (1<<3) /* adjust xterm fonts when resizing */
569 #define SWM_Q_FULLSCREEN (1<<4) /* remove border */
570 #define SWM_Q_FOCUSPREV (1<<5) /* focus on caller */
572 TAILQ_HEAD(quirk_list, quirk);
573 struct quirk_list quirks = TAILQ_HEAD_INITIALIZER(quirks);
576 * Supported EWMH hints should be added to
577 * both the enum and the ewmh array
582 _NET_MOVERESIZE_WINDOW,
583 _NET_WM_ACTION_CLOSE,
584 _NET_WM_ACTION_FULLSCREEN,
586 _NET_WM_ACTION_RESIZE,
587 _NET_WM_ALLOWED_ACTIONS,
590 _NET_WM_STATE_FULLSCREEN,
591 _NET_WM_STATE_HIDDEN,
592 _NET_WM_STATE_MAXIMIZED_HORZ,
593 _NET_WM_STATE_MAXIMIZED_VERT,
594 _NET_WM_STATE_SKIP_PAGER,
595 _NET_WM_STATE_SKIP_TASKBAR,
597 _NET_WM_WINDOW_TYPE_DIALOG,
598 _NET_WM_WINDOW_TYPE_DOCK,
599 _NET_WM_WINDOW_TYPE_NORMAL,
600 _NET_WM_WINDOW_TYPE_SPLASH,
601 _NET_WM_WINDOW_TYPE_TOOLBAR,
602 _NET_WM_WINDOW_TYPE_UTILITY,
603 _SWM_WM_STATE_MANUAL,
610 } ewmh[SWM_EWMH_HINT_MAX] = {
611 /* must be in same order as in the enum */
612 {"_NET_ACTIVE_WINDOW", XCB_ATOM_NONE},
613 {"_NET_CLOSE_WINDOW", XCB_ATOM_NONE},
614 {"_NET_MOVERESIZE_WINDOW", XCB_ATOM_NONE},
615 {"_NET_WM_ACTION_CLOSE", XCB_ATOM_NONE},
616 {"_NET_WM_ACTION_FULLSCREEN", XCB_ATOM_NONE},
617 {"_NET_WM_ACTION_MOVE", XCB_ATOM_NONE},
618 {"_NET_WM_ACTION_RESIZE", XCB_ATOM_NONE},
619 {"_NET_WM_ALLOWED_ACTIONS", XCB_ATOM_NONE},
620 {"_NET_WM_STATE", XCB_ATOM_NONE},
621 {"_NET_WM_STATE_ABOVE", XCB_ATOM_NONE},
622 {"_NET_WM_STATE_FULLSCREEN", XCB_ATOM_NONE},
623 {"_NET_WM_STATE_HIDDEN", XCB_ATOM_NONE},
624 {"_NET_WM_STATE_MAXIMIZED_HORZ", XCB_ATOM_NONE},
625 {"_NET_WM_STATE_MAXIMIZED_VERT", XCB_ATOM_NONE},
626 {"_NET_WM_STATE_SKIP_PAGER", XCB_ATOM_NONE},
627 {"_NET_WM_STATE_SKIP_TASKBAR", XCB_ATOM_NONE},
628 {"_NET_WM_WINDOW_TYPE", XCB_ATOM_NONE},
629 {"_NET_WM_WINDOW_TYPE_DIALOG", XCB_ATOM_NONE},
630 {"_NET_WM_WINDOW_TYPE_DOCK", XCB_ATOM_NONE},
631 {"_NET_WM_WINDOW_TYPE_NORMAL", XCB_ATOM_NONE},
632 {"_NET_WM_WINDOW_TYPE_SPLASH", XCB_ATOM_NONE},
633 {"_NET_WM_WINDOW_TYPE_TOOLBAR", XCB_ATOM_NONE},
634 {"_NET_WM_WINDOW_TYPE_UTILITY", XCB_ATOM_NONE},
635 {"_SWM_WM_STATE_MANUAL", XCB_ATOM_NONE},
638 /* function prototypes */
639 xcb_char2b_t *char2b(const char *);
640 int conf_load(char *, int);
641 void constrain_window(struct ws_win *, struct swm_region *, int);
643 void event_handle(xcb_generic_event_t *);
644 struct ws_win *find_window(xcb_window_t);
645 int floating_toggle_win(struct ws_win *);
646 void focus(struct swm_region *, union arg *);
647 void focus_magic(struct ws_win *);
648 xcb_atom_t get_atom_from_string(const char *);
649 xcb_screen_t *get_screen(int);
650 char *get_win_name(xcb_window_t);
651 uint16_t getstate(xcb_window_t);
652 void grabbuttons(struct ws_win *, int);
653 void map_window_raised(xcb_window_t);
654 void new_region(struct swm_screen *, int, int, int, int);
655 int parse_rgb(const char *, uint16_t *, uint16_t *, uint16_t *);
656 void spawn_select(struct swm_region *, union arg *, char *, int *);
657 void store_float_geom(struct ws_win *, struct swm_region *);
658 void unmanage_window(struct ws_win *);
659 void update_window(struct ws_win *);
661 /* function definitions */
663 char2b(const char *str)
669 s = malloc(len * sizeof(xcb_char2b_t));
673 for (i = 0; i < len; i++) {
682 parse_rgb(const char *rgb, uint16_t *rr, uint16_t *gg, uint16_t *bb)
684 unsigned int tmpr, tmpg, tmpb;
686 if (sscanf(rgb, "rgb:%x/%x/%x", &tmpr, &tmpg, &tmpb) != 3)
697 get_screen(int screen)
699 xcb_screen_iterator_t i;
701 i = xcb_setup_roots_iterator(xcb_get_setup(conn));
702 for (; i.rem; --screen, xcb_screen_next(&i))
712 xcb_get_input_focus_cookie_t c;
713 xcb_get_input_focus_reply_t *r;
716 c = xcb_get_input_focus(conn);
718 r = xcb_get_input_focus_reply(conn, c, NULL);
724 map_window_raised(xcb_window_t win)
726 uint32_t val = XCB_STACK_MODE_ABOVE;
728 xcb_configure_window(conn, win,
729 XCB_CONFIG_WINDOW_STACK_MODE, &val);
731 xcb_map_window(conn, win);
735 get_atom_from_string(const char *str)
737 xcb_intern_atom_cookie_t c;
738 xcb_intern_atom_reply_t *r;
741 c = xcb_intern_atom(conn, False, strlen(str), str);
742 r = xcb_intern_atom_reply(conn, c, NULL);
750 return (XCB_ATOM_NONE);
754 update_iconic(struct ws_win *win, int newv)
761 iprop = get_atom_from_string("_SWM_ICONIC");
762 if (iprop == XCB_ATOM_NONE)
766 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
767 iprop, XCB_ATOM_INTEGER, 32, 1, &v);
769 xcb_delete_property(conn, win->id, iprop);
773 get_iconic(struct ws_win *win)
777 xcb_get_property_reply_t *pr = NULL;
779 iprop = get_atom_from_string("_SWM_ICONIC");
780 if (iprop == XCB_ATOM_NONE)
783 pr = xcb_get_property_reply(conn,
784 xcb_get_property(conn, False, win->id, iprop, XCB_ATOM_INTEGER,
788 if (pr->type != XCB_ATOM_INTEGER || pr->format != 32)
790 v = *((int32_t *)xcb_get_property_value(pr));
801 int i, j, num_screens;
803 sup_list = get_atom_from_string("_NET_SUPPORTED");
805 for (i = 0; i < LENGTH(ewmh); i++)
806 ewmh[i].atom = get_atom_from_string(ewmh[i].name);
808 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
809 for (i = 0; i < num_screens; i++) {
810 /* Support check window will be created by workaround(). */
812 /* Report supported atoms */
813 xcb_delete_property(conn, screens[i].root, sup_list);
814 for (j = 0; j < LENGTH(ewmh); j++)
815 xcb_change_property(conn, XCB_PROP_MODE_APPEND,
816 screens[i].root, sup_list, XCB_ATOM_ATOM, 32, 1,
825 xcb_atom_t sup_check, sup_list;
827 xcb_get_property_cookie_t pc;
828 xcb_get_property_reply_t *pr;
830 sup_check = get_atom_from_string("_NET_SUPPORTING_WM_CHECK");
831 sup_list = get_atom_from_string("_NET_SUPPORTED");
832 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
834 for (i = 0; i < num_screens; i++) {
835 /* Get the support check window and destroy it */
836 pc = xcb_get_property(conn, False, screens[i].root, sup_check,
837 XCB_ATOM_WINDOW, 0, 1);
838 pr = xcb_get_property_reply(conn, pc, NULL);
840 id = *((xcb_window_t *)xcb_get_property_value(pr));
842 xcb_destroy_window(conn, id);
843 xcb_delete_property(conn, screens[i].root, sup_check);
844 xcb_delete_property(conn, screens[i].root, sup_list);
852 ewmh_autoquirk(struct ws_win *win)
856 xcb_get_property_cookie_t c;
857 xcb_get_property_reply_t *r;
859 c = xcb_get_property(conn, False, win->id,
860 ewmh[_NET_WM_WINDOW_TYPE].atom, XCB_ATOM_ATOM, 0, UINT32_MAX);
861 r = xcb_get_property_reply(conn, c, NULL);
865 n = xcb_get_property_value_length(r);
866 type = xcb_get_property_value(r);
868 for (i = 0; i < n; i++) {
869 if (type[i] == ewmh[_NET_WM_WINDOW_TYPE_NORMAL].atom)
871 if (type[i] == ewmh[_NET_WM_WINDOW_TYPE_DOCK].atom ||
872 type[i] == ewmh[_NET_WM_WINDOW_TYPE_TOOLBAR].atom ||
873 type[i] == ewmh[_NET_WM_WINDOW_TYPE_UTILITY].atom) {
875 win->quirks = SWM_Q_FLOAT | SWM_Q_ANYWHERE;
878 if (type[i] == ewmh[_NET_WM_WINDOW_TYPE_SPLASH].atom ||
879 type[i] == ewmh[_NET_WM_WINDOW_TYPE_DIALOG].atom) {
881 win->quirks = SWM_Q_FLOAT;
888 #define SWM_EWMH_ACTION_COUNT_MAX (6)
889 #define EWMH_F_FULLSCREEN (1<<0)
890 #define EWMH_F_ABOVE (1<<1)
891 #define EWMH_F_HIDDEN (1<<2)
892 #define EWMH_F_SKIP_PAGER (1<<3)
893 #define EWMH_F_SKIP_TASKBAR (1<<4)
894 #define SWM_F_MANUAL (1<<5)
897 ewmh_set_win_fullscreen(struct ws_win *win, int fs)
905 DNPRINTF(SWM_D_MISC, "ewmh_set_win_fullscreen: window: 0x%x, "
906 "fullscreen %s\n", win->id, YESNO(fs));
909 if (!win->g_floatvalid)
910 store_float_geom(win, win->ws->r);
912 win->g = win->ws->r->g;
915 if (win->g_floatvalid) {
916 /* refloat at last floating relative position */
917 win->g = win->g_float;
918 X(win) += X(win->ws->r);
919 Y(win) += Y(win->ws->r);
927 ewmh_update_actions(struct ws_win *win)
929 xcb_atom_t actions[SWM_EWMH_ACTION_COUNT_MAX];
935 actions[n++] = ewmh[_NET_WM_ACTION_CLOSE].atom;
938 actions[n++] = ewmh[_NET_WM_ACTION_MOVE].atom;
939 actions[n++] = ewmh[_NET_WM_ACTION_RESIZE].atom;
942 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
943 ewmh[_NET_WM_ALLOWED_ACTIONS].atom, XCB_ATOM_ATOM, 32, 1, actions);
946 #define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
947 #define _NET_WM_STATE_ADD 1 /* add/set property */
948 #define _NET_WM_STATE_TOGGLE 2 /* toggle property */
951 ewmh_update_win_state(struct ws_win *win, long state, long action)
953 unsigned int mask = 0;
954 unsigned int changed = 0;
955 unsigned int orig_flags;
960 if (state == ewmh[_NET_WM_STATE_FULLSCREEN].atom)
961 mask = EWMH_F_FULLSCREEN;
962 if (state == ewmh[_NET_WM_STATE_ABOVE].atom)
964 if (state == ewmh[_SWM_WM_STATE_MANUAL].atom)
966 if (state == ewmh[_NET_WM_STATE_SKIP_PAGER].atom)
967 mask = EWMH_F_SKIP_PAGER;
968 if (state == ewmh[_NET_WM_STATE_SKIP_TASKBAR].atom)
969 mask = EWMH_F_SKIP_TASKBAR;
972 orig_flags = win->ewmh_flags;
975 case _NET_WM_STATE_REMOVE:
976 win->ewmh_flags &= ~mask;
978 case _NET_WM_STATE_ADD:
979 win->ewmh_flags |= mask;
981 case _NET_WM_STATE_TOGGLE:
982 win->ewmh_flags ^= mask;
986 changed = (win->ewmh_flags & mask) ^ (orig_flags & mask) ? 1 : 0;
988 if (state == ewmh[_NET_WM_STATE_ABOVE].atom)
990 if (!floating_toggle_win(win))
991 win->ewmh_flags = orig_flags; /* revert */
992 if (state == ewmh[_SWM_WM_STATE_MANUAL].atom)
994 win->manual = (win->ewmh_flags & SWM_F_MANUAL) != 0;
995 if (state == ewmh[_NET_WM_STATE_FULLSCREEN].atom)
997 if (!ewmh_set_win_fullscreen(win,
998 win->ewmh_flags & EWMH_F_FULLSCREEN))
999 win->ewmh_flags = orig_flags; /* revert */
1001 xcb_delete_property(conn, win->id, ewmh[_NET_WM_STATE].atom);
1003 if (win->ewmh_flags & EWMH_F_FULLSCREEN)
1004 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1005 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1006 &ewmh[_NET_WM_STATE_FULLSCREEN].atom);
1007 if (win->ewmh_flags & EWMH_F_SKIP_PAGER)
1008 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1009 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1010 &ewmh[_NET_WM_STATE_SKIP_PAGER].atom);
1011 if (win->ewmh_flags & EWMH_F_SKIP_TASKBAR)
1012 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1013 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1014 &ewmh[_NET_WM_STATE_SKIP_TASKBAR].atom);
1015 if (win->ewmh_flags & EWMH_F_ABOVE)
1016 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1017 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1018 &ewmh[_NET_WM_STATE_ABOVE].atom);
1019 if (win->ewmh_flags & SWM_F_MANUAL)
1020 xcb_change_property(conn, XCB_PROP_MODE_APPEND, win->id,
1021 ewmh[_NET_WM_STATE].atom, XCB_ATOM_ATOM, 32, 1,
1022 &ewmh[_SWM_WM_STATE_MANUAL].atom);
1026 ewmh_get_win_state(struct ws_win *win)
1029 xcb_get_property_cookie_t c;
1030 xcb_get_property_reply_t *r;
1036 win->ewmh_flags = 0;
1038 win->ewmh_flags |= EWMH_F_ABOVE;
1040 win->ewmh_flags |= SWM_F_MANUAL;
1042 c = xcb_get_property(conn, False, win->id, ewmh[_NET_WM_STATE].atom,
1043 XCB_ATOM_ATOM, 0, UINT32_MAX);
1044 r = xcb_get_property_reply(conn, c, NULL);
1048 states = xcb_get_property_value(r);
1049 n = xcb_get_property_value_length(r);
1051 for (i = 0; i < n; i++)
1052 ewmh_update_win_state(win, states[i], _NET_WM_STATE_ADD);
1060 dumpwins(struct swm_region *r, union arg *args)
1064 xcb_get_window_attributes_cookie_t c;
1065 xcb_get_window_attributes_reply_t *wa;
1067 if (r->ws == NULL) {
1068 warnx("dumpwins: invalid workspace");
1072 warnx("=== managed window list ws %02d ===", r->ws->idx);
1073 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
1074 state = getstate(win->id);
1075 c = xcb_get_window_attributes(conn, win->id);
1076 wa = xcb_get_window_attributes_reply(conn, c, NULL);
1078 warnx("window: 0x%x, map_state: %d, state: %u, "
1079 "transient: 0x%x", win->id, wa->map_state,
1080 state, win->transient);
1083 warnx("window: 0x%x, failed xcb_get_window_attributes",
1087 warnx("===== unmanaged window list =====");
1088 TAILQ_FOREACH(win, &r->ws->unmanagedlist, entry) {
1089 state = getstate(win->id);
1090 c = xcb_get_window_attributes(conn, win->id);
1091 wa = xcb_get_window_attributes_reply(conn, c, NULL);
1093 warnx("window: 0x%x, map_state: %d, state: %u, "
1094 "transient: 0x%x", win->id, wa->map_state,
1095 state, win->transient);
1098 warnx("window: 0x%x, failed xcb_get_window_attributes",
1102 warnx("=================================");
1106 dumpwins(struct swm_region *r, union arg *args)
1109 #endif /* SWM_DEBUG */
1111 void event_error(xcb_generic_error_t *);
1112 void expose(xcb_expose_event_t *);
1113 void keypress(xcb_key_press_event_t *);
1114 void buttonpress(xcb_button_press_event_t *);
1115 void configurerequest(xcb_configure_request_event_t *);
1116 void configurenotify(xcb_configure_notify_event_t *);
1117 void destroynotify(xcb_destroy_notify_event_t *);
1118 void enternotify(xcb_enter_notify_event_t *);
1119 void mapnotify(xcb_map_notify_event_t *);
1120 void mappingnotify(xcb_mapping_notify_event_t *);
1121 void maprequest(xcb_map_request_event_t *);
1122 void propertynotify(xcb_property_notify_event_t *);
1123 void unmapnotify(xcb_unmap_notify_event_t *);
1124 /*void visibilitynotify(xcb_visibility_notify_event_t *);*/
1125 void clientmessage(xcb_client_message_event_t *);
1126 void screenchange(xcb_randr_screen_change_notify_event_t *);
1131 int saved_errno, status;
1134 saved_errno = errno;
1138 while ((pid = waitpid(WAIT_ANY, &status, WNOHANG)) != 0) {
1143 if (errno != ECHILD)
1144 warn("sighdlr: waitpid");
1145 #endif /* SWM_DEBUG */
1148 if (pid == searchpid)
1152 if (WIFEXITED(status)) {
1153 if (WEXITSTATUS(status) != 0)
1154 warnx("sighdlr: child exit status: %d",
1155 WEXITSTATUS(status));
1157 warnx("sighdlr: child is terminated "
1159 #endif /* SWM_DEBUG */
1173 errno = saved_errno;
1179 struct pid_e *p = NULL;
1181 DNPRINTF(SWM_D_MISC, "find_pid: %d\n", pid);
1186 TAILQ_FOREACH(p, &pidlist, entry) {
1195 name_to_color(const char *colorname)
1197 uint32_t result = 0;
1198 char cname[32] = "#";
1199 xcb_screen_t *screen;
1200 xcb_colormap_t cmap;
1201 xcb_alloc_color_reply_t *cr;
1202 xcb_alloc_named_color_reply_t *nr;
1203 uint16_t rr, gg, bb;
1205 screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
1206 cmap = screen->default_colormap;
1208 /* color is in format rgb://rr/gg/bb */
1209 if (strncmp(colorname, "rgb:", 4) == 0) {
1210 if (parse_rgb(colorname, &rr, &gg, &bb) == -1)
1211 warnx("could not parse rgb %s", colorname);
1213 cr = xcb_alloc_color_reply(conn,
1214 xcb_alloc_color(conn, cmap, rr, gg, bb),
1220 warnx("color '%s' not found", colorname);
1223 nr = xcb_alloc_named_color_reply(conn,
1224 xcb_alloc_named_color(conn, cmap, strlen(colorname),
1227 strlcat(cname, colorname + 2, sizeof cname - 1);
1228 nr = xcb_alloc_named_color_reply(conn,
1229 xcb_alloc_named_color(conn, cmap, strlen(cname),
1236 warnx("color '%s' not found", colorname);
1243 setscreencolor(char *val, int i, int c)
1247 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1248 if (i > 0 && i <= num_screens) {
1249 screens[i - 1].c[c].color = name_to_color(val);
1250 free(screens[i - 1].c[c].name);
1251 if ((screens[i - 1].c[c].name = strdup(val)) == NULL)
1253 } else if (i == -1) {
1254 for (i = 0; i < num_screens; i++) {
1255 screens[i].c[c].color = name_to_color(val);
1256 free(screens[i].c[c].name);
1257 if ((screens[i].c[c].name = strdup(val)) == NULL)
1261 errx(1, "invalid screen index: %d out of bounds (maximum %d)",
1266 fancy_stacker(struct workspace *ws)
1268 strlcpy(ws->stacker, "[ ]", sizeof ws->stacker);
1269 if (ws->cur_layout->l_stack == vertical_stack)
1270 snprintf(ws->stacker, sizeof ws->stacker,
1271 ws->l_state.vertical_flip ? "[%d>%d]" : "[%d|%d]",
1272 ws->l_state.vertical_mwin, ws->l_state.vertical_stacks);
1273 if (ws->cur_layout->l_stack == horizontal_stack)
1274 snprintf(ws->stacker, sizeof ws->stacker,
1275 ws->l_state.horizontal_flip ? "[%dv%d]" : "[%d-%d]",
1276 ws->l_state.horizontal_mwin, ws->l_state.horizontal_stacks);
1280 plain_stacker(struct workspace *ws)
1282 strlcpy(ws->stacker, "[ ]", sizeof ws->stacker);
1283 if (ws->cur_layout->l_stack == vertical_stack)
1284 strlcpy(ws->stacker, ws->l_state.vertical_flip ? "[>]" : "[|]",
1285 sizeof ws->stacker);
1286 if (ws->cur_layout->l_stack == horizontal_stack)
1287 strlcpy(ws->stacker, ws->l_state.horizontal_flip ? "[v]" : "[-]",
1288 sizeof ws->stacker);
1292 custom_region(char *val)
1294 unsigned int x, y, w, h;
1295 int sidx, num_screens;
1296 xcb_screen_t *screen;
1298 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1299 if (sscanf(val, "screen[%d]:%ux%u+%u+%u", &sidx, &w, &h, &x, &y) != 5)
1300 errx(1, "invalid custom region, "
1301 "should be 'screen[<n>]:<n>x<n>+<n>+<n>");
1302 if (sidx < 1 || sidx > num_screens)
1303 errx(1, "invalid screen index: %d out of bounds (maximum %d)",
1307 screen = get_screen(sidx);
1309 errx(1, "region %ux%u+%u+%u too small", w, h, x, y);
1311 if (x > screen->width_in_pixels ||
1312 y > screen->height_in_pixels ||
1313 w + x > screen->width_in_pixels ||
1314 h + y > screen->height_in_pixels) {
1315 warnx("ignoring region %ux%u+%u+%u - not within screen "
1316 "boundaries (%ux%u)", w, h, x, y,
1317 screen->width_in_pixels, screen->height_in_pixels);
1321 new_region(&screens[sidx], x, y, w, h);
1325 socket_setnonblock(int fd)
1329 if ((flags = fcntl(fd, F_GETFL, 0)) == -1)
1330 err(1, "fcntl F_GETFL");
1331 flags |= O_NONBLOCK;
1332 if ((flags = fcntl(fd, F_SETFL, flags)) == -1)
1333 err(1, "fcntl F_SETFL");
1337 bar_print(struct swm_region *r, const char *s)
1340 xcb_rectangle_t rect;
1347 XftTextExtentsUtf8(display, bar_font, (FcChar8 *)s, len, &info);
1349 switch (bar_justify) {
1350 case SWM_BAR_JUSTIFY_LEFT:
1353 case SWM_BAR_JUSTIFY_CENTER:
1354 x = (WIDTH(r) - info.width) / 2;
1356 case SWM_BAR_JUSTIFY_RIGHT:
1357 x = WIDTH(r) - info.width - SWM_BAR_OFFSET;
1361 if (x < SWM_BAR_OFFSET)
1366 rect.width = WIDTH(r->bar);
1367 rect.height = HEIGHT(r->bar);
1369 /* clear back buffer */
1370 gcv[0] = r->s->c[SWM_S_COLOR_BAR].color;
1371 xcb_change_gc(conn, r->s->bar_gc, XCB_GC_FOREGROUND, gcv);
1372 xcb_poly_fill_rectangle(conn, r->bar->buffer, r->s->bar_gc,
1373 sizeof(rect), &rect);
1375 /* draw back buffer */
1376 gcv[0] = r->s->c[SWM_S_COLOR_BAR].color;
1377 xcb_change_gc(conn, r->s->bar_gc, XCB_GC_BACKGROUND, gcv);
1378 gcv[0] = r->s->c[SWM_S_COLOR_BAR_FONT].color;
1379 xcb_change_gc(conn, r->s->bar_gc, XCB_GC_FOREGROUND, gcv);
1381 xcb_image_text_8(conn, len, r->bar->buffer, r->s->bar_gc, x,
1382 bar_font->height, s);
1385 xcb_copy_area(conn, r->bar->buffer, r->bar->id, r->s->bar_gc, 0, 0,
1386 0, 0, WIDTH(r->bar), HEIGHT(r->bar));
1390 bar_extra_stop(void)
1394 bzero(bar_pipe, sizeof bar_pipe);
1397 kill(bar_pid, SIGTERM);
1400 strlcpy((char *)bar_ext, "", sizeof bar_ext);
1405 bar_class_name(char *s, size_t sz, struct swm_region *r)
1407 if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1409 if (r->ws->focus->ch.class_name != NULL)
1410 strlcat(s, r->ws->focus->ch.class_name, sz);
1414 bar_title_name(char *s, size_t sz, struct swm_region *r)
1416 if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1418 if (r->ws->focus->ch.instance_name != NULL)
1419 strlcat(s, r->ws->focus->ch.instance_name, sz);
1423 bar_class_title_name(char *s, size_t sz, struct swm_region *r)
1425 if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1428 bar_class_name(s, sz, r);
1429 strlcat(s, ":", sz);
1430 bar_title_name(s, sz, r);
1434 bar_window_float(char *s, size_t sz, struct swm_region *r)
1436 if (r == NULL || r ->ws == NULL || r->ws->focus == NULL)
1438 if (r->ws->focus->floating)
1439 strlcat(s, "(f)", sz);
1443 bar_window_name(char *s, size_t sz, struct swm_region *r)
1447 if (r == NULL || r->ws == NULL || r->ws->focus == NULL)
1449 if ((title = get_win_name(r->ws->focus->id)) == NULL)
1452 strlcat(s, title, sz);
1456 int urgent[SWM_WS_MAX];
1458 bar_urgent(char *s, size_t sz)
1461 int i, j, num_screens;
1463 xcb_get_property_cookie_t c;
1464 xcb_icccm_wm_hints_t hints;
1466 for (i = 0; i < workspace_limit; i++)
1469 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1470 for (i = 0; i < num_screens; i++)
1471 for (j = 0; j < workspace_limit; j++)
1472 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry) {
1473 c = xcb_icccm_get_wm_hints(conn, win->id);
1474 if (xcb_icccm_get_wm_hints_reply(conn, c,
1477 if (hints.flags & XCB_ICCCM_WM_HINT_X_URGENCY)
1481 for (i = 0; i < workspace_limit; i++) {
1483 snprintf(b, sizeof b, "%d ", i + 1);
1485 snprintf(b, sizeof b, "- ");
1491 bar_workspace_name(char *s, size_t sz, struct swm_region *r)
1493 if (r == NULL || r->ws == NULL)
1495 if (r->ws->name != NULL)
1496 strlcat(s, r->ws->name, sz);
1499 /* build the default bar format according to the defined enabled options */
1501 bar_fmt(const char *fmtexp, char *fmtnew, struct swm_region *r, size_t sz)
1503 /* if format provided, just copy the buffers */
1504 if (bar_format != NULL) {
1505 strlcpy(fmtnew, fmtexp, sz);
1509 /* reset the output buffer */
1512 strlcat(fmtnew, "+N:+I ", sz);
1514 strlcat(fmtnew, "+S", sz);
1515 strlcat(fmtnew, " ", sz);
1517 /* only show the workspace name if there's actually one */
1518 if (r != NULL && r->ws != NULL && r->ws->name != NULL)
1519 strlcat(fmtnew, "<+D>", sz);
1520 strlcat(fmtnew, "+3<", sz);
1522 if (clock_enabled) {
1523 strlcat(fmtnew, fmtexp, sz);
1524 strlcat(fmtnew, "+4<", sz);
1527 /* bar_urgent already adds the space before the last asterisk */
1529 strlcat(fmtnew, "* +U*+4<", sz);
1531 if (title_class_enabled) {
1532 strlcat(fmtnew, "+C", sz);
1533 if (title_name_enabled == 0)
1534 strlcat(fmtnew, "+4<", sz);
1537 /* checks needed by the colon and floating strlcat(3) calls below */
1538 if (r != NULL && r->ws != NULL && r->ws->focus != NULL) {
1539 if (title_name_enabled) {
1540 if (title_class_enabled)
1541 strlcat(fmtnew, ":", sz);
1542 strlcat(fmtnew, "+T+4<", sz);
1544 if (window_name_enabled) {
1545 if (r->ws->focus->floating)
1546 strlcat(fmtnew, "+F ", sz);
1547 strlcat(fmtnew, "+64W ", sz);
1551 /* finally add the action script output and the version */
1552 strlcat(fmtnew, "+4<+A+4<+V", sz);
1556 bar_replace_pad(char *tmp, int *limit, size_t sz)
1558 /* special case; no limit given, pad one space, instead */
1559 if (*limit == (int)sz - 1)
1561 snprintf(tmp, sz, "%*s", *limit, " ");
1564 /* replaces the bar format character sequences (like in tmux(1)) */
1566 bar_replace_seq(char *fmt, char *fmtrep, struct swm_region *r, size_t *offrep,
1570 char tmp[SWM_BAR_MAX];
1574 /* reset strlcat(3) buffer */
1577 /* get number, if any */
1580 if (sscanf(fmt, "%d%n", &limit, &size) != 1)
1581 limit = sizeof tmp - 1;
1582 if (limit <= 0 || limit >= (int)sizeof tmp)
1583 limit = sizeof tmp - 1;
1585 /* there is nothing to replace (ie EOL) */
1592 bar_replace_pad(tmp, &limit, sizeof tmp);
1595 snprintf(tmp, sizeof tmp, "%s", bar_ext);
1598 bar_class_name(tmp, sizeof tmp, r);
1601 bar_workspace_name(tmp, sizeof tmp, r);
1604 bar_window_float(tmp, sizeof tmp, r);
1607 snprintf(tmp, sizeof tmp, "%d", r->ws->idx + 1);
1610 snprintf(tmp, sizeof tmp, "%d", r->s->idx + 1);
1613 bar_class_title_name(tmp, sizeof tmp, r);
1616 snprintf(tmp, sizeof tmp, "%s", r->ws->stacker);
1619 bar_title_name(tmp, sizeof tmp, r);
1622 bar_urgent(tmp, sizeof tmp);
1625 snprintf(tmp, sizeof tmp, "%s", bar_vertext);
1628 bar_window_name(tmp, sizeof tmp, r);
1631 /* unknown character sequence; copy as-is */
1632 snprintf(tmp, sizeof tmp, "+%c", *fmt);
1638 if ((int)len < limit)
1640 while (limit-- > 0) {
1641 if (*offrep >= sz - 1)
1643 fmtrep[(*offrep)++] = *ptr++;
1651 bar_replace(char *fmt, char *fmtrep, struct swm_region *r, size_t sz)
1656 while (*fmt != '\0') {
1658 /* skip ordinary characters */
1661 fmtrep[off++] = *fmt++;
1665 /* character sequence found; replace it */
1666 fmt = bar_replace_seq(fmt, fmtrep, r, &off, sz);
1675 bar_fmt_expand(char *fmtexp, size_t sz)
1682 /* start by grabbing the current time and date */
1684 localtime_r(&tmt, &tm);
1686 /* figure out what to expand */
1687 if (bar_format != NULL)
1689 else if (bar_format == NULL && clock_enabled)
1691 /* if nothing to expand bail out */
1697 /* copy as-is, just in case the format shouldn't be expanded below */
1698 strlcpy(fmtexp, fmt, sz);
1699 /* finally pass the string through strftime(3) */
1700 #ifndef SWM_DENY_CLOCK_FORMAT
1701 if ((len = strftime(fmtexp, sz, fmt, &tm)) == 0)
1702 warnx("format too long");
1710 char fmtexp[SWM_BAR_MAX], fmtnew[SWM_BAR_MAX];
1711 char fmtrep[SWM_BAR_MAX];
1713 struct swm_region *r;
1715 /* expand the format by first passing it through strftime(3) */
1716 bar_fmt_expand(fmtexp, sizeof fmtexp);
1718 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1719 for (i = 0; i < num_screens; i++) {
1720 TAILQ_FOREACH(r, &screens[i].rl, entry) {
1723 bar_fmt(fmtexp, fmtnew, r, sizeof fmtnew);
1724 bar_replace(fmtnew, fmtrep, r, sizeof fmtrep);
1725 bar_print(r, fmtrep);
1736 if (bar_enabled == 0)
1738 if (bar_extra && bar_extra_running) {
1739 /* ignore short reads; it'll correct itself */
1740 while ((b = fgetln(stdin, &len)) != NULL)
1741 if (b && b[len - 1] == '\n') {
1743 strlcpy((char *)bar_ext, b, sizeof bar_ext);
1745 if (b == NULL && errno != EAGAIN) {
1746 warn("bar_update: bar_extra failed");
1750 strlcpy((char *)bar_ext, "", sizeof bar_ext);
1763 bar_toggle(struct swm_region *r, union arg *args)
1765 struct swm_region *tmpr;
1768 DNPRINTF(SWM_D_BAR, "bar_toggle\n");
1770 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1772 for (i = 0; i < num_screens; i++)
1773 TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
1775 xcb_unmap_window(conn, tmpr->bar->id);
1777 for (i = 0; i < num_screens; i++)
1778 TAILQ_FOREACH(tmpr, &screens[i].rl, entry)
1780 map_window_raised(tmpr->bar->id);
1783 bar_enabled = !bar_enabled;
1786 /* must be after stack */
1795 struct swm_region *r;
1799 /* do this here because the conf file is in memory */
1800 if (bar_extra && bar_extra_running == 0 && bar_argv[0]) {
1801 /* launch external status app */
1802 bar_extra_running = 1;
1803 if (pipe(bar_pipe) == -1)
1804 err(1, "pipe error");
1805 socket_setnonblock(bar_pipe[0]);
1806 socket_setnonblock(bar_pipe[1]); /* XXX hmmm, really? */
1807 if (dup2(bar_pipe[0], 0) == -1)
1809 if (dup2(bar_pipe[1], 1) == -1)
1811 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
1812 err(1, "could not disable SIGPIPE");
1813 switch (bar_pid = fork()) {
1815 err(1, "cannot fork");
1819 execvp(bar_argv[0], bar_argv);
1820 err(1, "%s external app failed", bar_argv[0]);
1822 default: /* parent */
1828 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
1829 for (i = 0; i < num_screens; i++)
1830 TAILQ_FOREACH(r, &screens[i].rl, entry) {
1833 wa[0] = screens[i].c[SWM_S_COLOR_BAR].color;
1834 wa[1] = screens[i].c[SWM_S_COLOR_BAR_BORDER].color;
1835 xcb_change_window_attributes(conn, r->bar->id,
1836 XCB_CW_BACK_PIXEL | XCB_CW_BORDER_PIXEL, wa);
1842 bar_setup(struct swm_region *r)
1845 xcb_screen_t *screen = get_screen(r->s->idx);
1849 XftFontClose(display, bar_font);
1853 if ((r->bar = calloc(1, sizeof(struct swm_bar))) == NULL)
1854 err(1, "bar_setup: calloc: failed to allocate memory.");
1856 while ((bar_font = strsep(&bar_fonts, " ,")) != NULL) {
1857 if (*bar_font == '\0')
1860 DNPRINTF(SWM_D_INIT, "bar_setup: try font %s\n", bar_font);
1861 bar_font = XftFontOpenName(display, DefaultScreen(display),
1864 warnx("unable to load font %s", bar_font);
1867 DNPRINTF(SWM_D_INIT, "successfully opened font %s\n",
1873 bar_height = bar_font->height + 4 * bar_border_width;
1879 Y(r->bar) = bar_at_bottom ? (Y(r) + HEIGHT(r) - bar_height) : Y(r);
1880 WIDTH(r->bar) = WIDTH(r) - 2 * bar_border_width;
1881 HEIGHT(r->bar) = bar_height - 2 * bar_border_width;
1883 r->bar->id = xcb_generate_id(conn);
1884 wa[0] = r->s->c[SWM_S_COLOR_BAR].color;
1885 wa[1] = r->s->c[SWM_S_COLOR_BAR_BORDER].color;
1886 wa[2] = XCB_EVENT_MASK_EXPOSURE;
1887 DNPRINTF(SWM_D_BAR, "bar_setup: create_window: (x,y) w x h: (%d,%d) "
1888 "%d x %d\n", X(r->bar), Y(r->bar), WIDTH(r->bar), HEIGHT(r->bar));
1889 xcb_create_window(conn, XCB_COPY_FROM_PARENT, r->bar->id, r->s->root,
1890 X(r->bar), Y(r->bar), WIDTH(r->bar), HEIGHT(r->bar),
1891 bar_border_width, XCB_WINDOW_CLASS_INPUT_OUTPUT,
1892 XCB_COPY_FROM_PARENT, XCB_CW_BACK_PIXEL | XCB_CW_BORDER_PIXEL
1893 | XCB_CW_EVENT_MASK, wa);
1895 r->bar->buffer = xcb_generate_id(conn);
1896 xcb_create_pixmap(conn, screen->root_depth, r->bar->buffer, r->bar->id,
1897 WIDTH(r->bar), HEIGHT(r->bar));
1899 xcb_randr_select_input(conn, r->bar->id,
1900 XCB_RANDR_NOTIFY_MASK_OUTPUT_CHANGE);
1903 map_window_raised(r->bar->id);
1905 DNPRINTF(SWM_D_BAR, "bar_setup: window: 0x%x, (x,y) w x h: (%d,%d) "
1906 "%d x %d\n", WINID(r->bar), X(r->bar), Y(r->bar), WIDTH(r->bar),
1909 if (signal(SIGALRM, bar_signal) == SIG_ERR)
1910 err(1, "could not install bar_signal");
1915 bar_cleanup(struct swm_region *r)
1919 xcb_destroy_window(conn, r->bar->id);
1920 xcb_free_pixmap(conn, r->bar->buffer);
1926 set_win_state(struct ws_win *win, uint16_t state)
1928 uint16_t data[2] = { state, XCB_ATOM_NONE };
1930 DNPRINTF(SWM_D_EVENT, "set_win_state: window: 0x%x\n", win->id);
1935 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id, a_state,
1936 a_state, 32, 2, data);
1940 getstate(xcb_window_t w)
1942 uint16_t result = 0;
1943 xcb_get_property_cookie_t c;
1944 xcb_get_property_reply_t *r;
1946 c = xcb_get_property(conn, False, w, a_state, a_state, 0L, 2L);
1947 r = xcb_get_property_reply(conn, c, NULL);
1950 result = *((uint16_t *)xcb_get_property_value(r));
1954 DNPRINTF(SWM_D_MISC, "getstate property: win 0x%x state %u\n", w,
1960 version(struct swm_region *r, union arg *args)
1962 bar_version = !bar_version;
1964 snprintf(bar_vertext, sizeof bar_vertext,
1965 "Version: %s Build: %s", SPECTRWM_VERSION, buildstr);
1967 strlcpy(bar_vertext, "", sizeof bar_vertext);
1974 client_msg(struct ws_win *win, xcb_atom_t a)
1976 xcb_client_message_event_t ev;
1981 bzero(&ev, sizeof ev);
1982 ev.response_type = XCB_CLIENT_MESSAGE;
1983 ev.window = win->id;
1986 ev.data.data32[0] = a;
1987 ev.data.data32[1] = XCB_CURRENT_TIME;
1989 xcb_send_event(conn, False, win->id,
1990 XCB_EVENT_MASK_NO_EVENT, (const char *)&ev);
1993 /* synthetic response to a ConfigureRequest when not making a change */
1995 config_win(struct ws_win *win, xcb_configure_request_event_t *ev)
1997 xcb_configure_notify_event_t ce;
2002 /* send notification of unchanged state. */
2003 bzero(&ce, sizeof(ce));
2004 ce.response_type = XCB_CONFIGURE_NOTIFY;
2007 ce.width = WIDTH(win);
2008 ce.height = HEIGHT(win);
2009 ce.override_redirect = False;
2014 ce.window = win->id;
2015 ce.border_width = BORDER(win);
2016 ce.above_sibling = XCB_WINDOW_NONE;
2019 ce.event = ev->window;
2020 ce.window = ev->window;
2022 /* make response appear more WM_SIZE_HINTS-compliant */
2024 DNPRINTF(SWM_D_MISC, "config_win: hints: window: 0x%x,"
2025 " sh.flags: %u, min: %d x %d, max: %d x %d, inc: "
2026 "%d x %d\n", win->id, win->sh.flags, SH_MIN_W(win),
2027 SH_MIN_H(win), SH_MAX_W(win), SH_MAX_H(win),
2028 SH_INC_W(win), SH_INC_H(win));
2032 /* the hint may be set... to 0! */
2033 if (SH_MIN_W(win) > 0 && ce.width < SH_MIN_W(win))
2034 ce.width = SH_MIN_W(win);
2035 if (SH_MIN_H(win) > 0 && ce.height < SH_MIN_H(win))
2036 ce.height = SH_MIN_H(win);
2041 /* may also be advertized as 0 */
2042 if (SH_MAX_W(win) > 0 && ce.width > SH_MAX_W(win))
2043 ce.width = SH_MAX_W(win);
2044 if (SH_MAX_H(win) > 0 && ce.height > SH_MAX_H(win))
2045 ce.height = SH_MAX_H(win);
2048 /* resize increment. */
2050 if (SH_INC_W(win) > 1 && ce.width > SH_INC_W(win))
2051 ce.width -= (ce.width - SH_MIN_W(win)) %
2053 if (SH_INC_H(win) > 1 && ce.height > SH_INC_H(win))
2054 ce.height -= (ce.height - SH_MIN_H(win)) %
2058 /* adjust x and y for requested border_width. */
2059 ce.x += BORDER(win) - ev->border_width;
2060 ce.y += BORDER(win) - ev->border_width;
2061 ce.border_width = ev->border_width;
2062 ce.above_sibling = ev->sibling;
2065 DNPRINTF(SWM_D_MISC, "config_win: ewmh: %s, window: 0x%x, (x,y) w x h: "
2066 "(%d,%d) %d x %d, border: %d\n", YESNO(ev == NULL), win->id, ce.x,
2067 ce.y, ce.width, ce.height, ce.border_width);
2069 xcb_send_event(conn, False, win->id, XCB_EVENT_MASK_STRUCTURE_NOTIFY,
2074 count_win(struct workspace *ws, int count_transient)
2079 TAILQ_FOREACH(win, &ws->winlist, entry) {
2080 if (count_transient == 0 && win->floating)
2082 if (count_transient == 0 && win->transient)
2088 DNPRINTF(SWM_D_MISC, "count_win: %d\n", count);
2094 quit(struct swm_region *r, union arg *args)
2096 DNPRINTF(SWM_D_MISC, "quit\n");
2101 unmap_window(struct ws_win *win)
2106 /* don't unmap again */
2107 if (getstate(win->id) == XCB_ICCCM_WM_STATE_ICONIC)
2110 set_win_state(win, XCB_ICCCM_WM_STATE_ICONIC);
2112 xcb_unmap_window(conn, win->id);
2113 xcb_change_window_attributes(conn, win->id,
2114 XCB_CW_BORDER_PIXEL, &win->s->c[SWM_S_COLOR_UNFOCUS].color);
2121 int i, j, num_screens;
2123 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2124 for (i = 0; i < num_screens; i++)
2125 for (j = 0; j < workspace_limit; j++)
2126 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
2131 fake_keypress(struct ws_win *win, xcb_keysym_t keysym, uint16_t modifiers)
2133 xcb_key_press_event_t event;
2134 xcb_keycode_t *keycode;
2139 keycode = xcb_key_symbols_get_keycode(syms, keysym);
2141 DNPRINTF(SWM_D_MISC, "fake_keypress: win 0x%x keycode %u\n",
2144 bzero(&event, sizeof(event));
2145 event.event = win->id;
2146 event.root = win->s->root;
2147 event.child = XCB_WINDOW_NONE;
2148 event.time = XCB_CURRENT_TIME;
2149 event.event_x = X(win);
2150 event.event_y = Y(win);
2153 event.same_screen = True;
2154 event.detail = *keycode;
2155 event.state = modifiers;
2157 event.response_type = XCB_KEY_PRESS;
2158 xcb_send_event(conn, True, win->id,
2159 XCB_EVENT_MASK_KEY_PRESS, (const char *)&event);
2161 event.response_type = XCB_KEY_RELEASE;
2162 xcb_send_event(conn, True, win->id,
2163 XCB_EVENT_MASK_KEY_RELEASE, (const char *)&event);
2167 restart(struct swm_region *r, union arg *args)
2169 DNPRINTF(SWM_D_MISC, "restart: %s\n", start_argv[0]);
2171 /* disable alarm because the following code may not be interrupted */
2173 if (signal(SIGALRM, SIG_IGN) == SIG_ERR)
2174 err(1, "can't disable alarm");
2180 xcb_key_symbols_free(syms);
2182 xcb_disconnect(conn);
2184 execvp(start_argv[0], start_argv);
2185 warn("execvp failed");
2190 root_to_region(xcb_window_t root)
2192 struct swm_region *r = NULL;
2194 xcb_query_pointer_reply_t *qpr;
2196 DNPRINTF(SWM_D_MISC, "root_to_region: window: 0x%x\n", root);
2198 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2199 for (i = 0; i < num_screens; i++)
2200 if (screens[i].root == root)
2203 qpr = xcb_query_pointer_reply(conn, xcb_query_pointer(conn,
2204 screens[i].root), NULL);
2207 DNPRINTF(SWM_D_MISC, "root_to_region: pointer: (%d,%d)\n",
2208 qpr->root_x, qpr->root_y);
2209 /* choose a region based on pointer location */
2210 TAILQ_FOREACH(r, &screens[i].rl, entry)
2211 if (X(r) <= qpr->root_x && qpr->root_x < MAX_X(r) &&
2212 Y(r) <= qpr->root_y && qpr->root_y < MAX_Y(r))
2218 r = TAILQ_FIRST(&screens[i].rl);
2224 find_unmanaged_window(xcb_window_t id)
2227 int i, j, num_screens;
2229 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2230 for (i = 0; i < num_screens; i++)
2231 for (j = 0; j < workspace_limit; j++)
2232 TAILQ_FOREACH(win, &screens[i].ws[j].unmanagedlist,
2240 find_window(xcb_window_t id)
2243 int i, j, num_screens;
2244 xcb_query_tree_reply_t *r;
2246 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2247 for (i = 0; i < num_screens; i++)
2248 for (j = 0; j < workspace_limit; j++)
2249 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
2253 r = xcb_query_tree_reply(conn, xcb_query_tree(conn, id), NULL);
2257 /* if we were looking for the parent return that window instead */
2258 if (r->parent == 0 || r->root == r->parent)
2261 /* look for parent */
2262 for (i = 0; i < num_screens; i++)
2263 for (j = 0; j < workspace_limit; j++)
2264 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
2265 if (r->parent == win->id) {
2275 spawn(int ws_idx, union arg *args, int close_fd)
2280 DNPRINTF(SWM_D_MISC, "spawn: %s\n", args->argv[0]);
2282 close(xcb_get_file_descriptor(conn));
2284 setenv("LD_PRELOAD", SWM_LIB, 1);
2286 if (asprintf(&ret, "%d", ws_idx) == -1) {
2287 warn("spawn: asprintf SWM_WS");
2290 setenv("_SWM_WS", ret, 1);
2294 if (asprintf(&ret, "%d", getpid()) == -1) {
2295 warn("spawn: asprintf _SWM_PID");
2298 setenv("_SWM_PID", ret, 1);
2302 if (setsid() == -1) {
2303 warn("spawn: setsid");
2309 * close stdin and stdout to prevent interaction between apps
2310 * and the baraction script
2311 * leave stderr open to record errors
2313 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) == -1) {
2314 warn("spawn: open");
2317 dup2(fd, STDIN_FILENO);
2318 dup2(fd, STDOUT_FILENO);
2323 execvp(args->argv[0], args->argv);
2325 warn("spawn: execvp");
2330 kill_refs(struct ws_win *win)
2332 int i, x, num_screens;
2333 struct swm_region *r;
2334 struct workspace *ws;
2339 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2340 for (i = 0; i < num_screens; i++)
2341 TAILQ_FOREACH(r, &screens[i].rl, entry)
2342 for (x = 0; x < workspace_limit; x++) {
2344 if (win == ws->focus)
2346 if (win == ws->focus_prev)
2347 ws->focus_prev = NULL;
2352 validate_win(struct ws_win *testwin)
2355 struct workspace *ws;
2356 struct swm_region *r;
2357 int i, x, num_screens;
2359 if (testwin == NULL)
2362 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2363 for (i = 0; i < num_screens; i++)
2364 TAILQ_FOREACH(r, &screens[i].rl, entry)
2365 for (x = 0; x < workspace_limit; x++) {
2367 TAILQ_FOREACH(win, &ws->winlist, entry)
2375 validate_ws(struct workspace *testws)
2377 struct swm_region *r;
2378 struct workspace *ws;
2379 int i, x, num_screens;
2381 /* validate all ws */
2382 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2383 for (i = 0; i < num_screens; i++)
2384 TAILQ_FOREACH(r, &screens[i].rl, entry)
2385 for (x = 0; x < workspace_limit; x++) {
2394 unfocus_win(struct ws_win *win)
2396 xcb_window_t none = XCB_WINDOW_NONE;
2398 DNPRINTF(SWM_D_FOCUS, "unfocus_win: window: 0x%x\n", WINID(win));
2402 if (win->ws == NULL)
2405 if (validate_ws(win->ws))
2406 return; /* XXX this gets hit with thunderbird, needs fixing */
2408 if (win->ws->r == NULL)
2411 if (validate_win(win)) {
2416 if (win->ws->focus == win) {
2417 win->ws->focus = NULL;
2418 win->ws->focus_prev = win;
2421 if (validate_win(win->ws->focus)) {
2422 kill_refs(win->ws->focus);
2423 win->ws->focus = NULL;
2425 if (validate_win(win->ws->focus_prev)) {
2426 kill_refs(win->ws->focus_prev);
2427 win->ws->focus_prev = NULL;
2430 grabbuttons(win, 0);
2431 xcb_change_window_attributes(conn, win->id, XCB_CW_BORDER_PIXEL,
2432 &win->ws->r->s->c[SWM_S_COLOR_UNFOCUS].color);
2433 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->s->root,
2434 ewmh[_NET_ACTIVE_WINDOW].atom, XCB_ATOM_WINDOW, 32, 1, &none);
2441 int i, j, num_screens;
2443 DNPRINTF(SWM_D_FOCUS, "unfocus_all\n");
2445 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2446 for (i = 0; i < num_screens; i++)
2447 for (j = 0; j < workspace_limit; j++)
2448 TAILQ_FOREACH(win, &screens[i].ws[j].winlist, entry)
2453 focus_win(struct ws_win *win)
2455 struct ws_win *cfw = NULL;
2456 xcb_get_input_focus_reply_t *r;
2457 xcb_window_t cur_focus = XCB_WINDOW_NONE;
2459 DNPRINTF(SWM_D_FOCUS, "focus_win: window: 0x%x\n", WINID(win));
2463 if (win->ws == NULL)
2466 if (validate_ws(win->ws))
2467 return; /* XXX this gets hit with thunderbird, needs fixing */
2469 if (validate_win(win)) {
2474 if (validate_win(win)) {
2479 r = xcb_get_input_focus_reply(conn, xcb_get_input_focus(conn), NULL);
2481 cur_focus = r->focus;
2484 if ((cfw = find_window(cur_focus)) != NULL)
2487 /* use larger hammer since the window was killed somehow */
2488 /* TAILQ_FOREACH(cfw, &win->ws->winlist, entry)
2489 if (cfw->ws && cfw->ws->r && cfw->ws->r->s)
2490 xcb_change_window_attributes(conn, cfw->id,
2491 XCB_CW_BORDER_PIXEL,
2492 &cfw->ws->r->s->c[SWM_S_COLOR_UNFOCUS].color);*/
2495 win->ws->focus = win;
2497 if (win->ws->r != NULL) {
2499 xcb_set_input_focus(conn, XCB_INPUT_FOCUS_PARENT,
2500 win->id, XCB_CURRENT_TIME);
2501 grabbuttons(win, 1);
2502 xcb_change_window_attributes(conn, win->id,
2503 XCB_CW_BORDER_PIXEL,
2504 &win->ws->r->s->c[SWM_S_COLOR_FOCUS].color);
2505 if (win->ws->cur_layout->flags & SWM_L_MAPONFOCUS ||
2506 win->ws->always_raise)
2507 map_window_raised(win->id);
2509 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->s->root,
2510 ewmh[_NET_ACTIVE_WINDOW].atom, XCB_ATOM_WINDOW, 32, 1,
2518 event_drain(uint8_t rt)
2520 xcb_generic_event_t *evt;
2523 while ((evt = xcb_poll_for_event(conn))) {
2524 if (XCB_EVENT_RESPONSE_TYPE(evt) != rt)
2532 switchws(struct swm_region *r, union arg *args)
2534 int wsid = args->id, unmap_old = 0;
2535 struct swm_region *this_r, *other_r;
2537 struct workspace *new_ws, *old_ws;
2543 if (wsid >= workspace_limit)
2547 old_ws = this_r->ws;
2548 new_ws = &this_r->s->ws[wsid];
2550 DNPRINTF(SWM_D_WS, "switchws: screen[%d]:%dx%d+%d+%d: %d -> %d\n",
2551 r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), old_ws->idx, wsid);
2553 if (new_ws == NULL || old_ws == NULL)
2555 if (new_ws == old_ws)
2558 other_r = new_ws->r;
2559 if (other_r == NULL) {
2560 /* the other workspace is hidden, hide this one */
2564 /* the other ws is visible in another region, exchange them */
2565 other_r->ws_prior = new_ws;
2566 other_r->ws = old_ws;
2567 old_ws->r = other_r;
2569 this_r->ws_prior = old_ws;
2570 this_r->ws = new_ws;
2573 /* this is needed so that we can click on a window after a restart */
2577 a.id = SWM_ARG_ID_FOCUSCUR;
2578 focus(new_ws->r, &a);
2580 /* unmap old windows */
2582 TAILQ_FOREACH(win, &old_ws->winlist, entry)
2585 if (focus_mode == SWM_FOCUS_DEFAULT)
2586 event_drain(XCB_ENTER_NOTIFY);
2592 cyclews(struct swm_region *r, union arg *args)
2595 struct swm_screen *s = r->s;
2598 DNPRINTF(SWM_D_WS, "cyclews: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
2599 args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
2604 case SWM_ARG_ID_CYCLEWS_UP_ALL:
2607 case SWM_ARG_ID_CYCLEWS_UP:
2608 if (a.id < workspace_limit - 1)
2613 case SWM_ARG_ID_CYCLEWS_DOWN_ALL:
2616 case SWM_ARG_ID_CYCLEWS_DOWN:
2620 a.id = workspace_limit - 1;
2627 (cycle_empty == 0 && TAILQ_EMPTY(&s->ws[a.id].winlist)))
2629 if (cycle_visible == 0 && s->ws[a.id].r != NULL)
2633 } while (a.id != r->ws->idx);
2637 priorws(struct swm_region *r, union arg *args)
2641 DNPRINTF(SWM_D_WS, "priorws: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
2642 args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
2644 if (r->ws_prior == NULL)
2647 a.id = r->ws_prior->idx;
2652 cyclescr(struct swm_region *r, union arg *args)
2654 struct swm_region *rr = NULL;
2656 int i, x, y, num_screens;
2658 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
2659 /* do nothing if we don't have more than one screen */
2660 if (!(num_screens > 1 || outputs > 1))
2665 case SWM_ARG_ID_CYCLESC_UP:
2666 rr = TAILQ_NEXT(r, entry);
2668 rr = TAILQ_FIRST(&screens[i].rl);
2670 case SWM_ARG_ID_CYCLESC_DOWN:
2671 rr = TAILQ_PREV(r, swm_region_list, entry);
2673 rr = TAILQ_LAST(&screens[i].rl, swm_region_list);
2681 /* move mouse to region */
2683 y = Y(rr) + 1 + (bar_enabled ? bar_height : 0);
2684 xcb_warp_pointer(conn, XCB_WINDOW_NONE, rr->s[i].root, 0, 0, 0, 0,
2687 a.id = SWM_ARG_ID_FOCUSCUR;
2690 if (rr->ws->focus) {
2691 /* move to focus window */
2692 x = X(rr->ws->focus) + 1;
2693 y = Y(rr->ws->focus) + 1;
2694 xcb_warp_pointer(conn, XCB_WINDOW_NONE, rr->s[i].root, 0, 0, 0,
2700 sort_windows(struct ws_win_list *wl)
2702 struct ws_win *win, *parent, *nxt;
2707 for (win = TAILQ_FIRST(wl); win != TAILQ_END(wl); win = nxt) {
2708 nxt = TAILQ_NEXT(win, entry);
2709 if (win->transient) {
2710 parent = find_window(win->transient);
2711 if (parent == NULL) {
2712 warnx("not possible bug");
2715 TAILQ_REMOVE(wl, win, entry);
2716 TAILQ_INSERT_AFTER(wl, parent, win, entry);
2723 swapwin(struct swm_region *r, union arg *args)
2725 struct ws_win *target, *source;
2726 struct ws_win *cur_focus;
2727 struct ws_win_list *wl;
2730 DNPRINTF(SWM_D_WS, "swapwin: id: %d, screen[%d]:%dx%d+%d+%d, ws: %d\n",
2731 args->id, r->s->idx, WIDTH(r), HEIGHT(r), X(r), Y(r), r->ws->idx);
2733 cur_focus = r->ws->focus;
2734 if (cur_focus == NULL)
2738 wl = &source->ws->winlist;
2741 case SWM_ARG_ID_SWAPPREV:
2742 if (source->transient)
2743 source = find_window(source->transient);
2744 target = TAILQ_PREV(source, ws_win_list, entry);
2745 if (target && target->transient)
2746 target = find_window(target->transient);
2747 TAILQ_REMOVE(wl, source, entry);
2749 TAILQ_INSERT_TAIL(wl, source, entry);
2751 TAILQ_INSERT_BEFORE(target, source, entry);
2753 case SWM_ARG_ID_SWAPNEXT:
2754 target = TAILQ_NEXT(source, entry);
2755 /* move the parent and let the sort handle the move */
2756 if (source->transient)
2757 source = find_window(source->transient);
2758 TAILQ_REMOVE(wl, source, entry);
2760 TAILQ_INSERT_HEAD(wl, source, entry);
2762 TAILQ_INSERT_AFTER(wl, target, source, entry);
2764 case SWM_ARG_ID_SWAPMAIN:
2765 target = TAILQ_FIRST(wl);
2766 if (target == source) {
2767 if (source->ws->focus_prev != NULL &&
2768 source->ws->focus_prev != target)
2769 source = source->ws->focus_prev;
2773 if (target == NULL || source == NULL)
2775 source->ws->focus_prev = target;
2776 TAILQ_REMOVE(wl, target, entry);
2777 TAILQ_INSERT_BEFORE(source, target, entry);
2778 TAILQ_REMOVE(wl, source, entry);
2779 TAILQ_INSERT_HEAD(wl, source, entry);
2781 case SWM_ARG_ID_MOVELAST:
2782 TAILQ_REMOVE(wl, source, entry);
2783 TAILQ_INSERT_TAIL(wl, source, entry);
2786 DNPRINTF(SWM_D_MOVE, "swapwin: invalid id: %d\n", args->id);
2798 focus_prev(struct ws_win *win)
2800 struct ws_win *winfocus = NULL;
2801 struct ws_win *cur_focus = NULL;
2802 struct ws_win_list *wl = NULL;
2803 struct workspace *ws = NULL;
2805 if (!(win && win->ws))
2810 cur_focus = ws->focus;
2812 DNPRINTF(SWM_D_FOCUS, "focus_prev: window: 0x%x, cur_focus: 0x%x\n",
2813 WINID(win), WINID(cur_focus));
2815 /* pickle, just focus on whatever */
2816 if (cur_focus == NULL) {
2817 /* use prev_focus if valid */
2818 if (ws->focus_prev && ws->focus_prev != cur_focus &&
2819 find_window(WINID(ws->focus_prev)))
2820 winfocus = ws->focus_prev;
2824 /* if transient focus on parent */
2825 if (cur_focus->transient) {
2826 winfocus = find_window(cur_focus->transient);
2830 /* if in max_stack try harder */
2831 if ((win->quirks & SWM_Q_FOCUSPREV) ||
2832 (ws->cur_layout->flags & SWM_L_FOCUSPREV)) {
2833 if (cur_focus != ws->focus_prev)
2834 winfocus = ws->focus_prev;
2836 winfocus = TAILQ_PREV(win, ws_win_list, entry);
2841 DNPRINTF(SWM_D_FOCUS, "focus_prev: focus_close: %d\n", focus_close);
2843 if (winfocus == NULL || winfocus == win) {
2844 switch (focus_close) {
2845 case SWM_STACK_BOTTOM:
2846 winfocus = TAILQ_FIRST(wl);
2849 winfocus = TAILQ_LAST(wl, ws_win_list);
2851 case SWM_STACK_ABOVE:
2852 if ((winfocus = TAILQ_NEXT(cur_focus, entry)) == NULL) {
2853 if (focus_close_wrap)
2854 winfocus = TAILQ_FIRST(wl);
2856 winfocus = TAILQ_PREV(cur_focus,
2857 ws_win_list, entry);
2860 case SWM_STACK_BELOW:
2861 if ((winfocus = TAILQ_PREV(cur_focus, ws_win_list,
2863 if (focus_close_wrap)
2864 winfocus = TAILQ_LAST(wl, ws_win_list);
2866 winfocus = TAILQ_NEXT(cur_focus, entry);
2872 if (winfocus == NULL) {
2873 if (focus_default == SWM_STACK_TOP)
2874 winfocus = TAILQ_LAST(wl, ws_win_list);
2876 winfocus = TAILQ_FIRST(wl);
2880 focus_magic(winfocus);
2884 focus(struct swm_region *r, union arg *args)
2886 struct ws_win *winfocus = NULL, *head;
2887 struct ws_win *cur_focus = NULL;
2888 struct ws_win_list *wl = NULL;
2889 struct workspace *ws = NULL;
2895 DNPRINTF(SWM_D_FOCUS, "focus: id: %d\n", args->id);
2897 /* treat FOCUS_CUR special */
2898 if (args->id == SWM_ARG_ID_FOCUSCUR) {
2899 if (r->ws->focus && r->ws->focus->iconic == 0)
2900 winfocus = r->ws->focus;
2901 else if (r->ws->focus_prev && r->ws->focus_prev->iconic == 0)
2902 winfocus = r->ws->focus_prev;
2904 TAILQ_FOREACH(winfocus, &r->ws->winlist, entry)
2905 if (winfocus->iconic == 0)
2908 focus_magic(winfocus);
2912 if ((cur_focus = r->ws->focus) == NULL)
2916 if (TAILQ_EMPTY(wl))
2918 /* make sure there is at least one uniconified window */
2920 TAILQ_FOREACH(winfocus, wl, entry)
2921 if (winfocus->iconic == 0) {
2929 case SWM_ARG_ID_FOCUSPREV:
2930 head = TAILQ_PREV(cur_focus, ws_win_list, entry);
2932 head = TAILQ_LAST(wl, ws_win_list);
2934 if (WINID(winfocus) == cur_focus->transient) {
2935 head = TAILQ_PREV(winfocus, ws_win_list, entry);
2937 head = TAILQ_LAST(wl, ws_win_list);
2942 if (winfocus && winfocus->iconic) {
2943 while (winfocus != cur_focus) {
2944 if (winfocus == NULL)
2945 winfocus = TAILQ_LAST(wl, ws_win_list);
2946 if (winfocus->iconic == 0)
2948 winfocus = TAILQ_PREV(winfocus, ws_win_list,
2954 case SWM_ARG_ID_FOCUSNEXT:
2955 head = TAILQ_NEXT(cur_focus, entry);
2957 head = TAILQ_FIRST(wl);
2961 if (winfocus && winfocus->iconic) {
2962 while (winfocus != cur_focus) {
2963 if (winfocus == NULL)
2964 winfocus = TAILQ_FIRST(wl);
2965 if (winfocus->iconic == 0)
2967 winfocus = TAILQ_NEXT(winfocus, entry);
2972 case SWM_ARG_ID_FOCUSMAIN:
2973 winfocus = TAILQ_FIRST(wl);
2974 if (winfocus == cur_focus)
2975 winfocus = cur_focus->ws->focus_prev;
2982 focus_magic(winfocus);
2988 cycle_layout(struct swm_region *r, union arg *args)
2990 struct workspace *ws = r->ws;
2993 DNPRINTF(SWM_D_EVENT, "cycle_layout: workspace: %d\n", ws->idx);
2996 if (ws->cur_layout->l_stack == NULL)
2997 ws->cur_layout = &layouts[0];
3002 if (focus_mode == SWM_FOCUS_DEFAULT)
3003 event_drain(XCB_ENTER_NOTIFY);
3005 a.id = SWM_ARG_ID_FOCUSCUR;
3010 stack_config(struct swm_region *r, union arg *args)
3012 struct workspace *ws = r->ws;
3014 DNPRINTF(SWM_D_STACK, "stack_config: id: %d workspace: %d\n",
3017 if (ws->cur_layout->l_config != NULL)
3018 ws->cur_layout->l_config(ws, args->id);
3020 if (args->id != SWM_ARG_ID_STACKINIT)
3027 struct swm_geometry g;
3028 struct swm_region *r;
3034 DNPRINTF(SWM_D_STACK, "stack: begin\n");
3036 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
3037 for (i = 0; i < num_screens; i++) {
3041 TAILQ_FOREACH(r, &screens[i].rl, entry) {
3042 DNPRINTF(SWM_D_STACK, "stack: workspace: %d "
3043 "(screen: %d, region: %d)\n", r->ws->idx, i, j++);
3045 /* start with screen geometry, adjust for bar */
3047 g.w -= 2 * border_width;
3048 g.h -= 2 * border_width;
3054 r->ws->cur_layout->l_stack(r->ws, &g);
3055 r->ws->cur_layout->l_string(r->ws);
3056 /* save r so we can track region changes */
3063 if (focus_mode == SWM_FOCUS_DEFAULT)
3064 event_drain(XCB_ENTER_NOTIFY);
3066 DNPRINTF(SWM_D_STACK, "stack: end\n");
3070 store_float_geom(struct ws_win *win, struct swm_region *r)
3072 /* retain window geom and region geom */
3073 win->g_float = win->g;
3074 win->g_float.x -= X(r);
3075 win->g_float.y -= Y(r);
3076 win->g_floatvalid = 1;
3077 DNPRINTF(SWM_D_MISC, "store_float_geom: window: 0x%x, g: (%d,%d)"
3078 " %d x %d, g_float: (%d,%d) %d x %d\n", win->id, X(win), Y(win),
3079 WIDTH(win), HEIGHT(win), win->g_float.x, win->g_float.y,
3080 win->g_float.w, win->g_float.h);
3084 stack_floater(struct ws_win *win, struct swm_region *r)
3089 DNPRINTF(SWM_D_MISC, "stack_floater: window: 0x%x\n", win->id);
3092 * to allow windows to change their size (e.g. mplayer fs) only retrieve
3093 * geom on ws switches or return from max mode
3095 if (win->g_floatvalid && (win->floatmaxed || (r != r->ws->old_r &&
3096 !(win->ewmh_flags & EWMH_F_FULLSCREEN)))) {
3097 /* refloat at last floating relative position */
3098 win->g = win->g_float;
3103 win->floatmaxed = 0;
3106 * if set to fullscreen mode, configure window to maximum size.
3108 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
3109 if (!win->g_floatvalid)
3110 store_float_geom(win, win->ws->r);
3112 win->g = win->ws->r->g;
3116 * remove border on fullscreen floater when in fullscreen mode or when
3117 * the quirk is present.
3119 if ((win->ewmh_flags & EWMH_F_FULLSCREEN) ||
3120 ((win->quirks & SWM_Q_FULLSCREEN) &&
3121 (WIDTH(win) >= WIDTH(r)) && (HEIGHT(win) >= HEIGHT(r)))) {
3122 if (win->bordered) {
3124 X(win) += border_width;
3125 Y(win) += border_width;
3127 } else if (!win->bordered) {
3129 X(win) -= border_width;
3130 Y(win) -= border_width;
3133 if (win->transient && (win->quirks & SWM_Q_TRANSSZ)) {
3134 WIDTH(win) = (double)WIDTH(r) * dialog_ratio;
3135 HEIGHT(win) = (double)HEIGHT(r) * dialog_ratio;
3140 * floaters and transients are auto-centred unless moved
3143 X(win) = X(r) + (WIDTH(r) - WIDTH(win)) / 2 - BORDER(win);
3144 Y(win) = Y(r) + (HEIGHT(r) - HEIGHT(win)) / 2 - BORDER(win);
3147 /* keep window within region bounds */
3148 constrain_window(win, r, 0);
3154 * Send keystrokes to terminal to decrease/increase the font size as the
3155 * window size changes.
3158 adjust_font(struct ws_win *win)
3160 if (!(win->quirks & SWM_Q_XTERM_FONTADJ) ||
3161 win->floating || win->transient)
3164 if (win->sh.width_inc && win->last_inc != win->sh.width_inc &&
3165 WIDTH(win) / win->sh.width_inc < term_width &&
3166 win->font_steps < SWM_MAX_FONT_STEPS) {
3167 win->font_size_boundary[win->font_steps] =
3168 (win->sh.width_inc * term_width) + win->sh.base_width;
3171 win->last_inc = win->sh.width_inc;
3172 fake_keypress(win, XK_KP_Subtract, ShiftMask);
3173 } else if (win->font_steps && win->last_inc != win->sh.width_inc &&
3174 WIDTH(win) > win->font_size_boundary[win->font_steps - 1]) {
3177 win->last_inc = win->sh.width_inc;
3178 fake_keypress(win, XK_KP_Add, ShiftMask);
3182 #define SWAPXY(g) do { \
3184 tmp = (g)->y; (g)->y = (g)->x; (g)->x = tmp; \
3185 tmp = (g)->h; (g)->h = (g)->w; (g)->w = tmp; \
3188 stack_master(struct workspace *ws, struct swm_geometry *g, int rot, int flip)
3190 struct swm_geometry win_g, r_g = *g;
3191 struct ws_win *win, *fs_win = NULL;
3192 int i, j, s, stacks;
3193 int w_inc = 1, h_inc, w_base = 1, h_base;
3194 int hrh, extra = 0, h_slice, last_h = 0;
3195 int split, colno, winno, mwin, msize, mscale;
3196 int remain, missing, v_slice, reconfigure;
3198 xcb_get_window_attributes_reply_t *war;
3200 DNPRINTF(SWM_D_STACK, "stack_master: workspace: %d, rot: %s, "
3201 "flip: %s\n", ws->idx, YESNO(rot), YESNO(flip));
3203 winno = count_win(ws, 0);
3204 if (winno == 0 && count_win(ws, 1) == 0)
3207 TAILQ_FOREACH(win, &ws->winlist, entry)
3208 if (win->transient == 0 && win->floating == 0
3209 && win->iconic == 0)
3216 w_inc = win->sh.width_inc;
3217 w_base = win->sh.base_width;
3218 mwin = ws->l_state.horizontal_mwin;
3219 mscale = ws->l_state.horizontal_msize;
3220 stacks = ws->l_state.horizontal_stacks;
3223 w_inc = win->sh.height_inc;
3224 w_base = win->sh.base_height;
3225 mwin = ws->l_state.vertical_mwin;
3226 mscale = ws->l_state.vertical_msize;
3227 stacks = ws->l_state.vertical_stacks;
3231 if (stacks > winno - mwin)
3232 stacks = winno - mwin;
3236 h_slice = r_g.h / SWM_H_SLICE;
3237 if (mwin && winno > mwin) {
3238 v_slice = r_g.w / SWM_V_SLICE;
3242 win_g.w = v_slice * mscale;
3244 if (w_inc > 1 && w_inc < v_slice) {
3245 /* adjust for window's requested size increment */
3246 remain = (win_g.w - w_base) % w_inc;
3252 win_g.x += r_g.w - msize;
3255 colno = split = winno / stacks;
3256 win_g.w = ((r_g.w - (stacks * 2 * border_width) +
3257 2 * border_width) / stacks);
3259 hrh = r_g.h / colno;
3260 extra = r_g.h - (colno * hrh);
3261 win_g.h = hrh - 2 * border_width;
3263 /* stack all the tiled windows */
3264 i = j = 0, s = stacks;
3265 TAILQ_FOREACH(win, &ws->winlist, entry) {
3266 if (win->transient != 0 || win->floating != 0)
3268 if (win->iconic != 0)
3271 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
3276 if (split && i == split) {
3277 colno = (winno - mwin) / stacks;
3278 if (s <= (winno - mwin) % stacks)
3280 split = split + colno;
3281 hrh = (r_g.h / colno);
3282 extra = r_g.h - (colno * hrh);
3286 win_g.x += win_g.w + 2 * border_width;
3287 win_g.w = (r_g.w - msize -
3288 (stacks * 2 * border_width)) / stacks;
3290 win_g.w += (r_g.w - msize -
3291 (stacks * 2 * border_width)) % stacks;
3295 win_g.h = hrh - 2 * border_width;
3297 h_inc = win->sh.width_inc;
3298 h_base = win->sh.base_width;
3300 h_inc = win->sh.height_inc;
3301 h_base = win->sh.base_height;
3303 if (j == colno - 1) {
3304 win_g.h = hrh + extra;
3305 } else if (h_inc > 1 && h_inc < h_slice) {
3306 /* adjust for window's requested size increment */
3307 remain = (win_g.h - h_base) % h_inc;
3308 missing = h_inc - remain;
3310 if (missing <= extra || j == 0) {
3322 win_g.y += last_h + 2 * border_width;
3324 if (disable_border && bar_enabled == 0 && winno == 1){
3326 win_g.w += 2 * border_width;
3327 win_g.h += 2 * border_width;
3332 if (X(win) != win_g.y || Y(win) != win_g.x ||
3333 WIDTH(win) != win_g.h || HEIGHT(win) != win_g.w) {
3337 WIDTH(win) = win_g.h;
3338 HEIGHT(win) = win_g.w;
3341 if (X(win) != win_g.x || Y(win) != win_g.y ||
3342 WIDTH(win) != win_g.w || HEIGHT(win) != win_g.h) {
3346 WIDTH(win) = win_g.w;
3347 HEIGHT(win) = win_g.h;
3351 if (bordered != win->bordered) {
3353 win->bordered = bordered;
3361 war = xcb_get_window_attributes_reply(conn,
3362 xcb_get_window_attributes(conn, win->id),
3365 if (war->map_state == XCB_MAP_STATE_UNMAPPED)
3366 map_window_raised(win->id);
3376 /* now, stack all the floaters and transients */
3377 TAILQ_FOREACH(win, &ws->winlist, entry) {
3378 if (win->transient == 0 && win->floating == 0)
3380 if (win->iconic == 1)
3382 if (win->ewmh_flags & EWMH_F_FULLSCREEN) {
3387 stack_floater(win, ws->r);
3388 map_window_raised(win->id);
3392 stack_floater(fs_win, ws->r);
3393 map_window_raised(fs_win->id);
3398 vertical_config(struct workspace *ws, int id)
3400 DNPRINTF(SWM_D_STACK, "vertical_config: id: %d, workspace: %d\n",
3404 case SWM_ARG_ID_STACKRESET:
3405 case SWM_ARG_ID_STACKINIT:
3406 ws->l_state.vertical_msize = SWM_V_SLICE / 2;
3407 ws->l_state.vertical_mwin = 1;
3408 ws->l_state.vertical_stacks = 1;
3410 case SWM_ARG_ID_MASTERSHRINK:
3411 if (ws->l_state.vertical_msize > 1)
3412 ws->l_state.vertical_msize--;
3414 case SWM_ARG_ID_MASTERGROW:
3415 if (ws->l_state.vertical_msize < SWM_V_SLICE - 1)
3416 ws->l_state.vertical_msize++;
3418 case SWM_ARG_ID_MASTERADD:
3419 ws->l_state.vertical_mwin++;
3421 case SWM_ARG_ID_MASTERDEL:
3422 if (ws->l_state.vertical_mwin > 0)
3423 ws->l_state.vertical_mwin--;
3425 case SWM_ARG_ID_STACKINC:
3426 ws->l_state.vertical_stacks++;
3428 case SWM_ARG_ID_STACKDEC:
3429 if (ws->l_state.vertical_stacks > 1)
3430 ws->l_state.vertical_stacks--;
3432 case SWM_ARG_ID_FLIPLAYOUT:
3433 ws->l_state.vertical_flip = !ws->l_state.vertical_flip;
3441 vertical_stack(struct workspace *ws, struct swm_geometry *g)
3443 DNPRINTF(SWM_D_STACK, "vertical_stack: workspace: %d\n", ws->idx);
3445 stack_master(ws, g, 0, ws->l_state.vertical_flip);
3449 horizontal_config(struct workspace *ws, int id)
3451 DNPRINTF(SWM_D_STACK, "horizontal_config: workspace: %d\n", ws->idx);
3454 case SWM_ARG_ID_STACKRESET:
3455 case SWM_ARG_ID_STACKINIT:
3456 ws->l_state.horizontal_mwin = 1;
3457 ws->l_state.horizontal_msize = SWM_H_SLICE / 2;
3458 ws->l_state.horizontal_stacks = 1;
3460 case SWM_ARG_ID_MASTERSHRINK:
3461 if (ws->l_state.horizontal_msize > 1)
3462 ws->l_state.horizontal_msize--;
3464 case SWM_ARG_ID_MASTERGROW:
3465 if (ws->l_state.horizontal_msize < SWM_H_SLICE - 1)
3466 ws->l_state.horizontal_msize++;
3468 case SWM_ARG_ID_MASTERADD:
3469 ws->l_state.horizontal_mwin++;
3471 case SWM_ARG_ID_MASTERDEL:
3472 if (ws->l_state.horizontal_mwin > 0)
3473 ws->l_state.horizontal_mwin--;
3475 case SWM_ARG_ID_STACKINC:
3476 ws->l_state.horizontal_stacks++;
3478 case SWM_ARG_ID_STACKDEC:
3479 if (ws->l_state.horizontal_stacks > 1)
3480 ws->l_state.horizontal_stacks--;
3482 case SWM_ARG_ID_FLIPLAYOUT:
3483 ws->l_state.horizontal_flip = !ws->l_state.horizontal_flip;
3491 horizontal_stack(struct workspace *ws, struct swm_geometry *g)
3493 DNPRINTF(SWM_D_STACK, "horizontal_stack: workspace: %d\n", ws->idx);
3495 stack_master(ws, g, 1, ws->l_state.horizontal_flip);
3498 /* fullscreen view */
3500 max_stack(struct workspace *ws, struct swm_geometry *g)
3502 struct swm_geometry gg = *g;
3503 struct ws_win *win, *wintrans = NULL, *parent = NULL;
3504 int winno, num_screens;
3506 DNPRINTF(SWM_D_STACK, "max_stack: workspace: %d\n", ws->idx);
3511 winno = count_win(ws, 0);
3512 if (winno == 0 && count_win(ws, 1) == 0)
3515 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
3516 TAILQ_FOREACH(win, &ws->winlist, entry) {
3517 if (win->transient) {
3519 parent = find_window(win->transient);
3523 if (win->floating && win->floatmaxed == 0 ) {
3525 * retain geometry for retrieval on exit from
3528 store_float_geom(win, ws->r);
3529 win->floatmaxed = 1;
3532 /* only reconfigure if necessary */
3533 if (X(win) != gg.x || Y(win) != gg.y || WIDTH(win) != gg.w ||
3534 HEIGHT(win) != gg.h) {
3540 WIDTH(win) += 2 * border_width;
3541 HEIGHT(win) += 2 * border_width;
3546 /* unmap only if we don't have multi screen */
3547 if (win != ws->focus)
3548 if (!(num_screens > 1 || outputs > 1))
3552 /* put the last transient on top */
3555 map_window_raised(parent->id);
3556 stack_floater(wintrans, ws->r);
3557 focus_magic(wintrans);
3562 send_to_ws(struct swm_region *r, union arg *args)
3564 int wsid = args->id;
3565 struct ws_win *win = NULL, *parent;
3566 struct workspace *ws, *nws;
3567 xcb_atom_t ws_idx_atom = XCB_ATOM_NONE;
3568 char ws_idx_str[SWM_PROPLEN];
3571 if (wsid >= workspace_limit)
3574 if (r && r->ws && r->ws->focus)
3580 if (win->ws->idx == wsid)
3583 DNPRINTF(SWM_D_MOVE, "send_to_ws: window: 0x%x\n", win->id);
3586 nws = &win->s->ws[wsid];
3588 a.id = SWM_ARG_ID_FOCUSPREV;
3590 if (win->transient) {
3591 parent = find_window(win->transient);
3593 unmap_window(parent);
3594 TAILQ_REMOVE(&ws->winlist, parent, entry);
3595 TAILQ_INSERT_TAIL(&nws->winlist, parent, entry);
3600 TAILQ_REMOVE(&ws->winlist, win, entry);
3601 TAILQ_INSERT_TAIL(&nws->winlist, win, entry);
3602 if (TAILQ_EMPTY(&ws->winlist))
3603 r->ws->focus = NULL;
3606 /* Try to update the window's workspace property */
3607 ws_idx_atom = get_atom_from_string("_SWM_WS");
3609 snprintf(ws_idx_str, SWM_PROPLEN, "%d", nws->idx) <
3611 DNPRINTF(SWM_D_PROP, "send_to_ws: set property: _SWM_WS: %s\n",
3613 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
3614 ws_idx_atom, XCB_ATOM_STRING, 8, strlen(ws_idx_str),
3625 pressbutton(struct swm_region *r, union arg *args)
3627 xcb_test_fake_input(conn, XCB_BUTTON_PRESS, args->id,
3628 XCB_CURRENT_TIME, XCB_WINDOW_NONE, 0, 0, 0);
3629 xcb_test_fake_input(conn, XCB_BUTTON_RELEASE, args->id,
3630 XCB_CURRENT_TIME, XCB_WINDOW_NONE, 0, 0, 0);
3634 raise_toggle(struct swm_region *r, union arg *args)
3636 if (r == NULL || r->ws == NULL)
3639 r->ws->always_raise = !r->ws->always_raise;
3641 /* bring floaters back to top */
3642 if (r->ws->always_raise == 0)
3649 iconify(struct swm_region *r, union arg *args)
3653 if (r->ws->focus == NULL)
3655 unmap_window(r->ws->focus);
3656 update_iconic(r->ws->focus, 1);
3659 r->ws->focus = NULL;
3660 a.id = SWM_ARG_ID_FOCUSCUR;
3667 get_win_name(xcb_window_t win)
3670 xcb_get_property_cookie_t c;
3671 xcb_icccm_get_text_property_reply_t r;
3673 c = xcb_icccm_get_wm_name(conn, win);
3674 if (xcb_icccm_get_wm_name_reply(conn, c, &r, NULL)) {
3675 if (r.name_len > 0) {
3676 name = malloc(r.name_len + 1);
3678 xcb_icccm_get_text_property_reply_wipe(&r);
3681 memcpy(name, r.name, r.name_len);
3682 name[r.name_len] = '\0';
3684 xcb_icccm_get_text_property_reply_wipe(&r);
3691 uniconify(struct swm_region *r, union arg *args)
3698 DNPRINTF(SWM_D_MISC, "uniconify\n");
3700 if (r == NULL || r->ws == NULL)
3703 /* make sure we have anything to uniconify */
3704 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
3705 if (win->ws == NULL)
3706 continue; /* should never happen */
3707 if (win->iconic == 0)
3715 search_resp_action = SWM_SEARCH_UNICONIFY;
3717 spawn_select(r, args, "search", &searchpid);
3719 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
3722 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
3723 if (win->ws == NULL)
3724 continue; /* should never happen */
3725 if (win->iconic == 0)
3728 name = get_win_name(win->id);
3731 fprintf(lfile, "%s.%u\n", name, win->id);
3741 name_workspace(struct swm_region *r, union arg *args)
3745 DNPRINTF(SWM_D_MISC, "name_workspace\n");
3751 search_resp_action = SWM_SEARCH_NAME_WORKSPACE;
3753 spawn_select(r, args, "name_workspace", &searchpid);
3755 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
3758 fprintf(lfile, "%s", "");
3763 search_workspace(struct swm_region *r, union arg *args)
3766 struct workspace *ws;
3769 DNPRINTF(SWM_D_MISC, "search_workspace\n");
3775 search_resp_action = SWM_SEARCH_SEARCH_WORKSPACE;
3777 spawn_select(r, args, "search", &searchpid);
3779 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
3782 for (i = 0; i < workspace_limit; i++) {
3786 fprintf(lfile, "%d%s%s\n", ws->idx + 1,
3787 (ws->name ? ":" : ""), (ws->name ? ws->name : ""));
3794 search_win_cleanup(void)
3796 struct search_window *sw = NULL;
3798 while ((sw = TAILQ_FIRST(&search_wl)) != NULL) {
3799 xcb_destroy_window(conn, sw->indicator);
3800 xcb_free_gc(conn, sw->gc);
3801 TAILQ_REMOVE(&search_wl, sw, entry);
3807 search_win(struct swm_region *r, union arg *args)
3809 struct ws_win *win = NULL;
3810 struct search_window *sw = NULL;
3812 uint32_t gcv[3], wa[2];
3819 DNPRINTF(SWM_D_MISC, "search_win\n");
3822 search_resp_action = SWM_SEARCH_SEARCH_WINDOW;
3824 spawn_select(r, args, "search", &searchpid);
3826 if ((lfile = fdopen(select_list_pipe[1], "w")) == NULL)
3829 TAILQ_INIT(&search_wl);
3832 TAILQ_FOREACH(win, &r->ws->winlist, entry) {
3833 if (win->iconic == 1)
3836 sw = calloc(1, sizeof(struct search_window));
3838 warn("search_win: calloc");
3840 search_win_cleanup();
3846 snprintf(s, sizeof s, "%d", i);
3849 XftTextExtentsUtf8(display, bar_font, (FcChar8 *)s, len, &info);
3851 w = xcb_generate_id(conn);
3852 wa[0] = r->s->c[SWM_S_COLOR_FOCUS].color;
3853 wa[1] = r->s->c[SWM_S_COLOR_UNFOCUS].color;
3854 xcb_create_window(conn, XCB_COPY_FROM_PARENT, w, win->id, 0, 0,
3855 info.width + 4, bar_font->height + 4,
3856 1, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCB_COPY_FROM_PARENT,
3857 XCB_CW_BACK_PIXEL | XCB_CW_BORDER_PIXEL, wa);
3860 TAILQ_INSERT_TAIL(&search_wl, sw, entry);
3862 sw->gc = xcb_generate_id(conn);
3863 gcv[0] = r->s->c[SWM_S_COLOR_BAR].color;
3864 gcv[1] = r->s->c[SWM_S_COLOR_FOCUS].color;
3866 xcb_create_gc(conn, sw->gc, w, XCB_GC_FOREGROUND |
3867 XCB_GC_BACKGROUND | XCB_GC_GRAPHICS_EXPOSURES, gcv);
3868 map_window_raised(w);
3870 xcb_image_text_8(conn, len, w, sw->gc, 2, bar_font->height, s);
3872 DNPRINTF(SWM_D_MISC, "search_win: mapped window: 0x%x\n", w);
3874 fprintf(lfile, "%d\n", i);
3884 search_resp_uniconify(char *resp, unsigned long len)
3890 DNPRINTF(SWM_D_MISC, "search_resp_uniconify: resp: %s\n", resp);
3892 TAILQ_FOREACH(win, &search_r->ws->winlist, entry) {
3893 if (win->iconic == 0)
3895 name = get_win_name(win->id);
3898 if (asprintf(&s, "%s.%u", name, win->id) == -1) {
3903 if (strncmp(s, resp, len) == 0) {
3904 /* XXX this should be a callback to generalize */
3905 update_iconic(win, 0);
3914 search_resp_name_workspace(char *resp, unsigned long len)
3916 struct workspace *ws;
3918 DNPRINTF(SWM_D_MISC, "search_resp_name_workspace: resp: %s\n", resp);
3920 if (search_r->ws == NULL)
3925 free(search_r->ws->name);
3926 search_r->ws->name = NULL;
3930 ws->name = strdup(resp);
3931 if (ws->name == NULL) {
3932 DNPRINTF(SWM_D_MISC, "search_resp_name_workspace: "
3933 "strdup: %s", strerror(errno));
3940 search_resp_search_workspace(char *resp, unsigned long len)
3947 DNPRINTF(SWM_D_MISC, "search_resp_search_workspace: resp: %s\n", resp);
3951 DNPRINTF(SWM_D_MISC, "search_resp_search_workspace: strdup: %s",
3958 ws_idx = (int)strtonum(q, 1, workspace_limit, &errstr);
3960 DNPRINTF(SWM_D_MISC, "workspace idx is %s: %s",
3967 switchws(search_r, &a);
3971 search_resp_search_window(char *resp, unsigned long len)
3976 struct search_window *sw;
3978 DNPRINTF(SWM_D_MISC, "search_resp_search_window: resp: %s\n", resp);
3982 DNPRINTF(SWM_D_MISC, "search_resp_search_window: strdup: %s",
3987 idx = (int)strtonum(s, 1, INT_MAX, &errstr);
3989 DNPRINTF(SWM_D_MISC, "window idx is %s: %s",
3996 TAILQ_FOREACH(sw, &search_wl, entry)
3997 if (idx == sw->idx) {
4003 #define MAX_RESP_LEN 1024
4006 search_do_resp(void)
4012 DNPRINTF(SWM_D_MISC, "search_do_resp:\n");
4017 if ((resp = calloc(1, MAX_RESP_LEN + 1)) == NULL) {
4018 warn("search: calloc");
4022 rbytes = read(select_resp_pipe[0], resp, MAX_RESP_LEN);
4024 warn("search: read error");
4027 resp[rbytes] = '\0';
4030 * Older versions of dmenu (Atleast pre 4.4.1) do not send a
4031 * newline, so work around that by sanitizing the resp now.
4033 resp[strcspn(resp, "\n")] = '\0';
4036 switch (search_resp_action) {
4037 case SWM_SEARCH_UNICONIFY:
4038 search_resp_uniconify(resp, len);
4040 case SWM_SEARCH_NAME_WORKSPACE:
4041 search_resp_name_workspace(resp, len);
4043 case SWM_SEARCH_SEARCH_WORKSPACE:
4044 search_resp_search_workspace(resp, len);
4046 case SWM_SEARCH_SEARCH_WINDOW:
4047 search_resp_search_window(resp, len);
4052 if (search_resp_action == SWM_SEARCH_SEARCH_WINDOW)
4053 search_win_cleanup();
4055 search_resp_action = SWM_SEARCH_NONE;
4056 close(select_resp_pipe[0]);
4061 wkill(struct swm_region *r, union arg *args)
4063 DNPRINTF(SWM_D_MISC, "wkill: id: %d\n", args->id);
4065 if (r->ws->focus == NULL)
4068 if (args->id == SWM_ARG_ID_KILLWINDOW)
4069 xcb_kill_client(conn, r->ws->focus->id);
4071 if (r->ws->focus->can_delete)
4072 client_msg(r->ws->focus, a_delete);
4079 floating_toggle_win(struct ws_win *win)
4081 struct swm_region *r;
4091 /* reject floating toggles in max stack mode */
4092 if (win->ws->cur_layout == &layouts[SWM_MAX_STACK])
4095 if (win->floating) {
4096 if (!win->floatmaxed) {
4097 /* retain position for refloat */
4098 store_float_geom(win, r);
4102 if (win->g_floatvalid) {
4103 /* refloat at last floating relative position */
4104 X(win) = win->g_float.x + X(r);
4105 Y(win) = win->g_float.y + Y(r);
4106 WIDTH(win) = win->g_float.w;
4107 HEIGHT(win) = win->g_float.h;
4112 ewmh_update_actions(win);
4118 floating_toggle(struct swm_region *r, union arg *args)
4120 struct ws_win *win = r->ws->focus;
4126 ewmh_update_win_state(win, ewmh[_NET_WM_STATE_ABOVE].atom,
4127 _NET_WM_STATE_TOGGLE);
4131 if (win == win->ws->focus) {
4132 a.id = SWM_ARG_ID_FOCUSCUR;
4133 focus(win->ws->r, &a);
4137 event_drain(XCB_ENTER_NOTIFY);
4141 constrain_window(struct ws_win *win, struct swm_region *r, int resizable)
4143 if (MAX_X(win) + BORDER(win) > MAX_X(r)) {
4145 WIDTH(win) = MAX_X(r) - X(win) - BORDER(win);
4147 X(win) = MAX_X(r)- WIDTH(win) - BORDER(win);
4150 if (X(win) + BORDER(win) < X(r)) {
4152 WIDTH(win) -= X(r) - X(win) - BORDER(win);
4154 X(win) = X(r) - BORDER(win);
4157 if (MAX_Y(win) + BORDER(win) > MAX_Y(r)) {
4159 HEIGHT(win) = MAX_Y(r) - Y(win) - BORDER(win);
4161 Y(win) = MAX_Y(r) - HEIGHT(win) - BORDER(win);
4164 if (Y(win) + BORDER(win) < Y(r)) {
4166 HEIGHT(win) -= Y(r) - Y(win) - BORDER(win);
4168 Y(win) = Y(r) - BORDER(win);
4174 if (HEIGHT(win) < 1)
4180 update_window(struct ws_win *win)
4185 mask = XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y |
4186 XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT |
4187 XCB_CONFIG_WINDOW_BORDER_WIDTH;
4191 wc[3] = HEIGHT(win);
4192 wc[4] = BORDER(win);
4194 DNPRINTF(SWM_D_EVENT, "update_window: window: 0x%x, (x,y) w x h: "
4195 "(%d,%d) %d x %d, bordered: %s\n", win->id, wc[0], wc[1], wc[2],
4196 wc[3], YESNO(win->bordered));
4198 xcb_configure_window(conn, win->id, mask, wc);
4201 #define SWM_RESIZE_STEPS (50)
4204 resize(struct ws_win *win, union arg *args)
4206 xcb_timestamp_t timestamp = 0;
4207 struct swm_region *r = NULL;
4208 int resize_step = 0;
4209 struct swm_geometry g;
4210 int top = 0, left = 0, resizing;
4212 unsigned int shape; /* cursor style */
4213 xcb_cursor_t cursor;
4214 xcb_font_t cursor_font;
4215 xcb_grab_pointer_cookie_t gpc;
4216 xcb_grab_pointer_reply_t *gpr;
4217 xcb_query_pointer_reply_t *xpr;
4218 xcb_generic_event_t *evt;
4219 xcb_motion_notify_event_t *mne;
4225 if (win->ewmh_flags & EWMH_F_FULLSCREEN)
4228 DNPRINTF(SWM_D_EVENT, "resize: window: 0x%x, floating: %s, "
4229 "transient: 0x%x\n", win->id, YESNO(win->floating),
4232 if (!(win->transient != 0 || win->floating != 0))
4235 /* reject resizes in max mode for floaters (transient ok) */
4236 if (win->floatmaxed)
4240 ewmh_update_win_state(win, ewmh[_SWM_WM_STATE_MANUAL].atom,
4246 case SWM_ARG_ID_WIDTHSHRINK:
4247 WIDTH(win) -= SWM_RESIZE_STEPS;
4250 case SWM_ARG_ID_WIDTHGROW:
4251 WIDTH(win) += SWM_RESIZE_STEPS;
4254 case SWM_ARG_ID_HEIGHTSHRINK:
4255 HEIGHT(win) -= SWM_RESIZE_STEPS;
4258 case SWM_ARG_ID_HEIGHTGROW:
4259 HEIGHT(win) += SWM_RESIZE_STEPS;
4266 constrain_window(win, r, 1);
4268 store_float_geom(win,r);
4272 /* get cursor offset from window root */
4273 xpr = xcb_query_pointer_reply(conn, xcb_query_pointer(conn, win->id),
4280 if (xpr->win_x < WIDTH(win) / 2)
4283 if (xpr->win_y < HEIGHT(win) / 2)
4286 if (args->id == SWM_ARG_ID_CENTER)
4289 shape = (left) ? XC_top_left_corner : XC_top_right_corner;
4291 shape = (left) ? XC_bottom_left_corner : XC_bottom_right_corner;
4293 cursor_font = xcb_generate_id(conn);
4294 xcb_open_font(conn, cursor_font, strlen("cursor"), "cursor");
4296 cursor = xcb_generate_id(conn);
4297 xcb_create_glyph_cursor(conn, cursor, cursor_font, cursor_font,
4298 shape, shape + 1, 0, 0, 0, 0xffff, 0xffff, 0xffff);
4300 gpc = xcb_grab_pointer(conn, False, win->id, MOUSEMASK,
4301 XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC, XCB_WINDOW_NONE, cursor,
4303 gpr = xcb_grab_pointer_reply(conn, gpc, NULL);
4305 xcb_free_cursor(conn, cursor);
4306 xcb_close_font(conn, cursor_font);
4313 while ((evt = xcb_wait_for_event(conn)) && resizing) {
4314 switch (XCB_EVENT_RESPONSE_TYPE(evt)) {
4315 case XCB_BUTTON_RELEASE:
4316 DNPRINTF(SWM_D_EVENT, "resize: BUTTON_RELEASE\n");
4319 case XCB_MOTION_NOTIFY:
4320 mne = (xcb_motion_notify_event_t *)evt;
4321 /* cursor offset/delta from start of the operation */
4322 dx = mne->root_x - xpr->root_x;
4323 dy = mne->root_y - xpr->root_y;
4329 if (args->id == SWM_ARG_ID_CENTER) {
4330 if (g.h / 2 + dy < 1)
4334 HEIGHT(win) = g.h + 2 * dy;
4342 HEIGHT(win) = g.h + dy;
4349 if (args->id == SWM_ARG_ID_CENTER) {
4350 if (g.w / 2 + dx < 1)
4354 WIDTH(win) = g.w + 2 * dx;
4362 WIDTH(win) = g.w + dx;
4365 constrain_window(win, r, 1);
4367 /* not free, don't sync more than 120 times / second */
4368 if ((mne->time - timestamp) > (1000 / 120) ) {
4369 timestamp = mne->time;
4384 store_float_geom(win,r);
4386 xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
4387 xcb_free_cursor(conn, cursor);
4388 xcb_close_font(conn, cursor_font);
4391 DNPRINTF(SWM_D_EVENT, "resize: done\n");
4395 resize_step(struct swm_region *r, union arg *args)
4397 struct ws_win *win = NULL;
4399 if (r && r->ws && r->ws->focus)
4407 #define SWM_MOVE_STEPS (50)
4410 move(struct ws_win *win, union arg *args)
4412 xcb_timestamp_t timestamp = 0;
4413 int move_step = 0, moving;
4414 struct swm_region *r = NULL;
4415 xcb_font_t cursor_font;
4416 xcb_cursor_t cursor;
4417 xcb_grab_pointer_cookie_t gpc;
4418 xcb_grab_pointer_reply_t *gpr;
4419 xcb_query_pointer_reply_t *qpr;
4420 xcb_generic_event_t *evt;
4421 xcb_motion_notify_event_t *mne;
4427 if (win->ewmh_flags & EWMH_F_FULLSCREEN)
4430 DNPRINTF(SWM_D_EVENT, "move: window: 0x%x, floating: %s, transient: "
4431 "0x%x\n", win->id, YESNO(win->floating), win->transient);
4433 /* in max_stack mode should only move transients */
4434 if (win->ws->cur_layout == &layouts[SWM_MAX_STACK] && !win->transient)
4438 if (win->floating == 0 && !win->transient) {
4439 store_float_geom(win, r);
4440 ewmh_update_win_state(win, ewmh[_NET_WM_STATE_ABOVE].atom,
4443 ewmh_update_win_state(win, ewmh[_SWM_WM_STATE_MANUAL].atom,
4450 case SWM_ARG_ID_MOVELEFT:
4451 X(win) -= (SWM_MOVE_STEPS - border_width);
4454 case SWM_ARG_ID_MOVERIGHT:
4455 X(win) += (SWM_MOVE_STEPS - border_width);
4458 case SWM_ARG_ID_MOVEUP:
4459 Y(win) -= (SWM_MOVE_STEPS - border_width);
4462 case SWM_ARG_ID_MOVEDOWN:
4463 Y(win) += (SWM_MOVE_STEPS - border_width);
4470 constrain_window(win, r, 0);
4472 store_float_geom(win, r);
4476 cursor_font = xcb_generate_id(conn);
4477 xcb_open_font(conn, cursor_font, strlen("cursor"), "cursor");
4479 cursor = xcb_generate_id(conn);
4480 xcb_create_glyph_cursor(conn, cursor, cursor_font, cursor_font,
4481 XC_fleur, XC_fleur + 1, 0, 0, 0, 0xffff, 0xffff, 0xffff);
4483 gpc = xcb_grab_pointer(conn, False, win->id, MOUSEMASK,
4484 XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC,
4485 XCB_WINDOW_NONE, cursor, XCB_CURRENT_TIME);
4486 gpr = xcb_grab_pointer_reply(conn, gpc, NULL);
4488 xcb_free_cursor(conn, cursor);
4489 xcb_close_font(conn, cursor_font);
4493 /* get cursor offset from window root */
4494 qpr = xcb_query_pointer_reply(conn, xcb_query_pointer(conn, win->id),
4497 xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
4498 xcb_free_cursor(conn, cursor);
4499 xcb_close_font(conn, cursor_font);
4505 while ((evt = xcb_wait_for_event(conn)) && moving) {
4506 switch (XCB_EVENT_RESPONSE_TYPE(evt)) {
4507 case XCB_BUTTON_RELEASE:
4508 DNPRINTF(SWM_D_EVENT, "move: BUTTON_RELEASE\n");
4511 case XCB_MOTION_NOTIFY:
4512 mne = (xcb_motion_notify_event_t *)evt;
4513 X(win) = mne->root_x - qpr->win_x - border_width;
4514 Y(win) = mne->root_y - qpr->win_y - border_width;
4516 constrain_window(win, r, 0);
4518 /* not free, don't sync more than 120 times / second */
4519 if ((mne->time - timestamp) > (1000 / 120) ) {
4520 timestamp = mne->time;
4535 store_float_geom(win, r);
4537 xcb_free_cursor(conn, cursor);
4538 xcb_close_font(conn, cursor_font);
4539 xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
4540 DNPRINTF(SWM_D_EVENT, "move: done\n");
4544 move_step(struct swm_region *r, union arg *args)
4546 struct ws_win *win = NULL;
4548 if (r && r->ws && r->ws->focus)
4553 if (!(win->transient != 0 || win->floating != 0))
4560 /* user/key callable function IDs */
4610 KF_SEARCH_WORKSPACE,
4651 KF_DUMPWINS, /* MUST BE LAST */
4655 /* key definitions */
4657 char name[SWM_FUNCNAME_LEN];
4658 void (*func)(struct swm_region *r, union arg *);
4660 } keyfuncs[KF_INVALID + 1] = {
4661 /* name function argument */
4662 { "bar_toggle", bar_toggle, {0} },
4663 { "button2", pressbutton, {2} },
4664 { "cycle_layout", cycle_layout, {0} },
4665 { "flip_layout", stack_config, {.id = SWM_ARG_ID_FLIPLAYOUT} },
4666 { "float_toggle", floating_toggle,{0} },
4667 { "focus_main", focus, {.id = SWM_ARG_ID_FOCUSMAIN} },
4668 { "focus_next", focus, {.id = SWM_ARG_ID_FOCUSNEXT} },
4669 { "focus_prev", focus, {.id = SWM_ARG_ID_FOCUSPREV} },
4670 { "height_grow", resize_step, {.id = SWM_ARG_ID_HEIGHTGROW} },
4671 { "height_shrink", resize_step, {.id = SWM_ARG_ID_HEIGHTSHRINK} },
4672 { "iconify", iconify, {0} },
4673 { "master_shrink", stack_config, {.id = SWM_ARG_ID_MASTERSHRINK} },
4674 { "master_grow", stack_config, {.id = SWM_ARG_ID_MASTERGROW} },
4675 { "master_add", stack_config, {.id = SWM_ARG_ID_MASTERADD} },
4676 { "master_del", stack_config, {.id = SWM_ARG_ID_MASTERDEL} },
4677 { "move_down", move_step, {.id = SWM_ARG_ID_MOVEDOWN} },
4678 { "move_left", move_step, {.id = SWM_ARG_ID_MOVELEFT} },
4679 { "move_right", move_step, {.id = SWM_ARG_ID_MOVERIGHT} },
4680 { "move_up", move_step, {.id = SWM_ARG_ID_MOVEUP} },
4681 { "mvws_1", send_to_ws, {.id = 0} },
4682 { "mvws_2", send_to_ws, {.id = 1} },
4683 { "mvws_3", send_to_ws, {.id = 2} },
4684 { "mvws_4", send_to_ws, {.id = 3} },
4685 { "mvws_5", send_to_ws, {.id = 4} },
4686 { "mvws_6", send_to_ws, {.id = 5} },
4687 { "mvws_7", send_to_ws, {.id = 6} },
4688 { "mvws_8", send_to_ws, {.id = 7} },
4689 { "mvws_9", send_to_ws, {.id = 8} },
4690 { "mvws_10", send_to_ws, {.id = 9} },
4691 { "mvws_11", send_to_ws, {.id = 10} },
4692 { "mvws_12", send_to_ws, {.id = 11} },
4693 { "mvws_13", send_to_ws, {.id = 12} },
4694 { "mvws_14", send_to_ws, {.id = 13} },
4695 { "mvws_15", send_to_ws, {.id = 14} },
4696 { "mvws_16", send_to_ws, {.id = 15} },
4697 { "mvws_17", send_to_ws, {.id = 16} },
4698 { "mvws_18", send_to_ws, {.id = 17} },
4699 { "mvws_19", send_to_ws, {.id = 18} },
4700 { "mvws_20", send_to_ws, {.id = 19} },
4701 { "mvws_21", send_to_ws, {.id = 20} },
4702 { "mvws_22", send_to_ws, {.id = 21} },
4703 { "name_workspace", name_workspace, {0} },
4704 { "quit", quit, {0} },
4705 { "raise_toggle", raise_toggle, {0} },
4706 { "restart", restart, {0} },
4707 { "screen_next", cyclescr, {.id = SWM_ARG_ID_CYCLESC_UP} },
4708 { "screen_prev", cyclescr, {.id = SWM_ARG_ID_CYCLESC_DOWN} },
4709 { "search_win", search_win, {0} },
4710 { "search_workspace", search_workspace, {0} },
4711 { "spawn_custom", NULL, {0} },
4712 { "stack_inc", stack_config, {.id = SWM_ARG_ID_STACKINC} },
4713 { "stack_dec", stack_config, {.id = SWM_ARG_ID_STACKDEC} },
4714 { "stack_reset", stack_config, {.id = SWM_ARG_ID_STACKRESET} },
4715 { "swap_main", swapwin, {.id = SWM_ARG_ID_SWAPMAIN} },
4716 { "swap_next", swapwin, {.id = SWM_ARG_ID_SWAPNEXT} },
4717 { "swap_prev", swapwin, {.id = SWM_ARG_ID_SWAPPREV} },
4718 { "uniconify", uniconify, {0} },
4719 { "version", version, {0} },
4720 { "width_grow", resize_step, {.id = SWM_ARG_ID_WIDTHGROW} },
4721 { "width_shrink", resize_step, {.id = SWM_ARG_ID_WIDTHSHRINK} },
4722 { "wind_del", wkill, {.id = SWM_ARG_ID_DELETEWINDOW} },
4723 { "wind_kill", wkill, {.id = SWM_ARG_ID_KILLWINDOW} },
4724 { "ws_1", switchws, {.id = 0} },
4725 { "ws_2", switchws, {.id = 1} },
4726 { "ws_3", switchws, {.id = 2} },
4727 { "ws_4", switchws, {.id = 3} },
4728 { "ws_5", switchws, {.id = 4} },
4729 { "ws_6", switchws, {.id = 5} },
4730 { "ws_7", switchws, {.id = 6} },
4731 { "ws_8", switchws, {.id = 7} },
4732 { "ws_9", switchws, {.id = 8} },
4733 { "ws_10", switchws, {.id = 9} },
4734 { "ws_11", switchws, {.id = 10} },
4735 { "ws_12", switchws, {.id = 11} },
4736 { "ws_13", switchws, {.id = 12} },
4737 { "ws_14", switchws, {.id = 13} },
4738 { "ws_15", switchws, {.id = 14} },
4739 { "ws_16", switchws, {.id = 15} },
4740 { "ws_17", switchws, {.id = 16} },
4741 { "ws_18", switchws, {.id = 17} },
4742 { "ws_19", switchws, {.id = 18} },
4743 { "ws_20", switchws, {.id = 19} },
4744 { "ws_21", switchws, {.id = 20} },
4745 { "ws_22", switchws, {.id = 21} },
4746 { "ws_next", cyclews, {.id = SWM_ARG_ID_CYCLEWS_UP} },
4747 { "ws_next_all", cyclews, {.id = SWM_ARG_ID_CYCLEWS_UP_ALL} },
4748 { "ws_prev", cyclews, {.id = SWM_ARG_ID_CYCLEWS_DOWN} },
4749 { "ws_prev_all", cyclews, {.id = SWM_ARG_ID_CYCLEWS_DOWN_ALL} },
4750 { "ws_prior", priorws, {0} },
4751 { "dumpwins", dumpwins, {0} }, /* MUST BE LAST */
4752 { "invalid key func", NULL, {0} },
4755 RB_ENTRY(key) entry;
4758 enum keyfuncid funcid;
4761 RB_HEAD(key_tree, key);
4764 key_cmp(struct key *kp1, struct key *kp2)
4766 if (kp1->keysym < kp2->keysym)
4768 if (kp1->keysym > kp2->keysym)
4771 if (kp1->mod < kp2->mod)
4773 if (kp1->mod > kp2->mod)
4779 RB_GENERATE(key_tree, key, entry, key_cmp);
4780 struct key_tree keys;
4783 enum { client_click, root_click };
4785 unsigned int action;
4787 unsigned int button;
4788 void (*func)(struct ws_win *, union arg *);
4791 /* action key mouse button func args */
4792 { client_click, MODKEY, Button3, resize, {.id = SWM_ARG_ID_DONTCENTER} },
4793 { client_click, MODKEY | ShiftMask, Button3, resize, {.id = SWM_ARG_ID_CENTER} },
4794 { client_click, MODKEY, Button1, move, {0} },
4798 update_modkey(unsigned int mod)
4804 RB_FOREACH(kp, key_tree, &keys)
4805 if (kp->mod & ShiftMask)
4806 kp->mod = mod | ShiftMask;
4810 for (i = 0; i < LENGTH(buttons); i++)
4811 if (buttons[i].mask & ShiftMask)
4812 buttons[i].mask = mod | ShiftMask;
4814 buttons[i].mask = mod;
4819 TAILQ_ENTRY(spawn_prog) entry;
4824 TAILQ_HEAD(spawn_list, spawn_prog);
4825 struct spawn_list spawns = TAILQ_HEAD_INITIALIZER(spawns);
4828 spawn_expand(struct swm_region *r, union arg *args, char *spawn_name,
4831 struct spawn_prog *prog = NULL;
4833 char *ap, **real_args;
4835 DNPRINTF(SWM_D_SPAWN, "spawn_expand: %s\n", spawn_name);
4838 TAILQ_FOREACH(prog, &spawns, entry) {
4839 if (!strcasecmp(spawn_name, prog->name))
4843 warnx("spawn_custom: program %s not found", spawn_name);
4847 /* make room for expanded args */
4848 if ((real_args = calloc(prog->argc + 1, sizeof(char *))) == NULL)
4849 err(1, "spawn_custom: calloc real_args");
4851 /* expand spawn_args into real_args */
4852 for (i = 0; i < prog->argc; i++) {
4854 DNPRINTF(SWM_D_SPAWN, "spawn_custom: raw arg: %s\n", ap);
4855 if (!strcasecmp(ap, "$bar_border")) {
4857 strdup(r->s->c[SWM_S_COLOR_BAR_BORDER].name))
4859 err(1, "spawn_custom border color");
4860 } else if (!strcasecmp(ap, "$bar_color")) {
4862 strdup(r->s->c[SWM_S_COLOR_BAR].name))
4864 err(1, "spawn_custom bar color");
4865 } else if (!strcasecmp(ap, "$bar_font")) {
4866 if ((real_args[i] = strdup(bar_fonts))
4868 err(1, "spawn_custom bar fonts");
4869 } else if (!strcasecmp(ap, "$bar_font_color")) {
4871 strdup(r->s->c[SWM_S_COLOR_BAR_FONT].name))
4873 err(1, "spawn_custom color font");
4874 } else if (!strcasecmp(ap, "$color_focus")) {
4876 strdup(r->s->c[SWM_S_COLOR_FOCUS].name))
4878 err(1, "spawn_custom color focus");
4879 } else if (!strcasecmp(ap, "$color_unfocus")) {
4881 strdup(r->s->c[SWM_S_COLOR_UNFOCUS].name))
4883 err(1, "spawn_custom color unfocus");
4885 /* no match --> copy as is */
4886 if ((real_args[i] = strdup(ap)) == NULL)
4887 err(1, "spawn_custom strdup(ap)");
4889 DNPRINTF(SWM_D_SPAWN, "spawn_custom: cooked arg: %s\n",
4894 DNPRINTF(SWM_D_SPAWN, "spawn_custom: result: ");
4895 for (i = 0; i < prog->argc; i++)
4896 DNPRINTF(SWM_D_SPAWN, "\"%s\" ", real_args[i]);
4897 DNPRINTF(SWM_D_SPAWN, "\n");
4899 *ret_args = real_args;
4900 return (prog->argc);
4904 spawn_custom(struct swm_region *r, union arg *args, char *spawn_name)
4910 if ((spawn_argc = spawn_expand(r, args, spawn_name, &real_args)) < 0)
4914 spawn(r->ws->idx, &a, 1);
4916 for (i = 0; i < spawn_argc; i++)
4922 spawn_select(struct swm_region *r, union arg *args, char *spawn_name, int *pid)
4928 if ((spawn_argc = spawn_expand(r, args, spawn_name, &real_args)) < 0)
4932 if (pipe(select_list_pipe) == -1)
4933 err(1, "pipe error");
4934 if (pipe(select_resp_pipe) == -1)
4935 err(1, "pipe error");
4937 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
4938 err(1, "could not disable SIGPIPE");
4939 switch (*pid = fork()) {
4941 err(1, "cannot fork");
4944 if (dup2(select_list_pipe[0], 0) == -1)
4946 if (dup2(select_resp_pipe[1], 1) == -1)
4948 close(select_list_pipe[1]);
4949 close(select_resp_pipe[0]);
4950 spawn(r->ws->idx, &a, 0);
4952 default: /* parent */
4953 close(select_list_pipe[0]);
4954 close(select_resp_pipe[1]);
4958 for (i = 0; i < spawn_argc; i++)
4964 spawn_insert(char *name, char *args)
4966 char *arg, *cp, *ptr;
4967 struct spawn_prog *sp;
4969 DNPRINTF(SWM_D_SPAWN, "spawn_insert: %s\n", name);
4971 if ((sp = calloc(1, sizeof *sp)) == NULL)
4972 err(1, "spawn_insert: calloc");
4973 if ((sp->name = strdup(name)) == NULL)
4974 err(1, "spawn_insert: strdup");
4976 /* convert the arguments to an argument list */
4977 if ((ptr = cp = strdup(args)) == NULL)
4978 err(1, "spawn_insert: strdup");
4979 while ((arg = strsep(&ptr, " \t")) != NULL) {
4980 /* empty field; skip it */
4985 if ((sp->argv = realloc(sp->argv, sp->argc *
4986 sizeof *sp->argv)) == NULL)
4987 err(1, "spawn_insert: realloc");
4988 if ((sp->argv[sp->argc - 1] = strdup(arg)) == NULL)
4989 err(1, "spawn_insert: strdup");
4993 TAILQ_INSERT_TAIL(&spawns, sp, entry);
4994 DNPRINTF(SWM_D_SPAWN, "spawn_insert: leave\n");
4998 spawn_remove(struct spawn_prog *sp)
5002 DNPRINTF(SWM_D_SPAWN, "spawn_remove: %s\n", sp->name);
5004 TAILQ_REMOVE(&spawns, sp, entry);
5005 for (i = 0; i < sp->argc; i++)
5011 DNPRINTF(SWM_D_SPAWN, "spawn_remove: leave\n");
5015 spawn_replace(struct spawn_prog *sp, char *name, char *args)
5017 DNPRINTF(SWM_D_SPAWN, "spawn_replace: %s [%s]\n", sp->name, name);
5020 spawn_insert(name, args);
5022 DNPRINTF(SWM_D_SPAWN, "spawn_replace: leave\n");
5026 setspawn(char *name, char *args)
5028 struct spawn_prog *sp;
5030 DNPRINTF(SWM_D_SPAWN, "setspawn: %s\n", name);
5035 TAILQ_FOREACH(sp, &spawns, entry) {
5036 if (!strcmp(sp->name, name)) {
5040 spawn_replace(sp, name, args);
5041 DNPRINTF(SWM_D_SPAWN, "setspawn: leave\n");
5045 if (*args == '\0') {
5046 warnx("error: setspawn: cannot find program: %s", name);
5050 spawn_insert(name, args);
5051 DNPRINTF(SWM_D_SPAWN, "setspawn: leave\n");
5055 setconfspawn(char *selector, char *value, int flags)
5057 DNPRINTF(SWM_D_SPAWN, "setconfspawn: [%s] [%s]\n", selector, value);
5059 setspawn(selector, value);
5061 DNPRINTF(SWM_D_SPAWN, "setconfspawn: done\n");
5068 setconfspawn("term", "xterm", 0);
5069 setconfspawn("spawn_term", "xterm", 0);
5070 setconfspawn("screenshot_all", "screenshot.sh full", 0);
5071 setconfspawn("screenshot_wind", "screenshot.sh window", 0);
5072 setconfspawn("lock", "xlock", 0);
5073 setconfspawn("initscr", "initscreen.sh", 0);
5074 setconfspawn("menu", "dmenu_run"
5077 " -nf $bar_font_color"
5079 " -sf $bar_color", 0);
5080 setconfspawn("search", "dmenu"
5084 " -nf $bar_font_color"
5086 " -sf $bar_color", 0);
5087 setconfspawn("name_workspace", "dmenu"
5091 " -nf $bar_font_color"
5093 " -sf $bar_color", 0);
5097 #define SWM_MODNAME_SIZE 32
5098 #define SWM_KEY_WS "\n+ \t"
5100 parsekeys(char *keystr, unsigned int currmod, unsigned int *mod, KeySym *ks)
5104 DNPRINTF(SWM_D_KEY, "parsekeys: enter [%s]\n", keystr);
5105 if (mod == NULL || ks == NULL) {
5106 DNPRINTF(SWM_D_KEY, "parsekeys: no mod or key vars\n");
5109 if (keystr == NULL || strlen(keystr) == 0) {
5110 DNPRINTF(SWM_D_KEY, "parsekeys: no keystr\n");
5114 *ks = XCB_NO_SYMBOL;
5116 while ((name = strsep(&cp, SWM_KEY_WS)) != NULL) {
5117 DNPRINTF(SWM_D_KEY, "parsekeys: key [%s]\n", name);
5119 cp += (long)strspn(cp, SWM_KEY_WS);
5120 if (strncasecmp(name, "MOD", SWM_MODNAME_SIZE) == 0)
5122 else if (!strncasecmp(name, "Mod1", SWM_MODNAME_SIZE))
5124 else if (!strncasecmp(name, "Mod2", SWM_MODNAME_SIZE))
5126 else if (!strncmp(name, "Mod3", SWM_MODNAME_SIZE))
5128 else if (!strncmp(name, "Mod4", SWM_MODNAME_SIZE))
5130 else if (strncasecmp(name, "SHIFT", SWM_MODNAME_SIZE) == 0)
5132 else if (strncasecmp(name, "CONTROL", SWM_MODNAME_SIZE) == 0)
5133 *mod |= ControlMask;
5135 *ks = XStringToKeysym(name);
5136 XConvertCase(*ks, ks, &uks);
5137 if (ks == XCB_NO_SYMBOL) {
5139 "parsekeys: invalid key %s\n",
5145 DNPRINTF(SWM_D_KEY, "parsekeys: leave ok\n");
5150 strdupsafe(char *str)
5155 return (strdup(str));
5159 key_insert(unsigned int mod, KeySym ks, enum keyfuncid kfid, char *spawn_name)
5163 DNPRINTF(SWM_D_KEY, "key_insert: enter %s [%s]\n",
5164 keyfuncs[kfid].name, spawn_name);
5166 if ((kp = malloc(sizeof *kp)) == NULL)
5167 err(1, "key_insert: malloc");
5172 kp->spawn_name = strdupsafe(spawn_name);
5173 RB_INSERT(key_tree, &keys, kp);
5175 DNPRINTF(SWM_D_KEY, "key_insert: leave\n");
5179 key_lookup(unsigned int mod, KeySym ks)
5186 return (RB_FIND(key_tree, &keys, &kp));
5190 key_remove(struct key *kp)
5192 DNPRINTF(SWM_D_KEY, "key_remove: %s\n", keyfuncs[kp->funcid].name);
5194 RB_REMOVE(key_tree, &keys, kp);
5195 free(kp->spawn_name);
5198 DNPRINTF(SWM_D_KEY, "key_remove: leave\n");
5202 key_replace(struct key *kp, unsigned int mod, KeySym ks, enum keyfuncid kfid,
5205 DNPRINTF(SWM_D_KEY, "key_replace: %s [%s]\n", keyfuncs[kp->funcid].name,
5209 key_insert(mod, ks, kfid, spawn_name);
5211 DNPRINTF(SWM_D_KEY, "key_replace: leave\n");
5215 setkeybinding(unsigned int mod, KeySym ks, enum keyfuncid kfid,
5220 DNPRINTF(SWM_D_KEY, "setkeybinding: enter %s [%s]\n",
5221 keyfuncs[kfid].name, spawn_name);
5223 if ((kp = key_lookup(mod, ks)) != NULL) {
5224 if (kfid == KF_INVALID)
5227 key_replace(kp, mod, ks, kfid, spawn_name);
5228 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
5231 if (kfid == KF_INVALID) {
5232 warnx("error: setkeybinding: cannot find mod/key combination");
5233 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
5237 key_insert(mod, ks, kfid, spawn_name);
5238 DNPRINTF(SWM_D_KEY, "setkeybinding: leave\n");
5242 setconfbinding(char *selector, char *value, int flags)
5244 enum keyfuncid kfid;
5247 struct spawn_prog *sp;
5248 DNPRINTF(SWM_D_KEY, "setconfbinding: enter\n");
5249 if (selector == NULL) {
5250 DNPRINTF(SWM_D_KEY, "setconfbinding: unbind %s\n", value);
5251 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
5253 setkeybinding(mod, ks, kfid, NULL);
5258 /* search by key function name */
5259 for (kfid = 0; kfid < KF_INVALID; (kfid)++) {
5260 if (strncasecmp(selector, keyfuncs[kfid].name,
5261 SWM_FUNCNAME_LEN) == 0) {
5262 DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match\n",
5264 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
5265 setkeybinding(mod, ks, kfid, NULL);
5271 /* search by custom spawn name */
5272 TAILQ_FOREACH(sp, &spawns, entry) {
5273 if (strcasecmp(selector, sp->name) == 0) {
5274 DNPRINTF(SWM_D_KEY, "setconfbinding: %s: match\n",
5276 if (parsekeys(value, mod_key, &mod, &ks) == 0) {
5277 setkeybinding(mod, ks, KF_SPAWN_CUSTOM,
5284 DNPRINTF(SWM_D_KEY, "setconfbinding: no match\n");
5291 setkeybinding(MODKEY, XK_space, KF_CYCLE_LAYOUT,NULL);
5292 setkeybinding(MODKEY|ShiftMask, XK_backslash, KF_FLIP_LAYOUT, NULL);
5293 setkeybinding(MODKEY|ShiftMask, XK_space, KF_STACK_RESET, NULL);
5294 setkeybinding(MODKEY, XK_h, KF_MASTER_SHRINK, NULL);
5295 setkeybinding(MODKEY, XK_l, KF_MASTER_GROW, NULL);
5296 setkeybinding(MODKEY, XK_comma, KF_MASTER_ADD, NULL);
5297 setkeybinding(MODKEY, XK_period, KF_MASTER_DEL, NULL);
5298 setkeybinding(MODKEY|ShiftMask, XK_comma, KF_STACK_INC, NULL);
5299 setkeybinding(MODKEY|ShiftMask, XK_period, KF_STACK_DEC, NULL);
5300 setkeybinding(MODKEY, XK_Return, KF_SWAP_MAIN, NULL);
5301 setkeybinding(MODKEY, XK_j, KF_FOCUS_NEXT, NULL);
5302 setkeybinding(MODKEY, XK_k, KF_FOCUS_PREV, NULL);
5303 setkeybinding(MODKEY|ShiftMask, XK_j, KF_SWAP_NEXT, NULL);
5304 setkeybinding(MODKEY|ShiftMask, XK_k, KF_SWAP_PREV, NULL);
5305 setkeybinding(MODKEY|ShiftMask, XK_Return, KF_SPAWN_CUSTOM,"term");
5306 setkeybinding(MODKEY, XK_p, KF_SPAWN_CUSTOM,"menu");
5307 setkeybinding(MODKEY|ShiftMask, XK_q, KF_QUIT, NULL);
5308 setkeybinding(MODKEY, XK_q, KF_RESTART, NULL);
5309 setkeybinding(MODKEY, XK_m, KF_FOCUS_MAIN, NULL);
5310 setkeybinding(MODKEY, XK_1, KF_WS_1, NULL);
5311 setkeybinding(MODKEY, XK_2, KF_WS_2, NULL);
5312 setkeybinding(MODKEY, XK_3, KF_WS_3, NULL);
5313 setkeybinding(MODKEY, XK_4, KF_WS_4, NULL);
5314 setkeybinding(MODKEY, XK_5, KF_WS_5, NULL);
5315 setkeybinding(MODKEY, XK_6, KF_WS_6, NULL);
5316 setkeybinding(MODKEY, XK_7, KF_WS_7, NULL);
5317 setkeybinding(MODKEY, XK_8, KF_WS_8, NULL);
5318 setkeybinding(MODKEY, XK_9, KF_WS_9, NULL);
5319 setkeybinding(MODKEY, XK_0, KF_WS_10, NULL);
5320 setkeybinding(MODKEY, XK_F1, KF_WS_11, NULL);
5321 setkeybinding(MODKEY, XK_F2, KF_WS_12, NULL);
5322 setkeybinding(MODKEY, XK_F3, KF_WS_13, NULL);
5323 setkeybinding(MODKEY, XK_F4, KF_WS_14, NULL);
5324 setkeybinding(MODKEY, XK_F5, KF_WS_15, NULL);
5325 setkeybinding(MODKEY, XK_F6, KF_WS_16, NULL);
5326 setkeybinding(MODKEY, XK_F7, KF_WS_17, NULL);
5327 setkeybinding(MODKEY, XK_F8, KF_WS_18, NULL);
5328 setkeybinding(MODKEY, XK_F9, KF_WS_19, NULL);
5329 setkeybinding(MODKEY, XK_F10, KF_WS_20, NULL);
5330 setkeybinding(MODKEY, XK_F11, KF_WS_21, NULL);
5331 setkeybinding(MODKEY, XK_F12, KF_WS_22, NULL);
5332 setkeybinding(MODKEY, XK_Right, KF_WS_NEXT, NULL);
5333 setkeybinding(MODKEY, XK_Left, KF_WS_PREV, NULL);
5334 setkeybinding(MODKEY, XK_Up, KF_WS_NEXT_ALL, NULL);
5335 setkeybinding(MODKEY, XK_Down, KF_WS_PREV_ALL, NULL);
5336 setkeybinding(MODKEY, XK_a, KF_WS_PRIOR, NULL);
5337 setkeybinding(MODKEY|ShiftMask, XK_Right, KF_SCREEN_NEXT, NULL);
5338 setkeybinding(MODKEY|ShiftMask, XK_Left, KF_SCREEN_PREV, NULL);
5339 setkeybinding(MODKEY|ShiftMask, XK_1, KF_MVWS_1, NULL);
5340 setkeybinding(MODKEY|ShiftMask, XK_2, KF_MVWS_2, NULL);
5341 setkeybinding(MODKEY|ShiftMask, XK_3, KF_MVWS_3, NULL);
5342 setkeybinding(MODKEY|ShiftMask, XK_4, KF_MVWS_4, NULL);
5343 setkeybinding(MODKEY|ShiftMask, XK_5, KF_MVWS_5, NULL);
5344 setkeybinding(MODKEY|ShiftMask, XK_6, KF_MVWS_6, NULL);
5345 setkeybinding(MODKEY|ShiftMask, XK_7, KF_MVWS_7, NULL);
5346 setkeybinding(MODKEY|ShiftMask, XK_8, KF_MVWS_8, NULL);
5347 setkeybinding(MODKEY|ShiftMask, XK_9, KF_MVWS_9, NULL);
5348 setkeybinding(MODKEY|ShiftMask, XK_0, KF_MVWS_10, NULL);
5349 setkeybinding(MODKEY|ShiftMask, XK_F1, KF_MVWS_11, NULL);
5350 setkeybinding(MODKEY|ShiftMask, XK_F2, KF_MVWS_12, NULL);
5351 setkeybinding(MODKEY|ShiftMask, XK_F3, KF_MVWS_13, NULL);
5352 setkeybinding(MODKEY|ShiftMask, XK_F4, KF_MVWS_14, NULL);
5353 setkeybinding(MODKEY|ShiftMask, XK_F5, KF_MVWS_15, NULL);
5354 setkeybinding(MODKEY|ShiftMask, XK_F6, KF_MVWS_16, NULL);
5355 setkeybinding(MODKEY|ShiftMask, XK_F7, KF_MVWS_17, NULL);
5356 setkeybinding(MODKEY|ShiftMask, XK_F8, KF_MVWS_18, NULL);
5357 setkeybinding(MODKEY|ShiftMask, XK_F9, KF_MVWS_19, NULL);
5358 setkeybinding(MODKEY|ShiftMask, XK_F10, KF_MVWS_20, NULL);
5359 setkeybinding(MODKEY|ShiftMask, XK_F11, KF_MVWS_21, NULL);
5360 setkeybinding(MODKEY|ShiftMask, XK_F12, KF_MVWS_22, NULL);
5361 setkeybinding(MODKEY, XK_b, KF_BAR_TOGGLE, NULL);
5362 setkeybinding(MODKEY, XK_Tab, KF_FOCUS_NEXT, NULL);
5363 setkeybinding(MODKEY|ShiftMask, XK_Tab, KF_FOCUS_PREV, NULL);
5364 setkeybinding(MODKEY|ShiftMask, XK_x, KF_WIND_KILL, NULL);
5365 setkeybinding(MODKEY, XK_x, KF_WIND_DEL, NULL);
5366 setkeybinding(MODKEY, XK_s, KF_SPAWN_CUSTOM,"screenshot_all");
5367 setkeybinding(MODKEY|ShiftMask, XK_s, KF_SPAWN_CUSTOM,"screenshot_wind");
5368 setkeybinding(MODKEY, XK_t, KF_FLOAT_TOGGLE,NULL);
5369 setkeybinding(MODKEY|ShiftMask, XK_v, KF_VERSION, NULL);
5370 setkeybinding(MODKEY|ShiftMask, XK_Delete, KF_SPAWN_CUSTOM,"lock");
5371 setkeybinding(MODKEY|ShiftMask, XK_i, KF_SPAWN_CUSTOM,"initscr");
5372 setkeybinding(MODKEY, XK_w, KF_ICONIFY, NULL);
5373 setkeybinding(MODKEY|ShiftMask, XK_w, KF_UNICONIFY, NULL);
5374 setkeybinding(MODKEY|ShiftMask, XK_r, KF_RAISE_TOGGLE,NULL);
5375 setkeybinding(MODKEY, XK_v, KF_BUTTON2, NULL);
5376 setkeybinding(MODKEY, XK_equal, KF_WIDTH_GROW, NULL);
5377 setkeybinding(MODKEY, XK_minus, KF_WIDTH_SHRINK,NULL);
5378 setkeybinding(MODKEY|ShiftMask, XK_equal, KF_HEIGHT_GROW,NULL);
5379 setkeybinding(MODKEY|ShiftMask, XK_minus, KF_HEIGHT_SHRINK,NULL);
5380 setkeybinding(MODKEY, XK_bracketleft, KF_MOVE_LEFT,NULL);
5381 setkeybinding(MODKEY, XK_bracketright,KF_MOVE_RIGHT,NULL);
5382 setkeybinding(MODKEY|ShiftMask, XK_bracketleft, KF_MOVE_UP, NULL);
5383 setkeybinding(MODKEY|ShiftMask, XK_bracketright,KF_MOVE_DOWN,NULL);
5384 setkeybinding(MODKEY|ShiftMask, XK_slash, KF_NAME_WORKSPACE,NULL);
5385 setkeybinding(MODKEY, XK_slash, KF_SEARCH_WORKSPACE,NULL);
5386 setkeybinding(MODKEY, XK_f, KF_SEARCH_WIN, NULL);
5388 setkeybinding(MODKEY|ShiftMask, XK_d, KF_DUMPWINS, NULL);
5397 while (RB_EMPTY(&keys) == 0) {
5398 kp = RB_ROOT(&keys);
5404 setkeymapping(char *selector, char *value, int flags)
5406 char keymapping_file[PATH_MAX];
5407 DNPRINTF(SWM_D_KEY, "setkeymapping: enter\n");
5408 if (value[0] == '~')
5409 snprintf(keymapping_file, sizeof keymapping_file, "%s/%s",
5410 pwd->pw_dir, &value[1]);
5412 strlcpy(keymapping_file, value, sizeof keymapping_file);
5414 /* load new key bindings; if it fails, revert to default bindings */
5415 if (conf_load(keymapping_file, SWM_CONF_KEYMAPPING)) {
5419 DNPRINTF(SWM_D_KEY, "setkeymapping: leave\n");
5424 updatenumlockmask(void)
5427 xcb_get_modifier_mapping_reply_t *modmap_r;
5428 xcb_keycode_t *modmap, kc;
5430 DNPRINTF(SWM_D_MISC, "updatenumlockmask\n");
5433 modmap_r = xcb_get_modifier_mapping_reply(conn,
5434 xcb_get_modifier_mapping(conn),
5437 modmap = xcb_get_modifier_mapping_keycodes(modmap_r);
5438 for (i = 0; i < 8; i++) {
5439 for (j = 0; j < modmap_r->keycodes_per_modifier; j++) {
5440 kc = modmap[i * modmap_r->keycodes_per_modifier
5443 if (kc == *((xcb_keycode_t *)xcb_key_symbols_get_keycode(syms,
5445 numlockmask = (1 << i);
5457 xcb_keycode_t *code;
5458 unsigned int modifiers[] =
5459 { 0, LockMask, numlockmask, numlockmask | LockMask };
5462 DNPRINTF(SWM_D_MISC, "grabkeys\n");
5463 updatenumlockmask();
5465 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
5466 for (k = 0; k < num_screens; k++) {
5467 if (TAILQ_EMPTY(&screens[k].rl))
5469 xcb_ungrab_key(conn, XCB_GRAB_ANY, screens[k].root,
5471 RB_FOREACH(kp, key_tree, &keys) {
5472 if ((code = xcb_key_symbols_get_keycode(syms,
5474 for (j = 0; j < LENGTH(modifiers); j++)
5475 xcb_grab_key(conn, True,
5477 kp->mod | modifiers[j],
5478 *code, XCB_GRAB_MODE_ASYNC,
5479 XCB_GRAB_MODE_ASYNC);
5485 grabbuttons(struct ws_win *win, int focused)
5488 unsigned int modifiers[] =
5489 { 0, LockMask, numlockmask, numlockmask|LockMask };
5491 updatenumlockmask();
5492 xcb_ungrab_button(conn, XCB_BUTTON_INDEX_ANY, win->id,
5493 XCB_BUTTON_MASK_ANY);
5495 for (i = 0; i < LENGTH(buttons); i++)
5496 if (buttons[i].action == client_click)
5497 for (j = 0; j < LENGTH(modifiers); j++)
5498 xcb_grab_button(conn, False, win->id,
5500 XCB_GRAB_MODE_ASYNC,
5507 xcb_grab_button(conn, False, win->id, BUTTONMASK,
5508 XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_SYNC, XCB_WINDOW_NONE,
5509 XCB_CURSOR_NONE, XCB_BUTTON_INDEX_ANY, XCB_BUTTON_MASK_ANY);
5512 const char *quirkname[] = {
5513 "NONE", /* config string for "no value" */
5522 /* SWM_Q_WS: retain '|' for back compat for now (2009-08-11) */
5523 #define SWM_Q_WS "\n|+ \t"
5525 parsequirks(char *qstr, unsigned long *quirk)
5535 while ((name = strsep(&cp, SWM_Q_WS)) != NULL) {
5537 cp += (long)strspn(cp, SWM_Q_WS);
5538 for (i = 0; i < LENGTH(quirkname); i++) {
5539 if (!strncasecmp(name, quirkname[i], SWM_QUIRK_LEN)) {
5540 DNPRINTF(SWM_D_QUIRK,
5541 "parsequirks: %s\n", name);
5546 *quirk |= 1 << (i-1);
5550 if (i >= LENGTH(quirkname)) {
5551 DNPRINTF(SWM_D_QUIRK,
5552 "parsequirks: invalid quirk [%s]\n", name);
5560 quirk_insert(const char *class, const char *name, unsigned long quirk)
5564 DNPRINTF(SWM_D_QUIRK, "quirk_insert: %s:%s [%lu]\n", class, name,
5567 if ((qp = malloc(sizeof *qp)) == NULL)
5568 err(1, "quirk_insert: malloc");
5569 if ((qp->class = strdup(class)) == NULL)
5570 err(1, "quirk_insert: strdup");
5571 if ((qp->name = strdup(name)) == NULL)
5572 err(1, "quirk_insert: strdup");
5575 TAILQ_INSERT_TAIL(&quirks, qp, entry);
5577 DNPRINTF(SWM_D_QUIRK, "quirk_insert: leave\n");
5581 quirk_remove(struct quirk *qp)
5583 DNPRINTF(SWM_D_QUIRK, "quirk_remove: %s:%s [%lu]\n", qp->class,
5584 qp->name, qp->quirk);
5586 TAILQ_REMOVE(&quirks, qp, entry);
5591 DNPRINTF(SWM_D_QUIRK, "quirk_remove: leave\n");
5595 quirk_replace(struct quirk *qp, const char *class, const char *name,
5596 unsigned long quirk)
5598 DNPRINTF(SWM_D_QUIRK, "quirk_replace: %s:%s [%lu]\n", qp->class,
5599 qp->name, qp->quirk);
5602 quirk_insert(class, name, quirk);
5604 DNPRINTF(SWM_D_QUIRK, "quirk_replace: leave\n");
5608 setquirk(const char *class, const char *name, unsigned long quirk)
5612 DNPRINTF(SWM_D_QUIRK, "setquirk: enter %s:%s [%lu]\n", class, name,
5615 TAILQ_FOREACH(qp, &quirks, entry) {
5616 if (!strcmp(qp->class, class) && !strcmp(qp->name, name)) {
5620 quirk_replace(qp, class, name, quirk);
5621 DNPRINTF(SWM_D_QUIRK, "setquirk: leave\n");
5626 warnx("error: setquirk: cannot find class/name combination");
5630 quirk_insert(class, name, quirk);
5631 DNPRINTF(SWM_D_QUIRK, "setquirk: leave\n");
5635 setconfquirk(char *selector, char *value, int flags)
5637 char *cp, *class, *name;
5639 unsigned long quirks;
5640 if (selector == NULL)
5642 if ((cp = strchr(selector, ':')) == NULL)
5647 if ((retval = parsequirks(value, &quirks)) == 0)
5648 setquirk(class, name, quirks);
5655 setquirk("MPlayer", "xv", SWM_Q_FLOAT | SWM_Q_FULLSCREEN | SWM_Q_FOCUSPREV);
5656 setquirk("OpenOffice.org 3.2", "VCLSalFrame", SWM_Q_FLOAT);
5657 setquirk("Firefox-bin", "firefox-bin", SWM_Q_TRANSSZ);
5658 setquirk("Firefox", "Dialog", SWM_Q_FLOAT);
5659 setquirk("Gimp", "gimp", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
5660 setquirk("XTerm", "xterm", SWM_Q_XTERM_FONTADJ);
5661 setquirk("xine", "Xine Window", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
5662 setquirk("Xitk", "Xitk Combo", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
5663 setquirk("xine", "xine Panel", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
5664 setquirk("Xitk", "Xine Window", SWM_Q_FLOAT | SWM_Q_ANYWHERE);
5665 setquirk("xine", "xine Video Fullscreen Window", SWM_Q_FULLSCREEN | SWM_Q_FLOAT);
5666 setquirk("pcb", "pcb", SWM_Q_FLOAT);
5667 setquirk("SDL_App", "SDL_App", SWM_Q_FLOAT | SWM_Q_FULLSCREEN);
5670 /* conf file stuff */
5671 #define SWM_CONF_FILE "spectrwm.conf"
5672 #define SWM_CONF_FILE_OLD "scrotwm.conf"
5676 SWM_S_BAR_AT_BOTTOM,
5677 SWM_S_BAR_BORDER_WIDTH,
5684 SWM_S_CLOCK_ENABLED,
5687 SWM_S_CYCLE_VISIBLE,
5689 SWM_S_DISABLE_BORDER,
5691 SWM_S_FOCUS_CLOSE_WRAP,
5692 SWM_S_FOCUS_DEFAULT,
5698 SWM_S_STACK_ENABLED,
5700 SWM_S_TITLE_CLASS_ENABLED,
5701 SWM_S_TITLE_NAME_ENABLED,
5702 SWM_S_URGENT_ENABLED,
5703 SWM_S_VERBOSE_LAYOUT,
5704 SWM_S_WINDOW_NAME_ENABLED,
5705 SWM_S_WORKSPACE_LIMIT
5709 setconfvalue(char *selector, char *value, int flags)
5715 case SWM_S_BAR_ACTION:
5717 if ((bar_argv[0] = strdup(value)) == NULL)
5718 err(1, "setconfvalue: bar_action");
5720 case SWM_S_BAR_AT_BOTTOM:
5721 bar_at_bottom = atoi(value);
5723 case SWM_S_BAR_BORDER_WIDTH:
5724 bar_border_width = atoi(value);
5725 if (bar_border_width < 0)
5726 bar_border_width = 0;
5728 case SWM_S_BAR_DELAY:
5729 bar_delay = atoi(value);
5731 case SWM_S_BAR_ENABLED:
5732 bar_enabled = atoi(value);
5734 case SWM_S_BAR_FONT:
5736 if (asprintf(&bar_fonts, "%s,%s", value, bar_fonts) == -1)
5737 err(1, "setconfvalue: asprintf: failed to allocate "
5738 "memory for bar_fonts.");
5741 case SWM_S_BAR_FORMAT:
5743 if ((bar_format = strdup(value)) == NULL)
5744 err(1, "setconfvalue: bar_format");
5746 case SWM_S_BAR_JUSTIFY:
5747 if (!strcmp(value, "left"))
5748 bar_justify = SWM_BAR_JUSTIFY_LEFT;
5749 else if (!strcmp(value, "center"))
5750 bar_justify = SWM_BAR_JUSTIFY_CENTER;
5751 else if (!strcmp(value, "right"))
5752 bar_justify = SWM_BAR_JUSTIFY_RIGHT;
5754 errx(1, "invalid bar_justify");
5756 case SWM_S_BORDER_WIDTH:
5757 border_width = atoi(value);
5758 if (border_width < 0)
5761 case SWM_S_CLOCK_ENABLED:
5762 clock_enabled = atoi(value);
5764 case SWM_S_CLOCK_FORMAT:
5765 #ifndef SWM_DENY_CLOCK_FORMAT
5767 if ((clock_format = strdup(value)) == NULL)
5768 err(1, "setconfvalue: clock_format");
5771 case SWM_S_CYCLE_EMPTY:
5772 cycle_empty = atoi(value);
5774 case SWM_S_CYCLE_VISIBLE:
5775 cycle_visible = atoi(value);
5777 case SWM_S_DIALOG_RATIO:
5778 dialog_ratio = atof(value);
5779 if (dialog_ratio > 1.0 || dialog_ratio <= .3)
5782 case SWM_S_DISABLE_BORDER:
5783 disable_border = atoi(value);
5785 case SWM_S_FOCUS_CLOSE:
5786 if (!strcmp(value, "first"))
5787 focus_close = SWM_STACK_BOTTOM;
5788 else if (!strcmp(value, "last"))
5789 focus_close = SWM_STACK_TOP;
5790 else if (!strcmp(value, "next"))
5791 focus_close = SWM_STACK_ABOVE;
5792 else if (!strcmp(value, "previous"))
5793 focus_close = SWM_STACK_BELOW;
5795 errx(1, "focus_close");
5797 case SWM_S_FOCUS_CLOSE_WRAP:
5798 focus_close_wrap = atoi(value);
5800 case SWM_S_FOCUS_DEFAULT:
5801 if (!strcmp(value, "last"))
5802 focus_default = SWM_STACK_TOP;
5803 else if (!strcmp(value, "first"))
5804 focus_default = SWM_STACK_BOTTOM;
5806 errx(1, "focus_default");
5808 case SWM_S_FOCUS_MODE:
5809 if (!strcmp(value, "default"))
5810 focus_mode = SWM_FOCUS_DEFAULT;
5811 else if (!strcmp(value, "follow_cursor"))
5812 focus_mode = SWM_FOCUS_FOLLOW;
5813 else if (!strcmp(value, "synergy"))
5814 focus_mode = SWM_FOCUS_SYNERGY;
5816 errx(1, "focus_mode");
5818 case SWM_S_SPAWN_ORDER:
5819 if (!strcmp(value, "first"))
5820 spawn_position = SWM_STACK_BOTTOM;
5821 else if (!strcmp(value, "last"))
5822 spawn_position = SWM_STACK_TOP;
5823 else if (!strcmp(value, "next"))
5824 spawn_position = SWM_STACK_ABOVE;
5825 else if (!strcmp(value, "previous"))
5826 spawn_position = SWM_STACK_BELOW;
5828 errx(1, "spawn_position");
5830 case SWM_S_SPAWN_TERM:
5831 setconfspawn("term", value, 0);
5832 setconfspawn("spawn_term", value, 0);
5836 case SWM_S_SS_ENABLED:
5837 ss_enabled = atoi(value);
5839 case SWM_S_STACK_ENABLED:
5840 stack_enabled = atoi(value);
5842 case SWM_S_TERM_WIDTH:
5843 term_width = atoi(value);
5847 case SWM_S_TITLE_CLASS_ENABLED:
5848 title_class_enabled = atoi(value);
5850 case SWM_S_TITLE_NAME_ENABLED:
5851 title_name_enabled = atoi(value);
5853 case SWM_S_URGENT_ENABLED:
5854 urgent_enabled = atoi(value);
5856 case SWM_S_VERBOSE_LAYOUT:
5857 verbose_layout = atoi(value);
5858 for (i = 0; layouts[i].l_stack != NULL; i++) {
5860 layouts[i].l_string = fancy_stacker;
5862 layouts[i].l_string = plain_stacker;
5865 case SWM_S_WINDOW_NAME_ENABLED:
5866 window_name_enabled = atoi(value);
5868 case SWM_S_WORKSPACE_LIMIT:
5869 workspace_limit = atoi(value);
5870 if (workspace_limit > SWM_WS_MAX)
5871 workspace_limit = SWM_WS_MAX;
5872 else if (workspace_limit < 1)
5873 workspace_limit = 1;
5882 setconfmodkey(char *selector, char *value, int flags)
5884 if (!strncasecmp(value, "Mod1", strlen("Mod1")))
5885 update_modkey(Mod1Mask);
5886 else if (!strncasecmp(value, "Mod2", strlen("Mod2")))
5887 update_modkey(Mod2Mask);
5888 else if (!strncasecmp(value, "Mod3", strlen("Mod3")))
5889 update_modkey(Mod3Mask);
5890 else if (!strncasecmp(value, "Mod4", strlen("Mod4")))
5891 update_modkey(Mod4Mask);
5898 setconfcolor(char *selector, char *value, int flags)
5900 setscreencolor(value, ((selector == NULL)?-1:atoi(selector)), flags);
5905 setconfregion(char *selector, char *value, int flags)
5907 custom_region(value);
5912 setautorun(char *selector, char *value, int flags)
5922 if (getenv("SWM_STARTED"))
5926 if (sscanf(value, "ws[%d]:%1023c", &ws_id, s) != 2)
5927 errx(1, "invalid autorun entry, should be 'ws[<idx>]:command'");
5929 if (ws_id < 0 || ws_id >= workspace_limit)
5930 errx(1, "autorun: invalid workspace %d", ws_id + 1);
5933 * This is a little intricate
5935 * If the pid already exists we simply reuse it because it means it was
5936 * used before AND not claimed by manage_window. We get away with
5937 * altering it in the parent after INSERT because this can not be a race
5940 while ((ap = strsep(&sp, " \t")) != NULL) {
5943 DNPRINTF(SWM_D_SPAWN, "setautorun: arg [%s]\n", ap);
5945 if ((a.argv = realloc(a.argv, argc * sizeof(char *))) == NULL)
5946 err(1, "setautorun: realloc");
5947 a.argv[argc - 1] = ap;
5950 if ((a.argv = realloc(a.argv, (argc + 1) * sizeof(char *))) == NULL)
5951 err(1, "setautorun: realloc");
5952 a.argv[argc] = NULL;
5954 if ((pid = fork()) == 0) {
5955 spawn(ws_id, &a, 1);
5964 p = calloc(1, sizeof *p);
5967 TAILQ_INSERT_TAIL(&pidlist, p, entry);
5977 setlayout(char *selector, char *value, int flags)
5979 int ws_id, i, x, mg, ma, si, raise, f = 0;
5980 int st = SWM_V_STACK, num_screens;
5982 struct workspace *ws;
5984 if (getenv("SWM_STARTED"))
5988 if (sscanf(value, "ws[%d]:%d:%d:%d:%d:%1023c",
5989 &ws_id, &mg, &ma, &si, &raise, s) != 6)
5990 errx(1, "invalid layout entry, should be 'ws[<idx>]:"
5991 "<master_grow>:<master_add>:<stack_inc>:<always_raise>:"
5994 if (ws_id < 0 || ws_id >= workspace_limit)
5995 errx(1, "layout: invalid workspace %d", ws_id + 1);
5997 if (!strcasecmp(s, "vertical"))
5999 else if (!strcasecmp(s, "vertical_flip")) {
6002 } else if (!strcasecmp(s, "horizontal"))
6004 else if (!strcasecmp(s, "horizontal_flip")) {
6007 } else if (!strcasecmp(s, "fullscreen"))
6010 errx(1, "invalid layout entry, should be 'ws[<idx>]:"
6011 "<master_grow>:<master_add>:<stack_inc>:<always_raise>:"
6014 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
6015 for (i = 0; i < num_screens; i++) {
6016 ws = (struct workspace *)&screens[i].ws;
6017 ws[ws_id].cur_layout = &layouts[st];
6019 ws[ws_id].always_raise = raise;
6020 if (st == SWM_MAX_STACK)
6024 for (x = 0; x < abs(mg); x++) {
6025 ws[ws_id].cur_layout->l_config(&ws[ws_id],
6026 mg >= 0 ? SWM_ARG_ID_MASTERGROW :
6027 SWM_ARG_ID_MASTERSHRINK);
6031 for (x = 0; x < abs(ma); x++) {
6032 ws[ws_id].cur_layout->l_config(&ws[ws_id],
6033 ma >= 0 ? SWM_ARG_ID_MASTERADD :
6034 SWM_ARG_ID_MASTERDEL);
6038 for (x = 0; x < abs(si); x++) {
6039 ws[ws_id].cur_layout->l_config(&ws[ws_id],
6040 si >= 0 ? SWM_ARG_ID_STACKINC :
6041 SWM_ARG_ID_STACKDEC);
6046 ws[ws_id].cur_layout->l_config(&ws[ws_id],
6047 SWM_ARG_ID_FLIPLAYOUT);
6055 /* config options */
6056 struct config_option {
6058 int (*func)(char*, char*, int);
6061 struct config_option configopt[] = {
6062 { "bar_enabled", setconfvalue, SWM_S_BAR_ENABLED },
6063 { "bar_at_bottom", setconfvalue, SWM_S_BAR_AT_BOTTOM },
6064 { "bar_border", setconfcolor, SWM_S_COLOR_BAR_BORDER },
6065 { "bar_border_width", setconfvalue, SWM_S_BAR_BORDER_WIDTH },
6066 { "bar_color", setconfcolor, SWM_S_COLOR_BAR },
6067 { "bar_font_color", setconfcolor, SWM_S_COLOR_BAR_FONT },
6068 { "bar_font", setconfvalue, SWM_S_BAR_FONT },
6069 { "bar_action", setconfvalue, SWM_S_BAR_ACTION },
6070 { "bar_delay", setconfvalue, SWM_S_BAR_DELAY },
6071 { "bar_justify", setconfvalue, SWM_S_BAR_JUSTIFY },
6072 { "bar_format", setconfvalue, SWM_S_BAR_FORMAT },
6073 { "keyboard_mapping", setkeymapping, 0 },
6074 { "bind", setconfbinding, 0 },
6075 { "stack_enabled", setconfvalue, SWM_S_STACK_ENABLED },
6076 { "clock_enabled", setconfvalue, SWM_S_CLOCK_ENABLED },
6077 { "clock_format", setconfvalue, SWM_S_CLOCK_FORMAT },
6078 { "color_focus", setconfcolor, SWM_S_COLOR_FOCUS },
6079 { "color_unfocus", setconfcolor, SWM_S_COLOR_UNFOCUS },
6080 { "cycle_empty", setconfvalue, SWM_S_CYCLE_EMPTY },
6081 { "cycle_visible", setconfvalue, SWM_S_CYCLE_VISIBLE },
6082 { "workspace_limit", setconfvalue, SWM_S_WORKSPACE_LIMIT },
6083 { "dialog_ratio", setconfvalue, SWM_S_DIALOG_RATIO },
6084 { "verbose_layout", setconfvalue, SWM_S_VERBOSE_LAYOUT },
6085 { "modkey", setconfmodkey, 0 },
6086 { "program", setconfspawn, 0 },
6087 { "quirk", setconfquirk, 0 },
6088 { "region", setconfregion, 0 },
6089 { "spawn_term", setconfvalue, SWM_S_SPAWN_TERM },
6090 { "screenshot_enabled", setconfvalue, SWM_S_SS_ENABLED },
6091 { "screenshot_app", setconfvalue, SWM_S_SS_APP },
6092 { "window_name_enabled", setconfvalue, SWM_S_WINDOW_NAME_ENABLED },
6093 { "urgent_enabled", setconfvalue, SWM_S_URGENT_ENABLED },
6094 { "term_width", setconfvalue, SWM_S_TERM_WIDTH },
6095 { "title_class_enabled", setconfvalue, SWM_S_TITLE_CLASS_ENABLED },
6096 { "title_name_enabled", setconfvalue, SWM_S_TITLE_NAME_ENABLED },
6097 { "focus_mode", setconfvalue, SWM_S_FOCUS_MODE },
6098 { "focus_close", setconfvalue, SWM_S_FOCUS_CLOSE },
6099 { "focus_close_wrap", setconfvalue, SWM_S_FOCUS_CLOSE_WRAP },
6100 { "focus_default", setconfvalue, SWM_S_FOCUS_DEFAULT },
6101 { "spawn_position", setconfvalue, SWM_S_SPAWN_ORDER },
6102 { "disable_border", setconfvalue, SWM_S_DISABLE_BORDER },
6103 { "border_width", setconfvalue, SWM_S_BORDER_WIDTH },
6104 { "autorun", setautorun, 0 },
6105 { "layout", setlayout, 0 },
6110 conf_load(char *filename, int keymapping)
6113 char *line, *cp, *optsub, *optval;
6114 size_t linelen, lineno = 0;
6115 int wordlen, i, optind;
6116 struct config_option *opt;
6118 DNPRINTF(SWM_D_CONF, "conf_load: begin\n");
6120 if (filename == NULL) {
6121 warnx("conf_load: no filename");
6124 if ((config = fopen(filename, "r")) == NULL) {
6125 warn("conf_load: fopen: %s", filename);
6129 while (!feof(config)) {
6130 if ((line = fparseln(config, &linelen, &lineno, NULL, 0))
6133 err(1, "%s", filename);
6138 cp += strspn(cp, " \t\n"); /* eat whitespace */
6139 if (cp[0] == '\0') {
6144 /* get config option */
6145 wordlen = strcspn(cp, "=[ \t\n");
6147 warnx("%s: line %zd: no option found",
6152 for (i = 0; i < LENGTH(configopt); i++) {
6153 opt = &configopt[i];
6154 if (!strncasecmp(cp, opt->optname, wordlen) &&
6155 (int)strlen(opt->optname) == wordlen) {
6161 warnx("%s: line %zd: unknown option %.*s",
6162 filename, lineno, wordlen, cp);
6165 if (keymapping && strcmp(opt->optname, "bind")) {
6166 warnx("%s: line %zd: invalid option %.*s",
6167 filename, lineno, wordlen, cp);
6171 cp += strspn(cp, " \t\n"); /* eat whitespace */
6172 /* get [selector] if any */
6176 wordlen = strcspn(cp, "]");
6179 warnx("%s: line %zd: syntax error",
6184 if (asprintf(&optsub, "%.*s", wordlen, cp) ==
6186 warnx("%s: line %zd: unable to allocate"
6187 "memory for selector", filename,
6193 cp += strspn(cp, "] \t\n"); /* eat trailing */
6195 cp += strspn(cp, "= \t\n"); /* eat trailing */
6197 optval = strdup(cp);
6198 /* call function to deal with it all */
6199 if (configopt[optind].func(optsub, optval,
6200 configopt[optind].funcflags) != 0)
6201 errx(1, "%s: line %zd: invalid data for %s",
6202 filename, lineno, configopt[optind].optname);
6209 DNPRINTF(SWM_D_CONF, "conf_load: end\n");
6216 DNPRINTF(SWM_D_CONF, "conf_load: end with error.\n");
6222 set_child_transient(struct ws_win *win, xcb_window_t *trans)
6224 struct ws_win *parent, *w;
6225 struct swm_region *r;
6226 struct workspace *ws;
6227 xcb_icccm_wm_hints_t wmh;
6229 parent = find_window(win->transient);
6231 parent->child_trans = win;
6233 DNPRINTF(SWM_D_MISC, "set_child_transient: parent doesn't exist"
6234 " for 0x%x trans 0x%x\n", win->id, win->transient);
6236 r = root_to_region(win->wa->root);
6238 /* parent doen't exist in our window list */
6239 TAILQ_FOREACH(w, &ws->winlist, entry) {
6240 if (xcb_icccm_get_wm_hints_reply(conn,
6241 xcb_icccm_get_wm_hints(conn, w->id),
6243 warnx("can't get hints for 0x%x", w->id);
6247 if (win->hints.window_group != wmh.window_group)
6250 w->child_trans = win;
6251 win->transient = w->id;
6253 DNPRINTF(SWM_D_MISC, "set_child_transient: adjusting "
6254 "transient to 0x%x\n", win->transient);
6261 window_get_pid(xcb_window_t win)
6266 xcb_get_property_cookie_t pc;
6267 xcb_get_property_reply_t *pr;
6269 apid = get_atom_from_string("_NET_WM_PID");
6270 if (apid == XCB_ATOM_NONE)
6273 pc = xcb_get_property(conn, False, win, apid, XCB_ATOM_CARDINAL, 0, 1);
6274 pr = xcb_get_property_reply(conn, pc, NULL);
6277 if (pr->type != XCB_ATOM_CARDINAL) {
6282 ret = *((pid_t *)xcb_get_property_value(pr));
6288 apid = get_atom_from_string("_SWM_PID");
6289 pc = xcb_get_property(conn, False, win, apid, XCB_ATOM_STRING,
6291 pr = xcb_get_property_reply(conn, pc, NULL);
6294 if (pr->type != XCB_ATOM_STRING) {
6299 ret = (pid_t)strtonum(xcb_get_property_value(pr), 0, INT_MAX, &errstr);
6306 manage_window(xcb_window_t id)
6308 xcb_window_t trans = XCB_WINDOW_NONE;
6309 struct workspace *ws;
6310 struct ws_win *win, *ww;
6311 int ws_idx, border_me = 0;
6312 xcb_atom_t ws_idx_atom = XCB_ATOM_NONE;
6313 char ws_idx_str[SWM_PROPLEN], *prop = NULL;
6315 struct swm_region *r;
6319 uint32_t event_mask, i;
6321 xcb_get_property_reply_t *gpr;
6322 xcb_icccm_get_wm_protocols_reply_t wpr;
6324 if ((win = find_window(id)) != NULL)
6325 return (win); /* already being managed */
6327 /* see if we are on the unmanaged list */
6328 if ((win = find_unmanaged_window(id)) != NULL) {
6329 DNPRINTF(SWM_D_MISC, "manage_window: previously unmanaged "
6330 "window: 0x%x\n", win->id);
6331 TAILQ_REMOVE(&win->ws->unmanagedlist, win, entry);
6333 set_child_transient(win, &trans);
6335 if (trans && (ww = find_window(trans)))
6336 TAILQ_INSERT_AFTER(&win->ws->winlist, ww, win, entry);
6337 else if ((ww = win->ws->focus) &&
6338 spawn_position == SWM_STACK_ABOVE)
6339 TAILQ_INSERT_AFTER(&win->ws->winlist, win->ws->focus,
6341 else if (ww && spawn_position == SWM_STACK_BELOW)
6342 TAILQ_INSERT_BEFORE(win->ws->focus, win, entry);
6343 else switch (spawn_position) {
6346 case SWM_STACK_ABOVE:
6347 TAILQ_INSERT_TAIL(&win->ws->winlist, win, entry);
6349 case SWM_STACK_BOTTOM:
6350 case SWM_STACK_BELOW:
6351 TAILQ_INSERT_HEAD(&win->ws->winlist, win, entry);
6354 ewmh_update_actions(win);
6358 if ((win = calloc(1, sizeof(struct ws_win))) == NULL)
6359 err(1, "manage_window: calloc: failed to allocate memory for "
6365 /* see if we need to override the workspace */
6366 p = find_pid(window_get_pid(id));
6368 /* Get all the window data in one shot */
6369 ws_idx_atom = get_atom_from_string("_SWM_WS");
6371 gpr = xcb_get_property_reply(conn,
6372 xcb_get_property(conn, False, id, ws_idx_atom,
6373 XCB_ATOM_STRING, 0, SWM_PROPLEN),
6376 proplen = xcb_get_property_value_length(gpr);
6378 prop = malloc(proplen + 1);
6381 xcb_get_property_value(gpr),
6383 prop[proplen] = '\0';
6389 win->wa = xcb_get_geometry_reply(conn,
6390 xcb_get_geometry(conn, id),
6392 xcb_icccm_get_wm_normal_hints_reply(conn,
6393 xcb_icccm_get_wm_normal_hints(conn, id),
6395 xcb_icccm_get_wm_hints_reply(conn,
6396 xcb_icccm_get_wm_hints(conn, id),
6398 xcb_icccm_get_wm_transient_for_reply(conn,
6399 xcb_icccm_get_wm_transient_for(conn, id),
6402 win->transient = trans;
6403 set_child_transient(win, &trans);
6404 DNPRINTF(SWM_D_MISC, "manage_window: window: 0x%x, "
6405 "transient: 0x%x\n", win->id, win->transient);
6408 prot = get_atom_from_string("WM_PROTOCOLS");
6410 /* get supported protocols */
6411 if (xcb_icccm_get_wm_protocols_reply(conn,
6412 xcb_icccm_get_wm_protocols(conn, id, prot),
6414 for (i = 0; i < wpr.atoms_len; i++) {
6415 if (wpr.atoms[i] == a_takefocus)
6416 win->take_focus = 1;
6417 if (wpr.atoms[i] == a_delete)
6418 win->can_delete = 1;
6420 xcb_icccm_get_wm_protocols_reply_wipe(&wpr);
6423 win->iconic = get_iconic(win);
6426 * Figure out where to put the window. If it was previously assigned to
6427 * a workspace (either by spawn() or manually moving), and isn't
6428 * transient, * put it in the same workspace
6430 r = root_to_region(win->wa->root);
6432 ws = &r->s->ws[p->ws];
6433 TAILQ_REMOVE(&pidlist, p, entry);
6436 } else if (prop && win->transient == 0) {
6437 DNPRINTF(SWM_D_PROP, "manage_window: get _SWM_WS: %s\n", prop);
6438 ws_idx = (int)strtonum(prop, 0, workspace_limit - 1,
6441 DNPRINTF(SWM_D_EVENT, "manage_window: window: #%s: %s",
6444 ws = &r->s->ws[ws_idx];
6447 /* this should launch transients in the same ws as parent */
6449 if ((ww = find_window(trans)) != NULL)
6455 warnx("manage_window: fix this "
6461 /* set up the window layout */
6464 win->s = r->s; /* this never changes */
6465 if (trans && (ww = find_window(trans)))
6466 TAILQ_INSERT_AFTER(&ws->winlist, ww, win, entry);
6467 else if (win->ws->focus && spawn_position == SWM_STACK_ABOVE)
6468 TAILQ_INSERT_AFTER(&win->ws->winlist, win->ws->focus, win,
6470 else if (win->ws->focus && spawn_position == SWM_STACK_BELOW)
6471 TAILQ_INSERT_BEFORE(win->ws->focus, win, entry);
6472 else switch (spawn_position) {
6475 case SWM_STACK_ABOVE:
6476 TAILQ_INSERT_TAIL(&win->ws->winlist, win, entry);
6478 case SWM_STACK_BOTTOM:
6479 case SWM_STACK_BELOW:
6480 TAILQ_INSERT_HEAD(&win->ws->winlist, win, entry);
6483 /* ignore window border if there is one. */
6484 WIDTH(win) = win->wa->width;
6485 HEIGHT(win) = win->wa->height;
6486 X(win) = win->wa->x + win->wa->border_width;
6487 Y(win) = win->wa->y + win->wa->border_width;
6489 win->g_floatvalid = 0;
6490 win->floatmaxed = 0;
6491 win->ewmh_flags = 0;
6493 DNPRINTF(SWM_D_MISC, "manage_window: window: 0x%x, (x,y) w x h: "
6494 "(%d,%d) %d x %d, ws: %d\n", win->id, X(win), Y(win), WIDTH(win),
6495 HEIGHT(win), ws->idx);
6497 constrain_window(win, r, 0);
6499 /* Set window properties so we can remember this after reincarnation */
6500 if (ws_idx_atom && prop == NULL &&
6501 snprintf(ws_idx_str, SWM_PROPLEN, "%d", ws->idx) <
6503 DNPRINTF(SWM_D_PROP, "manage_window: set _SWM_WS: %s\n",
6505 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win->id,
6506 ws_idx_atom, XCB_ATOM_STRING, 8, strlen(ws_idx_str),
6512 ewmh_autoquirk(win);
6514 if (xcb_icccm_get_wm_class_reply(conn,
6515 xcb_icccm_get_wm_class(conn, win->id),
6517 DNPRINTF(SWM_D_CLASS, "manage_window: class: %s, name: %s\n",
6518 win->ch.class_name, win->ch.instance_name);
6520 /* java is retarded so treat it special */
6521 if (strstr(win->ch.instance_name, "sun-awt")) {
6526 TAILQ_FOREACH(qp, &quirks, entry) {
6527 if (!strcmp(win->ch.class_name, qp->class) &&
6528 !strcmp(win->ch.instance_name, qp->name)) {
6529 DNPRINTF(SWM_D_CLASS, "manage_window: found: "
6530 "class: %s, name: %s\n", win->ch.class_name,
6531 win->ch.instance_name);
6532 if (qp->quirk & SWM_Q_FLOAT) {
6536 win->quirks = qp->quirk;
6541 /* alter window position if quirky */
6542 if (win->quirks & SWM_Q_ANYWHERE) {
6543 win->manual = 1; /* don't center the quirky windows */
6544 if (bar_enabled && Y(win) < bar_height)
6545 Y(win) = bar_height;
6546 if (WIDTH(win) + X(win) > WIDTH(r))
6547 X(win) = WIDTH(r) - WIDTH(win) - 2;
6551 /* Reset font sizes (the bruteforce way; no default keybinding). */
6552 if (win->quirks & SWM_Q_XTERM_FONTADJ) {
6553 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
6554 fake_keypress(win, XK_KP_Subtract, ShiftMask);
6555 for (i = 0; i < SWM_MAX_FONT_STEPS; i++)
6556 fake_keypress(win, XK_KP_Add, ShiftMask);
6559 ewmh_get_win_state(win);
6560 ewmh_update_actions(win);
6561 ewmh_update_win_state(win, None, _NET_WM_STATE_REMOVE);
6566 X(win) -= border_width;
6567 Y(win) -= border_width;
6571 event_mask = XCB_EVENT_MASK_ENTER_WINDOW | XCB_EVENT_MASK_FOCUS_CHANGE |
6572 XCB_EVENT_MASK_PROPERTY_CHANGE | XCB_EVENT_MASK_STRUCTURE_NOTIFY;
6574 xcb_change_window_attributes(conn, id, XCB_CW_EVENT_MASK, &event_mask);
6576 /* floaters need to be mapped if they are in the current workspace */
6577 if ((win->floating || win->transient) && (ws->idx == r->ws->idx))
6578 map_window_raised(win->id);
6584 free_window(struct ws_win *win)
6586 DNPRINTF(SWM_D_MISC, "free_window: window: 0x%x\n", win->id);
6591 TAILQ_REMOVE(&win->ws->unmanagedlist, win, entry);
6596 xcb_icccm_get_wm_class_reply_wipe(&win->ch);
6601 memset(win, 0xff, sizeof *win); /* XXX kill later */
6604 DNPRINTF(SWM_D_MISC, "free_window: done\n");
6608 unmanage_window(struct ws_win *win)
6610 struct ws_win *parent;
6611 xcb_screen_t *screen;
6616 DNPRINTF(SWM_D_MISC, "unmanage_window: window: 0x%x\n", win->id);
6618 if (win->transient) {
6619 parent = find_window(win->transient);
6621 parent->child_trans = NULL;
6624 /* focus on root just in case */
6625 screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
6626 xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT,
6627 screen->root, XCB_CURRENT_TIME);
6631 TAILQ_REMOVE(&win->ws->winlist, win, entry);
6632 TAILQ_INSERT_TAIL(&win->ws->unmanagedlist, win, entry);
6636 focus_magic(struct ws_win *win)
6638 DNPRINTF(SWM_D_FOCUS, "focus_magic: window: 0x%x\n", WINID(win));
6641 /* if there are no windows clear the status-bar */
6646 if (win->child_trans) {
6647 /* win = parent & has a transient so focus on that */
6649 focus_win(win->child_trans);
6650 if (win->child_trans->take_focus)
6651 client_msg(win, a_takefocus);
6653 /* make sure transient hasn't disappeared */
6654 if (validate_win(win->child_trans) == 0) {
6655 focus_win(win->child_trans);
6656 if (win->child_trans->take_focus)
6657 client_msg(win->child_trans,
6660 win->child_trans = NULL;
6662 if (win->take_focus)
6663 client_msg(win, a_takefocus);
6669 if (win->take_focus)
6670 client_msg(win, a_takefocus);
6675 expose(xcb_expose_event_t *e)
6678 struct swm_region *r;
6680 DNPRINTF(SWM_D_EVENT, "expose: window: 0x%x\n", e->window);
6682 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
6683 for (i = 0; i < num_screens; i++)
6684 TAILQ_FOREACH(r, &screens[i].rl, entry)
6685 if (e->window == WINID(r->bar))
6692 keypress(xcb_key_press_event_t *e)
6694 xcb_keysym_t keysym;
6697 keysym = xcb_key_press_lookup_keysym(syms, e, 0);
6699 DNPRINTF(SWM_D_EVENT, "keypress: %u %u\n", e->detail, keysym);
6701 if ((kp = key_lookup(CLEANMASK(e->state), keysym)) == NULL)
6704 if (kp->funcid == KF_SPAWN_CUSTOM)
6705 spawn_custom(root_to_region(e->root),
6706 &(keyfuncs[kp->funcid].args), kp->spawn_name);
6707 else if (keyfuncs[kp->funcid].func)
6708 keyfuncs[kp->funcid].func(root_to_region(e->root),
6709 &(keyfuncs[kp->funcid].args));
6713 buttonpress(xcb_button_press_event_t *e)
6717 unsigned int action;
6719 DNPRINTF(SWM_D_EVENT, "buttonpress: window 0x%x, detail: %u\n",
6720 e->event, e->detail);
6722 if ((win = find_window(e->event)) == NULL)
6726 action = client_click;
6728 for (i = 0; i < LENGTH(buttons); i++)
6729 if (action == buttons[i].action && buttons[i].func &&
6730 buttons[i].button == e->detail &&
6731 CLEANMASK(buttons[i].mask) == CLEANMASK(e->state))
6732 buttons[i].func(win, &buttons[i].args);
6739 print_win_geom(xcb_window_t w)
6741 xcb_get_geometry_reply_t *wa;
6744 wa = xcb_get_geometry_reply(conn, xcb_get_geometry(conn, w), NULL);
6746 DNPRINTF(SWM_D_MISC, "print_win_geom: window: 0x%x, root: 0x%x, "
6747 "depth: %u, (x,y) w x h: (%d,%d) %d x %d, border: %d\n",
6748 w, wa->root, wa->depth, wa->x, wa->y, wa->width, wa->height,
6756 configurerequest(xcb_configure_request_event_t *e)
6761 uint32_t wc[7] = {0};
6763 if ((win = find_window(e->window)) == NULL)
6764 if ((win = find_unmanaged_window(e->window)) == NULL)
6767 print_win_geom(e->window);
6770 DNPRINTF(SWM_D_EVENT, "configurerequest: new window: 0x%x, "
6771 "value_mask: 0x%x", e->window, e->value_mask);
6772 if (e->value_mask & XCB_CONFIG_WINDOW_X) {
6773 mask |= XCB_CONFIG_WINDOW_X;
6775 DPRINTF(", X: %d", e->x);
6777 if (e->value_mask & XCB_CONFIG_WINDOW_Y) {
6778 mask |= XCB_CONFIG_WINDOW_Y;
6780 DPRINTF(", Y: %d", e->y);
6782 if (e->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
6783 mask |= XCB_CONFIG_WINDOW_WIDTH;
6785 DPRINTF(", W: %u", e->width);
6787 if (e->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
6788 mask |= XCB_CONFIG_WINDOW_HEIGHT;
6789 wc[i++] = e->height;
6790 DPRINTF(", H: %u", e->height);
6792 if (e->value_mask & XCB_CONFIG_WINDOW_BORDER_WIDTH) {
6793 mask |= XCB_CONFIG_WINDOW_BORDER_WIDTH;
6794 wc[i++] = e->border_width;
6795 DPRINTF(", Border: %u", e->border_width);
6797 if (e->value_mask & XCB_CONFIG_WINDOW_SIBLING) {
6798 mask |= XCB_CONFIG_WINDOW_SIBLING;
6799 wc[i++] = e->sibling;
6800 DPRINTF(", Sibling: 0x%x", e->sibling);
6802 if (e->value_mask & XCB_CONFIG_WINDOW_STACK_MODE) {
6803 mask |= XCB_CONFIG_WINDOW_STACK_MODE;
6804 wc[i++] = e->stack_mode;
6805 DPRINTF(", StackMode: %u", e->stack_mode);
6809 xcb_configure_window(conn, e->window, mask, wc);
6811 DPRINTF(", Sent: %s\n", YESNO((mask != 0)));
6812 } else if ((!win->manual || win->quirks & SWM_Q_ANYWHERE) &&
6813 !(win->ewmh_flags & EWMH_F_FULLSCREEN)) {
6814 win->g_float.x = e->x - X(win->ws->r);
6815 win->g_float.y = e->y - Y(win->ws->r);
6816 win->g_float.w = e->width;
6817 win->g_float.h = e->height;
6818 win->g_floatvalid = 1;
6820 if (win->floating) {
6821 win->g = win->g_float;
6822 win->g.x += X(win->ws->r);
6823 win->g.y += Y(win->ws->r);
6836 configurenotify(xcb_configure_notify_event_t *e)
6840 DNPRINTF(SWM_D_EVENT, "configurenotify: window: 0x%x\n",
6843 win = find_window(e->window);
6845 xcb_icccm_get_wm_normal_hints_reply(conn,
6846 xcb_icccm_get_wm_normal_hints(conn, win->id),
6855 destroynotify(xcb_destroy_notify_event_t *e)
6859 DNPRINTF(SWM_D_EVENT, "destroynotify: window: 0x%x\n", e->window);
6861 if ((win = find_window(e->window)) == NULL) {
6862 if ((win = find_unmanaged_window(e->window)) == NULL)
6868 /* make sure we focus on something */
6871 unmanage_window(win);
6877 enternotify(xcb_enter_notify_event_t *e)
6880 DNPRINTF(SWM_D_FOCUS, "enternotify: window: 0x%x, mode: %d, detail: "
6881 "%d, root: 0x%x, subwindow: 0x%x, same_screen_focus: %s, "
6882 "state: %d\n", e->event, e->mode, e->detail, e->root,
6883 e->child, YESNO(e->same_screen_focus), e->state);
6885 if (e->mode != XCB_NOTIFY_MODE_NORMAL) {
6886 DNPRINTF(SWM_D_EVENT, "skip enternotify: generated by "
6891 switch (focus_mode) {
6892 case SWM_FOCUS_DEFAULT:
6894 case SWM_FOCUS_FOLLOW:
6896 case SWM_FOCUS_SYNERGY:
6900 if ((win = find_window(e->event)) == NULL) {
6901 DNPRINTF(SWM_D_EVENT, "skip enternotify: window is NULL\n");
6910 /* lets us use one switch statement for arbitrary mode/detail combinations */
6911 #define MERGE_MEMBERS(a,b) (((a & 0xffff) << 16) | (b & 0xffff))
6914 mapnotify(xcb_map_notify_event_t *e)
6918 DNPRINTF(SWM_D_EVENT, "mapnotify: window: 0x%x\n", e->window);
6920 win = manage_window(e->window);
6922 set_win_state(win, XCB_ICCCM_WM_STATE_NORMAL);
6925 * focus_win can only set input focus on a mapped window.
6926 * make sure the window really has focus since it is just being mapped.
6928 if (win->ws->focus == win)
6933 mappingnotify(xcb_mapping_notify_event_t *e)
6935 xcb_refresh_keyboard_mapping(syms, e);
6937 if (e->request == XCB_MAPPING_KEYBOARD)
6942 maprequest(xcb_map_request_event_t *e)
6945 struct swm_region *r;
6946 xcb_get_window_attributes_reply_t *war;
6948 DNPRINTF(SWM_D_EVENT, "maprequest: window: 0x%x\n",
6951 war = xcb_get_window_attributes_reply(conn,
6952 xcb_get_window_attributes(conn, e->window),
6956 if (war->override_redirect) {
6962 win = manage_window(e->window);
6964 return; /* can't happen */
6969 /* make new win focused */
6970 r = root_to_region(win->wa->root);
6971 if (win->ws == r->ws)
6977 get_atom_name(xcb_atom_t atom)
6981 xcb_get_atom_name_reply_t *r;
6982 xcb_map_request_event_t mre;
6984 r = xcb_get_atom_name_reply(conn,
6985 xcb_get_atom_name(conn, atom),
6988 len = xcb_get_atom_name_name_length(r);
6990 name = malloc(len + 1);
6992 memcpy(name, xcb_get_atom_name_name(r), len);
7006 propertynotify(xcb_property_notify_event_t *e)
7012 name = get_atom_name(e->atom);
7013 DNPRINTF(SWM_D_EVENT, "propertynotify: window: 0x%x, atom: %s(%u)\n",
7014 e->window, name, e->atom);
7018 win = find_window(e->window);
7022 if (e->state == XCB_PROPERTY_DELETE && e->atom == a_swm_iconic) {
7023 update_iconic(win, 0);
7024 map_window_raised(win->id);
7031 case XCB_ATOM_WM_CLASS:
7032 case XCB_ATOM_WM_NAME:
7041 unmapnotify(xcb_unmap_notify_event_t *e)
7045 DNPRINTF(SWM_D_EVENT, "unmapnotify: window: 0x%x\n", e->window);
7047 /* determine if we need to help unmanage this window */
7048 win = find_window(e->window);
7052 if (getstate(e->window) == XCB_ICCCM_WM_STATE_NORMAL) {
7053 unmanage_window(win);
7056 /* resend unmap because we ated it */
7057 xcb_unmap_window(conn, e->window);
7063 visibilitynotify(xcb_visibility_notify_event_t *e)
7065 DNPRINTF(SWM_D_EVENT, "visibilitynotify: window: 0x%x\n",
7070 clientmessage(xcb_client_message_event_t *e)
7073 xcb_map_request_event_t mre;
7077 name = get_atom_name(e->type);
7078 DNPRINTF(SWM_D_EVENT, "clientmessage: window: 0x%x, atom: %s(%u)\n",
7079 e->window, name, e->type);
7082 win = find_window(e->window);
7085 if (e->type == ewmh[_NET_ACTIVE_WINDOW].atom) {
7086 DNPRINTF(SWM_D_EVENT, "clientmessage: request focus on "
7087 "unmanaged window.\n");
7088 mre.window = e->window;
7094 if (e->type == ewmh[_NET_ACTIVE_WINDOW].atom) {
7095 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_ACTIVE_WINDOW\n");
7098 if (e->type == ewmh[_NET_CLOSE_WINDOW].atom) {
7099 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_CLOSE_WINDOW\n");
7100 if (win->can_delete)
7101 client_msg(win, a_delete);
7103 xcb_kill_client(conn, win->id);
7105 if (e->type == ewmh[_NET_MOVERESIZE_WINDOW].atom) {
7106 DNPRINTF(SWM_D_EVENT,
7107 "clientmessage: _NET_MOVERESIZE_WINDOW\n");
7108 if (win->floating) {
7109 if (e->data.data32[0] & (1<<8)) /* x */
7110 X(win) = e->data.data32[1];
7111 if (e->data.data32[0] & (1<<9)) /* y */
7112 Y(win) = e->data.data32[2];
7113 if (e->data.data32[0] & (1<<10)) /* width */
7114 WIDTH(win) = e->data.data32[3];
7115 if (e->data.data32[0] & (1<<11)) /* height */
7116 HEIGHT(win) = e->data.data32[4];
7121 /* TODO: Change stack sizes */
7122 /* notify no change was made. */
7123 config_win(win, NULL);
7126 if (e->type == ewmh[_NET_WM_STATE].atom) {
7127 DNPRINTF(SWM_D_EVENT, "clientmessage: _NET_WM_STATE\n");
7128 ewmh_update_win_state(win, e->data.data32[1], e->data.data32[0]);
7129 if (e->data.data32[2])
7130 ewmh_update_win_state(win, e->data.data32[2],
7143 const uint32_t val = XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT;
7145 xcb_void_cookie_t wac;
7146 xcb_generic_error_t *error;
7148 /* this causes an error if some other window manager is running */
7149 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7150 for (i = 0; i < num_screens; i++) {
7152 DNPRINTF(SWM_D_INIT, "enable_wm: screen %d, root: 0x%x\n",
7154 wac = xcb_change_window_attributes_checked(conn, sc->root,
7155 XCB_CW_EVENT_MASK, &val);
7156 if ((error = xcb_request_check(conn, wac))) {
7157 DNPRINTF(SWM_D_INIT, "enable_wm: error_code: %u\n",
7168 new_region(struct swm_screen *s, int x, int y, int w, int h)
7170 struct swm_region *r, *n;
7171 struct workspace *ws = NULL;
7174 DNPRINTF(SWM_D_MISC, "new region: screen[%d]:%dx%d+%d+%d\n",
7175 s->idx, w, h, x, y);
7177 /* remove any conflicting regions */
7178 n = TAILQ_FIRST(&s->rl);
7181 n = TAILQ_NEXT(r, entry);
7182 if (X(r) < (x + w) &&
7183 (X(r) + WIDTH(r)) > x &&
7185 (Y(r) + HEIGHT(r)) > y) {
7186 if (r->ws->r != NULL)
7187 r->ws->old_r = r->ws->r;
7190 TAILQ_REMOVE(&s->rl, r, entry);
7191 TAILQ_INSERT_TAIL(&s->orl, r, entry);
7195 /* search old regions for one to reuse */
7197 /* size + location match */
7198 TAILQ_FOREACH(r, &s->orl, entry)
7199 if (X(r) == x && Y(r) == y &&
7200 HEIGHT(r) == h && WIDTH(r) == w)
7204 TAILQ_FOREACH(r, &s->orl, entry)
7205 if (HEIGHT(r) == h && WIDTH(r) == w)
7209 TAILQ_REMOVE(&s->orl, r, entry);
7210 /* try to use old region's workspace */
7211 if (r->ws->r == NULL)
7214 if ((r = calloc(1, sizeof(struct swm_region))) == NULL)
7215 err(1, "new_region: calloc: failed to allocate memory "
7218 /* if we don't have a workspace already, find one */
7220 for (i = 0; i < workspace_limit; i++)
7221 if (s->ws[i].r == NULL) {
7228 errx(1, "new_region: no free workspaces");
7239 TAILQ_INSERT_TAIL(&s->rl, r, entry);
7245 #ifdef SWM_XRR_HAS_CRTC
7248 #endif /* SWM_XRR_HAS_CRTC */
7249 struct swm_region *r;
7251 xcb_randr_get_screen_resources_current_cookie_t src;
7252 xcb_randr_get_screen_resources_current_reply_t *srr;
7253 xcb_randr_get_crtc_info_cookie_t cic;
7254 xcb_randr_get_crtc_info_reply_t *cir = NULL;
7255 xcb_randr_crtc_t *crtc;
7256 xcb_screen_t *screen = get_screen(i);
7258 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7259 if (i >= num_screens)
7260 errx(1, "scan_xrandr: invalid screen");
7262 /* remove any old regions */
7263 while ((r = TAILQ_FIRST(&screens[i].rl)) != NULL) {
7264 r->ws->old_r = r->ws->r = NULL;
7266 TAILQ_REMOVE(&screens[i].rl, r, entry);
7267 TAILQ_INSERT_TAIL(&screens[i].orl, r, entry);
7271 /* map virtual screens onto physical screens */
7272 #ifdef SWM_XRR_HAS_CRTC
7273 if (xrandr_support) {
7274 src = xcb_randr_get_screen_resources_current(conn,
7276 srr = xcb_randr_get_screen_resources_current_reply(conn, src,
7279 new_region(&screens[i], 0, 0,
7280 screen->width_in_pixels,
7281 screen->height_in_pixels);
7284 ncrtc = srr->num_crtcs;
7285 for (c = 0; c < ncrtc; c++) {
7286 crtc = xcb_randr_get_screen_resources_current_crtcs(srr);
7287 cic = xcb_randr_get_crtc_info(conn, crtc[c],
7289 cir = xcb_randr_get_crtc_info_reply(conn, cic, NULL);
7292 if (cir->num_outputs == 0) {
7298 new_region(&screens[i], 0, 0,
7299 screen->width_in_pixels,
7300 screen->height_in_pixels);
7302 new_region(&screens[i],
7303 cir->x, cir->y, cir->width, cir->height);
7308 #endif /* SWM_XRR_HAS_CRTC */
7310 new_region(&screens[i], 0, 0, screen->width_in_pixels,
7311 screen->height_in_pixels);
7316 screenchange(xcb_randr_screen_change_notify_event_t *e)
7318 struct swm_region *r;
7321 DNPRINTF(SWM_D_EVENT, "screenchange: root: 0x%x\n", e->root);
7323 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7324 /* silly event doesn't include the screen index */
7325 for (i = 0; i < num_screens; i++)
7326 if (screens[i].root == e->root)
7328 if (i >= num_screens)
7329 errx(1, "screenchange: screen not found");
7331 /* brute force for now, just re-enumerate the regions */
7335 print_win_geom(e->root);
7337 /* add bars to all regions */
7338 for (i = 0; i < num_screens; i++)
7339 TAILQ_FOREACH(r, &screens[i].rl, entry)
7347 xcb_window_t *wins = NULL;
7349 int i, j, num_screens;
7350 uint16_t state, manage;
7352 xcb_query_tree_cookie_t qtc;
7353 xcb_query_tree_reply_t *qtr;
7354 xcb_get_window_attributes_cookie_t c;
7355 xcb_get_window_attributes_reply_t *r;
7356 xcb_get_property_cookie_t pc;
7358 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7359 for (i = 0; i < num_screens; i++) {
7360 qtc = xcb_query_tree(conn, screens[i].root);
7361 qtr = xcb_query_tree_reply(conn, qtc, NULL);
7364 wins = xcb_query_tree_children(qtr);
7365 no = xcb_query_tree_children_length(qtr);
7366 /* attach windows to a region */
7367 /* normal windows */
7368 for (j = 0; j < no; j++) {
7369 c = xcb_get_window_attributes(conn, wins[j]);
7370 r = xcb_get_window_attributes_reply(conn, c, NULL);
7373 if (r->override_redirect) {
7378 pc = xcb_icccm_get_wm_transient_for(conn, wins[j]);
7379 if (xcb_icccm_get_wm_transient_for_reply(conn, pc,
7385 state = getstate(wins[j]);
7386 manage = state == XCB_ICCCM_WM_STATE_ICONIC;
7387 if (r->map_state == XCB_MAP_STATE_VIEWABLE || manage)
7388 manage_window(wins[j]);
7391 /* transient windows */
7392 for (j = 0; j < no; j++) {
7393 c = xcb_get_window_attributes(conn, wins[j]);
7394 r = xcb_get_window_attributes_reply(conn, c, NULL);
7397 if (r->override_redirect) {
7403 state = getstate(wins[j]);
7404 manage = state == XCB_ICCCM_WM_STATE_ICONIC;
7405 pc = xcb_icccm_get_wm_transient_for(conn, wins[j]);
7406 if (xcb_icccm_get_wm_transient_for_reply(conn, pc,
7407 &wins[j], NULL) && manage)
7408 manage_window(wins[j]);
7417 int i, j, k, num_screens;
7418 struct workspace *ws;
7419 uint32_t gcv[1], wa[1];
7420 const xcb_query_extension_reply_t *qep;
7421 xcb_cursor_t cursor;
7422 xcb_font_t cursor_font;
7423 xcb_randr_query_version_cookie_t c;
7424 xcb_randr_query_version_reply_t *r;
7426 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7427 if ((screens = calloc(num_screens,
7428 sizeof(struct swm_screen))) == NULL)
7429 err(1, "setup_screens: calloc: failed to allocate memory for "
7432 /* initial Xrandr setup */
7433 xrandr_support = False;
7434 c = xcb_randr_query_version(conn, True, True);
7435 r = xcb_randr_query_version_reply(conn, c, NULL);
7437 if (r->major_version >= 1)
7438 xrandr_support = True;
7441 qep = xcb_get_extension_data(conn, &xcb_randr_id);
7442 xrandr_eventbase = qep->first_event;
7444 cursor_font = xcb_generate_id(conn);
7445 xcb_open_font(conn, cursor_font, strlen("cursor"), "cursor");
7447 cursor = xcb_generate_id(conn);
7448 xcb_create_glyph_cursor(conn, cursor, cursor_font, cursor_font,
7449 XC_left_ptr, XC_left_ptr + 1, 0, 0, 0, 0xffff, 0xffff, 0xffff);
7452 /* map physical screens */
7453 for (i = 0; i < num_screens; i++) {
7454 DNPRINTF(SWM_D_WS, "setup_screens: init screen: %d\n", i);
7456 TAILQ_INIT(&screens[i].rl);
7457 TAILQ_INIT(&screens[i].orl);
7458 screens[i].root = get_screen(i)->root;
7460 /* set default colors */
7461 setscreencolor("red", i + 1, SWM_S_COLOR_FOCUS);
7462 setscreencolor("rgb:88/88/88", i + 1, SWM_S_COLOR_UNFOCUS);
7463 setscreencolor("rgb:00/80/80", i + 1, SWM_S_COLOR_BAR_BORDER);
7464 setscreencolor("black", i + 1, SWM_S_COLOR_BAR);
7465 setscreencolor("rgb:a0/a0/a0", i + 1, SWM_S_COLOR_BAR_FONT);
7467 /* create graphics context on screen */
7468 screens[i].bar_gc = xcb_generate_id(conn);
7470 xcb_create_gc(conn, screens[i].bar_gc, screens[i].root,
7471 XCB_GC_GRAPHICS_EXPOSURES, gcv);
7473 /* set default cursor */
7474 xcb_change_window_attributes(conn, screens[i].root,
7477 /* init all workspaces */
7478 /* XXX these should be dynamically allocated too */
7479 for (j = 0; j < SWM_WS_MAX; j++) {
7480 ws = &screens[i].ws[j];
7486 TAILQ_INIT(&ws->winlist);
7487 TAILQ_INIT(&ws->unmanagedlist);
7489 for (k = 0; layouts[k].l_stack != NULL; k++)
7490 if (layouts[k].l_config != NULL)
7491 layouts[k].l_config(ws,
7492 SWM_ARG_ID_STACKINIT);
7493 ws->cur_layout = &layouts[0];
7494 ws->cur_layout->l_string(ws);
7500 xcb_randr_select_input(conn, screens[i].root,
7501 XCB_RANDR_NOTIFY_MASK_SCREEN_CHANGE);
7503 xcb_free_cursor(conn, cursor);
7504 xcb_close_font(conn, cursor_font);
7510 if ((bar_fonts = strdup(SWM_BAR_FONTS)) == NULL)
7511 err(1, "setup_globals: strdup: failed to allocate memory.");
7513 if ((clock_format = strdup("%a %b %d %R %Z %Y")) == NULL)
7514 err(1, "setup_globals: strdup: failed to allocate memory.");
7516 if ((syms = xcb_key_symbols_alloc(conn)) == NULL)
7517 errx(1, "unable to allocate key symbols");
7519 a_state = get_atom_from_string("WM_STATE");
7520 a_prot = get_atom_from_string("WM_PROTOCOLS");
7521 a_delete = get_atom_from_string("WM_DELETE_WINDOW");
7522 a_takefocus = get_atom_from_string("WM_TAKE_FOCUS");
7523 a_wmname = get_atom_from_string("WM_NAME");
7524 a_netwmname = get_atom_from_string("_NET_WM_NAME");
7525 a_utf8_string = get_atom_from_string("UTF8_STRING");
7526 a_string = get_atom_from_string("STRING");
7527 a_swm_iconic = get_atom_from_string("_SWM_ICONIC");
7534 xcb_atom_t netwmcheck, netwmname, utf8_string;
7535 xcb_window_t root, win;
7538 /* work around sun jdk bugs, code from wmname */
7539 netwmcheck = get_atom_from_string("_NET_SUPPORTING_WM_CHECK");
7540 netwmname = get_atom_from_string("_NET_WM_NAME");
7541 utf8_string = get_atom_from_string("UTF8_STRING");
7543 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7544 for (i = 0; i < num_screens; i++) {
7545 root = screens[i].root;
7547 win = xcb_generate_id(conn);
7548 wa[0] = screens[i].c[SWM_S_COLOR_UNFOCUS].color;
7549 wa[1] = screens[i].c[SWM_S_COLOR_UNFOCUS].color;
7550 xcb_create_window(conn, XCB_COPY_FROM_PARENT, win, 0, 0, 0, 1,
7551 1, 0, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCB_COPY_FROM_PARENT,
7552 XCB_CW_BACK_PIXEL | XCB_CW_BORDER_PIXEL, wa);
7554 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root,
7555 netwmcheck, XCB_ATOM_WINDOW, 32, 1, &win);
7556 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win,
7557 netwmcheck, XCB_ATOM_WINDOW, 32, 1, &win);
7558 xcb_change_property(conn, XCB_PROP_MODE_REPLACE, win,
7559 netwmname, utf8_string, 8, strlen("LG3D"), "LG3D");
7564 event_error(xcb_generic_error_t *e)
7566 DNPRINTF(SWM_D_EVENT, "event_error: %s(%u) from %s(%u), sequence: %u, "
7567 "resource_id: %u, minor_code: %u\n",
7568 xcb_event_get_error_label(e->error_code), e->error_code,
7569 xcb_event_get_request_label(e->major_code), e->major_code,
7570 e->sequence, e->resource_id, e->minor_code);
7574 event_handle(xcb_generic_event_t *evt)
7576 uint8_t type = XCB_EVENT_RESPONSE_TYPE(evt);
7578 DNPRINTF(SWM_D_EVENT, "XCB Event: %s(%d)\n",
7579 xcb_event_get_label(XCB_EVENT_RESPONSE_TYPE(evt)),
7580 XCB_EVENT_RESPONSE_TYPE(evt));
7583 #define EVENT(type, callback) case type: callback((void *)evt); return
7584 EVENT(0, event_error);
7585 EVENT(XCB_BUTTON_PRESS, buttonpress);
7586 /*EVENT(XCB_BUTTON_RELEASE, buttonpress);*/
7587 /*EVENT(XCB_CIRCULATE_NOTIFY, );*/
7588 /*EVENT(XCB_CIRCULATE_REQUEST, );*/
7589 EVENT(XCB_CLIENT_MESSAGE, clientmessage);
7590 /*EVENT(XCB_COLORMAP_NOTIFY, );*/
7591 EVENT(XCB_CONFIGURE_NOTIFY, configurenotify);
7592 EVENT(XCB_CONFIGURE_REQUEST, configurerequest);
7593 /*EVENT(XCB_CREATE_NOTIFY, );*/
7594 EVENT(XCB_DESTROY_NOTIFY, destroynotify);
7595 EVENT(XCB_ENTER_NOTIFY, enternotify);
7596 EVENT(XCB_EXPOSE, expose);
7597 /*EVENT(XCB_FOCUS_IN, );*/
7598 /*EVENT(XCB_FOCUS_OUT, );*/
7599 /*EVENT(XCB_GRAPHICS_EXPOSURE, );*/
7600 /*EVENT(XCB_GRAVITY_NOTIFY, );*/
7601 EVENT(XCB_KEY_PRESS, keypress);
7602 /*EVENT(XCB_KEY_RELEASE, keypress);*/
7603 /*EVENT(XCB_KEYMAP_NOTIFY, );*/
7604 /*EVENT(XCB_LEAVE_NOTIFY, );*/
7605 EVENT(XCB_MAP_NOTIFY, mapnotify);
7606 EVENT(XCB_MAP_REQUEST, maprequest);
7607 EVENT(XCB_MAPPING_NOTIFY, mappingnotify);
7608 /*EVENT(XCB_MOTION_NOTIFY, );*/
7609 /*EVENT(XCB_NO_EXPOSURE, );*/
7610 EVENT(XCB_PROPERTY_NOTIFY, propertynotify);
7611 /*EVENT(XCB_REPARENT_NOTIFY, );*/
7612 /*EVENT(XCB_RESIZE_REQUEST, );*/
7613 /*EVENT(XCB_SELECTION_CLEAR, );*/
7614 /*EVENT(XCB_SELECTION_NOTIFY, );*/
7615 /*EVENT(XCB_SELECTION_REQUEST, );*/
7616 EVENT(XCB_UNMAP_NOTIFY, unmapnotify);
7617 /*EVENT(XCB_VISIBILITY_NOTIFY, visibilitynotify);*/
7620 if (type - xrandr_eventbase == XCB_RANDR_SCREEN_CHANGE_NOTIFY)
7621 screenchange((void *)evt);
7625 main(int argc, char *argv[])
7627 struct swm_region *r, *rr;
7628 struct ws_win *winfocus = NULL;
7630 char conf[PATH_MAX], *cfile = NULL;
7632 int xfd, i, num_screens;
7633 struct sigaction sact;
7634 xcb_generic_event_t *evt;
7638 time_started = time(NULL);
7641 warnx("Welcome to spectrwm V%s Build: %s", SPECTRWM_VERSION, buildstr);
7642 if (!setlocale(LC_CTYPE, "") || !setlocale(LC_TIME, ""))
7643 warnx("no locale support");
7645 /* handle some signals */
7646 bzero(&sact, sizeof(sact));
7647 sigemptyset(&sact.sa_mask);
7649 sact.sa_handler = sighdlr;
7650 sigaction(SIGINT, &sact, NULL);
7651 sigaction(SIGQUIT, &sact, NULL);
7652 sigaction(SIGTERM, &sact, NULL);
7653 sigaction(SIGHUP, &sact, NULL);
7655 sact.sa_handler = sighdlr;
7656 sact.sa_flags = SA_NOCLDSTOP;
7657 sigaction(SIGCHLD, &sact, NULL);
7659 if (!(display = XOpenDisplay(0)))
7660 errx(1, "can not open display");
7662 conn = XGetXCBConnection(display);
7663 if (xcb_connection_has_error(conn))
7664 errx(1, "can not get XCB connection");
7666 xcb_prefetch_extension_data(conn, &xcb_randr_id);
7667 xfd = xcb_get_file_descriptor(conn);
7669 /* look for local and global conf file */
7670 pwd = getpwuid(getuid());
7672 errx(1, "invalid user: %d", getuid());
7674 xcb_grab_server(conn);
7677 /* flush all events */
7678 while ((evt = xcb_poll_for_event(conn))) {
7679 if (XCB_EVENT_RESPONSE_TYPE(evt) == 0)
7684 if (enable_wm() != 0)
7685 errx(1, "another window manager is currently running");
7696 for (i = 0; ; i++) {
7701 snprintf(conf, sizeof conf, "%s/.%s",
7702 pwd->pw_dir, SWM_CONF_FILE);
7706 snprintf(conf, sizeof conf, "/etc/%s",
7711 snprintf(conf, sizeof conf, "%s/.%s",
7712 pwd->pw_dir, SWM_CONF_FILE_OLD);
7716 snprintf(conf, sizeof conf, "/etc/%s",
7723 if (strlen(conf) && stat(conf, &sb) != -1)
7724 if (S_ISREG(sb.st_mode)) {
7731 /* load conf (if any) */
7733 conf_load(cfile, SWM_CONF_DEFAULT);
7736 /* set some values to work around bad programs */
7738 /* grab existing windows (before we build the bars) */
7741 if (getenv("SWM_STARTED") == NULL)
7742 setenv("SWM_STARTED", "YES", 1);
7744 /* setup all bars */
7745 num_screens = xcb_setup_roots_length(xcb_get_setup(conn));
7746 for (i = 0; i < num_screens; i++)
7747 TAILQ_FOREACH(r, &screens[i].rl, entry) {
7748 if (winfocus == NULL)
7749 winfocus = TAILQ_FIRST(&r->ws->winlist);
7758 xcb_ungrab_server(conn);
7762 while ((evt = xcb_poll_for_event(conn))) {
7769 /* if we are being restarted go focus on first window */
7771 rr = winfocus->ws->r;
7773 /* not a visible window */
7777 /* move pointer to first screen if multi screen */
7778 if (num_screens > 1 || outputs > 1)
7779 xcb_warp_pointer(conn, XCB_WINDOW_NONE,
7780 rr->s[0].root, 0, 0, 0, 0, X(rr),
7781 Y(rr) + (bar_enabled ? bar_height : 0));
7783 a.id = SWM_ARG_ID_FOCUSCUR;
7793 if (select(xfd + 1, &rd, NULL, NULL, &tv) == -1)
7795 DNPRINTF(SWM_D_MISC, "select failed");
7796 if (restart_wm == 1)
7797 restart(NULL, NULL);
7798 if (search_resp == 1)
7811 for (i = 0; i < num_screens; ++i)
7812 if (screens[i].bar_gc != 0)
7813 xcb_free_gc(conn, screens[i].bar_gc);
7815 XFreeFontSet(display, bar_font);
7817 xcb_key_symbols_free(syms);
7819 xcb_disconnect(conn);