2019-09-08 22:18:47 +00:00
|
|
|
static void
|
|
|
|
bstackhoriz(Monitor *m)
|
|
|
|
{
|
|
|
|
unsigned int i, n;
|
|
|
|
int mx = 0, my = 0, mh = 0, mw = 0;
|
|
|
|
int sx = 0, sy = 0, sh = 0, sw = 0;
|
|
|
|
float mfacts, sfacts;
|
2020-03-20 14:20:07 +00:00
|
|
|
int mrest, srest;
|
2019-09-08 22:18:47 +00:00
|
|
|
Client *c;
|
|
|
|
|
2020-03-20 14:20:07 +00:00
|
|
|
#if VANITYGAPS_PATCH
|
2019-09-08 22:18:47 +00:00
|
|
|
int oh, ov, ih, iv;
|
|
|
|
getgaps(m, &oh, &ov, &ih, &iv, &n);
|
2020-03-20 14:20:07 +00:00
|
|
|
#else
|
|
|
|
for (n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++);
|
|
|
|
#endif // VANITYGAPS_PATCH
|
2019-09-08 22:18:47 +00:00
|
|
|
|
|
|
|
if (n == 0)
|
|
|
|
return;
|
|
|
|
|
2020-03-20 14:20:07 +00:00
|
|
|
#if VANITYGAPS_PATCH
|
2019-09-08 22:18:47 +00:00
|
|
|
sx = mx = m->wx + ov;
|
|
|
|
sy = my = m->wy + oh;
|
2020-03-20 14:20:07 +00:00
|
|
|
mh = m->wh - 2*oh;
|
|
|
|
sh = m->wh - 2*oh - ih * (n - m->nmaster - 1);
|
|
|
|
mw = m->ww - 2*ov - iv * (MIN(n, m->nmaster) - 1);
|
|
|
|
sw = m->ww - 2*ov;
|
2019-09-08 22:18:47 +00:00
|
|
|
|
|
|
|
if (m->nmaster && n > m->nmaster) {
|
|
|
|
sh = (mh - ih) * (1 - m->mfact);
|
|
|
|
mh = (mh - ih) * m->mfact;
|
|
|
|
sy = my + mh + ih;
|
|
|
|
sh = m->wh - mh - 2*oh - ih * (n - m->nmaster);
|
|
|
|
}
|
2020-03-20 14:20:07 +00:00
|
|
|
#else
|
2019-09-08 22:18:47 +00:00
|
|
|
sx = mx = m->wx;
|
|
|
|
sy = my = m->wy;
|
|
|
|
sh = mh = m->wh;
|
|
|
|
sw = mw = m->ww;
|
|
|
|
|
|
|
|
if (m->nmaster && n > m->nmaster) {
|
|
|
|
sh = mh * (1 - m->mfact);
|
|
|
|
mh = mh * m->mfact;
|
|
|
|
sy = my + mh;
|
|
|
|
sh = m->wh - mh;
|
|
|
|
}
|
2020-03-20 14:20:07 +00:00
|
|
|
#endif // VANITYGAPS_PATCH
|
2019-09-08 22:18:47 +00:00
|
|
|
|
2020-03-20 14:20:07 +00:00
|
|
|
getfacts(m, mw, sh, &mfacts, &sfacts, &mrest, &srest);
|
2019-09-08 22:18:47 +00:00
|
|
|
|
|
|
|
for (i = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++) {
|
|
|
|
if (i < m->nmaster) {
|
2020-03-20 14:20:07 +00:00
|
|
|
#if CFACTS_PATCH
|
|
|
|
resize(c, mx, my, (mw / mfacts) * c->cfact + (i < mrest ? 1 : 0) - (2*c->bw), mh - (2*c->bw), 0);
|
|
|
|
#else
|
|
|
|
resize(c, mx, my, (mw / mfacts) + (i < mrest ? 1 : 0) - (2*c->bw), mh - (2*c->bw), 0);
|
|
|
|
#endif // CFACTS_PATCH
|
|
|
|
#if VANITYGAPS_PATCH
|
|
|
|
mx += WIDTH(c) + iv;
|
|
|
|
#else
|
2019-09-08 22:18:47 +00:00
|
|
|
mx += WIDTH(c);
|
2020-03-20 14:20:07 +00:00
|
|
|
#endif
|
2019-09-08 22:18:47 +00:00
|
|
|
} else {
|
2020-03-20 14:20:07 +00:00
|
|
|
#if CFACTS_PATCH
|
|
|
|
resize(c, sx, sy, sw - (2*c->bw), (sh / sfacts) * c->cfact + ((i - m->nmaster) < srest ? 1 : 0) - (2*c->bw), 0);
|
|
|
|
#else
|
|
|
|
resize(c, sx, sy, sw - (2*c->bw), (sh / sfacts) + ((i - m->nmaster) < srest ? 1 : 0) - (2*c->bw), 0);
|
|
|
|
#endif // CFACTS_PATCH
|
|
|
|
#if VANITYGAPS_PATCH
|
|
|
|
sy += HEIGHT(c) + ih;
|
|
|
|
#else
|
2019-09-08 22:18:47 +00:00
|
|
|
sy += HEIGHT(c);
|
2020-03-20 14:20:07 +00:00
|
|
|
#endif
|
2019-09-08 22:18:47 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-20 14:20:07 +00:00
|
|
|
}
|