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