85 lines
2.1 KiB
C
85 lines
2.1 KiB
C
void
|
|
centeredmaster(Monitor *m)
|
|
{
|
|
unsigned int i, n;
|
|
int mx = 0, my = 0, mh = 0, mw = 0;
|
|
int lx = 0, ly = 0, lw = 0, lh = 0;
|
|
int rx = 0, ry = 0, rw = 0, rh = 0;
|
|
float mfacts = 0, lfacts = 0, rfacts = 0;
|
|
int mtotal = 0, ltotal = 0, rtotal = 0;
|
|
int mrest = 0, lrest = 0, rrest = 0;
|
|
Client *c;
|
|
|
|
for (n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++);
|
|
|
|
if (n == 0)
|
|
return;
|
|
|
|
/* initialize areas */
|
|
mx = m->wx;
|
|
my = m->wy;
|
|
mh = m->wh;
|
|
mw = m->ww;
|
|
lh = m->wh;
|
|
rh = m->wh;
|
|
|
|
if (m->nmaster && n > m->nmaster) {
|
|
/* go mfact box in the center if more than nmaster clients */
|
|
if (n - m->nmaster > 1) {
|
|
/* ||<-S->|<---M--->|<-S->|| */
|
|
mw = m->ww * m->mfact;
|
|
lw = (m->ww - mw) / 2;
|
|
mx += lw;
|
|
} else {
|
|
/* ||<---M--->|<-S->|| */
|
|
mw = mw * m->mfact;
|
|
lw = m->ww - mw;
|
|
}
|
|
rw = lw;
|
|
lx = m->wx;
|
|
ly = m->wy;
|
|
rx = mx + mw;
|
|
ry = m->wy;
|
|
}
|
|
|
|
/* calculate facts */
|
|
for (n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++) {
|
|
if (!m->nmaster || n < m->nmaster)
|
|
mfacts += 1;
|
|
else if ((n - m->nmaster) % 2)
|
|
lfacts += 1; // total factor of left hand stack area
|
|
else
|
|
rfacts += 1; // total factor of right hand stack area
|
|
}
|
|
|
|
for (n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++)
|
|
if (!m->nmaster || n < m->nmaster)
|
|
mtotal += mh / mfacts;
|
|
else if ((n - m->nmaster) % 2)
|
|
ltotal += lh / lfacts;
|
|
else
|
|
rtotal += rh / rfacts;
|
|
|
|
mrest = mh - mtotal;
|
|
lrest = lh - ltotal;
|
|
rrest = rh - rtotal;
|
|
|
|
for (i = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++) {
|
|
if (!m->nmaster || i < m->nmaster) {
|
|
/* nmaster clients are stacked vertically, in the center of the screen */
|
|
resize(c, mx, my, mw - (2*c->bw), (mh / mfacts) + (i < mrest ? 1 : 0) - (2*c->bw), 0);
|
|
my += HEIGHT(c);
|
|
} else {
|
|
/* stack clients are stacked vertically */
|
|
if ((i - m->nmaster) % 2 ) {
|
|
resize(c, lx, ly, lw - (2*c->bw), (lh / lfacts) + ((i - 2*m->nmaster) < 2*lrest ? 1 : 0) - (2*c->bw), 0);
|
|
ly += HEIGHT(c);
|
|
} else {
|
|
resize(c, rx, ry, rw - (2*c->bw), (rh / rfacts) + ((i - 2*m->nmaster) < 2*rrest ? 1 : 0) - (2*c->bw), 0);
|
|
ry += HEIGHT(c);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|