annotate aewl.c @ 781:1ec698ca43c5

added sxiv
author markus schnalke <meillo@marmaro.de>
date Mon, 05 Sep 2011 21:32:16 +0200
parents 7ea91d4d0882
children f1e806b34697
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
644
1ed8c40dde36 corrections
arg@mig29
parents: 643
diff changeset
1 /* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com>
759
45f23169563e renamed dwm to aewl
meillo@marmaro.de
parents: 758
diff changeset
2 * (C)opyright MMVIII markus schnalke <meillo at marmaro dot de>
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
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 *
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
11 * The event handlers of dwm are organized in an array which is accessed
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
12 * whenever a new event has been fetched. This allows event dispatching in O(1)
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
13 * time.
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
14 *
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
15 * 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
16 * 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
17 * doubly-linked client list, the focus history is remembered through a global
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
18 * stack list. [...]
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
19 *
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
20 * Keys and tagging rules are organized as arrays and defined in the config.h
771
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
21 * file. [...] The current mode is represented by the arrange() function
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
22 * pointer, which wether points to [domax()] or dotile().
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
23 *
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
24 * To understand everything else, start reading main.c:main().
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
25 *
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
26 * -- and now about aewl --
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
27 *
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
28 * aewl is a stripped down dwm. It stated as a patchset, but finally forked off
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
29 * completely. The reason for this was the increasing gap between my wish to
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
30 * stay where dwm was, and dwm direction to go further. Further more did I
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
31 * always use only a small subset of dwm's features, so condencing dwm had been
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
32 * my wish for a long time.
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
33 *
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
34 * In aewl clients are either tagged or not (only one tag). Visible are either
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
35 * all tagged clients or all without the tag.
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
36 */
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
37
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
38
59
5d4653de9a1c implemented dwm reading status text from stdin
Anselm R. Garbe <garbeam@wmii.de>
parents: 58
diff changeset
39 #include <errno.h>
619
bda4880c462d with this patch everything works fine for me
arg@mig29
parents: 616
diff changeset
40 #include <locale.h>
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
41 #include <stdio.h>
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
42 #include <stdarg.h>
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
43 #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
44 #include <string.h>
59
5d4653de9a1c implemented dwm reading status text from stdin
Anselm R. Garbe <garbeam@wmii.de>
parents: 58
diff changeset
45 #include <unistd.h>
776
a3399a8964c7 no need to update the bar when the layout changes
meillo@marmaro.de
parents: 773
diff changeset
46 #include <sys/signal.h>
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
47 #include <sys/types.h>
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
48 #include <sys/wait.h>
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
49 #include <X11/cursorfont.h>
291
8e6e0aa5e2ae removed NUMLOCKMASK, added dynamically calculated numlockmask instead
Anselm R.Garbe <arg@10ksloc.org>
parents: 281
diff changeset
50 #include <X11/keysym.h>
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
51 #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
52 #include <X11/Xlib.h>
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
53 #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
54 #include <X11/Xutil.h>
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
55
769
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
56 #include "config.h"
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
57
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
58
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
59 /* 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
60 #define BUTTONMASK (ButtonPressMask | ButtonReleaseMask)
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 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
63 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
64 enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
764
15660880e23d removed unnessasary color pair
meillo@marmaro.de
parents: 763
diff changeset
65 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
66
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
67 typedef struct {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
68 int ascent;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
69 int descent;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
70 int height;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
71 XFontSet set;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
72 XFontStruct *xfont;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
73 } Fnt;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
74
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
75 typedef struct {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
76 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
77 unsigned long norm[ColLast];
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
78 unsigned long sel[ColLast];
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
79 Drawable drawable;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
80 Fnt font;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
81 GC gc;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
82 } 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
83
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
84 typedef struct Client Client;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
85 struct Client {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
86 char name[256];
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
87 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
88 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
89 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
90 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
91 long flags;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
92 unsigned int border;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
93 Bool isfixed, isfloat, ismax;
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
94 Bool tag;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
95 Client *next;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
96 Client *prev;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
97 Client *snext;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
98 Window win;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
99 };
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
100
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
101 typedef struct {
767
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
102 const char* class;
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
103 const char* instance;
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
104 const char* title;
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
105 int tag;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
106 Bool isfloat;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
107 } Rule;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
108
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
109
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
110 typedef struct {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
111 unsigned long mod;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
112 KeySym keysym;
758
bc512840e5a5 removed union arg (using const char* cmd now)
meillo@marmaro.de
parents: 756
diff changeset
113 void (*func)(const char* cmd);
bc512840e5a5 removed union arg (using const char* cmd now)
meillo@marmaro.de
parents: 756
diff changeset
114 const char* cmd;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
115 } Key;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
116
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 #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
119 #define MOUSEMASK (BUTTONMASK | PointerMotionMask)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
120
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
121
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
122
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
123 char stext[256]; /* status text */
771
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
124 int bh; /* bar height */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
125 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
126 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
127 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
128 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
129 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
130 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
131 Atom wmatom[WMLast], netatom[NetLast];
772
0c1e9952a278 naming change from dwm to aewl; cleanups
meillo@marmaro.de
parents: 771
diff changeset
132 Bool running = True;
0c1e9952a278 naming change from dwm to aewl; cleanups
meillo@marmaro.de
parents: 771
diff changeset
133 Bool selscreen = True;
0c1e9952a278 naming change from dwm to aewl; cleanups
meillo@marmaro.de
parents: 771
diff changeset
134 Bool seltag;
0c1e9952a278 naming change from dwm to aewl; cleanups
meillo@marmaro.de
parents: 771
diff changeset
135 Client* clients = NULL; /* global client list */
0c1e9952a278 naming change from dwm to aewl; cleanups
meillo@marmaro.de
parents: 771
diff changeset
136 Client* stack = NULL; /* global client stack */
0c1e9952a278 naming change from dwm to aewl; cleanups
meillo@marmaro.de
parents: 771
diff changeset
137 Client* sel = NULL; /* selected client */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
138 Cursor cursor[CurLast];
772
0c1e9952a278 naming change from dwm to aewl; cleanups
meillo@marmaro.de
parents: 771
diff changeset
139 DC dc = {0}; /* global draw context */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
140 Display *dpy;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
141 Window root, barwin;
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 *);
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
144 static Bool otherwm;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
145 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
146
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
147
772
0c1e9952a278 naming change from dwm to aewl; cleanups
meillo@marmaro.de
parents: 771
diff changeset
148
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
149 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
150 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
151 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
152 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
153 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
154 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
155 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
156 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
157 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
158
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
159 void drawbar(void); /* draw the bar */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
160 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
161 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
162 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
163
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
164 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
165
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
166 void sendevent(Window w, Atom a, long value); /* send synthetic event to w */
772
0c1e9952a278 naming change from dwm to aewl; cleanups
meillo@marmaro.de
parents: 771
diff changeset
167 int xerror(Display *dsply, XErrorEvent *ee); /* X error handler */
754
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 Client *getnext(Client *c); /* returns next visible client */
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
170 void settag(Client *c, Client *trans); /* sets tag of c */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
171
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
172 void *emallocz(unsigned int size); /* allocates zero-initialized memory, exits on error */
778
7ea91d4d0882 rename eprint() -> die()
meillo@marmaro.de
parents: 777
diff changeset
173 void die(const char *errstr, ...); /* prints errstr and exits with 1 */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
174
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
175 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
176 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
177 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
178 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
179 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
180
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
181 void toggleview(void); /* toggle the view */
760
014c4cb1ae4a removed some compiler warnings
meillo@marmaro.de
parents: 759
diff changeset
182 void focusnext(void); /* focuses next visible client */
014c4cb1ae4a removed some compiler warnings
meillo@marmaro.de
parents: 759
diff changeset
183 void zoom(void); /* zooms the focused client to master area */
014c4cb1ae4a removed some compiler warnings
meillo@marmaro.de
parents: 759
diff changeset
184 void killclient(void); /* kill c nicely */
772
0c1e9952a278 naming change from dwm to aewl; cleanups
meillo@marmaro.de
parents: 771
diff changeset
185 void quit(void); /* quit nicely */
761
59ce221b9a37 removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents: 760
diff changeset
186 void togglemode(void); /* toggles global arrange function (dotile/domax) */
760
014c4cb1ae4a removed some compiler warnings
meillo@marmaro.de
parents: 759
diff changeset
187 void togglefloat(void); /* toggles focusesd client between floating/non-floating state */
014c4cb1ae4a removed some compiler warnings
meillo@marmaro.de
parents: 759
diff changeset
188 void incnmaster(void); /* increments nmaster */
014c4cb1ae4a removed some compiler warnings
meillo@marmaro.de
parents: 759
diff changeset
189 void decnmaster(void); /* decrements nmaster */
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
190 void toggletag(void); /* toggles tag of c */
758
bc512840e5a5 removed union arg (using const char* cmd now)
meillo@marmaro.de
parents: 756
diff changeset
191 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
192
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
193 void updatestatus(void); /* update the status text */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
194
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
195
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
196 RULES
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
197 KEYS
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
198
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
199
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
200
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
201
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
202
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
203
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
204
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 /* from view.c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
208
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
209 Client *
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
210 nexttiled(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
211 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
212 return c;
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
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
215 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
216 togglemax(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
217 XEvent ev;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
218
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
219 if(c->isfixed)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
220 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
221
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
222 if((c->ismax = !c->ismax)) {
769
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
223 c->rx = c->x;
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
224 c->ry = c->y;
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
225 c->rw = c->w;
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
226 c->rh = c->h;
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
227 c->x = wax;
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
228 c->y = way;
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
229 c->w = waw - 2 * BORDERPX;
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
230 c->h = wah - 2 * BORDERPX;
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
231 } else {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
232 c->x = c->rx;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
233 c->y = c->ry;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
234 c->w = c->rw;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
235 c->h = c->rh;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
236 }
769
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
237 resize(c, False);
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
238 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
239 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
240
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
241
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
242
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
243
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
244 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
245 detach(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
246 if(c->prev)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
247 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
248 if(c->next)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
249 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
250 if(c == clients)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
251 clients = c->next;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
252 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
253 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
254
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
255 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
256 dotile(void) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
257 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
258 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
259
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
260 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
261 n++;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
262 /* window geoms */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
263 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
264 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
265 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
266 tw = waw - mw;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
267
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
268 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
269 if(isvisible(c)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
270 if(c->isfloat) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
271 resize(c, True);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
272 continue;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
273 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
274 c->ismax = False;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
275 c->x = wax;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
276 c->y = way;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
277 if(i < nmaster) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
278 c->y += i * mh;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
279 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
280 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
281 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
282 else { /* tile window */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
283 c->x += mw;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
284 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
285 if(th > 2 * BORDERPX) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
286 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
287 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
288 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
289 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
290 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
291 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
292 resize(c, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
293 i++;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
294 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
295 else
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
296 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
297 if(!sel || !isvisible(sel)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
298 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
299 focus(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
300 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
301 restack();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
302 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
303
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
304 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
305 domax(void) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
306 Client *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 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
309 if(isvisible(c)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
310 if(c->isfloat) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
311 resize(c, True);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
312 continue;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
313 }
768
a1c6805aa018 simplified and corrected domax() and restack()
meillo@marmaro.de
parents: 767
diff changeset
314 c->ismax = True;
769
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
315 c->x = wax;
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
316 c->y = way;
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
317 c->w = waw - 2 * BORDERPX;
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
318 c->h = wah - 2 * BORDERPX;
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
319 resize(c, False);
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
320 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
321 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
322 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
323 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
324 if(!sel || !isvisible(sel)) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
325 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
326 focus(c);
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 restack();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
329 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
330
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
331 void
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
332 focusnext() {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
333 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
334
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
335 if(!sel)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
336 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
337 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
338 c = getnext(clients);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
339 if(c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
340 focus(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
341 restack();
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 void
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
346 incnmaster() {
761
59ce221b9a37 removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents: 760
diff changeset
347 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
348 return;
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
349 nmaster++;
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
350 if(sel)
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
351 arrange();
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
352 }
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
353
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
354 void
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
355 decnmaster() {
761
59ce221b9a37 removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents: 760
diff changeset
356 if(nmaster <= 1)
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
357 return;
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
358 nmaster--;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
359 if(sel)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
360 arrange();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
361 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
362
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
363 Bool
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
364 isvisible(Client *c) {
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
365 return (c->tag == seltag);
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
366 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
367
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
368 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
369 restack(void) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
370 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
371 XEvent ev;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
372
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
373 drawbar();
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
374 if(!sel)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
375 return;
761
59ce221b9a37 removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents: 760
diff changeset
376 if(sel->isfloat)
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
377 XRaiseWindow(dpy, sel->win);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
378
768
a1c6805aa018 simplified and corrected domax() and restack()
meillo@marmaro.de
parents: 767
diff changeset
379 if(!sel->isfloat)
a1c6805aa018 simplified and corrected domax() and restack()
meillo@marmaro.de
parents: 767
diff changeset
380 XLowerWindow(dpy, sel->win);
a1c6805aa018 simplified and corrected domax() and restack()
meillo@marmaro.de
parents: 767
diff changeset
381 for(c = nexttiled(clients); c; c = nexttiled(c->next)) {
a1c6805aa018 simplified and corrected domax() and restack()
meillo@marmaro.de
parents: 767
diff changeset
382 if(c == sel)
a1c6805aa018 simplified and corrected domax() and restack()
meillo@marmaro.de
parents: 767
diff changeset
383 continue;
a1c6805aa018 simplified and corrected domax() and restack()
meillo@marmaro.de
parents: 767
diff changeset
384 XLowerWindow(dpy, c->win);
a1c6805aa018 simplified and corrected domax() and restack()
meillo@marmaro.de
parents: 767
diff changeset
385 }
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
386
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
387 XSync(dpy, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
388 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
389 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
390
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
391 void
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
392 togglefloat() {
761
59ce221b9a37 removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents: 760
diff changeset
393 if (!sel)
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
394 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
395 sel->isfloat = !sel->isfloat;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
396 arrange();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
397 }
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 void
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
400 togglemode() {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
401 /* 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
402 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
403 if(sel)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
404 arrange();
776
a3399a8964c7 no need to update the bar when the layout changes
meillo@marmaro.de
parents: 773
diff changeset
405 zoom();
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
406 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
407
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
408 void
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
409 toggleview() {
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
410 seltag = !seltag;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
411 arrange();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
412 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
413
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
414 void
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
415 zoom() {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
416 unsigned int n;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
417 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
418
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
419 if(!sel)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
420 return;
761
59ce221b9a37 removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents: 760
diff changeset
421 if(sel->isfloat) {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
422 togglemax(sel);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
423 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
424 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
425 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
426 n++;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
427
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
428 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
429 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
430 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
431 detach(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
432 if(clients)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
433 clients->prev = c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
434 c->next = clients;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
435 clients = c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
436 focus(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
437 arrange();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
438 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
439
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
440 /* from util.c */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
441
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
442 void *
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
443 emallocz(unsigned int size) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
444 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
445
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
446 if(!res)
778
7ea91d4d0882 rename eprint() -> die()
meillo@marmaro.de
parents: 777
diff changeset
447 die("fatal: could not malloc() %u bytes\n", size);
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
448 return res;
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
778
7ea91d4d0882 rename eprint() -> die()
meillo@marmaro.de
parents: 777
diff changeset
452 die(const char *errstr, ...) {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
453 va_list ap;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
454
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
455 va_start(ap, errstr);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
456 vfprintf(stderr, errstr, ap);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
457 va_end(ap);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
458 exit(EXIT_FAILURE);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
459 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
460
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
461 void
758
bc512840e5a5 removed union arg (using const char* cmd now)
meillo@marmaro.de
parents: 756
diff changeset
462 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
463 static char *shell = NULL;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
464
758
bc512840e5a5 removed union arg (using const char* cmd now)
meillo@marmaro.de
parents: 756
diff changeset
465 if(!cmd)
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
466 return;
769
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
467 if(!(shell = getenv("SHELL")))
49aa8ccceefa cleanups in domax and more
meillo@marmaro.de
parents: 768
diff changeset
468 shell = "/bin/sh";
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
469 /* 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
470 * 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
471 if(fork() == 0) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
472 if(fork() == 0) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
473 if(dpy)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
474 close(ConnectionNumber(dpy));
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
475 setsid();
758
bc512840e5a5 removed union arg (using const char* cmd now)
meillo@marmaro.de
parents: 756
diff changeset
476 execl(shell, shell, "-c", cmd, (char *)NULL);
772
0c1e9952a278 naming change from dwm to aewl; cleanups
meillo@marmaro.de
parents: 771
diff changeset
477 fprintf(stderr, "aewl: 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
478 perror(" failed");
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 exit(0);
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 wait(0);
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 /* 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
486
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
487 Client *
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
488 getnext(Client *c) {
768
a1c6805aa018 simplified and corrected domax() and restack()
meillo@marmaro.de
parents: 767
diff changeset
489 while(c && !isvisible(c)) {
a1c6805aa018 simplified and corrected domax() and restack()
meillo@marmaro.de
parents: 767
diff changeset
490 c = c->next;
a1c6805aa018 simplified and corrected domax() and restack()
meillo@marmaro.de
parents: 767
diff changeset
491 }
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
492 return 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
767
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
496 settag(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
497 unsigned int i;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
498 XClassHint ch = { 0 };
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
499
767
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
500 if(trans) {
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
501 c->tag = trans->tag;
767
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
502 return;
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
503 }
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
504 c->tag = seltag; /* default */
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
505 XGetClassHint(dpy, c->win, &ch);
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
506 len = sizeof rule / sizeof rule[0];
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
507 for(i = 0; i < len; i++) {
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
508 if((rule[i].title && strstr(c->name, rule[i].title))
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
509 || (ch.res_class && rule[i].class && strstr(ch.res_class, rule[i].class))
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
510 || (ch.res_name && rule[i].instance && strstr(ch.res_name, rule[i].instance))) {
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
511 c->isfloat = rule[i].isfloat;
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
512 if (rule[i].tag < 0) {
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
513 c->tag = seltag;
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
514 } else if (rule[i].tag) {
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
515 c->tag = True;
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
516 } else {
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
517 c->tag = False;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
518 }
767
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
519 break;
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
520 }
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
521 }
767
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
522 if(ch.res_class)
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
523 XFree(ch.res_class);
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
524 if(ch.res_name)
706991d15451 removed rexexp for old strstr matching; simplifications
meillo@marmaro.de
parents: 766
diff changeset
525 XFree(ch.res_name);
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
526 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
527
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
528 void
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
529 toggletag() {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
530 if(!sel)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
531 return;
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
532 sel->tag = !sel->tag;
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
533 toggleview();
754
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
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
536 /* from event.c */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
537
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
538 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
539 movemouse(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
540 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
541 unsigned int dui;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
542 Window dummy;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
543 XEvent ev;
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 ocx = c->x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
546 ocy = c->y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
547 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
548 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
549 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
550 c->ismax = False;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
551 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
552 for(;;) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
553 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
554 switch (ev.type) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
555 case ButtonRelease:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
556 resize(c, True);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
557 XUngrabPointer(dpy, CurrentTime);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
558 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
559 case ConfigureRequest:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
560 case Expose:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
561 case MapRequest:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
562 handler[ev.type](&ev);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
563 break;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
564 case MotionNotify:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
565 XSync(dpy, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
566 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
567 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
568 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
569 c->x = wax;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
570 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
571 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
572 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
573 c->y = way;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
574 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
575 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
576 resize(c, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
577 break;
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 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
581
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
582 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
583 resizemouse(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
584 int ocx, ocy;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
585 int nw, nh;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
586 XEvent ev;
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 ocx = c->x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
589 ocy = c->y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
590 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
591 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
592 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
593 c->ismax = False;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
594 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
595 for(;;) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
596 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
597 switch(ev.type) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
598 case ButtonRelease:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
599 resize(c, True);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
600 XUngrabPointer(dpy, CurrentTime);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
601 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
602 case ConfigureRequest:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
603 case Expose:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
604 case MapRequest:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
605 handler[ev.type](&ev);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
606 break;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
607 case MotionNotify:
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
608 XSync(dpy, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
609 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
610 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
611 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
612 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
613 resize(c, True);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
614 break;
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 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
618
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
619 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
620 buttonpress(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
621 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
622 XButtonPressedEvent *ev = &e->xbutton;
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 if(barwin == ev->window) {
758
bc512840e5a5 removed union arg (using const char* cmd now)
meillo@marmaro.de
parents: 756
diff changeset
625 return;
763
17428bca4a12 removed group-toggle by mouse; small cleanup
meillo@marmaro.de
parents: 762
diff changeset
626 }
17428bca4a12 removed group-toggle by mouse; small cleanup
meillo@marmaro.de
parents: 762
diff changeset
627 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
628 focus(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
629 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
630 return;
761
59ce221b9a37 removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents: 760
diff changeset
631 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
632 restack();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
633 movemouse(c);
761
59ce221b9a37 removed global float (dofloat); number of tags is fixed (2)
meillo@marmaro.de
parents: 760
diff changeset
634 } 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
635 restack();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
636 resizemouse(c);
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
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
641 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
642 configurerequest(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
643 unsigned long newmask;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
644 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
645 XConfigureRequestEvent *ev = &e->xconfigurerequest;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
646 XWindowChanges wc;
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 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
649 c->ismax = False;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
650 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
651 c->x = ev->x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
652 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
653 c->y = ev->y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
654 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
655 c->w = ev->width;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
656 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
657 c->h = ev->height;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
658 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
659 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
660 wc.x = c->x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
661 wc.y = c->y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
662 wc.width = c->w;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
663 wc.height = c->h;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
664 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
665 if(newmask)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
666 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
667 else
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
668 configure(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
669 XSync(dpy, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
670 if(c->isfloat) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
671 resize(c, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
672 if(!isvisible(c))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
673 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
674 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
675 else
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
676 arrange();
758
bc512840e5a5 removed union arg (using const char* cmd now)
meillo@marmaro.de
parents: 756
diff changeset
677 } else {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
678 wc.x = ev->x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
679 wc.y = ev->y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
680 wc.width = ev->width;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
681 wc.height = ev->height;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
682 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
683 wc.sibling = ev->above;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
684 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
685 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
686 XSync(dpy, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
687 }
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
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
690 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
691 destroynotify(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
692 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
693 XDestroyWindowEvent *ev = &e->xdestroywindow;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
694
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
695 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
696 unmanage(c);
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
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
699 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
700 enternotify(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
701 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
702 XCrossingEvent *ev = &e->xcrossing;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
703
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
704 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
705 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
706 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
707 focus(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
708 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
709 selscreen = True;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
710 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
711 focus(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
712 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
713 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
714
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
715 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
716 expose(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
717 XExposeEvent *ev = &e->xexpose;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
718
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
719 if(ev->count == 0) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
720 if(barwin == ev->window)
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
721 drawbar();
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
722 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
723 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
724
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
725 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
726 keypress(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
727 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
728 unsigned int i;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
729 KeySym keysym;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
730 XKeyEvent *ev = &e->xkey;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
731
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
732 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
733 for(i = 0; i < len; i++) {
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
734 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
735 if(key[i].func)
758
bc512840e5a5 removed union arg (using const char* cmd now)
meillo@marmaro.de
parents: 756
diff changeset
736 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
737 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
738 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
739 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
740
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
741 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
742 leavenotify(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
743 XCrossingEvent *ev = &e->xcrossing;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
744
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
745 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
746 selscreen = False;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
747 focus(NULL);
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
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
751 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
752 mappingnotify(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
753 XMappingEvent *ev = &e->xmapping;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
755 XRefreshKeyboardMapping(ev);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
756 if(ev->request == MappingKeyboard)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
757 grabkeys();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
758 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
759
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
760 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
761 maprequest(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
762 static XWindowAttributes wa;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
763 XMapRequestEvent *ev = &e->xmaprequest;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
764
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
765 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
766 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
767 if(wa.override_redirect) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
768 XSelectInput(dpy, ev->window,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
769 (StructureNotifyMask | PropertyChangeMask));
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
770 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
771 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
772 if(!getclient(ev->window))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
773 manage(ev->window, &wa);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
774 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
775
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
776 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
777 propertynotify(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
778 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
779 Window trans;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
780 XPropertyEvent *ev = &e->xproperty;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
781
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
782 if((ev->window == root) && (ev->atom = XA_WM_NAME))
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
783 updatestatus();
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
784 else if(ev->state == PropertyDelete)
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
785 return; /* ignore */
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
786 else 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
787 switch (ev->atom) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
788 default: break;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
789 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
790 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
791 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
792 arrange();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
793 break;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
794 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
795 updatesizehints(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
796 break;
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 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
799 updatetitle(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
800 if(c == sel)
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
801 drawbar();
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
802 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
803 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
804 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
805
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
806 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
807 unmapnotify(XEvent *e) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
808 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
809 XUnmapEvent *ev = &e->xunmap;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
810
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
811 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
812 unmanage(c);
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
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
815
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
816
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
817 void (*handler[LASTEvent]) (XEvent *) = {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
818 [ButtonPress] = buttonpress,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
819 [ConfigureRequest] = configurerequest,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
820 [DestroyNotify] = destroynotify,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
821 [EnterNotify] = enternotify,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
822 [LeaveNotify] = leavenotify,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
823 [Expose] = expose,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
824 [KeyPress] = keypress,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
825 [MappingNotify] = mappingnotify,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
826 [MapRequest] = maprequest,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
827 [PropertyNotify] = propertynotify,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
828 [UnmapNotify] = unmapnotify
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
829 };
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
830
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
831 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
832 grabkeys(void) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
833 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
834 unsigned int i;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
835 KeyCode code;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
836
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
837 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
838 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
839 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
840 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
841 GrabModeAsync, GrabModeAsync);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
842 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
843 GrabModeAsync, GrabModeAsync);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
844 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
845 GrabModeAsync, GrabModeAsync);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
846 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
847 GrabModeAsync, GrabModeAsync);
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
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
851 /* from draw.c */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
852
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
853 unsigned int
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
854 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
855 XRectangle r;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
856
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
857 if(dc.font.set) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
858 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
859 return r.width;
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 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
862 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
863
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
864 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
865 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
866 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
867 static char buf[256];
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
868 unsigned int len, olen;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
869 XGCValues gcv;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
870 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
871
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
872 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
873 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
874 if(!text)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
875 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
876 w = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
877 olen = len = strlen(text);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
878 if(len >= sizeof buf)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
879 len = sizeof buf - 1;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
880 memcpy(buf, text, len);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
881 buf[len] = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
882 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
883 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
884 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
885 /* shorten text if necessary */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
886 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
887 buf[--len] = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
888 if(len < olen) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
889 if(len > 1)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
890 buf[len - 1] = '.';
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
891 if(len > 2)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
892 buf[len - 2] = '.';
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
893 if(len > 3)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
894 buf[len - 3] = '.';
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
895 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
896 if(w > dc.w)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
897 return; /* too long */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
898 gcv.foreground = col[ColFG];
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
899 if(dc.font.set) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
900 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
901 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
902 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
903 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
904 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
905 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
906 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
907 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
908
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
909 void
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
910 drawbar(void) {
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
911 int x;
771
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
912 unsigned long black[ColLast];
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
913 black[ColBG] = getcolor("#000000");
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
914 black[ColFG] = getcolor("#ffffff");
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
915
771
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
916 /* views */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
917 dc.x = dc.y = 0;
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
918 dc.w = textw(NAMETAGGED);
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
919 drawtext(NAMETAGGED, ( seltag ? dc.sel : dc.norm ));
771
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
920
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
921 dc.x += dc.w;
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
922 dc.w = BORDERPX;
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
923 drawtext(NULL, black);
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
924
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
925 dc.x += dc.w;
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
926 dc.w = textw(NAMEUNTAGGED);
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
927 drawtext(NAMEUNTAGGED, ( seltag ? dc.norm : dc.sel ));
771
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
928
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
929 dc.x += dc.w;
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
930 dc.w = BORDERPX;
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
931 drawtext(NULL, black);
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
932
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
933 /* status text */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
934 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
935 dc.w = textw(stext);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
936 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
937 if(dc.x < x) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
938 dc.x = x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
939 dc.w = sw - x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
940 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
941 drawtext(stext, dc.norm);
771
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
942
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
943 /* client title */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
944 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
945 dc.x = x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
946 drawtext(sel ? sel->name : NULL, dc.norm);
771
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
947
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
948 dc.x += dc.w;
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
949 dc.w = BORDERPX;
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
950 drawtext(NULL, black);
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
951 }
771
59a6f0ba5478 beautified status bar
meillo@marmaro.de
parents: 770
diff changeset
952
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
953 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
954 XSync(dpy, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
955 }
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 unsigned long
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
958 getcolor(const char *colstr) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
959 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
960 XColor color;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
961
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
962 if(!XAllocNamedColor(dpy, cmap, colstr, &color, &color))
778
7ea91d4d0882 rename eprint() -> die()
meillo@marmaro.de
parents: 777
diff changeset
963 die("error, cannot allocate color '%s'\n", colstr);
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
964 return color.pixel;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
965 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
966
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
967 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
968 setfont(const char *fontstr) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
969 char *def, **missing;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
970 int i, n;
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 missing = NULL;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
973 if(dc.font.set)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
974 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
975 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
976 if(missing) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
977 while(n--)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
978 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
979 XFreeStringList(missing);
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 if(dc.font.set) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
982 XFontSetExtents *font_extents;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
983 XFontStruct **xfonts;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
984 char **font_names;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
985 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
986 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
987 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
988 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
989 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
990 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
991 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
992 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
993 xfonts++;
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 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
996 if(dc.font.xfont)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
997 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
998 dc.font.xfont = NULL;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
999 if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr)))
778
7ea91d4d0882 rename eprint() -> die()
meillo@marmaro.de
parents: 777
diff changeset
1000 die("error, cannot load font: '%s'\n", fontstr);
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1001 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
1002 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
1003 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1004 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
1005 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1006
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1007 unsigned int
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1008 textw(const char *text) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1009 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
1010 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1011
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
1012 /* from client.c */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1013
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
1014 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1015 detachstack(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1016 Client **tc;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1017 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
1018 *tc = c->snext;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1019 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1020
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
1021 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1022 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
1023 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
1024
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1025 if(focused) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1026 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
1027 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1028 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
1029 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1030 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
1031 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1032 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
1033 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1034
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1035 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
1036 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1037 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
1038 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1039 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
1040 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1041 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
1042 GrabModeAsync, GrabModeSync, None, None);
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 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
1045 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1046 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
1047 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1048 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
1049 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1050 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
1051 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1052 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1053 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
1054 GrabModeAsync, GrabModeSync, None, None);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1055 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1056 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1057
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
1058 void
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1059 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
1060 long data[] = {state, None};
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1061 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
1062 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
1063 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1064
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
1065 int
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1066 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
1067 return 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1068 }
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 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1071 configure(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1072 XEvent synev;
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 synev.type = ConfigureNotify;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1075 synev.xconfigure.display = dpy;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1076 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
1077 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
1078 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
1079 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
1080 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
1081 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
1082 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
1083 synev.xconfigure.above = None;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1084 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
1085 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1086
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1087 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1088 focus(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1089 if(c && !isvisible(c))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1090 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1091 if(sel && sel != c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1092 grabbuttons(sel, False);
764
15660880e23d removed unnessasary color pair
meillo@marmaro.de
parents: 763
diff changeset
1093 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
1094 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1095 if(c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1096 detachstack(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1097 c->snext = stack;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1098 stack = c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1099 grabbuttons(c, True);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1100 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1101 sel = c;
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1102 drawbar();
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1103 if(!selscreen)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1104 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1105 if(c) {
764
15660880e23d removed unnessasary color pair
meillo@marmaro.de
parents: 763
diff changeset
1106 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
1107 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
1108 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1109 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
1110 }
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
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1113 Client *
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1114 getclient(Window w) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1115 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1116
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1117 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
1118 if(c->win == w) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1119 return c;
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 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1122 return NULL;
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
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1125 Bool
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1126 isprotodel(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1127 int i, n;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1128 Atom *protocols;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1129 Bool ret = False;
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 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
1132 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
1133 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
1134 ret = True;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1135 XFree(protocols);
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 return ret;
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
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1140 void
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
1141 killclient() {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1142 if(!sel)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1143 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1144 if(isprotodel(sel))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1145 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
1146 else
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1147 XKillClient(dpy, sel->win);
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
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1150 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1151 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
1152 Client *c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1153 Window trans;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1154
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1155 c = emallocz(sizeof(Client));
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
1156 c->tag = True;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1157 c->win = w;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1158 c->x = wa->x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1159 c->y = wa->y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1160 c->w = wa->width;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1161 c->h = wa->height;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1162 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
1163 c->border = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1164 c->x = sx;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1165 c->y = sy;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1166 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1167 c->border = BORDERPX;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1168 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
1169 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
1170 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
1171 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
1172 if(c->x < wax)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1173 c->x = wax;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1174 if(c->y < way)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1175 c->y = way;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1176 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1177 updatesizehints(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1178 XSelectInput(dpy, c->win,
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1179 StructureNotifyMask | PropertyChangeMask | EnterWindowMask);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1180 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
1181 grabbuttons(c, False);
764
15660880e23d removed unnessasary color pair
meillo@marmaro.de
parents: 763
diff changeset
1182 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
1183 updatetitle(c);
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
1184 settag(c, getclient(trans));
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1185 if(!c->isfloat)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1186 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
1187 if(clients)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1188 clients->prev = c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1189 c->next = clients;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1190 c->snext = stack;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1191 stack = clients = c;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1192 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
1193 XMapWindow(dpy, c->win);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1194 setclientstate(c, NormalState);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1195 if(isvisible(c))
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1196 focus(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1197 arrange();
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 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
1202 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
1203 XWindowChanges wc;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1204
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1205 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
1206 return;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1207 if(sizehints) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1208 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
1209 c->w = c->minw;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1210 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
1211 c->h = c->minh;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1212 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
1213 c->w = c->maxw;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1214 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
1215 c->h = c->maxh;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1216 /* 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
1217 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
1218 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
1219 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
1220 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
1221 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
1222 actual = dx / dy;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1223 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
1224 if(actual < min) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1225 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
1226 dx = dy * min;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1227 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
1228 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
1229 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1230 else if(actual > max) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1231 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
1232 dx = dy * min;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1233 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
1234 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
1235 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1236 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1237 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1238 if(c->incw)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1239 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
1240 if(c->inch)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1241 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
1242 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1243 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
1244 c->border = 0;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1245 else
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1246 c->border = BORDERPX;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1247 /* offscreen appearance fixes */
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1248 if(c->x > sw)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1249 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
1250 if(c->y > sh)
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1251 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
1252 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
1253 c->x = sx;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1254 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
1255 c->y = sy;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1256 wc.x = c->x;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1257 wc.y = c->y;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1258 wc.width = c->w;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1259 wc.height = c->h;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1260 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
1261 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
1262 configure(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1263 XSync(dpy, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1264 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1265
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1266 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1267 updatesizehints(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1268 long msize;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1269 XSizeHints size;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1270
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1271 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
1272 size.flags = PSize;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1273 c->flags = size.flags;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1274 if(c->flags & PBaseSize) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1275 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
1276 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
1277 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1278 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
1279 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1280 if(c->flags & PResizeInc) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1281 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
1282 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
1283 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1284 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
1285 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1286 if(c->flags & PMaxSize) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1287 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
1288 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
1289 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1290 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
1291 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1292 if(c->flags & PMinSize) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1293 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
1294 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
1295 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1296 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
1297 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1298 if(c->flags & PAspect) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1299 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
1300 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
1301 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
1302 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
1303 } else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1304 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
1305 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1306 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
1307 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
1308 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1309
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1310 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1311 updatetitle(Client *c) {
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1312 if (!gettextprop(c->win, netatom[NetWMName], c->name, sizeof c->name)) {
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1313 gettextprop(c->win, XA_WM_NAME, c->name, sizeof c->name);
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1314 }
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1315 }
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1316
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1317
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1318 Bool
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1319 gettextprop(Window w, Atom atom, char* text, unsigned int size) {
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1320 char **list = NULL;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1321 int n;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1322 XTextProperty name;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1323
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1324 if (!text || size == 0) {
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1325 return False;
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1326 }
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1327 text[0] = '\0';
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1328 XGetTextProperty(dpy, w, &name, atom);
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1329 if(!name.nitems)
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1330 return False;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1331 if(name.encoding == XA_STRING)
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1332 strncpy(text, (char *)name.value, size - 1);
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1333 else {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1334 if(XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success && n > 0 && *list) {
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1335 strncpy(text, *list, size - 1);
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1336 XFreeStringList(list);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1337 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1338 }
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1339 text[size - 1] = '\0';
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1340 XFree(name.value);
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1341 return True;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1342 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1343
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1344 void
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1345 unmanage(Client *c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1346 Client *nc;
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1347
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1348 /* 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
1349 XGrabServer(dpy);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1350 XSetErrorHandler(xerrordummy);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1351 detach(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1352 detachstack(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1353 if(sel == c) {
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1354 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
1355 focus(nc);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1356 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1357 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
1358 setclientstate(c, WithdrawnState);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1359 free(c);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1360 XSync(dpy, False);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1361 XSetErrorHandler(xerror);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1362 XUngrabServer(dpy);
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1363 arrange();
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1364 }
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1365
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
1366 /* from main.c */
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1367
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
1368 void
487
be4f90c03582 applied Jukkas patch
arg@mmvi
parents: 473
diff changeset
1369 cleanup(void) {
645
8e6d75c68b69 changed arg's color scheme
arg@mig29
parents: 644
diff changeset
1370 while(stack) {
708
a2d568a5cdb8 applied Sanders all5.patch (thanks for your weekend session, Sander!)
Anselm R. Garbe <arg@suckless.org>
parents: 697
diff changeset
1371 resize(stack, True);
645
8e6d75c68b69 changed arg's color scheme
arg@mig29
parents: 644
diff changeset
1372 unmanage(stack);
76
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1373 }
295
7565875d07d3 extended cleanup
Anselm R.Garbe <arg@10ksloc.org>
parents: 293
diff changeset
1374 if(dc.font.set)
7565875d07d3 extended cleanup
Anselm R.Garbe <arg@10ksloc.org>
parents: 293
diff changeset
1375 XFreeFontSet(dpy, dc.font.set);
7565875d07d3 extended cleanup
Anselm R.Garbe <arg@10ksloc.org>
parents: 293
diff changeset
1376 else
7565875d07d3 extended cleanup
Anselm R.Garbe <arg@10ksloc.org>
parents: 293
diff changeset
1377 XFreeFont(dpy, dc.font.xfont);
292
4aa632b6ba66 changed main event loop
Anselm R.Garbe <arg@10ksloc.org>
parents: 291
diff changeset
1378 XUngrabKey(dpy, AnyKey, AnyModifier, root);
295
7565875d07d3 extended cleanup
Anselm R.Garbe <arg@10ksloc.org>
parents: 293
diff changeset
1379 XFreePixmap(dpy, dc.drawable);
7565875d07d3 extended cleanup
Anselm R.Garbe <arg@10ksloc.org>
parents: 293
diff changeset
1380 XFreeGC(dpy, dc.gc);
309
204427dcc087 corrected order of cleanup code
Anselm R.Garbe <arg@10ksloc.org>
parents: 302
diff changeset
1381 XDestroyWindow(dpy, barwin);
616
f617c75a8405 improved the memory leak prevention
arg@mig29
parents: 583
diff changeset
1382 XFreeCursor(dpy, cursor[CurNormal]);
f617c75a8405 improved the memory leak prevention
arg@mig29
parents: 583
diff changeset
1383 XFreeCursor(dpy, cursor[CurResize]);
f617c75a8405 improved the memory leak prevention
arg@mig29
parents: 583
diff changeset
1384 XFreeCursor(dpy, cursor[CurMove]);
76
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1385 XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
292
4aa632b6ba66 changed main event loop
Anselm R.Garbe <arg@10ksloc.org>
parents: 291
diff changeset
1386 XSync(dpy, False);
76
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1387 }
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1388
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
1389 void
487
be4f90c03582 applied Jukkas patch
arg@mmvi
parents: 473
diff changeset
1390 scan(void) {
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1391 unsigned int i, num;
123
61490330e90a cleaned up code
arg@10ksloc.org
parents: 99
diff changeset
1392 Window *wins, d1, d2;
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1393 XWindowAttributes wa;
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1394
292
4aa632b6ba66 changed main event loop
Anselm R.Garbe <arg@10ksloc.org>
parents: 291
diff changeset
1395 wins = NULL;
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1396 if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1397 for(i = 0; i < num; i++) {
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1398 if(!XGetWindowAttributes(dpy, wins[i], &wa))
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1399 continue;
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1400 if(wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1401 continue;
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1402 if(wa.map_state == IsViewable)
10
703255003abb changed how manage client works
Anselm R. Garbe <garbeam@wmii.de>
parents: 9
diff changeset
1403 manage(wins[i], &wa);
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1404 }
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1405 }
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1406 if(wins)
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1407 XFree(wins);
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1408 }
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1409
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
1410 void
487
be4f90c03582 applied Jukkas patch
arg@mmvi
parents: 473
diff changeset
1411 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
1412 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
1413 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
1414 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
1415 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
1416 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
1417
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1418 screen = DefaultScreen(dpy);
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1419 root = RootWindow(dpy, screen);
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1420
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1421 /* 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
1422 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
1423 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
1424 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
1425 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
1426 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
1427 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
1428 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
1429 /* 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
1430 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
1431 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
1432 cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur);
532
651f2c868b31 code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents: 530
diff changeset
1433 /* init modifier map */
679
5f0134b88b8d small fix of initial numlockmask value
Anselm R. Garbe <arg@suckless.org>
parents: 675
diff changeset
1434 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
1435 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
1436 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
1437 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
1438 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
1439 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
1440 }
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1441 }
616
f617c75a8405 improved the memory leak prevention
arg@mig29
parents: 583
diff changeset
1442 XFreeModifiermap(modmap);
532
651f2c868b31 code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents: 530
diff changeset
1443 /* 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
1444 wa.event_mask = SubstructureRedirectMask | SubstructureNotifyMask
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1445 | EnterWindowMask | LeaveWindowMask | PropertyChangeMask;
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1446 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
1447 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
1448 grabkeys();
766
3f7c68a720b5 undone naming change: "group" is "tag" again (but without plural)
meillo@marmaro.de
parents: 764
diff changeset
1449 seltag = True;
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1450 /* style */
353
8a06efe5b563 new color stuff/new rendering stuff
Anselm R. Garbe <arg@10kloc.org>
parents: 352
diff changeset
1451 dc.norm[ColBG] = getcolor(NORMBGCOLOR);
8a06efe5b563 new color stuff/new rendering stuff
Anselm R. Garbe <arg@10kloc.org>
parents: 352
diff changeset
1452 dc.norm[ColFG] = getcolor(NORMFGCOLOR);
8a06efe5b563 new color stuff/new rendering stuff
Anselm R. Garbe <arg@10kloc.org>
parents: 352
diff changeset
1453 dc.sel[ColBG] = getcolor(SELBGCOLOR);
8a06efe5b563 new color stuff/new rendering stuff
Anselm R. Garbe <arg@10kloc.org>
parents: 352
diff changeset
1454 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
1455 setfont(FONT);
532
651f2c868b31 code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents: 530
diff changeset
1456 /* 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
1457 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
1458 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
1459 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
1460 nmaster = NMASTER;
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
1461 arrange = DEFMODE;
532
651f2c868b31 code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents: 530
diff changeset
1462 /* bar */
353
8a06efe5b563 new color stuff/new rendering stuff
Anselm R. Garbe <arg@10kloc.org>
parents: 352
diff changeset
1463 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
1464 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
1465 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
1466 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
1467 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
1468 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
1469 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
1470 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
1471 XMapRaised(dpy, barwin);
565
fe766305eed1 applied Gottox' windowarea patch
arg@mig29
parents: 532
diff changeset
1472 /* windowarea */
fe766305eed1 applied Gottox' windowarea patch
arg@mig29
parents: 532
diff changeset
1473 wax = sx;
754
4c12dccc288d this is the (second) begin of aewl - my personal stipped down dwm
meillo@marmaro.de
parents: 744
diff changeset
1474 way = sy + bh;
565
fe766305eed1 applied Gottox' windowarea patch
arg@mig29
parents: 532
diff changeset
1475 wah = sh - bh;
fe766305eed1 applied Gottox' windowarea patch
arg@mig29
parents: 532
diff changeset
1476 waw = sw;
532
651f2c868b31 code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents: 530
diff changeset
1477 /* 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
1478 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
1479 dc.gc = XCreateGC(dpy, root, 0, 0);
344
93192711a36a changing tag indicator through underline
Anselm R. Garbe <arg@10kloc.org>
parents: 339
diff changeset
1480 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
1481 /* multihead support */
716
4ce65f61f01b renamed activescreen into selscreen
Anselm R. Garbe <arg@suckless.org>
parents: 714
diff changeset
1482 selscreen = XQueryPointer(dpy, root, &w, &w, &i, &i, &i, &i, &mask);
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1483
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1484 updatestatus();
333
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1485 }
827f8f6c9e97 separated setup stuff into main.c:setup() - this makes main() more readable
Anselm R. Garbe <arg@10kloc.org>
parents: 329
diff changeset
1486
76
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1487 /*
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1488 * 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
1489 * is already running.
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1490 */
773
d2e56ce18f5b remove static since its only one source file now; removed empty lines
meillo@marmaro.de
parents: 772
diff changeset
1491 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
1492 xerrorstart(Display *dsply, XErrorEvent *ee) {
76
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1493 otherwm = True;
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1494 return -1;
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1495 }
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1496
13
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1497 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
1498 sendevent(Window w, Atom a, long value) {
13
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1499 XEvent e;
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1500
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1501 e.type = ClientMessage;
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1502 e.xclient.window = w;
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1503 e.xclient.message_type = a;
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1504 e.xclient.format = 32;
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1505 e.xclient.data.l[0] = value;
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1506 e.xclient.data.l[1] = CurrentTime;
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1507 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
1508 XSync(dpy, False);
13
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1509 }
5cc5e55a132d added protocol killing stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 10
diff changeset
1510
76
4bd49f404f10 proceeded with cleaning up, sorting functions, etc
Anselm R. Garbe <garbeam@wmii.de>
parents: 75
diff changeset
1511 void
756
bff1012527b3 removed unnecessary Arg* parametersadded decnmaster
meillo@marmaro.de
parents: 755
diff changeset
1512 quit() {
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1513 running = False;
75
f08271b7cb20 rearranged several stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 74
diff changeset
1514 }
f08271b7cb20 rearranged several stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 74
diff changeset
1515
532
651f2c868b31 code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents: 530
diff changeset
1516 /* 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
1517 * 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
1518 * default error handler, which may call exit.
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1519 */
10
703255003abb changed how manage client works
Anselm R. Garbe <garbeam@wmii.de>
parents: 9
diff changeset
1520 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
1521 xerror(Display *dpy, XErrorEvent *ee) {
75
f08271b7cb20 rearranged several stuff
Anselm R. Garbe <garbeam@wmii.de>
parents: 74
diff changeset
1522 if(ee->error_code == BadWindow
123
61490330e90a cleaned up code
arg@10ksloc.org
parents: 99
diff changeset
1523 || (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
61490330e90a cleaned up code
arg@10ksloc.org
parents: 99
diff changeset
1524 || (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
61490330e90a cleaned up code
arg@10ksloc.org
parents: 99
diff changeset
1525 || (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable)
61490330e90a cleaned up code
arg@10ksloc.org
parents: 99
diff changeset
1526 || (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
61490330e90a cleaned up code
arg@10ksloc.org
parents: 99
diff changeset
1527 || (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
1528 || (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
1529 || (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1530 return 0;
772
0c1e9952a278 naming change from dwm to aewl; cleanups
meillo@marmaro.de
parents: 771
diff changeset
1531 fprintf(stderr, "aewl: fatal error: request code=%d, error code=%d\n",
123
61490330e90a cleaned up code
arg@10ksloc.org
parents: 99
diff changeset
1532 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
1533 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
1534 }
f96fb3fd8203 added grid mode on Mod1Mask g
Anselm R. Garbe <garbeam@wmii.de>
parents: 26
diff changeset
1535
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1536 void
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1537 checkotherwm(void) {
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1538 otherwm = False;
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1539 xerrorxlib = XSetErrorHandler(xerrorstart);
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1540 /* this causes an error if some other window manager is running */
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1541 XSelectInput(dpy, DefaultRootWindow(dpy), SubstructureRedirectMask);
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1542 XSync(dpy, False);
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1543 if(otherwm) {
778
7ea91d4d0882 rename eprint() -> die()
meillo@marmaro.de
parents: 777
diff changeset
1544 die("aewl: another window manager is already running\n");
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1545 }
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1546
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1547 XSetErrorHandler(xerror);
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1548 XSync(dpy, False);
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1549 }
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1550
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1551 void
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1552 run(void) {
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1553 XEvent ev;
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1554
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1555 XSync(dpy, False);
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1556 /* main event loop */
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1557 while(running && !XNextEvent(dpy, &ev)) {
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1558 if(handler[ev.type]) {
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1559 (handler[ev.type])(&ev); /* call handler */
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1560 }
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1561 }
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1562 }
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1563
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1564 void
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1565 updatestatus(void) {
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1566 if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext))) {
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1567 strcpy(stext, "aewl-"VERSION);
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1568 }
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1569 drawbar();
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1570 }
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1571
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1572 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
1573 main(int argc, char *argv[]) {
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1574
137
77922a389fa8 simplified main.c, switching back to single urxvt usage
arg@10ksloc.org
parents: 126
diff changeset
1575 if(argc == 2 && !strncmp("-v", argv[1], 3)) {
772
0c1e9952a278 naming change from dwm to aewl; cleanups
meillo@marmaro.de
parents: 771
diff changeset
1576 fputs("aewl-"VERSION", Copyright 2008 markus schnalke <meillo@marmaro.de>\n", stdout);
0c1e9952a278 naming change from dwm to aewl; cleanups
meillo@marmaro.de
parents: 771
diff changeset
1577 fputs("forked off dwm-3.4, (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
1578 exit(EXIT_SUCCESS);
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
1579 } else if(argc != 1) {
778
7ea91d4d0882 rename eprint() -> die()
meillo@marmaro.de
parents: 777
diff changeset
1580 die("usage: aewl [-v]\n");
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1581 }
619
bda4880c462d with this patch everything works fine for me
arg@mig29
parents: 616
diff changeset
1582 setlocale(LC_CTYPE, "");
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1583 dpy = XOpenDisplay(0);
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
1584 if(!dpy) {
778
7ea91d4d0882 rename eprint() -> die()
meillo@marmaro.de
parents: 777
diff changeset
1585 die("aewl: cannot open display\n");
755
cdd895c163bd tag and seltag is now only bool
meillo@marmaro.de
parents: 754
diff changeset
1586 }
3
e969f3575b7a several new changes, made gridmenu working
Anselm R. Garbe <garbeam@wmii.de>
parents: 2
diff changeset
1587
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1588 checkotherwm();
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1589 setup();
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1590 scan();
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1591 run();
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1592 cleanup();
777
3835ddb75a55 changed to status text setting through XA_WM_NAME (suggested by Neale Pickett)
meillo@marmaro.de
parents: 776
diff changeset
1593
0
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1594 XCloseDisplay(dpy);
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1595 return 0;
491f34c11291 initial import
Anselm R. Garbe <garbeam@wmii.de>
parents:
diff changeset
1596 }