about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--TODO1
-rw-r--r--client.c55
-rw-r--r--dev.c4
-rw-r--r--dwm.h2
-rw-r--r--main.c2
5 files changed, 35 insertions, 29 deletions
diff --git a/TODO b/TODO
new file mode 100644
index 0000000..8a2d0cb
--- /dev/null
+++ b/TODO
@@ -0,0 +1 @@
+- improve mouse based resizals with quadrant approach (then I think we have feature completeness already)
diff --git a/client.c b/client.c
index 3c8825d..6d7bd92 100644
--- a/client.c
+++ b/client.c
@@ -52,7 +52,7 @@ max(Arg *arg)
 	sel->w = sw - 2 * sel->border;
 	sel->h = sh - 2 * sel->border;
 	craise(sel);
-	resize(sel);
+	resize(sel, False);
 	discard_events(EnterWindowMask);
 }
 
@@ -100,7 +100,7 @@ floating(Arg *arg)
 	arrange = floating;
 	for(c = clients; c; c = c->next) {
 		if(c->tags[tsel])
-			resize(c);
+			resize(c, True);
 		else
 			ban_client(c);
 	}
@@ -125,29 +125,29 @@ tiling(Arg *arg)
 		if(c->tags[tsel])
 			n++;
 
-	h = (n > 2) ? sh / (n - 2) : sh;
+	h = (n > 1) ? sh / (n - 1) : sh;
 
 	for(i = 0, c = clients; c; c = c->next) {
 		if(c->tags[tsel]) {
 			if(n == 1) {
 				c->x = sx;
 				c->y = sy;
-				c->w = sw;
-				c->h = sh;
+				c->w = sw - 2 * c->border;
+				c->h = sh - 2 * c->border;
 			}
-			else if(i == 1) {
+			else if(i == 0) {
 				c->x = sx;
 				c->y = sy;
-				c->w = mw;
-				c->h = sh;
+				c->w = mw - 2 * c->border;
+				c->h = sh - 2 * c->border;
 			}
 			else {
 				c->x = sx + mw;
-				c->y = sy + (i - 2) * h;
-				c->w = w;
-				c->h = h;
+				c->y = sy + (i - 1) * h;
+				c->w = w - 2 * c->border;
+				c->h = h - 2 * c->border;
 			}
-			resize(c);
+			resize(c, False);
 			i++;
 		}
 		else
@@ -304,14 +304,11 @@ lower(Client *c)
 void
 focus(Client *c)
 {
-	if(sel && sel != c) {
-		XSetWindowBorder(dpy, sel->win, dc.bg);
-		XMapWindow(dpy, sel->title);
-		draw_client(sel);
-	}
+	Client *old = sel;
+
 	sel = c;
-	XUnmapWindow(dpy, c->title);
-	XSetWindowBorder(dpy, c->win, dc.fg);
+	if(old && old != c)
+		draw_client(old);
 	draw_client(c);
 	XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
 	XFlush(dpy);
@@ -463,14 +460,16 @@ gravitate(Client *c, Bool invert)
 
 
 void
-resize(Client *c)
+resize(Client *c, Bool inc)
 {
 	XConfigureEvent e;
 
-	if(c->incw)
-		c->w -= (c->w - c->basew) % c->incw;
-	if(c->inch)
-		c->h -= (c->h - c->baseh) % c->inch;
+	if(inc) {
+		if(c->incw)
+			c->w -= (c->w - c->basew) % c->incw;
+		if(c->inch)
+			c->h -= (c->h - c->baseh) % c->inch;
+	}
 	if(c->minw && c->w < c->minw)
 		c->w = c->minw;
 	if(c->minh && c->h < c->minh)
@@ -554,8 +553,14 @@ void
 draw_client(Client *c)
 {
 	int i;
-	if(c == sel)
+	if(c == sel) {
+		XUnmapWindow(dpy, c->title);
+		XSetWindowBorder(dpy, c->win, dc.fg);
 		return;
+	}
+
+	XSetWindowBorder(dpy, c->win, dc.bg);
+	XMapWindow(dpy, c->title);
 
 	dc.x = dc.y = 0;
 	dc.h = c->th;
diff --git a/dev.c b/dev.c
index c77ef58..5e338b3 100644
--- a/dev.c
+++ b/dev.c
@@ -104,7 +104,7 @@ mresize(Client *c)
 			c->h = abs(ocy - ev.xmotion.y);
 			c->x = (ocx <= ev.xmotion.x) ? ocx : ocx - c->w;
 			c->y = (ocy <= ev.xmotion.y) ? ocy : ocy - c->h;
-			resize(c);
+			resize(c, True);
 			break;
 		case ButtonRelease:
 			XUngrabPointer(dpy, CurrentTime);
@@ -138,7 +138,7 @@ mmove(Client *c)
 			XFlush(dpy);
 			c->x = ocx + (ev.xmotion.x - x1);
 			c->y = ocy + (ev.xmotion.y - y1);
-			resize(c);
+			resize(c, False);
 			break;
 		case ButtonRelease:
 			XUngrabPointer(dpy, CurrentTime);
diff --git a/dwm.h b/dwm.h
index 118ac24..8af63f0 100644
--- a/dwm.h
+++ b/dwm.h
@@ -106,7 +106,7 @@ extern Client *getclient(Window w);
 extern void focus(Client *c);
 extern void update_name(Client *c);
 extern void draw_client(Client *c);
-extern void resize(Client *c);
+extern void resize(Client *c, Bool inc);
 extern void update_size(Client *c);
 extern Client *gettitle(Window w);
 extern void craise(Client *c);
diff --git a/main.c b/main.c
index eff5ce9..7b150f6 100644
--- a/main.c
+++ b/main.c
@@ -168,7 +168,7 @@ static void
 cleanup()
 {
 	while(sel) {
-		resize(sel);
+		resize(sel, True);
 		unmanage(sel);
 	}
 	XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
11:12:15 +0200 committer Anselm R.Garbe <arg@10ksloc.org> 2006-08-10 11:12:15 +0200 readded border color, this sucks least' href='/acidbong/suckless/dwm/commit/draw.c?h=2.7&id=00255728aae0dcbb657e8a4e145515c673b546a4'>0025572 ^
39677ec ^
8a34fa5 ^

4250c26 ^
4d67199 ^
8a34fa5 ^

39677ec ^
8a34fa5 ^

650a1fb ^


8a34fa5 ^

9e8b325 ^
8a34fa5 ^
4d67199 ^
28a5219 ^



4d67199 ^
28a5219 ^
4d67199 ^
8a34fa5 ^
650a1fb ^
8a34fa5 ^
2e0c767 ^
7e597ae ^
8a34fa5 ^
2e0c767 ^
7e597ae ^

c976bc6 ^



2e834e9 ^
c976bc6 ^






8a34fa5 ^


bf35794 ^
c09bf8d ^





937cabf ^
c09bf8d ^






4688ad1 ^
c09bf8d ^



de7fc00 ^
c09bf8d ^

b355755 ^
c09bf8d ^


de7fc00 ^
c09bf8d ^
de7fc00 ^
c09bf8d ^
4688ad1 ^
c09bf8d ^

7e597ae ^



de7fc00 ^
7e597ae ^


de7fc00 ^
4688ad1 ^
c09bf8d ^
e6cbe9c ^
c09bf8d ^

adaa28a ^





fde45eb ^
adaa28a ^
7e597ae ^
2e0c767 ^
adaa28a ^


2e0c767 ^
7e597ae ^


de7fc00 ^
7e597ae ^
e6cbe9c ^
adaa28a ^

9e8b325 ^
c0705ee ^
8a34fa5 ^
9e8b325 ^
dc5d967 ^
9e8b325 ^
8a34fa5 ^



8a34fa5 ^
c0705ee ^
8a34fa5 ^

d7e1708 ^
8a34fa5 ^
8a8b795 ^
8a34fa5 ^
9e8b325 ^


8a34fa5 ^



9e8b325 ^


8a34fa5 ^

9e8b325 ^
8a34fa5 ^


8a34fa5 ^
9e8b325 ^







8a34fa5 ^



9e8b325 ^






dba2306 ^
9e8b325 ^

8a34fa5 ^
9e8b325 ^
8a34fa5 ^
adaa28a ^

8cc7f3b ^
adaa28a ^


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232