diff options
author | Anselm R. Garbe <garbeam@gmail.com> | 2007-08-04 10:51:39 +0200 |
---|---|---|
committer | Anselm R. Garbe <garbeam@gmail.com> | 2007-08-04 10:51:39 +0200 |
commit | 4135e34dfa61d32625ef20e8e38064b465402f4a (patch) | |
tree | beb8cfbcb846eb3a6a3172567ca70a67866d934f /layout.c | |
parent | 846128a498759bfcbf363fc014e50c1bf48bdf0c (diff) | |
download | dwm-4135e34dfa61d32625ef20e8e38064b465402f4a.tar.gz |
I introduced {H,V}RATIO and inc{h,v,}ratio() functions - the default behaves like in dwm-4.3, config.arg.h shows how I prefer the ratio being handled (for the future I plan to change const char *arg into ..., and renaming Client into Win.)
Diffstat (limited to 'layout.c')
-rw-r--r-- | layout.c | 53 |
1 files changed, 32 insertions, 21 deletions
diff --git a/layout.c b/layout.c index 5bd0d57..fa7b4eb 100644 --- a/layout.c +++ b/layout.c @@ -8,10 +8,29 @@ Layout *lt = NULL; /* static */ -static double ratio = RATIO; +static double hratio = HRATIO; +static double vratio = VRATIO; static unsigned int nlayouts = 0; static unsigned int nmaster = NMASTER; +static void +incratio(const char *arg, double *ratio, double def) { + double delta; + + if(lt->arrange != tile) + return; + if(!arg) + *ratio = def; + else { + if(1 == sscanf(arg, "%lf", &delta)) { + if(delta + (*ratio) < .1 || delta + (*ratio) > 1.9) + return; + *ratio += delta; + } + } + lt->arrange(); +} + static double /* simple pow() */ spow(double x, double y) { @@ -31,21 +50,21 @@ tile(void) { for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next)) n++; - mw = (n <= nmaster) ? waw : waw / (1 + ratio); + mw = (n <= nmaster) ? waw : waw / (1 + hratio); tw = waw - mw; if(n > 0) { if(n < nmaster) { for(i = 0; i < n; i++) - sum += spow(ratio, i); + sum += spow(vratio, i); mscale = wah / sum; } else { for(i = 0; i < nmaster; i++) - sum += spow(ratio, i); + sum += spow(vratio, i); mscale = wah / sum; for(sum = 0, i = 0; i < (n - nmaster); i++) - sum += spow(ratio, i); + sum += spow(vratio, i); tscale = wah / sum; } } @@ -62,7 +81,7 @@ tile(void) { if(i + 1 == n || i + 1 == nmaster) nh = (way + wah) - ny - (2 * c->border); else - nh = (mscale * spow(ratio, i)) - (2 * c->border); + nh = (mscale * spow(vratio, i)) - (2 * c->border); } else { /* tile window */ if(i == nmaster) { @@ -73,7 +92,7 @@ tile(void) { if(i + 1 == n) nh = (way + wah) - ny - (2 * c->border); else - nh = (tscale * spow(ratio, i - nmaster)) - (2 * c->border); + nh = (tscale * spow(vratio, i - nmaster)) - (2 * c->border); } if(nh < bh) { nh = bh; @@ -133,21 +152,13 @@ focusclient(const char *arg) { } void -incratio(const char *arg) { - double delta; +inchratio(const char *arg) { + incratio(arg, &hratio, HRATIO); +} - if(lt->arrange != tile) - return; - if(!arg) - ratio = RATIO; - else { - if(1 == sscanf(arg, "%lf", &delta)) { - if(delta + ratio < .1 || delta + ratio > 1.9) - return; - ratio += delta; - } - } - lt->arrange(); +void +incvratio(const char *arg) { + incratio(arg, &vratio, VRATIO); } void |