annotate view.c @ 750:3d957a703ce2 default tip

added absolute path to halt
author meillo@marmaro.de
date Thu, 05 Jul 2007 22:05:11 +0200
parents 6692d7e7e156
children
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>
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
2 * See LICENSE file for license details.
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
3 */
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
4 #include "dwm.h"
674
5d79c351e30a implemented nmaster appearance in mode label (using %u)
Anselm R. Garbe <arg@suckless.org>
parents: 662
diff changeset
5 #include <stdio.h>
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
6
380
4bf79305d675 this algorithm seems to keep order for any scenario
Anselm R. Garbe <arg@10kloc.org>
parents: 378
diff changeset
7 /* static */
4bf79305d675 this algorithm seems to keep order for any scenario
Anselm R. Garbe <arg@10kloc.org>
parents: 378
diff changeset
8
382
76b62c0c8c11 improved selection policy
Anselm R. Garbe <arg@10kloc.org>
parents: 381
diff changeset
9 static Client *
480
680aca428830 small change to achieve Jukka's last proposal
arg@mmvi
parents: 479
diff changeset
10 nexttiled(Client *c) {
680aca428830 small change to achieve Jukka's last proposal
arg@mmvi
parents: 479
diff changeset
11 for(c = getnext(c); c && c->isfloat; c = getnext(c->next));
680aca428830 small change to achieve Jukka's last proposal
arg@mmvi
parents: 479
diff changeset
12 return c;
680aca428830 small change to achieve Jukka's last proposal
arg@mmvi
parents: 479
diff changeset
13 }
680aca428830 small change to achieve Jukka's last proposal
arg@mmvi
parents: 479
diff changeset
14
442
056a5072c70a no this is better
Anselm R. Garbe <arg@10kloc.org>
parents: 437
diff changeset
15 static void
532
651f2c868b31 code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents: 531
diff changeset
16 togglemax(Client *c) {
481
arg@mmvi
parents: 480
diff changeset
17 XEvent ev;
548
3d23384eb5ab applied sanders max size fix
arg@mig29
parents: 535
diff changeset
18
549
fd1061442711 applied sanders try2 patch
arg@mig29
parents: 548
diff changeset
19 if(c->isfixed)
548
3d23384eb5ab applied sanders max size fix
arg@mig29
parents: 535
diff changeset
20 return;
532
651f2c868b31 code polishing, removed unnecessary newlines
Anselm R. Garbe <arg@10kloc.org>
parents: 531
diff changeset
21
480
680aca428830 small change to achieve Jukka's last proposal
arg@mmvi
parents: 479
diff changeset
22 if((c->ismax = !c->ismax)) {
565
fe766305eed1 applied Gottox' windowarea patch
arg@mig29
parents: 561
diff changeset
23 c->rx = c->x; c->x = wax;
fe766305eed1 applied Gottox' windowarea patch
arg@mig29
parents: 561
diff changeset
24 c->ry = c->y; c->y = way;
fe766305eed1 applied Gottox' windowarea patch
arg@mig29
parents: 561
diff changeset
25 c->rw = c->w; c->w = waw - 2 * BORDERPX;
fe766305eed1 applied Gottox' windowarea patch
arg@mig29
parents: 561
diff changeset
26 c->rh = c->h; c->h = wah - 2 * BORDERPX;
480
680aca428830 small change to achieve Jukka's last proposal
arg@mmvi
parents: 479
diff changeset
27 }
680aca428830 small change to achieve Jukka's last proposal
arg@mmvi
parents: 479
diff changeset
28 else {
680aca428830 small change to achieve Jukka's last proposal
arg@mmvi
parents: 479
diff changeset
29 c->x = c->rx;
680aca428830 small change to achieve Jukka's last proposal
arg@mmvi
parents: 479
diff changeset
30 c->y = c->ry;
481
arg@mmvi
parents: 480
diff changeset
31 c->w = c->rw;
arg@mmvi
parents: 480
diff changeset
32 c->h = c->rh;
480
680aca428830 small change to achieve Jukka's last proposal
arg@mmvi
parents: 479
diff changeset
33 }
708
a2d568a5cdb8 applied Sanders all5.patch (thanks for your weekend session, Sander!)
Anselm R. Garbe <arg@suckless.org>
parents: 691
diff changeset
34 resize(c, True);
480
680aca428830 small change to achieve Jukka's last proposal
arg@mmvi
parents: 479
diff changeset
35 while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
430
1e8aba00964e no, reodering floating clients definately breaks the manage() policy which attaches all clients zoomed (otherwise higher-weight clients couldn't be attached zoomed, which sucks)
Anselm R. Garbe <arg@10kloc.org>
parents: 429
diff changeset
36 }
1e8aba00964e no, reodering floating clients definately breaks the manage() policy which attaches all clients zoomed (otherwise higher-weight clients couldn't be attached zoomed, which sucks)
Anselm R. Garbe <arg@10kloc.org>
parents: 429
diff changeset
37
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
38 /* extern */
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
39
533
a5567a0d3011 do* has no Arg arument anymore (never called directly)
Anselm R. Garbe <arg@10kloc.org>
parents: 532
diff changeset
40 void (*arrange)(void) = DEFMODE;
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
41
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
42 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: 450
diff changeset
43 detach(Client *c) {
378
83576f5f0a90 added attach/detach functions which don't attach at the begin of list, but at the slot of a first match of the tags of a client
Anselm R. Garbe <arg@10kloc.org>
parents: 342
diff changeset
44 if(c->prev)
83576f5f0a90 added attach/detach functions which don't attach at the begin of list, but at the slot of a first match of the tags of a client
Anselm R. Garbe <arg@10kloc.org>
parents: 342
diff changeset
45 c->prev->next = c->next;
83576f5f0a90 added attach/detach functions which don't attach at the begin of list, but at the slot of a first match of the tags of a client
Anselm R. Garbe <arg@10kloc.org>
parents: 342
diff changeset
46 if(c->next)
83576f5f0a90 added attach/detach functions which don't attach at the begin of list, but at the slot of a first match of the tags of a client
Anselm R. Garbe <arg@10kloc.org>
parents: 342
diff changeset
47 c->next->prev = c->prev;
83576f5f0a90 added attach/detach functions which don't attach at the begin of list, but at the slot of a first match of the tags of a client
Anselm R. Garbe <arg@10kloc.org>
parents: 342
diff changeset
48 if(c == clients)
83576f5f0a90 added attach/detach functions which don't attach at the begin of list, but at the slot of a first match of the tags of a client
Anselm R. Garbe <arg@10kloc.org>
parents: 342
diff changeset
49 clients = c->next;
83576f5f0a90 added attach/detach functions which don't attach at the begin of list, but at the slot of a first match of the tags of a client
Anselm R. Garbe <arg@10kloc.org>
parents: 342
diff changeset
50 c->next = c->prev = NULL;
83576f5f0a90 added attach/detach functions which don't attach at the begin of list, but at the slot of a first match of the tags of a client
Anselm R. Garbe <arg@10kloc.org>
parents: 342
diff changeset
51 }
83576f5f0a90 added attach/detach functions which don't attach at the begin of list, but at the slot of a first match of the tags of a client
Anselm R. Garbe <arg@10kloc.org>
parents: 342
diff changeset
52
83576f5f0a90 added attach/detach functions which don't attach at the begin of list, but at the slot of a first match of the tags of a client
Anselm R. Garbe <arg@10kloc.org>
parents: 342
diff changeset
53 void
533
a5567a0d3011 do* has no Arg arument anymore (never called directly)
Anselm R. Garbe <arg@10kloc.org>
parents: 532
diff changeset
54 dofloat(void) {
402
c7d5ff57998d removed unused vars
Anselm R. Garbe <arg@10kloc.org>
parents: 401
diff changeset
55 Client *c;
400
052657ff2e7b applied Sanders max_and_focus.patch
Anselm R. Garbe <arg@10kloc.org>
parents: 397
diff changeset
56
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
57 for(c = clients; c; c = c->next) {
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
58 if(isvisible(c)) {
708
a2d568a5cdb8 applied Sanders all5.patch (thanks for your weekend session, Sander!)
Anselm R. Garbe <arg@suckless.org>
parents: 691
diff changeset
59 resize(c, True);
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
60 }
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
61 else
687
a76799907854 removed client title bar
Anselm R. Garbe <arg@suckless.org>
parents: 682
diff changeset
62 XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
63 }
446
a2e587651c79 using a global stack for focus recovery on arrange() - seems to work great
Anselm R. Garbe <arg@10kloc.org>
parents: 443
diff changeset
64 if(!sel || !isvisible(sel)) {
450
728c9089b079 applied sanders patch of not manipulating sel
Anselm R. Garbe <arg@10kloc.org>
parents: 446
diff changeset
65 for(c = stack; c && !isvisible(c); c = c->snext);
728c9089b079 applied sanders patch of not manipulating sel
Anselm R. Garbe <arg@10kloc.org>
parents: 446
diff changeset
66 focus(c);
446
a2e587651c79 using a global stack for focus recovery on arrange() - seems to work great
Anselm R. Garbe <arg@10kloc.org>
parents: 443
diff changeset
67 }
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
68 restack();
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
69 }
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
70
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
71 void
533
a5567a0d3011 do* has no Arg arument anymore (never called directly)
Anselm R. Garbe <arg@10kloc.org>
parents: 532
diff changeset
72 dotile(void) {
650
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
73 unsigned int i, n, mw, mh, tw, th;
402
c7d5ff57998d removed unused vars
Anselm R. Garbe <arg@10kloc.org>
parents: 401
diff changeset
74 Client *c;
400
052657ff2e7b applied Sanders max_and_focus.patch
Anselm R. Garbe <arg@10kloc.org>
parents: 397
diff changeset
75
488
0d2559f46b9e applied sanders jukka patch
arg@mmvi
parents: 487
diff changeset
76 for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next))
0d2559f46b9e applied sanders jukka patch
arg@mmvi
parents: 487
diff changeset
77 n++;
650
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
78 /* window geoms */
682
76b58d21ea98 removing to allow nmaster=0
Anselm R. Garbe <arg@suckless.org>
parents: 678
diff changeset
79 mh = (n > nmaster) ? wah / nmaster : wah / (n > 0 ? n : 1);
76b58d21ea98 removing to allow nmaster=0
Anselm R. Garbe <arg@suckless.org>
parents: 678
diff changeset
80 mw = (n > nmaster) ? (waw * master) / 1000 : waw;
678
4dcbbfe9d137 allowing nmaster=0 (I think that's a straight idea)
Anselm R. Garbe <arg@suckless.org>
parents: 675
diff changeset
81 th = (n > nmaster) ? wah / (n - nmaster) : 0;
650
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
82 tw = waw - mw;
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
83
535
Anselm R. Garbe <arg@10kloc.org>
parents: 533
diff changeset
84 for(i = 0, c = clients; c; c = c->next)
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
85 if(isvisible(c)) {
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
86 if(c->isfloat) {
708
a2d568a5cdb8 applied Sanders all5.patch (thanks for your weekend session, Sander!)
Anselm R. Garbe <arg@suckless.org>
parents: 691
diff changeset
87 resize(c, True);
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
88 continue;
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
89 }
488
0d2559f46b9e applied sanders jukka patch
arg@mmvi
parents: 487
diff changeset
90 c->ismax = False;
565
fe766305eed1 applied Gottox' windowarea patch
arg@mig29
parents: 561
diff changeset
91 c->x = wax;
fe766305eed1 applied Gottox' windowarea patch
arg@mig29
parents: 561
diff changeset
92 c->y = way;
682
76b58d21ea98 removing to allow nmaster=0
Anselm R. Garbe <arg@suckless.org>
parents: 678
diff changeset
93 if(i < nmaster) {
650
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
94 c->y += i * mh;
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
95 c->w = mw - 2 * BORDERPX;
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
96 c->h = mh - 2 * BORDERPX;
507
2824b5d0f0f0 prelim of dotile()
Anselm R. Garbe <arg@10kloc.org>
parents: 505
diff changeset
97 }
523
c1dd19da63ef yet another simplification of dotile()
Anselm R. Garbe <arg@10kloc.org>
parents: 522
diff changeset
98 else { /* tile window */
650
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
99 c->x += mw;
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
100 c->w = tw - 2 * BORDERPX;
726
0f91934037b0 applied Sander's drop_bh patch
Anselm R. Garbe <arg@suckless.org>
parents: 721
diff changeset
101 if(th > 2 * BORDERPX) {
650
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
102 c->y += (i - nmaster) * th;
565
fe766305eed1 applied Gottox' windowarea patch
arg@mig29
parents: 561
diff changeset
103 c->h = th - 2 * BORDERPX;
507
2824b5d0f0f0 prelim of dotile()
Anselm R. Garbe <arg@10kloc.org>
parents: 505
diff changeset
104 }
726
0f91934037b0 applied Sander's drop_bh patch
Anselm R. Garbe <arg@suckless.org>
parents: 721
diff changeset
105 else /* fallback if th <= 2 * BORDERPX */
565
fe766305eed1 applied Gottox' windowarea patch
arg@mig29
parents: 561
diff changeset
106 c->h = wah - 2 * BORDERPX;
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
107 }
708
a2d568a5cdb8 applied Sanders all5.patch (thanks for your weekend session, Sander!)
Anselm R. Garbe <arg@suckless.org>
parents: 691
diff changeset
108 resize(c, False);
535
Anselm R. Garbe <arg@10kloc.org>
parents: 533
diff changeset
109 i++;
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
110 }
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
111 else
687
a76799907854 removed client title bar
Anselm R. Garbe <arg@suckless.org>
parents: 682
diff changeset
112 XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
446
a2e587651c79 using a global stack for focus recovery on arrange() - seems to work great
Anselm R. Garbe <arg@10kloc.org>
parents: 443
diff changeset
113 if(!sel || !isvisible(sel)) {
450
728c9089b079 applied sanders patch of not manipulating sel
Anselm R. Garbe <arg@10kloc.org>
parents: 446
diff changeset
114 for(c = stack; c && !isvisible(c); c = c->snext);
728c9089b079 applied sanders patch of not manipulating sel
Anselm R. Garbe <arg@10kloc.org>
parents: 446
diff changeset
115 focus(c);
446
a2e587651c79 using a global stack for focus recovery on arrange() - seems to work great
Anselm R. Garbe <arg@10kloc.org>
parents: 443
diff changeset
116 }
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
117 restack();
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
118 }
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
119
749
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
120 /* begin code by mitch */
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
121 void
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
122 arrangemax(Client *c) {
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
123 if(c == sel) {
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
124 c->ismax = True;
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
125 c->x = sx;
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
126 c->y = bh;
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
127 c->w = sw - 2 * BORDERPX;
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
128 c->h = sh - bh - 2 * BORDERPX;
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
129 XRaiseWindow(dpy, c->win);
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
130 } else {
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
131 c->ismax = False;
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
132 XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
133 XLowerWindow(dpy, c->win);
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
134 }
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
135 }
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
136
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
137 void
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
138 domax(void) {
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
139 Client *c;
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
140
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
141 for(c = clients; c; c = c->next) {
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
142 if(isvisible(c)) {
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
143 if(c->isfloat) {
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
144 resize(c, True);
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
145 continue;
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
146 }
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
147 arrangemax(c);
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
148 resize(c, False);
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
149 } else {
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
150 XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
151 }
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
152
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
153 }
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
154 if(!sel || !isvisible(sel)) {
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
155 for(c = stack; c && !isvisible(c); c = c->snext);
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
156 focus(c);
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
157 }
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
158 restack();
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
159 }
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
160 /* end code by mitch */
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
161
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
162 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: 450
diff changeset
163 focusnext(Arg *arg) {
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
164 Client *c;
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
165
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
166 if(!sel)
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
167 return;
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
168 if(!(c = getnext(sel->next)))
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
169 c = getnext(clients);
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
170 if(c) {
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
171 focus(c);
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
172 restack();
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
173 }
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
174 }
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
175
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
176 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: 450
diff changeset
177 focusprev(Arg *arg) {
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
178 Client *c;
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
179
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
180 if(!sel)
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
181 return;
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
182 if(!(c = getprev(sel->prev))) {
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
183 for(c = clients; c && c->next; c = c->next);
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
184 c = getprev(c);
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
185 }
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
186 if(c) {
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
187 focus(c);
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
188 restack();
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
189 }
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
190 }
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
191
650
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
192 void
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
193 incnmaster(Arg *arg) {
721
d3876aa79292 prepared yet another hotfix release
Anselm R. Garbe <arg@suckless.org>
parents: 708
diff changeset
194 if((arrange == dofloat) || (nmaster + arg->i < 1)
726
0f91934037b0 applied Sander's drop_bh patch
Anselm R. Garbe <arg@suckless.org>
parents: 721
diff changeset
195 || (wah / (nmaster + arg->i) <= 2 * BORDERPX))
650
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
196 return;
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
197 nmaster += arg->i;
674
5d79c351e30a implemented nmaster appearance in mode label (using %u)
Anselm R. Garbe <arg@suckless.org>
parents: 662
diff changeset
198 if(sel)
5d79c351e30a implemented nmaster appearance in mode label (using %u)
Anselm R. Garbe <arg@suckless.org>
parents: 662
diff changeset
199 arrange();
5d79c351e30a implemented nmaster appearance in mode label (using %u)
Anselm R. Garbe <arg@suckless.org>
parents: 662
diff changeset
200 else
5d79c351e30a implemented nmaster appearance in mode label (using %u)
Anselm R. Garbe <arg@suckless.org>
parents: 662
diff changeset
201 drawstatus();
650
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
202 }
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
203
420
c033e1ade281 s/growcol/resizetile/g
Anselm R. Garbe <arg@10kloc.org>
parents: 419
diff changeset
204 Bool
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: 450
diff changeset
205 isvisible(Client *c) {
420
c033e1ade281 s/growcol/resizetile/g
Anselm R. Garbe <arg@10kloc.org>
parents: 419
diff changeset
206 unsigned int i;
c033e1ade281 s/growcol/resizetile/g
Anselm R. Garbe <arg@10kloc.org>
parents: 419
diff changeset
207
c033e1ade281 s/growcol/resizetile/g
Anselm R. Garbe <arg@10kloc.org>
parents: 419
diff changeset
208 for(i = 0; i < ntags; i++)
c033e1ade281 s/growcol/resizetile/g
Anselm R. Garbe <arg@10kloc.org>
parents: 419
diff changeset
209 if(c->tags[i] && seltag[i])
c033e1ade281 s/growcol/resizetile/g
Anselm R. Garbe <arg@10kloc.org>
parents: 419
diff changeset
210 return True;
c033e1ade281 s/growcol/resizetile/g
Anselm R. Garbe <arg@10kloc.org>
parents: 419
diff changeset
211 return False;
c033e1ade281 s/growcol/resizetile/g
Anselm R. Garbe <arg@10kloc.org>
parents: 419
diff changeset
212 }
c033e1ade281 s/growcol/resizetile/g
Anselm R. Garbe <arg@10kloc.org>
parents: 419
diff changeset
213
415
ad2b6ce6e95b I really need column growing, now pushing upstream
Anselm R. Garbe <arg@10kloc.org>
parents: 414
diff changeset
214 void
559
a2c465098a3b renamed resizecol into resizemaster
arg@mig29
parents: 558
diff changeset
215 resizemaster(Arg *arg) {
561
b5435d3fb7b0 applied Jukkas patch
arg@mig29
parents: 559
diff changeset
216 if(arg->i == 0)
b5435d3fb7b0 applied Jukkas patch
arg@mig29
parents: 559
diff changeset
217 master = MASTER;
b5435d3fb7b0 applied Jukkas patch
arg@mig29
parents: 559
diff changeset
218 else {
726
0f91934037b0 applied Sander's drop_bh patch
Anselm R. Garbe <arg@suckless.org>
parents: 721
diff changeset
219 if(waw * (master + arg->i) / 1000 >= waw - 2 * BORDERPX
0f91934037b0 applied Sander's drop_bh patch
Anselm R. Garbe <arg@suckless.org>
parents: 721
diff changeset
220 || waw * (master + arg->i) / 1000 <= 2 * BORDERPX)
561
b5435d3fb7b0 applied Jukkas patch
arg@mig29
parents: 559
diff changeset
221 return;
b5435d3fb7b0 applied Jukkas patch
arg@mig29
parents: 559
diff changeset
222 master += arg->i;
b5435d3fb7b0 applied Jukkas patch
arg@mig29
parents: 559
diff changeset
223 }
533
a5567a0d3011 do* has no Arg arument anymore (never called directly)
Anselm R. Garbe <arg@10kloc.org>
parents: 532
diff changeset
224 arrange();
415
ad2b6ce6e95b I really need column growing, now pushing upstream
Anselm R. Garbe <arg@10kloc.org>
parents: 414
diff changeset
225 }
ad2b6ce6e95b I really need column growing, now pushing upstream
Anselm R. Garbe <arg@10kloc.org>
parents: 414
diff changeset
226
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
227 void
487
be4f90c03582 applied Jukkas patch
arg@mmvi
parents: 486
diff changeset
228 restack(void) {
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
229 Client *c;
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
230 XEvent ev;
481
arg@mmvi
parents: 480
diff changeset
231
691
5d7e363f889d changed restack, to fix undrawed tag indicators
Anselm R. Garbe <arg@suckless.org>
parents: 690
diff changeset
232 drawstatus();
5d7e363f889d changed restack, to fix undrawed tag indicators
Anselm R. Garbe <arg@suckless.org>
parents: 690
diff changeset
233 if(!sel)
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
234 return;
687
a76799907854 removed client title bar
Anselm R. Garbe <arg@suckless.org>
parents: 682
diff changeset
235 if(sel->isfloat || arrange == dofloat)
436
b3659c3c5dab sanders solution is convincing and elegant
Anselm R. Garbe <arg@10kloc.org>
parents: 433
diff changeset
236 XRaiseWindow(dpy, sel->win);
749
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
237
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
238 /* begin code by mitch */
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
239 if(arrange == domax) {
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
240 for(c = nexttiled(clients); c; c = nexttiled(c->next)) {
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
241 arrangemax(c);
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
242 resize(c, False);
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
243 }
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
244
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
245 } else if (arrange == dotile) {
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
246 /* end code by mitch */
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
247
687
a76799907854 removed client title bar
Anselm R. Garbe <arg@suckless.org>
parents: 682
diff changeset
248 if(!sel->isfloat)
512
aca04c3022c1 fixed the z-layer issue described on mailinglist
Anselm R. Garbe <arg@10kloc.org>
parents: 511
diff changeset
249 XLowerWindow(dpy, sel->win);
436
b3659c3c5dab sanders solution is convincing and elegant
Anselm R. Garbe <arg@10kloc.org>
parents: 433
diff changeset
250 for(c = nexttiled(clients); c; c = nexttiled(c->next)) {
512
aca04c3022c1 fixed the z-layer issue described on mailinglist
Anselm R. Garbe <arg@10kloc.org>
parents: 511
diff changeset
251 if(c == sel)
aca04c3022c1 fixed the z-layer issue described on mailinglist
Anselm R. Garbe <arg@10kloc.org>
parents: 511
diff changeset
252 continue;
436
b3659c3c5dab sanders solution is convincing and elegant
Anselm R. Garbe <arg@10kloc.org>
parents: 433
diff changeset
253 XLowerWindow(dpy, c->win);
414
c6ffcc201229 don't access sel in restack without checking for NULL (multihead crashing bug)
Anselm R. Garbe <arg@10kloc.org>
parents: 402
diff changeset
254 }
512
aca04c3022c1 fixed the z-layer issue described on mailinglist
Anselm R. Garbe <arg@10kloc.org>
parents: 511
diff changeset
255 }
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
256 XSync(dpy, False);
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
257 while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
258 }
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
259
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
260 void
584
37281ebc1b5b added togglefloat to hg tip (i consider this useful for some cases), using MODKEY-Shift-space as shortcut
arg@mig29
parents: 573
diff changeset
261 togglefloat(Arg *arg) {
591
d9e9df9fdce6 togglefloat should only work in dotile mode (thanks to Sander for this hint)
arg@mig29
parents: 588
diff changeset
262 if (!sel || arrange == dofloat)
584
37281ebc1b5b added togglefloat to hg tip (i consider this useful for some cases), using MODKEY-Shift-space as shortcut
arg@mig29
parents: 573
diff changeset
263 return;
37281ebc1b5b added togglefloat to hg tip (i consider this useful for some cases), using MODKEY-Shift-space as shortcut
arg@mig29
parents: 573
diff changeset
264 sel->isfloat = !sel->isfloat;
37281ebc1b5b added togglefloat to hg tip (i consider this useful for some cases), using MODKEY-Shift-space as shortcut
arg@mig29
parents: 573
diff changeset
265 arrange();
37281ebc1b5b added togglefloat to hg tip (i consider this useful for some cases), using MODKEY-Shift-space as shortcut
arg@mig29
parents: 573
diff changeset
266 }
37281ebc1b5b added togglefloat to hg tip (i consider this useful for some cases), using MODKEY-Shift-space as shortcut
arg@mig29
parents: 573
diff changeset
267
37281ebc1b5b added togglefloat to hg tip (i consider this useful for some cases), using MODKEY-Shift-space as shortcut
arg@mig29
parents: 573
diff changeset
268 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: 450
diff changeset
269 togglemode(Arg *arg) {
749
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
270 /* only toggle between tile and max - float is just available through togglefloat */
6692d7e7e156 added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
meillo@marmaro.de
parents: 726
diff changeset
271 arrange = (arrange == dotile) ? domax : dotile;
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
272 if(sel)
533
a5567a0d3011 do* has no Arg arument anymore (never called directly)
Anselm R. Garbe <arg@10kloc.org>
parents: 532
diff changeset
273 arrange();
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
274 else
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
275 drawstatus();
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
276 }
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
277
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
278 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: 450
diff changeset
279 toggleview(Arg *arg) {
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
280 unsigned int i;
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
281
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
282 seltag[arg->i] = !seltag[arg->i];
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
283 for(i = 0; i < ntags && !seltag[i]; i++);
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
284 if(i == ntags)
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
285 seltag[arg->i] = True; /* cannot toggle last view */
533
a5567a0d3011 do* has no Arg arument anymore (never called directly)
Anselm R. Garbe <arg@10kloc.org>
parents: 532
diff changeset
286 arrange();
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
287 }
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
288
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
289 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: 450
diff changeset
290 view(Arg *arg) {
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
291 unsigned int i;
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
292
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
293 for(i = 0; i < ntags; i++)
594
f7dcd3ac8d6f removed viewall(), replaced with view(-1); added tag(-1) to tag a client with all tags (new key combo MODKEY-Shift-0)
arg@mig29
parents: 591
diff changeset
294 seltag[i] = (arg->i == -1) ? True : False;
611
c7f84f23ec5a hotfix of a serious crashing bug
arg@mig29
parents: 594
diff changeset
295 if(arg->i >= 0 && arg->i < ntags)
c7f84f23ec5a hotfix of a serious crashing bug
arg@mig29
parents: 594
diff changeset
296 seltag[arg->i] = True;
533
a5567a0d3011 do* has no Arg arument anymore (never called directly)
Anselm R. Garbe <arg@10kloc.org>
parents: 532
diff changeset
297 arrange();
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
298 }
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
299
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
300 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: 450
diff changeset
301 zoom(Arg *arg) {
651
b9f4efd21473 added MODKEY-{plus,minus} shortcuts (increasing/decreasing master clients)
Anselm R. Garbe <arg@suckless.org>
parents: 650
diff changeset
302 unsigned int n;
423
6ba5dd429122 applied checking existance of >2 tiles patch (proposed by sander) to zoom and resizecol
Anselm R. Garbe <arg@10kloc.org>
parents: 422
diff changeset
303 Client *c;
473
2d8af0d7920d implemented the maximization as I described on the mailinglist, this feels better to me.
arg@mmvi
parents: 463
diff changeset
304
2d8af0d7920d implemented the maximization as I described on the mailinglist, this feels better to me.
arg@mmvi
parents: 463
diff changeset
305 if(!sel)
2d8af0d7920d implemented the maximization as I described on the mailinglist, this feels better to me.
arg@mmvi
parents: 463
diff changeset
306 return;
2d8af0d7920d implemented the maximization as I described on the mailinglist, this feels better to me.
arg@mmvi
parents: 463
diff changeset
307 if(sel->isfloat || (arrange == dofloat)) {
480
680aca428830 small change to achieve Jukka's last proposal
arg@mmvi
parents: 479
diff changeset
308 togglemax(sel);
473
2d8af0d7920d implemented the maximization as I described on the mailinglist, this feels better to me.
arg@mmvi
parents: 463
diff changeset
309 return;
2d8af0d7920d implemented the maximization as I described on the mailinglist, this feels better to me.
arg@mmvi
parents: 463
diff changeset
310 }
650
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
311 for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next))
f3b8c71a69d4 experimental version which allows master clients being increased/decreased
Anselm R. Garbe <arg@suckless.org>
parents: 644
diff changeset
312 n++;
654
04734db9a219 allowing zoom within master area as well
Anselm R. Garbe <arg@suckless.org>
parents: 651
diff changeset
313
662
3e0f11a44293 allowing swap() for first master client
Anselm R. Garbe <arg@suckless.org>
parents: 661
diff changeset
314 if((c = sel) == nexttiled(clients))
3e0f11a44293 allowing swap() for first master client
Anselm R. Garbe <arg@suckless.org>
parents: 661
diff changeset
315 if(!(c = nexttiled(c->next)))
3e0f11a44293 allowing swap() for first master client
Anselm R. Garbe <arg@suckless.org>
parents: 661
diff changeset
316 return;
3e0f11a44293 allowing swap() for first master client
Anselm R. Garbe <arg@suckless.org>
parents: 661
diff changeset
317 detach(c);
3e0f11a44293 allowing swap() for first master client
Anselm R. Garbe <arg@suckless.org>
parents: 661
diff changeset
318 if(clients)
3e0f11a44293 allowing swap() for first master client
Anselm R. Garbe <arg@suckless.org>
parents: 661
diff changeset
319 clients->prev = c;
3e0f11a44293 allowing swap() for first master client
Anselm R. Garbe <arg@suckless.org>
parents: 661
diff changeset
320 c->next = clients;
3e0f11a44293 allowing swap() for first master client
Anselm R. Garbe <arg@suckless.org>
parents: 661
diff changeset
321 clients = c;
3e0f11a44293 allowing swap() for first master client
Anselm R. Garbe <arg@suckless.org>
parents: 661
diff changeset
322 focus(c);
3e0f11a44293 allowing swap() for first master client
Anselm R. Garbe <arg@suckless.org>
parents: 661
diff changeset
323 arrange();
327
96d09fd98e89 separated several functions into view.c
Anselm R. Garbe <arg@10kloc.org>
parents:
diff changeset
324 }