annotate dwm.c @ 757:427608ef0687

modified makefile
author meillo@marmaro.de
date Fri, 30 May 2008 00:34:38 +0200
parents bff1012527b3
children bc512840e5a5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
644
1ed8c40dde36 corrections
arg@mig29
parents: 643
diff changeset
1 /* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com>
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
2 * See LICENSE file for license details.
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
3 *
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
4 * dynamic window manager is designed like any other X client as well. It is
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
5 * driven through handling X events. In contrast to other X clients, a window
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
6 * manager selects for SubstructureRedirectMask on the root window, to receive
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
7 * events about window (dis-)appearance. Only one X connection at a time is
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
8 * allowed to select for this event mask.
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
9 *
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
10 * Calls to fetch an X event from the event queue are blocking. Due reading
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
11 * status text from standard input, a select()-driven main loop has been
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
12 * implemented which selects for reads on the X connection and STDIN_FILENO to
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
13 * handle all data smoothly. The event handlers of dwm are organized in an
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
14 * array which is accessed whenever a new event has been fetched. This allows
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
15 * event dispatching in O(1) time.
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
16 *
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
17 * Each child of the root window is called a client, except windows which have
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
18 * set the override_redirect flag. Clients are organized in a global
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
19 * doubly-linked client list, the focus history is remembered through a global
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
20 * stack list. Each client contains an array of Bools of the same size as the
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
21 * global tags array to indicate the tags of a client. For each client dwm
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
22 * creates a small title window, which is resized whenever the (_NET_)WM_NAME
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
23 * properties are updated or the client is moved/resized.
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
24 *
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
25 * Keys and tagging rules are organized as arrays and defined in the config.h
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
26 * file. These arrays are kept static in event.o and tag.o respectively,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
27 * because no other part of dwm needs access to them. The current mode is
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
28 * represented by the arrange() function pointer, which wether points to
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
29 * dofloat() or dotile().
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
30 *
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
31 * To understand everything else, start reading main.c:main().
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
32 */
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
33
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
34 #include "config.h"
59
5d4653de9a1c implemented dwm reading status text from stdin
Anselm R. Garbe <garbeam@wmii.de>
parents: 58
diff changeset
35 #include <errno.h>
619
bda4880c462d with this patch everything works fine for me
arg@mig29
parents: 616
diff changeset
36 #include <locale.h>
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
37 #include <regex.h>
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
38 #include <stdio.h>
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
39 #include <stdarg.h>
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
40 #include <stdlib.h>
57
f005d46462e8 implemented bar for dwm (I miss status text), I plan that status text is read from stdin in dwm
Anselm R. Garbe <garbeam@wmii.de>
parents: 52
diff changeset
41 #include <string.h>
59
5d4653de9a1c implemented dwm reading status text from stdin
Anselm R. Garbe <garbeam@wmii.de>
parents: 58
diff changeset
42 #include <unistd.h>
138
c1185dc7a36e some cleanups/fixes inspired by Jukka Salmi's feedback
arg@10ksloc.org
parents: 137
diff changeset
43 #include <sys/select.h>
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
44 #include <sys/types.h>
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
45 #include <sys/wait.h>
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
46 #include <X11/cursorfont.h>
291
8e6e0aa5e2ae removed NUMLOCKMASK, added dynamically calculated numlockmask instead
Anselm R.Garbe <arg@10ksloc.org>
parents: 281
diff changeset
47 #include <X11/keysym.h>
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
48 #include <X11/Xatom.h>
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
49 #include <X11/Xlib.h>
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
50 #include <X11/Xproto.h>
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
51 #include <X11/Xutil.h>
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
52
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
53 /* mask shorthands, used in event.c and client.c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
54 #define BUTTONMASK (ButtonPressMask | ButtonReleaseMask)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
55
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
56 enum { NetSupported, NetWMName, NetLast }; /* EWMH atoms */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
57 enum { WMProtocols, WMDelete, WMState, WMLast }; /* default atoms */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
58 enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
59 enum { ColBorder, ColFG, ColBG, ColLast }; /* color */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
60
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
61 typedef union {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
62 const char *cmd;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
63 int i;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
64 } Arg; /* argument type */
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
65
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
66 typedef struct {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
67 int ascent;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
68 int descent;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
69 int height;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
70 XFontSet set;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
71 XFontStruct *xfont;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
72 } Fnt;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
73
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
74 typedef struct {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
75 int x, y, w, h;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
76 unsigned long norm[ColLast];
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
77 unsigned long sel[ColLast];
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
78 Drawable drawable;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
79 Fnt font;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
80 GC gc;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
81 } DC; /* draw context */
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
82
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
83 typedef struct Client Client;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
84 struct Client {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
85 char name[256];
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
86 int x, y, w, h;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
87 int rx, ry, rw, rh; /* revert geometry */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
88 int basew, baseh, incw, inch, maxw, maxh, minw, minh;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
89 int minax, minay, maxax, maxay;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
90 long flags;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
91 unsigned int border;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
92 Bool isfixed, isfloat, ismax;
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
93 Bool tag;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
94 Client *next;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
95 Client *prev;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
96 Client *snext;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
97 Window win;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
98 };
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
99
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
100 typedef struct {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
101 const char *clpattern;
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
102 int tag;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
103 Bool isfloat;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
104 } Rule;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
105
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
106 typedef struct {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
107 regex_t *clregex;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
108 } RReg;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
109
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
110
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
111 typedef struct {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
112 unsigned long mod;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
113 KeySym keysym;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
114 void (*func)(Arg *arg);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
115 Arg arg;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
116 } Key;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
117
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
118
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
119 #define CLEANMASK(mask) (mask & ~(numlockmask | LockMask))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
120 #define MOUSEMASK (BUTTONMASK | PointerMotionMask)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
121
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
122
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
123
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
124 const char *tags[]; /* all tags */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
125 char stext[256]; /* status text */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
126 int bh, bmw; /* bar height, bar mode label width */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
127 int screen, sx, sy, sw, sh; /* screen geometry */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
128 int wax, way, wah, waw; /* windowarea geometry */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
129 unsigned int nmaster; /* number of master clients */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
130 unsigned int ntags, numlockmask; /* number of tags, dynamic lock mask */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
131 void (*handler[LASTEvent])(XEvent *); /* event handler */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
132 void (*arrange)(void); /* arrange function, indicates mode */
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
133 Atom wmatom[WMLast], netatom[NetLast];
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
134 Bool running, selscreen, seltag; /* seltag is array of Bool */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
135 Client *clients, *sel, *stack; /* global client list and stack */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
136 Cursor cursor[CurLast];
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
137 DC dc; /* global draw context */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
138 Display *dpy;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
139 Window root, barwin;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
140
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
141 Bool running = True;
716
4ce65f61f01b renamed activescreen into selscreen
Anselm R. Garbe <arg@suckless.org>
parents: 714
diff changeset
142 Bool selscreen = True;
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
143 Client *clients = NULL;
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
144 Client *sel = NULL;
446
a2e587651c79 using a global stack for focus recovery on arrange() - seems to work great
Anselm R. Garbe <arg@10kloc.org>
parents: 433
diff changeset
145 Client *stack = NULL;
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
146 DC dc = {0};
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
147
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
148 static int (*xerrorxlib)(Display *, XErrorEvent *);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
149 static Bool otherwm, readin;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
150 static RReg *rreg = NULL;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
151 static unsigned int len = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
152
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
153
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
154 TAGS
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
155 RULES
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
156
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
157
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
158 /* client.c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
159 void configure(Client *c); /* send synthetic configure event */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
160 void focus(Client *c); /* focus c, c may be NULL */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
161 Client *getclient(Window w); /* return client of w */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
162 Bool isprotodel(Client *c); /* returns True if c->win supports wmatom[WMDelete] */
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
163 void killclient(); /* kill c nicely */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
164 void manage(Window w, XWindowAttributes *wa); /* manage new client */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
165 void resize(Client *c, Bool sizehints); /* resize c*/
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
166 void updatesizehints(Client *c); /* update the size hint variables of c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
167 void updatetitle(Client *c); /* update the name of c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
168 void unmanage(Client *c); /* destroy c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
169
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
170 /* draw.c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
171 void drawstatus(void); /* draw the bar */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
172 unsigned long getcolor(const char *colstr); /* return color of colstr */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
173 void setfont(const char *fontstr); /* set the font for DC */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
174 unsigned int textw(const char *text); /* return the width of text in px*/
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
175
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
176 /* event.c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
177 void grabkeys(void); /* grab all keys defined in config.h */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
178 void procevent(void); /* process pending X events */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
179
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
180 /* main.c */
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
181 void quit(); /* quit dwm nicely */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
182 void sendevent(Window w, Atom a, long value); /* send synthetic event to w */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
183 int xerror(Display *dsply, XErrorEvent *ee); /* dwm's X error handler */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
184
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
185 /* tag.c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
186 void initrregs(void); /* initialize regexps of rules defined in config.h */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
187 Client *getnext(Client *c); /* returns next visible client */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
188 void settags(Client *c, Client *trans); /* sets tags of c */
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
189 void toggletag(); /* toggles c tags with arg's index */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
190
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
191 /* util.c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
192 void *emallocz(unsigned int size); /* allocates zero-initialized memory, exits on error */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
193 void eprint(const char *errstr, ...); /* prints errstr and exits with 1 */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
194 void spawn(Arg *arg); /* forks a new subprocess with to arg's cmd */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
195
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
196 /* view.c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
197 void detach(Client *c); /* detaches c from global client list */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
198 void dofloat(void); /* arranges all windows floating */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
199 void dotile(void); /* arranges all windows tiled */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
200 void domax(void); /* arranges all windows fullscreen */
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
201 void focusnext(); /* focuses next visible client, arg is ignored */
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
202 void incnmaster(); /* increments nmaster */
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
203 void decnmaster(); /* decrements nmaster */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
204 Bool isvisible(Client *c); /* returns True if client is visible */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
205 void restack(void); /* restores z layers of all clients */
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
206 void togglefloat(); /* toggles focusesd client between floating/non-floating state */
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
207 void togglemode(); /* toggles global arrange function (dotile/dofloat) */
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
208 void toggleview(); /* views the tag with arg's index */
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
209 void zoom(); /* zooms the focused client to master area, arg is ignored */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
210
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
211
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
212
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
213
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
214
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
215
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
216
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
217
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
218
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
219
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
220 /* from view.c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
221 /* static */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
222
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
223 static Client *
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
224 nexttiled(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
225 for(c = getnext(c); c && c->isfloat; c = getnext(c->next));
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
226 return c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
227 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
228
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
229 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
230 togglemax(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
231 XEvent ev;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
232
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
233 if(c->isfixed)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
234 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
235
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
236 if((c->ismax = !c->ismax)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
237 c->rx = c->x; c->x = wax;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
238 c->ry = c->y; c->y = way;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
239 c->rw = c->w; c->w = waw - 2 * BORDERPX;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
240 c->rh = c->h; c->h = wah - 2 * BORDERPX;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
241 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
242 else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
243 c->x = c->rx;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
244 c->y = c->ry;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
245 c->w = c->rw;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
246 c->h = c->rh;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
247 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
248 resize(c, True);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
249 while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
250 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
251
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
252
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
253
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
254 void (*arrange)(void) = DEFMODE;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
255
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
256 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
257 detach(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
258 if(c->prev)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
259 c->prev->next = c->next;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
260 if(c->next)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
261 c->next->prev = c->prev;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
262 if(c == clients)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
263 clients = c->next;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
264 c->next = c->prev = NULL;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
265 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
266
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
267 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
268 dofloat(void) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
269 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
270
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
271 for(c = clients; c; c = c->next) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
272 if(isvisible(c)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
273 resize(c, True);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
274 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
275 else
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
276 XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
277 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
278 if(!sel || !isvisible(sel)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
279 for(c = stack; c && !isvisible(c); c = c->snext);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
280 focus(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
281 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
282 restack();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
283 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
284
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
285 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
286 dotile(void) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
287 unsigned int i, n, mw, mh, tw, th;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
288 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
289
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
290 for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
291 n++;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
292 /* window geoms */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
293 mh = (n > nmaster) ? wah / nmaster : wah / (n > 0 ? n : 1);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
294 mw = (n > nmaster) ? waw / 2 : waw;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
295 th = (n > nmaster) ? wah / (n - nmaster) : 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
296 tw = waw - mw;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
297
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
298 for(i = 0, c = clients; c; c = c->next)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
299 if(isvisible(c)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
300 if(c->isfloat) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
301 resize(c, True);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
302 continue;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
303 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
304 c->ismax = False;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
305 c->x = wax;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
306 c->y = way;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
307 if(i < nmaster) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
308 c->y += i * mh;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
309 c->w = mw - 2 * BORDERPX;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
310 c->h = mh - 2 * BORDERPX;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
311 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
312 else { /* tile window */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
313 c->x += mw;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
314 c->w = tw - 2 * BORDERPX;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
315 if(th > 2 * BORDERPX) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
316 c->y += (i - nmaster) * th;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
317 c->h = th - 2 * BORDERPX;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
318 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
319 else /* fallback if th <= 2 * BORDERPX */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
320 c->h = wah - 2 * BORDERPX;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
321 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
322 resize(c, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
323 i++;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
324 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
325 else
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
326 XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
327 if(!sel || !isvisible(sel)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
328 for(c = stack; c && !isvisible(c); c = c->snext);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
329 focus(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
330 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
331 restack();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
332 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
333
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
334 /* begin code by mitch */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
335 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
336 arrangemax(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
337 if(c == sel) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
338 c->ismax = True;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
339 c->x = sx;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
340 c->y = bh;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
341 c->w = sw - 2 * BORDERPX;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
342 c->h = sh - bh - 2 * BORDERPX;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
343 XRaiseWindow(dpy, c->win);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
344 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
345 c->ismax = False;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
346 XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
347 XLowerWindow(dpy, c->win);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
348 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
349 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
350
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
351 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
352 domax(void) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
353 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
354
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
355 for(c = clients; c; c = c->next) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
356 if(isvisible(c)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
357 if(c->isfloat) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
358 resize(c, True);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
359 continue;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
360 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
361 arrangemax(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
362 resize(c, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
363 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
364 XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
365 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
366
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
367 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
368 if(!sel || !isvisible(sel)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
369 for(c = stack; c && !isvisible(c); c = c->snext);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
370 focus(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
371 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
372 restack();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
373 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
374 /* end code by mitch */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
375
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
376 void
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
377 focusnext() {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
378 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
379
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
380 if(!sel)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
381 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
382 if(!(c = getnext(sel->next)))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
383 c = getnext(clients);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
384 if(c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
385 focus(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
386 restack();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
387 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
388 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
389
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
390 void
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
391 incnmaster() {
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
392 if((arrange == dofloat) || (wah / (nmaster + 1) <= 2 * BORDERPX))
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
393 return;
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
394 nmaster++;
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
395 if(sel)
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
396 arrange();
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
397 else
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
398 drawstatus();
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
399 }
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
400
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
401 void
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
402 decnmaster() {
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
403 if((arrange == dofloat) || (nmaster <= 1))
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
404 return;
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
405 nmaster--;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
406 if(sel)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
407 arrange();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
408 else
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
409 drawstatus();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
410 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
411
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
412 Bool
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
413 isvisible(Client *c) {
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
414 if((c->tag && seltag) || (!c->tag && !seltag)) {
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
415 return True;
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
416 }
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
417 return False;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
418 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
419
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
420 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
421 restack(void) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
422 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
423 XEvent ev;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
424
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
425 drawstatus();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
426 if(!sel)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
427 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
428 if(sel->isfloat || arrange == dofloat)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
429 XRaiseWindow(dpy, sel->win);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
430
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
431 /* begin code by mitch */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
432 if(arrange == domax) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
433 for(c = nexttiled(clients); c; c = nexttiled(c->next)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
434 arrangemax(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
435 resize(c, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
436 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
437
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
438 } else if (arrange == dotile) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
439 /* end code by mitch */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
440
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
441 if(!sel->isfloat)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
442 XLowerWindow(dpy, sel->win);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
443 for(c = nexttiled(clients); c; c = nexttiled(c->next)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
444 if(c == sel)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
445 continue;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
446 XLowerWindow(dpy, c->win);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
447 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
448 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
449 XSync(dpy, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
450 while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
451 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
452
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
453 void
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
454 togglefloat() {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
455 if (!sel || arrange == dofloat)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
456 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
457 sel->isfloat = !sel->isfloat;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
458 arrange();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
459 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
460
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
461 void
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
462 togglemode() {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
463 /* only toggle between tile and max - float is just available through togglefloat */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
464 arrange = (arrange == dotile) ? domax : dotile;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
465 if(sel)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
466 arrange();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
467 else
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
468 drawstatus();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
469 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
470
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
471 void
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
472 toggleview() {
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
473 seltag = !seltag;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
474 arrange();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
475 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
476
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
477 void
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
478 zoom() {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
479 unsigned int n;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
480 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
481
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
482 if(!sel)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
483 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
484 if(sel->isfloat || (arrange == dofloat)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
485 togglemax(sel);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
486 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
487 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
488 for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
489 n++;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
490
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
491 if((c = sel) == nexttiled(clients))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
492 if(!(c = nexttiled(c->next)))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
493 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
494 detach(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
495 if(clients)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
496 clients->prev = c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
497 c->next = clients;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
498 clients = c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
499 focus(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
500 arrange();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
501 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
502
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
503
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
504
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
505
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
506
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
507
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
508
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
509
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
510
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
511
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
512
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
513
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
514
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
515
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
516
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
517
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
518 /* from util.c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
519
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
520
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
521 void *
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
522 emallocz(unsigned int size) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
523 void *res = calloc(1, size);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
524
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
525 if(!res)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
526 eprint("fatal: could not malloc() %u bytes\n", size);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
527 return res;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
528 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
529
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
530 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
531 eprint(const char *errstr, ...) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
532 va_list ap;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
533
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
534 va_start(ap, errstr);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
535 vfprintf(stderr, errstr, ap);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
536 va_end(ap);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
537 exit(EXIT_FAILURE);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
538 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
539
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
540 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
541 spawn(Arg *arg) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
542 static char *shell = NULL;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
543
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
544 if(!shell && !(shell = getenv("SHELL")))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
545 shell = "/bin/sh";
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
546 if(!arg->cmd)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
547 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
548 /* The double-fork construct avoids zombie processes and keeps the code
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
549 * clean from stupid signal handlers. */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
550 if(fork() == 0) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
551 if(fork() == 0) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
552 if(dpy)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
553 close(ConnectionNumber(dpy));
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
554 setsid();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
555 execl(shell, shell, "-c", arg->cmd, (char *)NULL);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
556 fprintf(stderr, "dwm: execl '%s -c %s'", shell, arg->cmd);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
557 perror(" failed");
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
558 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
559 exit(0);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
560 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
561 wait(0);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
562 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
563
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
564
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
565
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
566
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
567
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
568
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
569
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
570
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
571
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
572
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
573
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
574
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
575
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
576 /* from tag.c */
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
577
84
052fe7498930 ordered variables in structs and source files alphabetically
Anselm R. Garbe <garbeam@wmii.de>
parents: 79
diff changeset
578 /* static */
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
579
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
580 Client *
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
581 getnext(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
582 for(; c && !isvisible(c); c = c->next);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
583 return c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
584 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
585
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
586 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
587 initrregs(void) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
588 unsigned int i;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
589 regex_t *reg;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
590
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
591 if(rreg)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
592 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
593 len = sizeof rule / sizeof rule[0];
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
594 rreg = emallocz(len * sizeof(RReg));
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
595 for(i = 0; i < len; i++) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
596 if(rule[i].clpattern) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
597 reg = emallocz(sizeof(regex_t));
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
598 if(regcomp(reg, rule[i].clpattern, REG_EXTENDED))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
599 free(reg);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
600 else
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
601 rreg[i].clregex = reg;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
602 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
603 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
604 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
605
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
606 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
607 settags(Client *c, Client *trans) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
608 char prop[512];
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
609 unsigned int i;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
610 regmatch_t tmp;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
611 Bool matched = trans != NULL;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
612 XClassHint ch = { 0 };
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
613
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
614 if(matched) {
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
615 c->tag = trans->tag;
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
616 } else {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
617 XGetClassHint(dpy, c->win, &ch);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
618 snprintf(prop, sizeof prop, "%s:%s:%s",
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
619 ch.res_class ? ch.res_class : "",
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
620 ch.res_name ? ch.res_name : "", c->name);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
621 for(i = 0; i < len; i++)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
622 if(rreg[i].clregex && !regexec(rreg[i].clregex, prop, 1, &tmp, 0)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
623 c->isfloat = rule[i].isfloat;
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
624 if (rule[i].tag < 0) {
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
625 c->tag = seltag;
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
626 } else if (rule[i].tag == 0) {
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
627 c->tag = True;
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
628 } else {
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
629 c->tag = False;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
630 }
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
631 matched = True;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
632 break; /* perform only the first rule matching */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
633 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
634 if(ch.res_class)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
635 XFree(ch.res_class);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
636 if(ch.res_name)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
637 XFree(ch.res_name);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
638 }
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
639 if(!matched) {
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
640 c->tag = seltag;
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
641 }
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
642 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
643
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
644 void
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
645 toggletag() {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
646 if(!sel)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
647 return;
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
648 sel->tag = !sel->tag;
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
649 toggleview();
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
650 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
651
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
652
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
653
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
654
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
655
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
656
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
657
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
658
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
659
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
660
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
661
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
662
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
663
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
664
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
665
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
666
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
667
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
668 /* from event.c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
669 /* static */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
670
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
671 KEYS
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
672
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
673
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
674
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
675 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
676 movemouse(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
677 int x1, y1, ocx, ocy, di;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
678 unsigned int dui;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
679 Window dummy;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
680 XEvent ev;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
681
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
682 ocx = c->x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
683 ocy = c->y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
684 if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
685 None, cursor[CurMove], CurrentTime) != GrabSuccess)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
686 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
687 c->ismax = False;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
688 XQueryPointer(dpy, root, &dummy, &dummy, &x1, &y1, &di, &di, &dui);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
689 for(;;) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
690 XMaskEvent(dpy, MOUSEMASK | ExposureMask | SubstructureRedirectMask, &ev);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
691 switch (ev.type) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
692 case ButtonRelease:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
693 resize(c, True);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
694 XUngrabPointer(dpy, CurrentTime);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
695 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
696 case ConfigureRequest:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
697 case Expose:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
698 case MapRequest:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
699 handler[ev.type](&ev);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
700 break;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
701 case MotionNotify:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
702 XSync(dpy, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
703 c->x = ocx + (ev.xmotion.x - x1);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
704 c->y = ocy + (ev.xmotion.y - y1);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
705 if(abs(wax + c->x) < SNAP)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
706 c->x = wax;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
707 else if(abs((wax + waw) - (c->x + c->w + 2 * c->border)) < SNAP)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
708 c->x = wax + waw - c->w - 2 * c->border;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
709 if(abs(way - c->y) < SNAP)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
710 c->y = way;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
711 else if(abs((way + wah) - (c->y + c->h + 2 * c->border)) < SNAP)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
712 c->y = way + wah - c->h - 2 * c->border;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
713 resize(c, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
714 break;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
715 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
716 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
717 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
718
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
719 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
720 resizemouse(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
721 int ocx, ocy;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
722 int nw, nh;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
723 XEvent ev;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
724
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
725 ocx = c->x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
726 ocy = c->y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
727 if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
728 None, cursor[CurResize], CurrentTime) != GrabSuccess)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
729 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
730 c->ismax = False;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
731 XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->border - 1, c->h + c->border - 1);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
732 for(;;) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
733 XMaskEvent(dpy, MOUSEMASK | ExposureMask | SubstructureRedirectMask , &ev);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
734 switch(ev.type) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
735 case ButtonRelease:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
736 resize(c, True);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
737 XUngrabPointer(dpy, CurrentTime);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
738 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
739 case ConfigureRequest:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
740 case Expose:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
741 case MapRequest:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
742 handler[ev.type](&ev);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
743 break;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
744 case MotionNotify:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
745 XSync(dpy, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
746 nw = ev.xmotion.x - ocx - 2 * c->border + 1;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
747 c->w = nw > 0 ? nw : 1;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
748 nh = ev.xmotion.y - ocy - 2 * c->border + 1;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
749 c->h = nh > 0 ? nh : 1;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
750 resize(c, True);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
751 break;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
752 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
753 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
754 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
755
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
756 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
757 buttonpress(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
758 int x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
759 Arg a;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
760 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
761 XButtonPressedEvent *ev = &e->xbutton;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
762
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
763 if(barwin == ev->window) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
764 x = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
765 for(a.i = 0; a.i < ntags; a.i++) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
766 x += textw(tags[a.i]);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
767 if(ev->x < x) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
768 if(ev->button == Button1) {
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
769 toggleview();
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
770 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
771 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
772 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
773 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
774 if(ev->x < x + bmw)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
775 if (ev->button == Button1) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
776 togglemode(NULL);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
777 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
778 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
779 else if((c = getclient(ev->window))) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
780 focus(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
781 if(CLEANMASK(ev->state) != MODKEY)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
782 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
783 if(ev->button == Button1 && (arrange == dofloat || c->isfloat)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
784 restack();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
785 movemouse(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
786 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
787 else if(ev->button == Button2)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
788 zoom(NULL);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
789 else if(ev->button == Button3 && (arrange == dofloat || c->isfloat) &&
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
790 !c->isfixed) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
791 restack();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
792 resizemouse(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
793 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
794 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
795 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
796
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
797 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
798 configurerequest(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
799 unsigned long newmask;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
800 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
801 XConfigureRequestEvent *ev = &e->xconfigurerequest;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
802 XWindowChanges wc;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
803
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
804 if((c = getclient(ev->window))) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
805 c->ismax = False;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
806 if(ev->value_mask & CWX)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
807 c->x = ev->x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
808 if(ev->value_mask & CWY)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
809 c->y = ev->y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
810 if(ev->value_mask & CWWidth)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
811 c->w = ev->width;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
812 if(ev->value_mask & CWHeight)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
813 c->h = ev->height;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
814 if(ev->value_mask & CWBorderWidth)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
815 c->border = ev->border_width;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
816 wc.x = c->x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
817 wc.y = c->y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
818 wc.width = c->w;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
819 wc.height = c->h;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
820 newmask = ev->value_mask & (~(CWSibling | CWStackMode | CWBorderWidth));
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
821 if(newmask)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
822 XConfigureWindow(dpy, c->win, newmask, &wc);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
823 else
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
824 configure(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
825 XSync(dpy, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
826 if(c->isfloat) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
827 resize(c, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
828 if(!isvisible(c))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
829 XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
830 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
831 else
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
832 arrange();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
833 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
834 else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
835 wc.x = ev->x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
836 wc.y = ev->y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
837 wc.width = ev->width;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
838 wc.height = ev->height;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
839 wc.border_width = ev->border_width;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
840 wc.sibling = ev->above;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
841 wc.stack_mode = ev->detail;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
842 XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
843 XSync(dpy, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
844 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
845 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
846
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
847 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
848 destroynotify(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
849 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
850 XDestroyWindowEvent *ev = &e->xdestroywindow;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
851
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
852 if((c = getclient(ev->window)))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
853 unmanage(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
854 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
855
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
856 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
857 enternotify(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
858 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
859 XCrossingEvent *ev = &e->xcrossing;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
860
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
861 if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
862 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
863 if((c = getclient(ev->window)) && isvisible(c))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
864 focus(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
865 else if(ev->window == root) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
866 selscreen = True;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
867 for(c = stack; c && !isvisible(c); c = c->snext);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
868 focus(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
869 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
870 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
871
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
872 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
873 expose(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
874 XExposeEvent *ev = &e->xexpose;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
875
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
876 if(ev->count == 0) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
877 if(barwin == ev->window)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
878 drawstatus();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
879 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
880 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
881
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
882 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
883 keypress(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
884 static unsigned int len = sizeof key / sizeof key[0];
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
885 unsigned int i;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
886 KeySym keysym;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
887 XKeyEvent *ev = &e->xkey;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
888
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
889 keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
890 for(i = 0; i < len; i++) {
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
891 if(keysym == key[i].keysym && CLEANMASK(key[i].mod) == CLEANMASK(ev->state)) {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
892 if(key[i].func)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
893 key[i].func(&key[i].arg);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
894 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
895 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
896 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
897
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
898 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
899 leavenotify(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
900 XCrossingEvent *ev = &e->xcrossing;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
901
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
902 if((ev->window == root) && !ev->same_screen) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
903 selscreen = False;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
904 focus(NULL);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
905 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
906 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
907
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
908 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
909 mappingnotify(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
910 XMappingEvent *ev = &e->xmapping;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
911
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
912 XRefreshKeyboardMapping(ev);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
913 if(ev->request == MappingKeyboard)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
914 grabkeys();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
915 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
916
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
917 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
918 maprequest(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
919 static XWindowAttributes wa;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
920 XMapRequestEvent *ev = &e->xmaprequest;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
921
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
922 if(!XGetWindowAttributes(dpy, ev->window, &wa))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
923 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
924 if(wa.override_redirect) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
925 XSelectInput(dpy, ev->window,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
926 (StructureNotifyMask | PropertyChangeMask));
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
927 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
928 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
929 if(!getclient(ev->window))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
930 manage(ev->window, &wa);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
931 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
932
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
933 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
934 propertynotify(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
935 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
936 Window trans;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
937 XPropertyEvent *ev = &e->xproperty;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
938
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
939 if(ev->state == PropertyDelete)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
940 return; /* ignore */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
941 if((c = getclient(ev->window))) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
942 switch (ev->atom) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
943 default: break;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
944 case XA_WM_TRANSIENT_FOR:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
945 XGetTransientForHint(dpy, c->win, &trans);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
946 if(!c->isfloat && (c->isfloat = (trans != 0)))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
947 arrange();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
948 break;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
949 case XA_WM_NORMAL_HINTS:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
950 updatesizehints(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
951 break;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
952 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
953 if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
954 updatetitle(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
955 if(c == sel)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
956 drawstatus();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
957 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
958 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
959 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
960
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
961 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
962 unmapnotify(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
963 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
964 XUnmapEvent *ev = &e->xunmap;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
965
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
966 if((c = getclient(ev->window)))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
967 unmanage(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
968 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
969
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
970
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
971
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
972 void (*handler[LASTEvent]) (XEvent *) = {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
973 [ButtonPress] = buttonpress,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
974 [ConfigureRequest] = configurerequest,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
975 [DestroyNotify] = destroynotify,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
976 [EnterNotify] = enternotify,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
977 [LeaveNotify] = leavenotify,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
978 [Expose] = expose,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
979 [KeyPress] = keypress,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
980 [MappingNotify] = mappingnotify,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
981 [MapRequest] = maprequest,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
982 [PropertyNotify] = propertynotify,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
983 [UnmapNotify] = unmapnotify
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
984 };
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
985
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
986 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
987 grabkeys(void) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
988 static unsigned int len = sizeof key / sizeof key[0];
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
989 unsigned int i;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
990 KeyCode code;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
991
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
992 XUngrabKey(dpy, AnyKey, AnyModifier, root);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
993 for(i = 0; i < len; i++) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
994 code = XKeysymToKeycode(dpy, key[i].keysym);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
995 XGrabKey(dpy, code, key[i].mod, root, True,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
996 GrabModeAsync, GrabModeAsync);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
997 XGrabKey(dpy, code, key[i].mod | LockMask, root, True,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
998 GrabModeAsync, GrabModeAsync);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
999 XGrabKey(dpy, code, key[i].mod | numlockmask, root, True,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1000 GrabModeAsync, GrabModeAsync);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1001 XGrabKey(dpy, code, key[i].mod | numlockmask | LockMask, root, True,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1002 GrabModeAsync, GrabModeAsync);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1003 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1004 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1005
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1006 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1007 procevent(void) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1008 XEvent ev;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1009
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1010 while(XPending(dpy)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1011 XNextEvent(dpy, &ev);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1012 if(handler[ev.type])
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1013 (handler[ev.type])(&ev); /* call handler */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1014 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1015 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1016
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1017
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1018
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1019
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1020
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1021
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1022
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1023
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1024
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1025
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1026
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1027
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1028
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1029
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1030
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1031 /* from draw.c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1032 /* static */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1033
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1034 static unsigned int
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1035 textnw(const char *text, unsigned int len) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1036 XRectangle r;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1037
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1038 if(dc.font.set) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1039 XmbTextExtents(dc.font.set, text, len, NULL, &r);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1040 return r.width;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1041 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1042 return XTextWidth(dc.font.xfont, text, len);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1043 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1044
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1045 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1046 drawtext(const char *text, unsigned long col[ColLast]) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1047 int x, y, w, h;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1048 static char buf[256];
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1049 unsigned int len, olen;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1050 XGCValues gcv;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1051 XRectangle r = { dc.x, dc.y, dc.w, dc.h };
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1052
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1053 XSetForeground(dpy, dc.gc, col[ColBG]);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1054 XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1055 if(!text)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1056 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1057 w = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1058 olen = len = strlen(text);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1059 if(len >= sizeof buf)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1060 len = sizeof buf - 1;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1061 memcpy(buf, text, len);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1062 buf[len] = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1063 h = dc.font.ascent + dc.font.descent;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1064 y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1065 x = dc.x + (h / 2);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1066 /* shorten text if necessary */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1067 while(len && (w = textnw(buf, len)) > dc.w - h)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1068 buf[--len] = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1069 if(len < olen) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1070 if(len > 1)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1071 buf[len - 1] = '.';
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1072 if(len > 2)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1073 buf[len - 2] = '.';
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1074 if(len > 3)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1075 buf[len - 3] = '.';
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1076 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1077 if(w > dc.w)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1078 return; /* too long */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1079 gcv.foreground = col[ColFG];
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1080 if(dc.font.set) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1081 XChangeGC(dpy, dc.gc, GCForeground, &gcv);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1082 XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, buf, len);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1083 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1084 gcv.font = dc.font.xfont->fid;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1085 XChangeGC(dpy, dc.gc, GCForeground | GCFont, &gcv);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1086 XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1087 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1088 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1089
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1090
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1091
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1092 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1093 drawstatus(void) {
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
1094 int x;
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
1095 unsigned int i;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1096
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1097 dc.x = dc.y = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1098 for(i = 0; i < ntags; i++) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1099 dc.w = textw(tags[i]);
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
1100 drawtext(tags[i], ( ((i == 0 && seltag) || (i == 1 && !seltag)) ? dc.sel : dc.norm));
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1101 dc.x += dc.w + 1;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1102 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1103 dc.w = bmw;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1104 drawtext("", dc.norm);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1105 x = dc.x + dc.w;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1106 dc.w = textw(stext);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1107 dc.x = sw - dc.w;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1108 if(dc.x < x) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1109 dc.x = x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1110 dc.w = sw - x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1111 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1112 drawtext(stext, dc.norm);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1113 if((dc.w = dc.x - x) > bh) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1114 dc.x = x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1115 drawtext(sel ? sel->name : NULL, dc.norm);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1116 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1117 XCopyArea(dpy, dc.drawable, barwin, dc.gc, 0, 0, sw, bh, 0, 0);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1118 XSync(dpy, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1119 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1120
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1121 unsigned long
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1122 getcolor(const char *colstr) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1123 Colormap cmap = DefaultColormap(dpy, screen);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1124 XColor color;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1125
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1126 if(!XAllocNamedColor(dpy, cmap, colstr, &color, &color))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1127 eprint("error, cannot allocate color '%s'\n", colstr);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1128 return color.pixel;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1129 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1130
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1131 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1132 setfont(const char *fontstr) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1133 char *def, **missing;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1134 int i, n;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1135
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1136 missing = NULL;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1137 if(dc.font.set)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1138 XFreeFontSet(dpy, dc.font.set);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1139 dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1140 if(missing) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1141 while(n--)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1142 fprintf(stderr, "missing fontset: %s\n", missing[n]);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1143 XFreeStringList(missing);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1144 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1145 if(dc.font.set) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1146 XFontSetExtents *font_extents;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1147 XFontStruct **xfonts;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1148 char **font_names;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1149 dc.font.ascent = dc.font.descent = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1150 font_extents = XExtentsOfFontSet(dc.font.set);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1151 n = XFontsOfFontSet(dc.font.set, &xfonts, &font_names);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1152 for(i = 0, dc.font.ascent = 0, dc.font.descent = 0; i < n; i++) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1153 if(dc.font.ascent < (*xfonts)->ascent)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1154 dc.font.ascent = (*xfonts)->ascent;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1155 if(dc.font.descent < (*xfonts)->descent)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1156 dc.font.descent = (*xfonts)->descent;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1157 xfonts++;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1158 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1159 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1160 if(dc.font.xfont)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1161 XFreeFont(dpy, dc.font.xfont);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1162 dc.font.xfont = NULL;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1163 if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr)))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1164 eprint("error, cannot load font: '%s'\n", fontstr);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1165 dc.font.ascent = dc.font.xfont->ascent;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1166 dc.font.descent = dc.font.xfont->descent;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1167 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1168 dc.font.height = dc.font.ascent + dc.font.descent;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1169 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1170
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1171 unsigned int
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1172 textw(const char *text) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1173 return textnw(text, strlen(text)) + dc.font.height;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1174 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1175
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1176
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1177
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1178
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1179
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1180
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1181
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1182
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1183
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1184
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1185
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1186 /* from client.c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1187 /* static */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1188
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1189 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1190 detachstack(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1191 Client **tc;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1192 for(tc=&stack; *tc && *tc != c; tc=&(*tc)->snext);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1193 *tc = c->snext;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1194 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1195
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1196 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1197 grabbuttons(Client *c, Bool focused) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1198 XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1199
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1200 if(focused) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1201 XGrabButton(dpy, Button1, MODKEY, c->win, False, BUTTONMASK,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1202 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1203 XGrabButton(dpy, Button1, MODKEY | LockMask, c->win, False, BUTTONMASK,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1204 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1205 XGrabButton(dpy, Button1, MODKEY | numlockmask, c->win, False, BUTTONMASK,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1206 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1207 XGrabButton(dpy, Button1, MODKEY | numlockmask | LockMask, c->win, False, BUTTONMASK,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1208 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1209
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1210 XGrabButton(dpy, Button2, MODKEY, c->win, False, BUTTONMASK,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1211 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1212 XGrabButton(dpy, Button2, MODKEY | LockMask, c->win, False, BUTTONMASK,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1213 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1214 XGrabButton(dpy, Button2, MODKEY | numlockmask, c->win, False, BUTTONMASK,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1215 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1216 XGrabButton(dpy, Button2, MODKEY | numlockmask | LockMask, c->win, False, BUTTONMASK,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1217 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1218
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1219 XGrabButton(dpy, Button3, MODKEY, c->win, False, BUTTONMASK,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1220 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1221 XGrabButton(dpy, Button3, MODKEY | LockMask, c->win, False, BUTTONMASK,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1222 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1223 XGrabButton(dpy, Button3, MODKEY | numlockmask, c->win, False, BUTTONMASK,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1224 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1225 XGrabButton(dpy, Button3, MODKEY | numlockmask | LockMask, c->win, False, BUTTONMASK,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1226 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1227 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1228 XGrabButton(dpy, AnyButton, AnyModifier, c->win, False, BUTTONMASK,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1229 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1230 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1231 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1232
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1233 static void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1234 setclientstate(Client *c, long state) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1235 long data[] = {state, None};
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1236 XChangeProperty(dpy, c->win, wmatom[WMState], wmatom[WMState], 32,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1237 PropModeReplace, (unsigned char *)data, 2);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1238 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1239
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1240 static int
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1241 xerrordummy(Display *dsply, XErrorEvent *ee) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1242 return 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1243 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1244
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1245
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1246
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1247 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1248 configure(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1249 XEvent synev;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1250
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1251 synev.type = ConfigureNotify;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1252 synev.xconfigure.display = dpy;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1253 synev.xconfigure.event = c->win;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1254 synev.xconfigure.window = c->win;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1255 synev.xconfigure.x = c->x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1256 synev.xconfigure.y = c->y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1257 synev.xconfigure.width = c->w;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1258 synev.xconfigure.height = c->h;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1259 synev.xconfigure.border_width = c->border;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1260 synev.xconfigure.above = None;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1261 XSendEvent(dpy, c->win, True, NoEventMask, &synev);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1262 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1263
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1264 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1265 focus(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1266 if(c && !isvisible(c))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1267 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1268 if(sel && sel != c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1269 grabbuttons(sel, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1270 XSetWindowBorder(dpy, sel->win, dc.norm[ColBorder]);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1271 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1272 if(c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1273 detachstack(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1274 c->snext = stack;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1275 stack = c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1276 grabbuttons(c, True);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1277 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1278 sel = c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1279 drawstatus();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1280 if(!selscreen)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1281 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1282 if(c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1283 XSetWindowBorder(dpy, c->win, dc.sel[ColBorder]);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1284 XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1285 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1286 XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1287 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1288 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1289
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1290 Client *
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1291 getclient(Window w) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1292 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1293
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1294 for(c = clients; c; c = c->next) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1295 if(c->win == w) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1296 return c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1297 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1298 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1299 return NULL;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1300 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1301
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1302 Bool
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1303 isprotodel(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1304 int i, n;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1305 Atom *protocols;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1306 Bool ret = False;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1307
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1308 if(XGetWMProtocols(dpy, c->win, &protocols, &n)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1309 for(i = 0; !ret && i < n; i++)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1310 if(protocols[i] == wmatom[WMDelete])
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1311 ret = True;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1312 XFree(protocols);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1313 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1314 return ret;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1315 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1316
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1317 void
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
1318 killclient() {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1319 if(!sel)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1320 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1321 if(isprotodel(sel))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1322 sendevent(sel->win, wmatom[WMProtocols], wmatom[WMDelete]);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1323 else
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1324 XKillClient(dpy, sel->win);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1325 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1326
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1327 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1328 manage(Window w, XWindowAttributes *wa) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1329 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1330 Window trans;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1331
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1332 c = emallocz(sizeof(Client));
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
1333 c->tag = True;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1334 c->win = w;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1335 c->x = wa->x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1336 c->y = wa->y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1337 c->w = wa->width;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1338 c->h = wa->height;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1339 if(c->w == sw && c->h == sh) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1340 c->border = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1341 c->x = sx;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1342 c->y = sy;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1343 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1344 c->border = BORDERPX;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1345 if(c->x + c->w + 2 * c->border > wax + waw)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1346 c->x = wax + waw - c->w - 2 * c->border;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1347 if(c->y + c->h + 2 * c->border > way + wah)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1348 c->y = way + wah - c->h - 2 * c->border;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1349 if(c->x < wax)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1350 c->x = wax;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1351 if(c->y < way)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1352 c->y = way;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1353 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1354 updatesizehints(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1355 XSelectInput(dpy, c->win,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1356 StructureNotifyMask | PropertyChangeMask | EnterWindowMask);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1357 XGetTransientForHint(dpy, c->win, &trans);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1358 grabbuttons(c, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1359 XSetWindowBorder(dpy, c->win, dc.norm[ColBorder]);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1360 updatetitle(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1361 settags(c, getclient(trans));
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1362 if(!c->isfloat)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1363 c->isfloat = trans || c->isfixed;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1364 if(clients)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1365 clients->prev = c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1366 c->next = clients;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1367 c->snext = stack;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1368 stack = clients = c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1369 XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1370 XMapWindow(dpy, c->win);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1371 setclientstate(c, NormalState);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1372 if(isvisible(c))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1373 focus(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1374 arrange();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1375 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1376
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1377 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1378 resize(Client *c, Bool sizehints) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1379 float actual, dx, dy, max, min;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1380 XWindowChanges wc;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1381
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1382 if(c->w <= 0 || c->h <= 0)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1383 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1384 if(sizehints) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1385 if(c->minw && c->w < c->minw)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1386 c->w = c->minw;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1387 if(c->minh && c->h < c->minh)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1388 c->h = c->minh;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1389 if(c->maxw && c->w > c->maxw)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1390 c->w = c->maxw;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1391 if(c->maxh && c->h > c->maxh)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1392 c->h = c->maxh;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1393 /* inspired by algorithm from fluxbox */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1394 if(c->minay > 0 && c->maxay && (c->h - c->baseh) > 0) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1395 dx = (float)(c->w - c->basew);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1396 dy = (float)(c->h - c->baseh);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1397 min = (float)(c->minax) / (float)(c->minay);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1398 max = (float)(c->maxax) / (float)(c->maxay);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1399 actual = dx / dy;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1400 if(max > 0 && min > 0 && actual > 0) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1401 if(actual < min) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1402 dy = (dx * min + dy) / (min * min + 1);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1403 dx = dy * min;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1404 c->w = (int)dx + c->basew;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1405 c->h = (int)dy + c->baseh;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1406 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1407 else if(actual > max) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1408 dy = (dx * min + dy) / (max * max + 1);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1409 dx = dy * min;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1410 c->w = (int)dx + c->basew;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1411 c->h = (int)dy + c->baseh;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1412 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1413 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1414 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1415 if(c->incw)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1416 c->w -= (c->w - c->basew) % c->incw;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1417 if(c->inch)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1418 c->h -= (c->h - c->baseh) % c->inch;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1419 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1420 if(c->w == sw && c->h == sh)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1421 c->border = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1422 else
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1423 c->border = BORDERPX;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1424 /* offscreen appearance fixes */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1425 if(c->x > sw)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1426 c->x = sw - c->w - 2 * c->border;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1427 if(c->y > sh)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1428 c->y = sh - c->h - 2 * c->border;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1429 if(c->x + c->w + 2 * c->border < sx)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1430 c->x = sx;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1431 if(c->y + c->h + 2 * c->border < sy)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1432 c->y = sy;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1433 wc.x = c->x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1434 wc.y = c->y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1435 wc.width = c->w;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1436 wc.height = c->h;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1437 wc.border_width = c->border;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1438 XConfigureWindow(dpy, c->win, CWX | CWY | CWWidth | CWHeight | CWBorderWidth, &wc);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1439 configure(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1440 XSync(dpy, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1441 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1442
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1443 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1444 updatesizehints(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1445 long msize;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1446 XSizeHints size;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1447
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1448 if(!XGetWMNormalHints(dpy, c->win, &size, &msize) || !size.flags)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1449 size.flags = PSize;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1450 c->flags = size.flags;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1451 if(c->flags & PBaseSize) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1452 c->basew = size.base_width;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1453 c->baseh = size.base_height;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1454 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1455 c->basew = c->baseh = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1456 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1457 if(c->flags & PResizeInc) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1458 c->incw = size.width_inc;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1459 c->inch = size.height_inc;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1460 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1461 c->incw = c->inch = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1462 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1463 if(c->flags & PMaxSize) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1464 c->maxw = size.max_width;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1465 c->maxh = size.max_height;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1466 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1467 c->maxw = c->maxh = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1468 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1469 if(c->flags & PMinSize) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1470 c->minw = size.min_width;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1471 c->minh = size.min_height;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1472 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1473 c->minw = c->minh = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1474 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1475 if(c->flags & PAspect) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1476 c->minax = size.min_aspect.x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1477 c->minay = size.min_aspect.y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1478 c->maxax = size.max_aspect.x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1479 c->maxay = size.max_aspect.y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1480 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1481 c->minax = c->minay = c->maxax = c->maxay = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1482 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1483 c->isfixed = (c->maxw && c->minw && c->maxh && c->minh &&
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1484 c->maxw == c->minw && c->maxh == c->minh);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1485 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1486
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1487 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1488 updatetitle(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1489 char **list = NULL;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1490 int n;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1491 XTextProperty name;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1492
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1493 name.nitems = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1494 c->name[0] = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1495 XGetTextProperty(dpy, c->win, &name, netatom[NetWMName]);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1496 if(!name.nitems)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1497 XGetWMName(dpy, c->win, &name);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1498 if(!name.nitems)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1499 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1500 if(name.encoding == XA_STRING)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1501 strncpy(c->name, (char *)name.value, sizeof c->name);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1502 else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1503 if(XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success && n > 0 && *list) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1504 strncpy(c->name, *list, sizeof c->name);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1505 XFreeStringList(list);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1506 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1507 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1508 XFree(name.value);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1509 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1510
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1511 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1512 unmanage(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1513 Client *nc;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1514
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1515 /* The server grab construct avoids race conditions. */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1516 XGrabServer(dpy);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1517 XSetErrorHandler(xerrordummy);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1518 detach(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1519 detachstack(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1520 if(sel == c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1521 for(nc = stack; nc && !isvisible(nc); nc = nc->snext);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1522 focus(nc);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1523 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1524 XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1525 setclientstate(c, WithdrawnState);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1526 free(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1527 XSync(dpy, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1528 XSetErrorHandler(xerror);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1529 XUngrabServer(dpy);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1530 arrange();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1531 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1532
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1533
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1534
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1535
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1536
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1537
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1538
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1539
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1540
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1541
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1542
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1543
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1544
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1545
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1546
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1547
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1548
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1549
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1550
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1551 /* static */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1552
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1553
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1554 static void
487
be4f90c03582 applied Jukkas patch
arg@mmvi
parents: 473
diff changeset
1555 cleanup(void) {
302
3b11e32e8d7e we close stdin as well
Anselm R.Garbe <arg@10ksloc.org>
parents: 295
diff changeset
1556 close(STDIN_FILENO);
645
8e6d75c68b69 changed arg's color scheme
arg@mig29
parents: 644
diff changeset
1557 while(stack) {
708
a2d568a5cdb8 applied Sanders all5.patch (thanks for your weekend session, Sander!)
Anselm R. Garbe <arg@suckless.org>
parents: 697
diff changeset
1558 resize(stack, True);
645
8e6d75c68b69 changed arg's color scheme
arg@mig29
parents: 644
diff changeset
1559 unmanage(stack);
76
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1560 }
295
7565875d07d3 extended cleanup
Anselm R.Garbe <arg@10ksloc.org>
parents: 293
diff changeset
1561 if(dc.font.set)
7565875d07d3 extended cleanup
Anselm R.Garbe <arg@10ksloc.org>
parents: 293
diff changeset
1562 XFreeFontSet(dpy, dc.font.set);
7565875d07d3 extended cleanup
Anselm R.Garbe <arg@10ksloc.org>
parents: 293
diff changeset
1563 else
7565875d07d3 extended cleanup
Anselm R.Garbe <arg@10ksloc.org>
parents: 293
diff changeset
1564 XFreeFont(dpy, dc.font.xfont);
292
4aa632b6ba66 changed main event loop
Anselm R.Garbe <arg@10ksloc.org>
parents: 291
diff changeset
1565 XUngrabKey(dpy, AnyKey, AnyModifier, root);
295
7565875d07d3 extended cleanup
Anselm R.Garbe <arg@10ksloc.org>
parents: 293
diff changeset
1566 XFreePixmap(dpy, dc.drawable);
7565875d07d3 extended cleanup
Anselm R.Garbe <arg@10ksloc.org>
parents: 293
diff changeset
1567 XFreeGC(dpy, dc.gc);
309
204427dcc087 corrected order of cleanup code
Anselm R.Garbe <arg@10ksloc.org>
parents: 302
diff changeset
1568 XDestroyWindow(dpy, barwin);
616
f617c75a8405 improved the memory leak prevention
arg@mig29
parents: 583
diff changeset
1569 XFreeCursor(dpy, cursor[CurNormal]);
f617c75a8405 improved the memory leak prevention
arg@mig29
parents: 583
diff changeset
1570 XFreeCursor(dpy, cursor[CurResize]);
f617c75a8405 improved the memory leak prevention
arg@mig29
parents: 583
diff changeset
1571 XFreeCursor(dpy, cursor[CurMove]);
76
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1572 XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
292
4aa632b6ba66 changed main event loop
Anselm R.Garbe <arg@10ksloc.org>
parents: 291
diff changeset
1573 XSync(dpy, False);
76
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1574 }
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1575
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1576 static void
487
be4f90c03582 applied Jukkas patch
arg@mmvi
parents: 473
diff changeset
1577 scan(void) {
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1578 unsigned int i, num;
123
61490330e90a cleaned up code
arg@10ksloc.org
parents: 99
diff changeset
1579 Window *wins, d1, d2;
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1580 XWindowAttributes wa;
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1581
292
4aa632b6ba66 changed main event loop
Anselm R.Garbe <arg@10ksloc.org>
parents: 291
diff changeset
1582 wins = NULL;
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1583 if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1584 for(i = 0; i < num; i++) {
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1585 if(!XGetWindowAttributes(dpy, wins[i], &wa))
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1586 continue;
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1587 if(wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1588 continue;
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1589 if(wa.map_state == IsViewable)
10
703255003abb changed how manage client works
Anselm R. Garbe <garbeam@wmii.de>
parents: 9
diff changeset
1590 manage(wins[i], &wa);
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1591 }
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1592 }
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1593 if(wins)
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1594 XFree(wins);
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1595 }
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1596
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1597 static void
487
be4f90c03582 applied Jukkas patch
arg@mmvi
parents: 473
diff changeset
1598 setup(void) {
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1599 int i, j;
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1600 unsigned int mask;
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1601 Window w;
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1602 XModifierKeymap *modmap;
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1603 XSetWindowAttributes wa;
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1604
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1605 /* init atoms */
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1606 wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1607 wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
725
d99be681d502 handling WM_STATE seems to make DnD in gtk/qt apps working, well let's handle this in dwm as well
Anselm R. Garbe <arg@suckless.org>
parents: 716
diff changeset
1608 wmatom[WMState] = XInternAtom(dpy, "WM_STATE", False);
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1609 netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1610 netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1611 XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1612 PropModeReplace, (unsigned char *) netatom, NetLast);
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1613 /* init cursors */
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1614 cursor[CurNormal] = XCreateFontCursor(dpy, XC_left_ptr);
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1615 cursor[CurResize] = XCreateFontCursor(dpy, XC_sizing);
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1616 cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur);
532
651f2c868b31 code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents: 530
diff changeset
1617 /* init modifier map */
679
5f0134b88b8d small fix of initial numlockmask value
Anselm R. Garbe <arg@suckless.org>
parents: 675
diff changeset
1618 numlockmask = 0;
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1619 modmap = XGetModifierMapping(dpy);
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1620 for (i = 0; i < 8; i++) {
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1621 for (j = 0; j < modmap->max_keypermod; j++) {
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1622 if(modmap->modifiermap[i * modmap->max_keypermod + j] == XKeysymToKeycode(dpy, XK_Num_Lock))
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1623 numlockmask = (1 << i);
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1624 }
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1625 }
616
f617c75a8405 improved the memory leak prevention
arg@mig29
parents: 583
diff changeset
1626 XFreeModifiermap(modmap);
532
651f2c868b31 code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents: 530
diff changeset
1627 /* select for events */
461
9d23330a5268 removed a bunch of lines through making function signatures more consistent with my style ( { does not belong to a new line, if function args are single-lined)
Anselm R. Garbe <arg@10kloc.org>
parents: 458
diff changeset
1628 wa.event_mask = SubstructureRedirectMask | SubstructureNotifyMask
9d23330a5268 removed a bunch of lines through making function signatures more consistent with my style ( { does not belong to a new line, if function args are single-lined)
Anselm R. Garbe <arg@10kloc.org>
parents: 458
diff changeset
1629 | EnterWindowMask | LeaveWindowMask;
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1630 wa.cursor = cursor[CurNormal];
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1631 XChangeWindowAttributes(dpy, root, CWEventMask | CWCursor, &wa);
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1632 grabkeys();
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1633 initrregs();
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
1634 ntags = 2;
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
1635 seltag = True;
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1636 /* style */
689
cbec08a54a15 implemented new color scheme accordingly to Sanders proposal
Anselm R. Garbe <arg@suckless.org>
parents: 688
diff changeset
1637 dc.norm[ColBorder] = getcolor(NORMBORDERCOLOR);
353
8a06efe5b563 new color stuff/new rendering stuff
Anselm R. Garbe <arg@10kloc.org>
parents: 352
diff changeset
1638 dc.norm[ColBG] = getcolor(NORMBGCOLOR);
8a06efe5b563 new color stuff/new rendering stuff
Anselm R. Garbe <arg@10kloc.org>
parents: 352
diff changeset
1639 dc.norm[ColFG] = getcolor(NORMFGCOLOR);
689
cbec08a54a15 implemented new color scheme accordingly to Sanders proposal
Anselm R. Garbe <arg@suckless.org>
parents: 688
diff changeset
1640 dc.sel[ColBorder] = getcolor(SELBORDERCOLOR);
353
8a06efe5b563 new color stuff/new rendering stuff
Anselm R. Garbe <arg@10kloc.org>
parents: 352
diff changeset
1641 dc.sel[ColBG] = getcolor(SELBGCOLOR);
8a06efe5b563 new color stuff/new rendering stuff
Anselm R. Garbe <arg@10kloc.org>
parents: 352
diff changeset
1642 dc.sel[ColFG] = getcolor(SELFGCOLOR);
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1643 setfont(FONT);
532
651f2c868b31 code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents: 530
diff changeset
1644 /* geometry */
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1645 sx = sy = 0;
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1646 sw = DisplayWidth(dpy, screen);
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1647 sh = DisplayHeight(dpy, screen);
650
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 645
diff changeset
1648 nmaster = NMASTER;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1649 bmw = 1;
532
651f2c868b31 code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents: 530
diff changeset
1650 /* bar */
353
8a06efe5b563 new color stuff/new rendering stuff
Anselm R. Garbe <arg@10kloc.org>
parents: 352
diff changeset
1651 dc.h = bh = dc.font.height + 2;
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1652 wa.override_redirect = 1;
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1653 wa.background_pixmap = ParentRelative;
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1654 wa.event_mask = ButtonPressMask | ExposureMask;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1655 barwin = XCreateWindow(dpy, root, sx, sy, sw, bh, 0,
739
7834ffd650d5 added TOPBAR option for making the bar appear what the user likes
Anselm R. Garbe <arg@suckless.org>
parents: 737
diff changeset
1656 DefaultDepth(dpy, screen), CopyFromParent, DefaultVisual(dpy, screen),
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1657 CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1658 XDefineCursor(dpy, barwin, cursor[CurNormal]);
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1659 XMapRaised(dpy, barwin);
532
651f2c868b31 code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents: 530
diff changeset
1660 strcpy(stext, "dwm-"VERSION);
565
fe766305eed1 applied Gottox' windowarea patch
arg@mig29
parents: 532
diff changeset
1661 /* windowarea */
fe766305eed1 applied Gottox' windowarea patch
arg@mig29
parents: 532
diff changeset
1662 wax = sx;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1663 way = sy + bh;
565
fe766305eed1 applied Gottox' windowarea patch
arg@mig29
parents: 532
diff changeset
1664 wah = sh - bh;
fe766305eed1 applied Gottox' windowarea patch
arg@mig29
parents: 532
diff changeset
1665 waw = sw;
532
651f2c868b31 code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents: 530
diff changeset
1666 /* pixmap for everything */
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1667 dc.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen));
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1668 dc.gc = XCreateGC(dpy, root, 0, 0);
344
93192711a36a changing tag indicator through underline
Anselm R. Garbe <arg@10kloc.org>
parents: 339
diff changeset
1669 XSetLineAttributes(dpy, dc.gc, 1, LineSolid, CapButt, JoinMiter);
532
651f2c868b31 code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents: 530
diff changeset
1670 /* multihead support */
716
4ce65f61f01b renamed activescreen into selscreen
Anselm R. Garbe <arg@suckless.org>
parents: 714
diff changeset
1671 selscreen = XQueryPointer(dpy, root, &w, &w, &i, &i, &i, &i, &mask);
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1672 }
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1673
76
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1674 /*
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1675 * Startup Error handler to check if another window manager
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1676 * is already running.
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1677 */
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1678 static int
461
9d23330a5268 removed a bunch of lines through making function signatures more consistent with my style ( { does not belong to a new line, if function args are single-lined)
Anselm R. Garbe <arg@10kloc.org>
parents: 458
diff changeset
1679 xerrorstart(Display *dsply, XErrorEvent *ee) {
76
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1680 otherwm = True;
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1681 return -1;
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1682 }
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1683
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1684
84
052fe7498930 ordered variables in structs and source files alphabetically
Anselm R. Garbe <garbeam@wmii.de>
parents: 79
diff changeset
1685
13
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1686 void
461
9d23330a5268 removed a bunch of lines through making function signatures more consistent with my style ( { does not belong to a new line, if function args are single-lined)
Anselm R. Garbe <arg@10kloc.org>
parents: 458
diff changeset
1687 sendevent(Window w, Atom a, long value) {
13
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1688 XEvent e;
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1689
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1690 e.type = ClientMessage;
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1691 e.xclient.window = w;
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1692 e.xclient.message_type = a;
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1693 e.xclient.format = 32;
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1694 e.xclient.data.l[0] = value;
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1695 e.xclient.data.l[1] = CurrentTime;
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1696 XSendEvent(dpy, w, False, NoEventMask, &e);
79
aabebd6e61f3 fixed XSync handling and finished man page
Anselm R. Garbe <garbeam@wmii.de>
parents: 78
diff changeset
1697 XSync(dpy, False);
13
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1698 }
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1699
76
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1700 void
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
1701 quit() {
302
3b11e32e8d7e we close stdin as well
Anselm R.Garbe <arg@10ksloc.org>
parents: 295
diff changeset
1702 readin = running = False;
75
f08271b7cb20 rearranged several stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 74
diff changeset
1703 }
f08271b7cb20 rearranged several stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 74
diff changeset
1704
532
651f2c868b31 code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents: 530
diff changeset
1705 /* There's no way to check accesses to destroyed windows, thus those cases are
84
052fe7498930 ordered variables in structs and source files alphabetically
Anselm R. Garbe <garbeam@wmii.de>
parents: 79
diff changeset
1706 * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
455
4e3e22673073 fixed some other comments, now also the code side seems to be at a level to be reviewed by experienced programmers
Anselm R. Garbe <arg@10kloc.org>
parents: 446
diff changeset
1707 * default error handler, which may call exit.
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1708 */
10
703255003abb changed how manage client works
Anselm R. Garbe <garbeam@wmii.de>
parents: 9
diff changeset
1709 int
461
9d23330a5268 removed a bunch of lines through making function signatures more consistent with my style ( { does not belong to a new line, if function args are single-lined)
Anselm R. Garbe <arg@10kloc.org>
parents: 458
diff changeset
1710 xerror(Display *dpy, XErrorEvent *ee) {
75
f08271b7cb20 rearranged several stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 74
diff changeset
1711 if(ee->error_code == BadWindow
123
61490330e90a cleaned up code
arg@10ksloc.org
parents: 99
diff changeset
1712 || (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
61490330e90a cleaned up code
arg@10ksloc.org
parents: 99
diff changeset
1713 || (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
61490330e90a cleaned up code
arg@10ksloc.org
parents: 99
diff changeset
1714 || (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable)
61490330e90a cleaned up code
arg@10ksloc.org
parents: 99
diff changeset
1715 || (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
61490330e90a cleaned up code
arg@10ksloc.org
parents: 99
diff changeset
1716 || (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
458
81fcd7ddafee applied Christof Musik's multihead patch for a pathologic cornercase
Anselm R. Garbe <arg@10kloc.org>
parents: 455
diff changeset
1717 || (ee->request_code == X_GrabKey && ee->error_code == BadAccess)
81fcd7ddafee applied Christof Musik's multihead patch for a pathologic cornercase
Anselm R. Garbe <arg@10kloc.org>
parents: 455
diff changeset
1718 || (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1719 return 0;
34
cd30cce52b78 added logo+description
Anselm R. Garbe <garbeam@wmii.de>
parents: 33
diff changeset
1720 fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
123
61490330e90a cleaned up code
arg@10ksloc.org
parents: 99
diff changeset
1721 ee->request_code, ee->error_code);
455
4e3e22673073 fixed some other comments, now also the code side seems to be at a level to be reviewed by experienced programmers
Anselm R. Garbe <arg@10kloc.org>
parents: 446
diff changeset
1722 return xerrorxlib(dpy, ee); /* may call exit */
27
f96fb3fd8203 added grid mode on Mod1Mask g
Anselm R. Garbe <garbeam@wmii.de>
parents: 26
diff changeset
1723 }
f96fb3fd8203 added grid mode on Mod1Mask g
Anselm R. Garbe <garbeam@wmii.de>
parents: 26
diff changeset
1724
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1725 int
461
9d23330a5268 removed a bunch of lines through making function signatures more consistent with my style ( { does not belong to a new line, if function args are single-lined)
Anselm R. Garbe <arg@10kloc.org>
parents: 458
diff changeset
1726 main(int argc, char *argv[]) {
581
601842ee4484 applied Jukka's sizeof K&R compliance patch, applied Manuels' last-line printage proposal for stdin reading.
arg@mig29
parents: 580
diff changeset
1727 char *p;
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1728 int r, xfd;
59
5d4653de9a1c implemented dwm reading status text from stdin
Anselm R. Garbe <garbeam@wmii.de>
parents: 58
diff changeset
1729 fd_set rd;
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1730
137
77922a389fa8 simplified main.c, switching back to single urxvt usage
arg@10ksloc.org
parents: 126
diff changeset
1731 if(argc == 2 && !strncmp("-v", argv[1], 3)) {
644
1ed8c40dde36 corrections
arg@mig29
parents: 643
diff changeset
1732 fputs("dwm-"VERSION", (C)opyright MMVI-MMVII Anselm R. Garbe\n", stdout);
137
77922a389fa8 simplified main.c, switching back to single urxvt usage
arg@10ksloc.org
parents: 126
diff changeset
1733 exit(EXIT_SUCCESS);
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
1734 } else if(argc != 1) {
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
1735 eprint("usage: dwm [-v]\n");
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1736 }
619
bda4880c462d with this patch everything works fine for me
arg@mig29
parents: 616
diff changeset
1737 setlocale(LC_CTYPE, "");
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1738 dpy = XOpenDisplay(0);
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
1739 if(!dpy) {
197
c13f374f836c slight fix
arg@10ksloc.org
parents: 191
diff changeset
1740 eprint("dwm: cannot open display\n");
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
1741 }
265
573b1c4a71a4 reducing ConnectionNumber calls to a bare minimum
Anselm R.Garbe <arg@10ksloc.org>
parents: 262
diff changeset
1742 xfd = ConnectionNumber(dpy);
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1743 screen = DefaultScreen(dpy);
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1744 root = RootWindow(dpy, screen);
75
f08271b7cb20 rearranged several stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 74
diff changeset
1745 otherwm = False;
f08271b7cb20 rearranged several stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 74
diff changeset
1746 XSetErrorHandler(xerrorstart);
197
c13f374f836c slight fix
arg@10ksloc.org
parents: 191
diff changeset
1747 /* this causes an error if some other window manager is running */
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1748 XSelectInput(dpy, root, SubstructureRedirectMask);
78
0d71fb80b592 changing XFlush into XSync
Anselm R. Garbe <garbeam@wmii.de>
parents: 77
diff changeset
1749 XSync(dpy, False);
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
1750 if(otherwm) {
75
f08271b7cb20 rearranged several stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 74
diff changeset
1751 eprint("dwm: another window manager is already running\n");
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
1752 }
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1753
292
4aa632b6ba66 changed main event loop
Anselm R.Garbe <arg@10ksloc.org>
parents: 291
diff changeset
1754 XSync(dpy, False);
78
0d71fb80b592 changing XFlush into XSync
Anselm R. Garbe <garbeam@wmii.de>
parents: 77
diff changeset
1755 XSetErrorHandler(NULL);
75
f08271b7cb20 rearranged several stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 74
diff changeset
1756 xerrorxlib = XSetErrorHandler(xerror);
275
425cd4490c1e some other small fixes
Anselm R.Garbe <arg@10ksloc.org>
parents: 274
diff changeset
1757 XSync(dpy, False);
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1758 setup();
74
5370ef170cc9 sanitized names
Anselm R. Garbe <garbeam@wmii.de>
parents: 73
diff changeset
1759 drawstatus();
75
f08271b7cb20 rearranged several stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 74
diff changeset
1760 scan();
3
e969f3575b7a several new changes, made gridmenu working
Anselm R. Garbe <garbeam@wmii.de>
parents: 2
diff changeset
1761
214
51ac019cf587 small fix of a comment
arg@10ksloc.org
parents: 203
diff changeset
1762 /* main event loop, also reads status text from stdin */
242
cd15de32e173 prepared 0.8
Anselm R.Garbe <arg@10ksloc.org>
parents: 237
diff changeset
1763 XSync(dpy, False);
292
4aa632b6ba66 changed main event loop
Anselm R.Garbe <arg@10ksloc.org>
parents: 291
diff changeset
1764 procevent();
302
3b11e32e8d7e we close stdin as well
Anselm R.Garbe <arg@10ksloc.org>
parents: 295
diff changeset
1765 readin = True;
5
e5018cae273f added several other stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 3
diff changeset
1766 while(running) {
59
5d4653de9a1c implemented dwm reading status text from stdin
Anselm R. Garbe <garbeam@wmii.de>
parents: 58
diff changeset
1767 FD_ZERO(&rd);
164
21071ae1fe68 made fullscreen apps working fine in floating mode (there is no sane way to make them work in tiled mode, thus I switch to floating mode if I run such kind of app), also fixed the xterm issue reported by Sander
arg@10ksloc.org
parents: 162
diff changeset
1768 if(readin)
21071ae1fe68 made fullscreen apps working fine in floating mode (there is no sane way to make them work in tiled mode, thus I switch to floating mode if I run such kind of app), also fixed the xterm issue reported by Sander
arg@10ksloc.org
parents: 162
diff changeset
1769 FD_SET(STDIN_FILENO, &rd);
265
573b1c4a71a4 reducing ConnectionNumber calls to a bare minimum
Anselm R.Garbe <arg@10ksloc.org>
parents: 262
diff changeset
1770 FD_SET(xfd, &rd);
578
8cb54d02a5b6 applied Manuels patch (thanks to Manuel!)
arg@mig29
parents: 570
diff changeset
1771 if(select(xfd + 1, &rd, NULL, NULL, NULL) == -1) {
8cb54d02a5b6 applied Manuels patch (thanks to Manuel!)
arg@mig29
parents: 570
diff changeset
1772 if(errno == EINTR)
8cb54d02a5b6 applied Manuels patch (thanks to Manuel!)
arg@mig29
parents: 570
diff changeset
1773 continue;
581
601842ee4484 applied Jukka's sizeof K&R compliance patch, applied Manuels' last-line printage proposal for stdin reading.
arg@mig29
parents: 580
diff changeset
1774 eprint("select failed\n");
578
8cb54d02a5b6 applied Manuels patch (thanks to Manuel!)
arg@mig29
parents: 570
diff changeset
1775 }
8cb54d02a5b6 applied Manuels patch (thanks to Manuel!)
arg@mig29
parents: 570
diff changeset
1776 if(FD_ISSET(STDIN_FILENO, &rd)) {
581
601842ee4484 applied Jukka's sizeof K&R compliance patch, applied Manuels' last-line printage proposal for stdin reading.
arg@mig29
parents: 580
diff changeset
1777 switch(r = read(STDIN_FILENO, stext, sizeof stext - 1)) {
578
8cb54d02a5b6 applied Manuels patch (thanks to Manuel!)
arg@mig29
parents: 570
diff changeset
1778 case -1:
581
601842ee4484 applied Jukka's sizeof K&R compliance patch, applied Manuels' last-line printage proposal for stdin reading.
arg@mig29
parents: 580
diff changeset
1779 strncpy(stext, strerror(errno), sizeof stext - 1);
583
f4285a97e3e6 applied Jukka's patch preventing some cornercases and making the EOF error message correct
arg@mig29
parents: 582
diff changeset
1780 stext[sizeof stext - 1] = '\0';
578
8cb54d02a5b6 applied Manuels patch (thanks to Manuel!)
arg@mig29
parents: 570
diff changeset
1781 readin = False;
8cb54d02a5b6 applied Manuels patch (thanks to Manuel!)
arg@mig29
parents: 570
diff changeset
1782 break;
8cb54d02a5b6 applied Manuels patch (thanks to Manuel!)
arg@mig29
parents: 570
diff changeset
1783 case 0:
583
f4285a97e3e6 applied Jukka's patch preventing some cornercases and making the EOF error message correct
arg@mig29
parents: 582
diff changeset
1784 strncpy(stext, "EOF", 4);
578
8cb54d02a5b6 applied Manuels patch (thanks to Manuel!)
arg@mig29
parents: 570
diff changeset
1785 readin = False;
8cb54d02a5b6 applied Manuels patch (thanks to Manuel!)
arg@mig29
parents: 570
diff changeset
1786 break;
8cb54d02a5b6 applied Manuels patch (thanks to Manuel!)
arg@mig29
parents: 570
diff changeset
1787 default:
582
70472540c443 applied yet another proposal of Manuel
arg@mig29
parents: 581
diff changeset
1788 for(stext[r] = '\0', p = stext + strlen(stext) - 1; p >= stext && *p == '\n'; *p-- = '\0');
744
628c5bac7f3b pneubeck pointed out an obvious thing, that a second p = stext + strlen(stext) - 1 is unnecessary
Anselm R. Garbe <arg@suckless.org>
parents: 740
diff changeset
1789 for(; p >= stext && *p != '\n'; --p);
581
601842ee4484 applied Jukka's sizeof K&R compliance patch, applied Manuels' last-line printage proposal for stdin reading.
arg@mig29
parents: 580
diff changeset
1790 if(p > stext)
601842ee4484 applied Jukka's sizeof K&R compliance patch, applied Manuels' last-line printage proposal for stdin reading.
arg@mig29
parents: 580
diff changeset
1791 strncpy(stext, p + 1, sizeof stext);
59
5d4653de9a1c implemented dwm reading status text from stdin
Anselm R. Garbe <garbeam@wmii.de>
parents: 58
diff changeset
1792 }
578
8cb54d02a5b6 applied Manuels patch (thanks to Manuel!)
arg@mig29
parents: 570
diff changeset
1793 drawstatus();
59
5d4653de9a1c implemented dwm reading status text from stdin
Anselm R. Garbe <garbeam@wmii.de>
parents: 58
diff changeset
1794 }
578
8cb54d02a5b6 applied Manuels patch (thanks to Manuel!)
arg@mig29
parents: 570
diff changeset
1795 if(FD_ISSET(xfd, &rd))
8cb54d02a5b6 applied Manuels patch (thanks to Manuel!)
arg@mig29
parents: 570
diff changeset
1796 procevent();
5
e5018cae273f added several other stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 3
diff changeset
1797 }
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1798 cleanup();
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1799 XCloseDisplay(dpy);
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1800 return 0;
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1801 }