You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.2 KiB
37 lines
1.2 KiB
8 months ago
|
struct Pertag {
|
||
|
unsigned int curtag, prevtag; /* current and previous tag */
|
||
|
int nmasters[NUMTAGS + 1]; /* number of windows in master area */
|
||
|
const Layout *ltidxs[NUMTAGS + 1][2]; /* matrix of tags and layouts indexes */
|
||
|
float mfacts[NUMTAGS + 1]; /* mfacts per tag */
|
||
|
unsigned int sellts[NUMTAGS + 1]; /* selected layouts */
|
||
|
};
|
||
|
|
||
|
void
|
||
|
pertagview(const Arg *arg)
|
||
|
{
|
||
|
int i;
|
||
|
unsigned int tmptag;
|
||
|
if (arg->ui & TAGMASK) {
|
||
|
selmon->pertag->prevtag = selmon->pertag->curtag;
|
||
|
selmon->tagset[selmon->seltags] = arg->ui & TAGMASK;
|
||
|
if (arg->ui == ~0)
|
||
|
selmon->pertag->curtag = 0;
|
||
|
else {
|
||
|
for (i = 0; !(arg->ui & 1 << i); i++) ;
|
||
|
selmon->pertag->curtag = i + 1;
|
||
|
}
|
||
|
} else {
|
||
|
tmptag = selmon->pertag->prevtag;
|
||
|
selmon->pertag->prevtag = selmon->pertag->curtag;
|
||
|
selmon->pertag->curtag = tmptag;
|
||
|
}
|
||
|
selmon->nmaster = selmon->pertag->nmasters[selmon->pertag->curtag];
|
||
|
selmon->mfact = selmon->pertag->mfacts[selmon->pertag->curtag];
|
||
|
selmon->sellt = selmon->pertag->sellts[selmon->pertag->curtag];
|
||
|
selmon->lt[selmon->sellt] = selmon->pertag->ltidxs[selmon->pertag->curtag][selmon->sellt];
|
||
|
selmon->lt[selmon->sellt^1] = selmon->pertag->ltidxs[selmon->pertag->curtag][selmon->sellt^1];
|
||
|
|
||
|
|
||
|
}
|
||
|
|