Mercurial > aewl
annotate aewl.c @ 764:15660880e23d
removed unnessasary color pair
author | meillo@marmaro.de |
---|---|
date | Fri, 05 Dec 2008 19:08:47 +0100 |
parents | 17428bca4a12 |
children | 3f7c68a720b5 |
rev | line source |
---|---|
644 | 1 /* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com> |
759 | 2 * (C)opyright MMVIII markus schnalke <meillo at marmaro dot de> |
0 | 3 * 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
|
4 * |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
5 * 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
|
6 * 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
|
7 * 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
|
8 * 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
|
9 * 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
|
10 * |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
11 * 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
|
12 * 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
|
13 * 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
|
14 * 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
|
15 * 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
|
16 * 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
|
17 * |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
18 * 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
|
19 * 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
|
20 * 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
|
21 * 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
|
22 * 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
|
23 * 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
|
24 * 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
|
25 * |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
26 * 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
|
27 * 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
|
28 * 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
|
29 * represented by the arrange() function pointer, which wether points to |
761
59ce221b9a37
removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents:
760
diff
changeset
|
30 * domax() or dotile(). |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
31 * |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
32 * To understand everything else, start reading main.c:main(). |
0 | 33 */ |
34 | |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
35 #include "config.h" |
59
5d4653de9a1c
implemented dwm reading status text from stdin
Anselm R. Garbe <garbeam@wmii.de>
parents:
58
diff
changeset
|
36 #include <errno.h> |
619 | 37 #include <locale.h> |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
38 #include <regex.h> |
0 | 39 #include <stdio.h> |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
40 #include <stdarg.h> |
0 | 41 #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
|
42 #include <string.h> |
59
5d4653de9a1c
implemented dwm reading status text from stdin
Anselm R. Garbe <garbeam@wmii.de>
parents:
58
diff
changeset
|
43 #include <unistd.h> |
138
c1185dc7a36e
some cleanups/fixes inspired by Jukka Salmi's feedback
arg@10ksloc.org
parents:
137
diff
changeset
|
44 #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
|
45 #include <sys/types.h> |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
46 #include <sys/wait.h> |
0 | 47 #include <X11/cursorfont.h> |
291
8e6e0aa5e2ae
removed NUMLOCKMASK, added dynamically calculated numlockmask instead
Anselm R.Garbe <arg@10ksloc.org>
parents:
281
diff
changeset
|
48 #include <X11/keysym.h> |
0 | 49 #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
|
50 #include <X11/Xlib.h> |
0 | 51 #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
|
52 #include <X11/Xutil.h> |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
53 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
54 /* 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
|
55 #define BUTTONMASK (ButtonPressMask | ButtonReleaseMask) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
56 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
57 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
|
58 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
|
59 enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */ |
764 | 60 enum { ColFG, ColBG, ColLast }; /* color */ |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
61 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
62 typedef struct { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
63 int ascent; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
64 int descent; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
65 int height; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
66 XFontSet set; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
67 XFontStruct *xfont; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
68 } Fnt; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
69 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
70 typedef struct { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
71 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
|
72 unsigned long norm[ColLast]; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
73 unsigned long sel[ColLast]; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
74 Drawable drawable; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
75 Fnt font; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
76 GC gc; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
77 } 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
|
78 |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
79 typedef struct Client Client; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
80 struct Client { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
81 char name[256]; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
82 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
|
83 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
|
84 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
|
85 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
|
86 long flags; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
87 unsigned int border; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
88 Bool isfixed, isfloat, ismax; |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
89 Bool group; |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
90 Client *next; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
91 Client *prev; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
92 Client *snext; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
93 Window win; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
94 }; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
95 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
96 typedef struct { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
97 const char *clpattern; |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
98 int group; |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
99 Bool isfloat; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
100 } Rule; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
101 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
102 typedef struct { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
103 regex_t *clregex; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
104 } RReg; |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
107 typedef struct { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
108 unsigned long mod; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
109 KeySym keysym; |
758
bc512840e5a5
removed union arg (using const char* cmd now)
meillo@marmaro.de
parents:
756
diff
changeset
|
110 void (*func)(const char* cmd); |
bc512840e5a5
removed union arg (using const char* cmd now)
meillo@marmaro.de
parents:
756
diff
changeset
|
111 const char* cmd; |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
112 } Key; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
113 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
114 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
115 #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
|
116 #define MOUSEMASK (BUTTONMASK | PointerMotionMask) |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
120 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
|
121 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
|
122 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
|
123 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
|
124 unsigned int nmaster; /* number of master clients */ |
761
59ce221b9a37
removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents:
760
diff
changeset
|
125 unsigned int numlockmask; /* dynamic lock mask */ |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
126 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
|
127 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
|
128 Atom wmatom[WMLast], netatom[NetLast]; |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
129 Bool running, selscreen, selgroup; |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
130 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
|
131 Cursor cursor[CurLast]; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
132 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
|
133 Display *dpy; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
134 Window root, barwin; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
135 |
333
827f8f6c9e97
separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents:
329
diff
changeset
|
136 Bool running = True; |
716
4ce65f61f01b
renamed activescreen into selscreen
Anselm R. Garbe <arg@suckless.org>
parents:
714
diff
changeset
|
137 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
|
138 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
|
139 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
|
140 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
|
141 DC dc = {0}; |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
142 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
143 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
|
144 static Bool otherwm, readin; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
145 static RReg *rreg = NULL; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
146 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
|
147 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
148 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
149 RULES |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
150 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
151 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
152 /* client.c */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
153 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
|
154 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
|
155 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
|
156 Bool isprotodel(Client *c); /* returns True if c->win supports wmatom[WMDelete] */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
157 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
|
158 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
|
159 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
|
160 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
|
161 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
|
162 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
163 /* draw.c */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
164 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
|
165 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
|
166 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
|
167 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
|
168 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
169 /* event.c */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
170 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
|
171 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
|
172 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
173 /* main.c */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
174 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
|
175 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
|
176 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
177 /* tag.c */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
178 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
|
179 Client *getnext(Client *c); /* returns next visible client */ |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
180 void setgroup(Client *c, Client *trans); /* sets group of c */ |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
181 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
182 /* util.c */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
183 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
|
184 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
|
185 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
186 /* view.c */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
187 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
|
188 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
|
189 void domax(void); /* arranges all windows fullscreen */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
190 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
|
191 void restack(void); /* restores z layers of all clients */ |
758
bc512840e5a5
removed union arg (using const char* cmd now)
meillo@marmaro.de
parents:
756
diff
changeset
|
192 |
bc512840e5a5
removed union arg (using const char* cmd now)
meillo@marmaro.de
parents:
756
diff
changeset
|
193 |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
194 void toggleview(void); /* toggle the viewed group */ |
760 | 195 void focusnext(void); /* focuses next visible client */ |
196 void zoom(void); /* zooms the focused client to master area */ | |
197 void killclient(void); /* kill c nicely */ | |
198 void quit(void); /* quit dwm nicely */ | |
761
59ce221b9a37
removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents:
760
diff
changeset
|
199 void togglemode(void); /* toggles global arrange function (dotile/domax) */ |
760 | 200 void togglefloat(void); /* toggles focusesd client between floating/non-floating state */ |
201 void incnmaster(void); /* increments nmaster */ | |
202 void decnmaster(void); /* decrements nmaster */ | |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
203 void togglegroup(void); /* toggles c group */ |
758
bc512840e5a5
removed union arg (using const char* cmd now)
meillo@marmaro.de
parents:
756
diff
changeset
|
204 void spawn(const char* cmd); /* forks a new subprocess with cmd */ |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
205 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
206 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
207 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
208 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
209 |
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 /* from view.c */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
216 /* static */ |
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 static Client * |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
219 nexttiled(Client *c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
220 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
|
221 return c; |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
224 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
225 togglemax(Client *c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
226 XEvent ev; |
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 if(c->isfixed) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
229 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
230 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
231 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
|
232 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
|
233 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
|
234 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
|
235 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
|
236 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
237 else { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
238 c->x = c->rx; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
239 c->y = c->ry; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
240 c->w = c->rw; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
241 c->h = c->rh; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
242 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
243 resize(c, True); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
244 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
|
245 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
246 |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
249 void (*arrange)(void) = DEFMODE; |
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 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
252 detach(Client *c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
253 if(c->prev) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
254 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
|
255 if(c->next) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
256 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
|
257 if(c == clients) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
258 clients = c->next; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
259 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
|
260 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
261 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
262 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
263 dotile(void) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
264 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
|
265 Client *c; |
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 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
|
268 n++; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
269 /* window geoms */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
270 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
|
271 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
|
272 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
|
273 tw = waw - mw; |
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 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
|
276 if(isvisible(c)) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
277 if(c->isfloat) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
278 resize(c, True); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
279 continue; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
280 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
281 c->ismax = False; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
282 c->x = wax; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
283 c->y = way; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
284 if(i < nmaster) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
285 c->y += i * mh; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
286 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
|
287 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
|
288 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
289 else { /* tile window */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
290 c->x += mw; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
291 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
|
292 if(th > 2 * BORDERPX) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
293 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
|
294 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
|
295 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
296 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
|
297 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
|
298 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
299 resize(c, False); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
300 i++; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
301 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
302 else |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
303 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
|
304 if(!sel || !isvisible(sel)) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
305 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
|
306 focus(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
307 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
308 restack(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
309 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
310 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
311 /* begin code by mitch */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
312 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
313 arrangemax(Client *c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
314 if(c == sel) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
315 c->ismax = True; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
316 c->x = sx; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
317 c->y = bh; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
318 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
|
319 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
|
320 XRaiseWindow(dpy, c->win); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
321 } else { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
322 c->ismax = False; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
323 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
|
324 XLowerWindow(dpy, c->win); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
325 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
326 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
327 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
328 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
329 domax(void) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
330 Client *c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
331 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
332 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
|
333 if(isvisible(c)) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
334 if(c->isfloat) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
335 resize(c, True); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
336 continue; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
337 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
338 arrangemax(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
339 resize(c, False); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
340 } else { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
341 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
|
342 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
343 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
344 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
345 if(!sel || !isvisible(sel)) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
346 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
|
347 focus(c); |
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 restack(); |
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 /* end code by mitch */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
352 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
353 void |
756
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
354 focusnext() { |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
355 Client *c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
356 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
357 if(!sel) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
358 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
359 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
|
360 c = getnext(clients); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
361 if(c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
362 focus(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
363 restack(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
364 } |
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 void |
756
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
368 incnmaster() { |
761
59ce221b9a37
removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents:
760
diff
changeset
|
369 if(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
|
370 return; |
756
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
371 nmaster++; |
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
372 if(sel) |
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
373 arrange(); |
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
374 else |
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
375 drawstatus(); |
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
376 } |
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
377 |
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
378 void |
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
379 decnmaster() { |
761
59ce221b9a37
removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents:
760
diff
changeset
|
380 if(nmaster <= 1) |
756
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
381 return; |
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
382 nmaster--; |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
383 if(sel) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
384 arrange(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
385 else |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
386 drawstatus(); |
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 Bool |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
390 isvisible(Client *c) { |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
391 return (c->group == selgroup); |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
392 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
393 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
394 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
395 restack(void) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
396 Client *c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
397 XEvent ev; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
398 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
399 drawstatus(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
400 if(!sel) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
401 return; |
761
59ce221b9a37
removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents:
760
diff
changeset
|
402 if(sel->isfloat) |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
403 XRaiseWindow(dpy, sel->win); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
404 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
405 /* begin code by mitch */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
406 if(arrange == domax) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
407 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
|
408 arrangemax(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
409 resize(c, False); |
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 } else if (arrange == dotile) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
413 /* end code by mitch */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
414 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
415 if(!sel->isfloat) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
416 XLowerWindow(dpy, sel->win); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
417 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
|
418 if(c == sel) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
419 continue; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
420 XLowerWindow(dpy, c->win); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
421 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
422 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
423 XSync(dpy, False); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
424 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
|
425 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
426 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
427 void |
756
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
428 togglefloat() { |
761
59ce221b9a37
removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents:
760
diff
changeset
|
429 if (!sel) |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
430 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
431 sel->isfloat = !sel->isfloat; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
432 arrange(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
433 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
434 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
435 void |
756
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
436 togglemode() { |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
437 /* 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
|
438 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
|
439 if(sel) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
440 arrange(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
441 else |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
442 drawstatus(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
443 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
444 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
445 void |
755 | 446 toggleview() { |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
447 selgroup = !selgroup; |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
448 arrange(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
449 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
450 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
451 void |
756
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
452 zoom() { |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
453 unsigned int n; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
454 Client *c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
455 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
456 if(!sel) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
457 return; |
761
59ce221b9a37
removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents:
760
diff
changeset
|
458 if(sel->isfloat) { |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
459 togglemax(sel); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
460 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
461 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
462 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
|
463 n++; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
464 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
465 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
|
466 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
|
467 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
468 detach(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
469 if(clients) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
470 clients->prev = c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
471 c->next = clients; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
472 clients = c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
473 focus(c); |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
478 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
479 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
480 |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
483 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
484 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
485 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
486 |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
489 |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
492 /* from util.c */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
493 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
494 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
495 void * |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
496 emallocz(unsigned int size) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
497 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
|
498 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
499 if(!res) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
500 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
|
501 return res; |
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 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
505 eprint(const char *errstr, ...) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
506 va_list ap; |
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 va_start(ap, errstr); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
509 vfprintf(stderr, errstr, ap); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
510 va_end(ap); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
511 exit(EXIT_FAILURE); |
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 void |
758
bc512840e5a5
removed union arg (using const char* cmd now)
meillo@marmaro.de
parents:
756
diff
changeset
|
515 spawn(const char* cmd) { |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
516 static char *shell = NULL; |
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 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
|
519 shell = "/bin/sh"; |
758
bc512840e5a5
removed union arg (using const char* cmd now)
meillo@marmaro.de
parents:
756
diff
changeset
|
520 if(!cmd) |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
521 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
522 /* 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
|
523 * 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
|
524 if(fork() == 0) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
525 if(fork() == 0) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
526 if(dpy) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
527 close(ConnectionNumber(dpy)); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
528 setsid(); |
758
bc512840e5a5
removed union arg (using const char* cmd now)
meillo@marmaro.de
parents:
756
diff
changeset
|
529 execl(shell, shell, "-c", cmd, (char *)NULL); |
bc512840e5a5
removed union arg (using const char* cmd now)
meillo@marmaro.de
parents:
756
diff
changeset
|
530 fprintf(stderr, "dwm: execl '%s -c %s'", shell, cmd); |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
531 perror(" failed"); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
532 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
533 exit(0); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
534 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
535 wait(0); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
536 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
537 |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
541 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
542 |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
545 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
546 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
547 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
548 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
549 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
550 /* 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
|
551 |
84
052fe7498930
ordered variables in structs and source files alphabetically
Anselm R. Garbe <garbeam@wmii.de>
parents:
79
diff
changeset
|
552 /* static */ |
0 | 553 |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
554 Client * |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
555 getnext(Client *c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
556 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
|
557 return c; |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
560 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
561 initrregs(void) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
562 unsigned int i; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
563 regex_t *reg; |
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 if(rreg) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
566 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
567 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
|
568 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
|
569 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
|
570 if(rule[i].clpattern) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
571 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
|
572 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
|
573 free(reg); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
574 else |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
575 rreg[i].clregex = reg; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
576 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
577 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
578 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
579 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
580 void |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
581 setgroup(Client *c, Client *trans) { |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
582 char prop[512]; |
756
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
583 unsigned int i; |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
584 regmatch_t tmp; |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
585 Bool matched = (trans != NULL); |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
586 XClassHint ch = { 0 }; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
587 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
588 if(matched) { |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
589 c->group = trans->group; |
755 | 590 } else { |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
591 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
|
592 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
|
593 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
|
594 ch.res_name ? ch.res_name : "", c->name); |
763
17428bca4a12
removed group-toggle by mouse; small cleanup
meillo@marmaro.de
parents:
762
diff
changeset
|
595 for(i = 0; i < len && !matched; i++) |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
596 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
|
597 c->isfloat = rule[i].isfloat; |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
598 if (rule[i].group < 0) { |
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
599 c->group = selgroup; |
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
600 } else if (rule[i].group == 0) { |
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
601 c->group = True; |
755 | 602 } else { |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
603 c->group = False; |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
604 } |
755 | 605 matched = True; |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
606 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
607 if(ch.res_class) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
608 XFree(ch.res_class); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
609 if(ch.res_name) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
610 XFree(ch.res_name); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
611 } |
755 | 612 if(!matched) { |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
613 c->group = selgroup; |
755 | 614 } |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
615 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
616 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
617 void |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
618 togglegroup() { |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
619 if(!sel) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
620 return; |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
621 sel->group = !sel->group; |
755 | 622 toggleview(); |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
623 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
624 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
625 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
626 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
627 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
628 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
629 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
630 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
631 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
632 |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
635 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
636 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
637 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
638 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
639 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
640 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
641 /* from event.c */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
642 /* static */ |
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 KEYS |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
645 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
646 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
647 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
648 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
649 movemouse(Client *c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
650 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
|
651 unsigned int dui; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
652 Window dummy; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
653 XEvent ev; |
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 ocx = c->x; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
656 ocy = c->y; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
657 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
|
658 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
|
659 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
660 c->ismax = False; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
661 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
|
662 for(;;) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
663 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
|
664 switch (ev.type) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
665 case ButtonRelease: |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
666 resize(c, True); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
667 XUngrabPointer(dpy, CurrentTime); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
668 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
669 case ConfigureRequest: |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
670 case Expose: |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
671 case MapRequest: |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
672 handler[ev.type](&ev); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
673 break; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
674 case MotionNotify: |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
675 XSync(dpy, False); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
676 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
|
677 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
|
678 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
|
679 c->x = wax; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
680 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
|
681 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
|
682 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
|
683 c->y = way; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
684 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
|
685 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
|
686 resize(c, False); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
687 break; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
688 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
689 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
690 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
691 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
692 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
693 resizemouse(Client *c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
694 int ocx, ocy; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
695 int nw, nh; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
696 XEvent ev; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
697 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
698 ocx = c->x; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
699 ocy = c->y; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
700 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
|
701 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
|
702 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
703 c->ismax = False; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
704 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
|
705 for(;;) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
706 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
|
707 switch(ev.type) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
708 case ButtonRelease: |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
709 resize(c, True); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
710 XUngrabPointer(dpy, CurrentTime); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
711 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
712 case ConfigureRequest: |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
713 case Expose: |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
714 case MapRequest: |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
715 handler[ev.type](&ev); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
716 break; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
717 case MotionNotify: |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
718 XSync(dpy, False); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
719 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
|
720 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
|
721 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
|
722 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
|
723 resize(c, True); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
724 break; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
725 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
726 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
727 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
728 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
729 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
730 buttonpress(XEvent *e) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
731 Client *c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
732 XButtonPressedEvent *ev = &e->xbutton; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
733 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
734 if(barwin == ev->window) { |
758
bc512840e5a5
removed union arg (using const char* cmd now)
meillo@marmaro.de
parents:
756
diff
changeset
|
735 return; |
763
17428bca4a12
removed group-toggle by mouse; small cleanup
meillo@marmaro.de
parents:
762
diff
changeset
|
736 } |
17428bca4a12
removed group-toggle by mouse; small cleanup
meillo@marmaro.de
parents:
762
diff
changeset
|
737 if((c = getclient(ev->window))) { |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
738 focus(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
739 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
|
740 return; |
761
59ce221b9a37
removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents:
760
diff
changeset
|
741 if(ev->button == Button1 && c->isfloat) { |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
742 restack(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
743 movemouse(c); |
761
59ce221b9a37
removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents:
760
diff
changeset
|
744 } else if(ev->button == Button3 && c->isfloat && !c->isfixed) { |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
745 restack(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
746 resizemouse(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
747 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
748 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
749 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
750 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
751 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
752 configurerequest(XEvent *e) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
753 unsigned long newmask; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
754 Client *c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
755 XConfigureRequestEvent *ev = &e->xconfigurerequest; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
756 XWindowChanges wc; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
757 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
758 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
|
759 c->ismax = False; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
760 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
|
761 c->x = ev->x; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
762 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
|
763 c->y = ev->y; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
764 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
|
765 c->w = ev->width; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
766 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
|
767 c->h = ev->height; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
768 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
|
769 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
|
770 wc.x = c->x; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
771 wc.y = c->y; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
772 wc.width = c->w; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
773 wc.height = c->h; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
774 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
|
775 if(newmask) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
776 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
|
777 else |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
778 configure(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
779 XSync(dpy, False); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
780 if(c->isfloat) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
781 resize(c, False); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
782 if(!isvisible(c)) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
783 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
|
784 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
785 else |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
786 arrange(); |
758
bc512840e5a5
removed union arg (using const char* cmd now)
meillo@marmaro.de
parents:
756
diff
changeset
|
787 } else { |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
788 wc.x = ev->x; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
789 wc.y = ev->y; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
790 wc.width = ev->width; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
791 wc.height = ev->height; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
792 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
|
793 wc.sibling = ev->above; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
794 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
|
795 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
|
796 XSync(dpy, False); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
797 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
798 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
799 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
800 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
801 destroynotify(XEvent *e) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
802 Client *c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
803 XDestroyWindowEvent *ev = &e->xdestroywindow; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
804 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
805 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
|
806 unmanage(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
807 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
808 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
809 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
810 enternotify(XEvent *e) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
811 Client *c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
812 XCrossingEvent *ev = &e->xcrossing; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
813 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
814 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
|
815 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
816 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
|
817 focus(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
818 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
|
819 selscreen = True; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
820 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
|
821 focus(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
822 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
823 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
824 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
825 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
826 expose(XEvent *e) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
827 XExposeEvent *ev = &e->xexpose; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
828 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
829 if(ev->count == 0) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
830 if(barwin == ev->window) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
831 drawstatus(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
832 } |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
835 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
836 keypress(XEvent *e) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
837 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
|
838 unsigned int i; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
839 KeySym keysym; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
840 XKeyEvent *ev = &e->xkey; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
841 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
842 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
|
843 for(i = 0; i < len; i++) { |
756
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
844 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
|
845 if(key[i].func) |
758
bc512840e5a5
removed union arg (using const char* cmd now)
meillo@marmaro.de
parents:
756
diff
changeset
|
846 key[i].func(key[i].cmd); |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
847 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
848 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
849 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
850 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
851 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
852 leavenotify(XEvent *e) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
853 XCrossingEvent *ev = &e->xcrossing; |
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 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
|
856 selscreen = False; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
857 focus(NULL); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
858 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
859 } |
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 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
862 mappingnotify(XEvent *e) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
863 XMappingEvent *ev = &e->xmapping; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
864 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
865 XRefreshKeyboardMapping(ev); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
866 if(ev->request == MappingKeyboard) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
867 grabkeys(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
868 } |
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 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
871 maprequest(XEvent *e) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
872 static XWindowAttributes wa; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
873 XMapRequestEvent *ev = &e->xmaprequest; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
874 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
875 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
|
876 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
877 if(wa.override_redirect) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
878 XSelectInput(dpy, ev->window, |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
879 (StructureNotifyMask | PropertyChangeMask)); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
880 return; |
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 if(!getclient(ev->window)) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
883 manage(ev->window, &wa); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
884 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
885 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
886 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
887 propertynotify(XEvent *e) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
888 Client *c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
889 Window trans; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
890 XPropertyEvent *ev = &e->xproperty; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
891 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
892 if(ev->state == PropertyDelete) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
893 return; /* ignore */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
894 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
|
895 switch (ev->atom) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
896 default: break; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
897 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
|
898 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
|
899 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
|
900 arrange(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
901 break; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
902 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
|
903 updatesizehints(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
904 break; |
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 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
|
907 updatetitle(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
908 if(c == sel) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
909 drawstatus(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
910 } |
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 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
913 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
914 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
915 unmapnotify(XEvent *e) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
916 Client *c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
917 XUnmapEvent *ev = &e->xunmap; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
918 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
919 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
|
920 unmanage(c); |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
923 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
924 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
925 void (*handler[LASTEvent]) (XEvent *) = { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
926 [ButtonPress] = buttonpress, |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
927 [ConfigureRequest] = configurerequest, |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
928 [DestroyNotify] = destroynotify, |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
929 [EnterNotify] = enternotify, |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
930 [LeaveNotify] = leavenotify, |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
931 [Expose] = expose, |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
932 [KeyPress] = keypress, |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
933 [MappingNotify] = mappingnotify, |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
934 [MapRequest] = maprequest, |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
935 [PropertyNotify] = propertynotify, |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
936 [UnmapNotify] = unmapnotify |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
937 }; |
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 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
940 grabkeys(void) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
941 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
|
942 unsigned int i; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
943 KeyCode code; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
944 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
945 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
|
946 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
|
947 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
|
948 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
|
949 GrabModeAsync, GrabModeAsync); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
950 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
|
951 GrabModeAsync, GrabModeAsync); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
952 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
|
953 GrabModeAsync, GrabModeAsync); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
954 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
|
955 GrabModeAsync, GrabModeAsync); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
956 } |
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 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
960 procevent(void) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
961 XEvent ev; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
962 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
963 while(XPending(dpy)) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
964 XNextEvent(dpy, &ev); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
965 if(handler[ev.type]) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
966 (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
|
967 } |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
973 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
974 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
975 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
976 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
977 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
978 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
979 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
980 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
981 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
982 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
983 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
984 /* from draw.c */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
985 /* static */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
986 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
987 static unsigned int |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
988 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
|
989 XRectangle r; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
990 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
991 if(dc.font.set) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
992 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
|
993 return r.width; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
994 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
995 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
|
996 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
997 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
998 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
999 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
|
1000 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
|
1001 static char buf[256]; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1002 unsigned int len, olen; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1003 XGCValues gcv; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1004 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
|
1005 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1006 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
|
1007 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
|
1008 if(!text) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1009 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1010 w = 0; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1011 olen = len = strlen(text); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1012 if(len >= sizeof buf) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1013 len = sizeof buf - 1; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1014 memcpy(buf, text, len); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1015 buf[len] = 0; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1016 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
|
1017 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
|
1018 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
|
1019 /* shorten text if necessary */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1020 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
|
1021 buf[--len] = 0; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1022 if(len < olen) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1023 if(len > 1) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1024 buf[len - 1] = '.'; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1025 if(len > 2) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1026 buf[len - 2] = '.'; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1027 if(len > 3) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1028 buf[len - 3] = '.'; |
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 if(w > dc.w) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1031 return; /* too long */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1032 gcv.foreground = col[ColFG]; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1033 if(dc.font.set) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1034 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
|
1035 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
|
1036 } else { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1037 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
|
1038 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
|
1039 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
|
1040 } |
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 |
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 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1046 drawstatus(void) { |
756
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
1047 int x; |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1048 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1049 dc.x = dc.y = 0; |
761
59ce221b9a37
removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents:
760
diff
changeset
|
1050 dc.w = textw(NAMESEL); |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
1051 drawtext(NAMESEL, ( selgroup ? dc.sel : dc.norm )); |
761
59ce221b9a37
removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents:
760
diff
changeset
|
1052 dc.x += dc.w + 1; |
59ce221b9a37
removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents:
760
diff
changeset
|
1053 dc.w = textw(NAMENSEL); |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
1054 drawtext(NAMENSEL, ( selgroup ? dc.norm : dc.sel )); |
761
59ce221b9a37
removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents:
760
diff
changeset
|
1055 dc.x += dc.w + 1; |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1056 dc.w = bmw; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1057 drawtext("", dc.norm); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1058 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
|
1059 dc.w = textw(stext); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1060 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
|
1061 if(dc.x < x) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1062 dc.x = x; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1063 dc.w = sw - x; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1064 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1065 drawtext(stext, dc.norm); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1066 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
|
1067 dc.x = x; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1068 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
|
1069 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1070 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
|
1071 XSync(dpy, False); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1072 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1073 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1074 unsigned long |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1075 getcolor(const char *colstr) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1076 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
|
1077 XColor color; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1078 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1079 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
|
1080 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
|
1081 return color.pixel; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1082 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1083 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1084 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1085 setfont(const char *fontstr) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1086 char *def, **missing; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1087 int i, n; |
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 missing = NULL; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1090 if(dc.font.set) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1091 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
|
1092 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
|
1093 if(missing) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1094 while(n--) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1095 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
|
1096 XFreeStringList(missing); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1097 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1098 if(dc.font.set) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1099 XFontSetExtents *font_extents; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1100 XFontStruct **xfonts; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1101 char **font_names; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1102 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
|
1103 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
|
1104 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
|
1105 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
|
1106 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
|
1107 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
|
1108 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
|
1109 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
|
1110 xfonts++; |
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 } else { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1113 if(dc.font.xfont) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1114 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
|
1115 dc.font.xfont = NULL; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1116 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
|
1117 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
|
1118 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
|
1119 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
|
1120 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1121 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
|
1122 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1123 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1124 unsigned int |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1125 textw(const char *text) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1126 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
|
1127 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1128 |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1132 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1133 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1134 |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1137 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1138 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1139 /* from client.c */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1140 /* static */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1141 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1142 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1143 detachstack(Client *c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1144 Client **tc; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1145 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
|
1146 *tc = c->snext; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1147 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1148 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1149 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1150 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
|
1151 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
|
1152 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1153 if(focused) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1154 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
|
1155 GrabModeAsync, GrabModeSync, None, None); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1156 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
|
1157 GrabModeAsync, GrabModeSync, None, None); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1158 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
|
1159 GrabModeAsync, GrabModeSync, None, None); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1160 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
|
1161 GrabModeAsync, GrabModeSync, None, None); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1162 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1163 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
|
1164 GrabModeAsync, GrabModeSync, None, None); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1165 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
|
1166 GrabModeAsync, GrabModeSync, None, None); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1167 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
|
1168 GrabModeAsync, GrabModeSync, None, None); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1169 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
|
1170 GrabModeAsync, GrabModeSync, None, None); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1171 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1172 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
|
1173 GrabModeAsync, GrabModeSync, None, None); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1174 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
|
1175 GrabModeAsync, GrabModeSync, None, None); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1176 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
|
1177 GrabModeAsync, GrabModeSync, None, None); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1178 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
|
1179 GrabModeAsync, GrabModeSync, None, None); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1180 } else { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1181 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
|
1182 GrabModeAsync, GrabModeSync, None, None); |
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 static void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1187 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
|
1188 long data[] = {state, None}; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1189 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
|
1190 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
|
1191 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1192 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1193 static int |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1194 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
|
1195 return 0; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1196 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1197 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1198 |
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 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1201 configure(Client *c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1202 XEvent synev; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1203 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1204 synev.type = ConfigureNotify; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1205 synev.xconfigure.display = dpy; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1206 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
|
1207 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
|
1208 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
|
1209 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
|
1210 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
|
1211 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
|
1212 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
|
1213 synev.xconfigure.above = None; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1214 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
|
1215 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1216 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1217 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1218 focus(Client *c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1219 if(c && !isvisible(c)) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1220 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1221 if(sel && sel != c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1222 grabbuttons(sel, False); |
764 | 1223 XSetWindowBorder(dpy, sel->win, dc.norm[ColBG]); |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1224 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1225 if(c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1226 detachstack(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1227 c->snext = stack; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1228 stack = c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1229 grabbuttons(c, True); |
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 sel = c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1232 drawstatus(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1233 if(!selscreen) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1234 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1235 if(c) { |
764 | 1236 XSetWindowBorder(dpy, c->win, dc.sel[ColBG]); |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1237 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
|
1238 } else { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1239 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
|
1240 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1241 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1242 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1243 Client * |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1244 getclient(Window w) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1245 Client *c; |
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 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
|
1248 if(c->win == w) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1249 return c; |
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 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1252 return NULL; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1253 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1254 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1255 Bool |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1256 isprotodel(Client *c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1257 int i, n; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1258 Atom *protocols; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1259 Bool ret = False; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1260 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1261 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
|
1262 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
|
1263 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
|
1264 ret = True; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1265 XFree(protocols); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1266 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1267 return ret; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1268 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1269 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1270 void |
756
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
1271 killclient() { |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1272 if(!sel) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1273 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1274 if(isprotodel(sel)) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1275 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
|
1276 else |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1277 XKillClient(dpy, sel->win); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1278 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1279 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1280 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1281 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
|
1282 Client *c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1283 Window trans; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1284 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1285 c = emallocz(sizeof(Client)); |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
1286 c->group = True; |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1287 c->win = w; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1288 c->x = wa->x; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1289 c->y = wa->y; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1290 c->w = wa->width; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1291 c->h = wa->height; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1292 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
|
1293 c->border = 0; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1294 c->x = sx; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1295 c->y = sy; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1296 } else { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1297 c->border = BORDERPX; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1298 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
|
1299 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
|
1300 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
|
1301 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
|
1302 if(c->x < wax) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1303 c->x = wax; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1304 if(c->y < way) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1305 c->y = way; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1306 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1307 updatesizehints(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1308 XSelectInput(dpy, c->win, |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1309 StructureNotifyMask | PropertyChangeMask | EnterWindowMask); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1310 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
|
1311 grabbuttons(c, False); |
764 | 1312 XSetWindowBorder(dpy, c->win, dc.norm[ColBG]); |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1313 updatetitle(c); |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
1314 setgroup(c, getclient(trans)); |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1315 if(!c->isfloat) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1316 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
|
1317 if(clients) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1318 clients->prev = c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1319 c->next = clients; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1320 c->snext = stack; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1321 stack = clients = c; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1322 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
|
1323 XMapWindow(dpy, c->win); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1324 setclientstate(c, NormalState); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1325 if(isvisible(c)) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1326 focus(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1327 arrange(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1328 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1329 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1330 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1331 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
|
1332 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
|
1333 XWindowChanges wc; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1334 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1335 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
|
1336 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1337 if(sizehints) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1338 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
|
1339 c->w = c->minw; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1340 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
|
1341 c->h = c->minh; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1342 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
|
1343 c->w = c->maxw; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1344 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
|
1345 c->h = c->maxh; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1346 /* 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
|
1347 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
|
1348 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
|
1349 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
|
1350 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
|
1351 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
|
1352 actual = dx / dy; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1353 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
|
1354 if(actual < min) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1355 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
|
1356 dx = dy * min; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1357 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
|
1358 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
|
1359 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1360 else if(actual > max) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1361 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
|
1362 dx = dy * min; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1363 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
|
1364 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
|
1365 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1366 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1367 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1368 if(c->incw) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1369 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
|
1370 if(c->inch) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1371 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
|
1372 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1373 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
|
1374 c->border = 0; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1375 else |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1376 c->border = BORDERPX; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1377 /* offscreen appearance fixes */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1378 if(c->x > sw) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1379 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
|
1380 if(c->y > sh) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1381 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
|
1382 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
|
1383 c->x = sx; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1384 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
|
1385 c->y = sy; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1386 wc.x = c->x; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1387 wc.y = c->y; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1388 wc.width = c->w; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1389 wc.height = c->h; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1390 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
|
1391 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
|
1392 configure(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1393 XSync(dpy, False); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1394 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1395 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1396 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1397 updatesizehints(Client *c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1398 long msize; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1399 XSizeHints size; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1400 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1401 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
|
1402 size.flags = PSize; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1403 c->flags = size.flags; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1404 if(c->flags & PBaseSize) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1405 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
|
1406 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
|
1407 } else { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1408 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
|
1409 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1410 if(c->flags & PResizeInc) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1411 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
|
1412 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
|
1413 } else { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1414 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
|
1415 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1416 if(c->flags & PMaxSize) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1417 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
|
1418 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
|
1419 } else { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1420 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
|
1421 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1422 if(c->flags & PMinSize) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1423 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
|
1424 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
|
1425 } else { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1426 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
|
1427 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1428 if(c->flags & PAspect) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1429 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
|
1430 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
|
1431 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
|
1432 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
|
1433 } else { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1434 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
|
1435 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1436 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
|
1437 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
|
1438 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1439 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1440 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1441 updatetitle(Client *c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1442 char **list = NULL; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1443 int n; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1444 XTextProperty name; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1445 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1446 name.nitems = 0; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1447 c->name[0] = 0; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1448 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
|
1449 if(!name.nitems) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1450 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
|
1451 if(!name.nitems) |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1452 return; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1453 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
|
1454 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
|
1455 else { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1456 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
|
1457 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
|
1458 XFreeStringList(list); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1459 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1460 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1461 XFree(name.value); |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1464 void |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1465 unmanage(Client *c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1466 Client *nc; |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1467 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1468 /* 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
|
1469 XGrabServer(dpy); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1470 XSetErrorHandler(xerrordummy); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1471 detach(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1472 detachstack(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1473 if(sel == c) { |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1474 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
|
1475 focus(nc); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1476 } |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1477 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
|
1478 setclientstate(c, WithdrawnState); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1479 free(c); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1480 XSync(dpy, False); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1481 XSetErrorHandler(xerror); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1482 XUngrabServer(dpy); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1483 arrange(); |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1484 } |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1488 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1489 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1490 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1491 |
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 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1494 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1495 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1496 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1497 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1498 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1499 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1500 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1501 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1502 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1503 |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1504 /* static */ |
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1505 |
0 | 1506 |
1507 static void | |
487 | 1508 cleanup(void) { |
302 | 1509 close(STDIN_FILENO); |
645 | 1510 while(stack) { |
708
a2d568a5cdb8
applied Sanders all5.patch (thanks for your weekend session, Sander!)
Anselm R. Garbe <arg@suckless.org>
parents:
697
diff
changeset
|
1511 resize(stack, True); |
645 | 1512 unmanage(stack); |
76
4bd49f404f10
proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents:
75
diff
changeset
|
1513 } |
295 | 1514 if(dc.font.set) |
1515 XFreeFontSet(dpy, dc.font.set); | |
1516 else | |
1517 XFreeFont(dpy, dc.font.xfont); | |
292 | 1518 XUngrabKey(dpy, AnyKey, AnyModifier, root); |
295 | 1519 XFreePixmap(dpy, dc.drawable); |
1520 XFreeGC(dpy, dc.gc); | |
309
204427dcc087
corrected order of cleanup code
Anselm R.Garbe <arg@10ksloc.org>
parents:
302
diff
changeset
|
1521 XDestroyWindow(dpy, barwin); |
616 | 1522 XFreeCursor(dpy, cursor[CurNormal]); |
1523 XFreeCursor(dpy, cursor[CurResize]); | |
1524 XFreeCursor(dpy, cursor[CurMove]); | |
76
4bd49f404f10
proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents:
75
diff
changeset
|
1525 XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime); |
292 | 1526 XSync(dpy, False); |
76
4bd49f404f10
proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents:
75
diff
changeset
|
1527 } |
0 | 1528 |
1529 static void | |
487 | 1530 scan(void) { |
0 | 1531 unsigned int i, num; |
123 | 1532 Window *wins, d1, d2; |
0 | 1533 XWindowAttributes wa; |
1534 | |
292 | 1535 wins = NULL; |
0 | 1536 if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) { |
1537 for(i = 0; i < num; i++) { | |
1538 if(!XGetWindowAttributes(dpy, wins[i], &wa)) | |
1539 continue; | |
1540 if(wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1)) | |
1541 continue; | |
1542 if(wa.map_state == IsViewable) | |
10
703255003abb
changed how manage client works
Anselm R. Garbe <garbeam@wmii.de>
parents:
9
diff
changeset
|
1543 manage(wins[i], &wa); |
0 | 1544 } |
1545 } | |
1546 if(wins) | |
1547 XFree(wins); | |
1548 } | |
1549 | |
333
827f8f6c9e97
separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents:
329
diff
changeset
|
1550 static void |
487 | 1551 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
|
1552 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
|
1553 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
|
1554 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
|
1555 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
|
1556 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
|
1557 |
827f8f6c9e97
separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents:
329
diff
changeset
|
1558 /* 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
|
1559 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
|
1560 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
|
1561 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
|
1562 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
|
1563 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
|
1564 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
|
1565 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
|
1566 /* 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
|
1567 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
|
1568 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
|
1569 cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur); |
532
651f2c868b31
code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents:
530
diff
changeset
|
1570 /* init modifier map */ |
679
5f0134b88b8d
small fix of initial numlockmask value
Anselm R. Garbe <arg@suckless.org>
parents:
675
diff
changeset
|
1571 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
|
1572 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
|
1573 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
|
1574 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
|
1575 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
|
1576 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
|
1577 } |
827f8f6c9e97
separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents:
329
diff
changeset
|
1578 } |
616 | 1579 XFreeModifiermap(modmap); |
532
651f2c868b31
code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents:
530
diff
changeset
|
1580 /* 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
|
1581 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
|
1582 | 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
|
1583 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
|
1584 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
|
1585 grabkeys(); |
827f8f6c9e97
separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents:
329
diff
changeset
|
1586 initrregs(); |
762
3f0b245732fc
changed terminology: "tag" is now "group"
meillo@marmaro.de
parents:
761
diff
changeset
|
1587 selgroup = 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
|
1588 /* style */ |
353
8a06efe5b563
new color stuff/new rendering stuff
Anselm R. Garbe <arg@10kloc.org>
parents:
352
diff
changeset
|
1589 dc.norm[ColBG] = getcolor(NORMBGCOLOR); |
8a06efe5b563
new color stuff/new rendering stuff
Anselm R. Garbe <arg@10kloc.org>
parents:
352
diff
changeset
|
1590 dc.norm[ColFG] = getcolor(NORMFGCOLOR); |
8a06efe5b563
new color stuff/new rendering stuff
Anselm R. Garbe <arg@10kloc.org>
parents:
352
diff
changeset
|
1591 dc.sel[ColBG] = getcolor(SELBGCOLOR); |
8a06efe5b563
new color stuff/new rendering stuff
Anselm R. Garbe <arg@10kloc.org>
parents:
352
diff
changeset
|
1592 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
|
1593 setfont(FONT); |
532
651f2c868b31
code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents:
530
diff
changeset
|
1594 /* 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
|
1595 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
|
1596 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
|
1597 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
|
1598 nmaster = NMASTER; |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1599 bmw = 1; |
532
651f2c868b31
code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents:
530
diff
changeset
|
1600 /* bar */ |
353
8a06efe5b563
new color stuff/new rendering stuff
Anselm R. Garbe <arg@10kloc.org>
parents:
352
diff
changeset
|
1601 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
|
1602 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
|
1603 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
|
1604 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
|
1605 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
|
1606 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
|
1607 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
|
1608 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
|
1609 XMapRaised(dpy, barwin); |
532
651f2c868b31
code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents:
530
diff
changeset
|
1610 strcpy(stext, "dwm-"VERSION); |
565 | 1611 /* windowarea */ |
1612 wax = sx; | |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1613 way = sy + bh; |
565 | 1614 wah = sh - bh; |
1615 waw = sw; | |
532
651f2c868b31
code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents:
530
diff
changeset
|
1616 /* 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
|
1617 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
|
1618 dc.gc = XCreateGC(dpy, root, 0, 0); |
344
93192711a36a
changing tag indicator through underline
Anselm R. Garbe <arg@10kloc.org>
parents:
339
diff
changeset
|
1619 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
|
1620 /* multihead support */ |
716
4ce65f61f01b
renamed activescreen into selscreen
Anselm R. Garbe <arg@suckless.org>
parents:
714
diff
changeset
|
1621 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
|
1622 } |
827f8f6c9e97
separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents:
329
diff
changeset
|
1623 |
76
4bd49f404f10
proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents:
75
diff
changeset
|
1624 /* |
4bd49f404f10
proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents:
75
diff
changeset
|
1625 * 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
|
1626 * is already running. |
4bd49f404f10
proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents:
75
diff
changeset
|
1627 */ |
4bd49f404f10
proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents:
75
diff
changeset
|
1628 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
|
1629 xerrorstart(Display *dsply, XErrorEvent *ee) { |
76
4bd49f404f10
proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents:
75
diff
changeset
|
1630 otherwm = True; |
4bd49f404f10
proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents:
75
diff
changeset
|
1631 return -1; |
4bd49f404f10
proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents:
75
diff
changeset
|
1632 } |
4bd49f404f10
proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents:
75
diff
changeset
|
1633 |
754
4c12dccc288d
this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents:
744
diff
changeset
|
1634 |
84
052fe7498930
ordered variables in structs and source files alphabetically
Anselm R. Garbe <garbeam@wmii.de>
parents:
79
diff
changeset
|
1635 |
13
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
1636 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
|
1637 sendevent(Window w, Atom a, long value) { |
13
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
1638 XEvent e; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
1639 |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
1640 e.type = ClientMessage; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
1641 e.xclient.window = w; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
1642 e.xclient.message_type = a; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
1643 e.xclient.format = 32; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
1644 e.xclient.data.l[0] = value; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
1645 e.xclient.data.l[1] = CurrentTime; |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
1646 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
|
1647 XSync(dpy, False); |
13
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
1648 } |
5cc5e55a132d
added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
10
diff
changeset
|
1649 |
76
4bd49f404f10
proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents:
75
diff
changeset
|
1650 void |
756
bff1012527b3
removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents:
755
diff
changeset
|
1651 quit() { |
302 | 1652 readin = running = False; |
75 | 1653 } |
1654 | |
532
651f2c868b31
code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents:
530
diff
changeset
|
1655 /* 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
|
1656 * 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
|
1657 * default error handler, which may call exit. |
0 | 1658 */ |
10
703255003abb
changed how manage client works
Anselm R. Garbe <garbeam@wmii.de>
parents:
9
diff
changeset
|
1659 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
|
1660 xerror(Display *dpy, XErrorEvent *ee) { |
75 | 1661 if(ee->error_code == BadWindow |
123 | 1662 || (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch) |
1663 || (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable) | |
1664 || (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable) | |
1665 || (ee->request_code == X_PolySegment && ee->error_code == BadDrawable) | |
1666 || (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
|
1667 || (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
|
1668 || (ee->request_code == X_CopyArea && ee->error_code == BadDrawable)) |
0 | 1669 return 0; |
34 | 1670 fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n", |
123 | 1671 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
|
1672 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
|
1673 } |
f96fb3fd8203
added grid mode on Mod1Mask g
Anselm R. Garbe <garbeam@wmii.de>
parents:
26
diff
changeset
|
1674 |
0 | 1675 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
|
1676 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
|
1677 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
|
1678 int r, xfd; |
59
5d4653de9a1c
implemented dwm reading status text from stdin
Anselm R. Garbe <garbeam@wmii.de>
parents:
58
diff
changeset
|
1679 fd_set rd; |
0 | 1680 |
137
77922a389fa8
simplified main.c, switching back to single urxvt usage
arg@10ksloc.org
parents:
126
diff
changeset
|
1681 if(argc == 2 && !strncmp("-v", argv[1], 3)) { |
644 | 1682 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
|
1683 exit(EXIT_SUCCESS); |
755 | 1684 } else if(argc != 1) { |
1685 eprint("usage: dwm [-v]\n"); | |
0 | 1686 } |
619 | 1687 setlocale(LC_CTYPE, ""); |
0 | 1688 dpy = XOpenDisplay(0); |
755 | 1689 if(!dpy) { |
197 | 1690 eprint("dwm: cannot open display\n"); |
755 | 1691 } |
265
573b1c4a71a4
reducing ConnectionNumber calls to a bare minimum
Anselm R.Garbe <arg@10ksloc.org>
parents:
262
diff
changeset
|
1692 xfd = ConnectionNumber(dpy); |
0 | 1693 screen = DefaultScreen(dpy); |
1694 root = RootWindow(dpy, screen); | |
75 | 1695 otherwm = False; |
1696 XSetErrorHandler(xerrorstart); | |
197 | 1697 /* this causes an error if some other window manager is running */ |
0 | 1698 XSelectInput(dpy, root, SubstructureRedirectMask); |
78
0d71fb80b592
changing XFlush into XSync
Anselm R. Garbe <garbeam@wmii.de>
parents:
77
diff
changeset
|
1699 XSync(dpy, False); |
755 | 1700 if(otherwm) { |
75 | 1701 eprint("dwm: another window manager is already running\n"); |
755 | 1702 } |
0 | 1703 |
292 | 1704 XSync(dpy, False); |
78
0d71fb80b592
changing XFlush into XSync
Anselm R. Garbe <garbeam@wmii.de>
parents:
77
diff
changeset
|
1705 XSetErrorHandler(NULL); |
75 | 1706 xerrorxlib = XSetErrorHandler(xerror); |
275 | 1707 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
|
1708 setup(); |
74 | 1709 drawstatus(); |
75 | 1710 scan(); |
3
e969f3575b7a
several new changes, made gridmenu working
Anselm R. Garbe <garbeam@wmii.de>
parents:
2
diff
changeset
|
1711 |
214 | 1712 /* main event loop, also reads status text from stdin */ |
242 | 1713 XSync(dpy, False); |
292 | 1714 procevent(); |
302 | 1715 readin = True; |
5 | 1716 while(running) { |
59
5d4653de9a1c
implemented dwm reading status text from stdin
Anselm R. Garbe <garbeam@wmii.de>
parents:
58
diff
changeset
|
1717 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
|
1718 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
|
1719 FD_SET(STDIN_FILENO, &rd); |
265
573b1c4a71a4
reducing ConnectionNumber calls to a bare minimum
Anselm R.Garbe <arg@10ksloc.org>
parents:
262
diff
changeset
|
1720 FD_SET(xfd, &rd); |
578 | 1721 if(select(xfd + 1, &rd, NULL, NULL, NULL) == -1) { |
1722 if(errno == EINTR) | |
1723 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
|
1724 eprint("select failed\n"); |
578 | 1725 } |
1726 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
|
1727 switch(r = read(STDIN_FILENO, stext, sizeof stext - 1)) { |
578 | 1728 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
|
1729 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
|
1730 stext[sizeof stext - 1] = '\0'; |
578 | 1731 readin = False; |
1732 break; | |
1733 case 0: | |
583
f4285a97e3e6
applied Jukka's patch preventing some cornercases and making the EOF error message correct
arg@mig29
parents:
582
diff
changeset
|
1734 strncpy(stext, "EOF", 4); |
578 | 1735 readin = False; |
1736 break; | |
1737 default: | |
582 | 1738 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
|
1739 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
|
1740 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
|
1741 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
|
1742 } |
578 | 1743 drawstatus(); |
59
5d4653de9a1c
implemented dwm reading status text from stdin
Anselm R. Garbe <garbeam@wmii.de>
parents:
58
diff
changeset
|
1744 } |
578 | 1745 if(FD_ISSET(xfd, &rd)) |
1746 procevent(); | |
5 | 1747 } |
0 | 1748 cleanup(); |
1749 XCloseDisplay(dpy); | |
1750 return 0; | |
1751 } |