mirror of
https://github.com/mintycube/dwm.git
synced 2024-10-22 12:05:45 +00:00
dragmfact: Tweaks for fixed horizontal split
This commit is contained in:
parent
c14a51524b
commit
347e6ace91
@ -4,7 +4,7 @@ dragmfact(const Arg *arg)
|
|||||||
unsigned int n;
|
unsigned int n;
|
||||||
int py, px; // pointer coordinates
|
int py, px; // pointer coordinates
|
||||||
int ax, ay, aw, ah; // area position, width and height
|
int ax, ay, aw, ah; // area position, width and height
|
||||||
int center = 0, horizontal = 0, mirror = 0; // layout configuration
|
int center = 0, horizontal = 0, mirror = 0, fixed = 0; // layout configuration
|
||||||
double fact;
|
double fact;
|
||||||
Monitor *m;
|
Monitor *m;
|
||||||
XEvent ev;
|
XEvent ev;
|
||||||
@ -25,9 +25,54 @@ dragmfact(const Arg *arg)
|
|||||||
ah = m->wh;
|
ah = m->wh;
|
||||||
aw = m->ww;
|
aw = m->ww;
|
||||||
|
|
||||||
|
#if FLEXTILE_DELUXE_LAYOUT
|
||||||
|
if (m->lt[m->sellt]->arrange == &flextile) {
|
||||||
|
int layout = m->ltaxis[LAYOUT];
|
||||||
|
if (layout < 0) {
|
||||||
|
mirror = 1;
|
||||||
|
layout *= -1;
|
||||||
|
}
|
||||||
|
if (layout > FLOATING_MASTER) {
|
||||||
|
layout -= FLOATING_MASTER;
|
||||||
|
fixed = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (layout == SPLIT_HORIZONTAL || layout == SPLIT_HORIZONTAL_DUAL_STACK)
|
||||||
|
horizontal = 1;
|
||||||
|
else if (layout == SPLIT_CENTERED_VERTICAL && (fixed || n - m->nmaster > 1))
|
||||||
|
center = 1;
|
||||||
|
else if (layout == FLOATING_MASTER) {
|
||||||
|
center = 1;
|
||||||
|
if (aw < ah)
|
||||||
|
horizontal = 1;
|
||||||
|
}
|
||||||
|
else if (layout == SPLIT_CENTERED_HORIZONTAL) {
|
||||||
|
if (fixed || n - m->nmaster > 1)
|
||||||
|
center = 1;
|
||||||
|
horizontal = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif // FLEXTILE_DELUXE_LAYOUT
|
||||||
|
#if CENTEREDMASTER_LAYOUT
|
||||||
|
else if (m->lt[m->sellt]->arrange == ¢eredmaster && (fixed || n - m->nmaster > 1))
|
||||||
|
center = 1;
|
||||||
|
#endif // CENTEREDMASTER_LAYOUT
|
||||||
|
#if CENTEREDFLOATINGMASTER_LAYOUT
|
||||||
|
else if (m->lt[m->sellt]->arrange == ¢eredfloatingmaster)
|
||||||
|
center = 1;
|
||||||
|
#endif // CENTEREDFLOATINGMASTER_LAYOUT
|
||||||
|
#if BSTACK_LAYOUT
|
||||||
|
else if (m->lt[m->sellt]->arrange == &bstack)
|
||||||
|
horizontal = 1;
|
||||||
|
#endif // BSTACK_LAYOUT
|
||||||
|
#if BSTACKHORIZ_LAYOUT
|
||||||
|
else if (m->lt[m->sellt]->arrange == &bstackhoriz)
|
||||||
|
horizontal = 1;
|
||||||
|
#endif // BSTACKHORIZ_LAYOUT
|
||||||
|
|
||||||
/* do not allow mfact to be modified under certain conditions */
|
/* do not allow mfact to be modified under certain conditions */
|
||||||
if (!m->lt[m->sellt]->arrange // floating
|
if (!m->lt[m->sellt]->arrange // floating layout
|
||||||
|| (m->nmaster && n <= m->nmaster) // no master
|
|| (!n || (!fixed && m->nmaster && n <= m->nmaster)) // no master
|
||||||
#if MONOCLE_LAYOUT
|
#if MONOCLE_LAYOUT
|
||||||
|| m->lt[m->sellt]->arrange == &monocle
|
|| m->lt[m->sellt]->arrange == &monocle
|
||||||
#endif // MONOCLE_LAYOUT
|
#endif // MONOCLE_LAYOUT
|
||||||
@ -49,48 +94,6 @@ dragmfact(const Arg *arg)
|
|||||||
)
|
)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
#if FLEXTILE_DELUXE_LAYOUT
|
|
||||||
if (m->lt[m->sellt]->arrange == &flextile) {
|
|
||||||
int layout = m->ltaxis[LAYOUT];
|
|
||||||
if (layout < 0) {
|
|
||||||
mirror = 1;
|
|
||||||
layout *= -1;
|
|
||||||
}
|
|
||||||
if (layout > FLOATING_MASTER)
|
|
||||||
layout -= FLOATING_MASTER;
|
|
||||||
|
|
||||||
if (layout == SPLIT_HORIZONTAL || layout == SPLIT_HORIZONTAL_DUAL_STACK)
|
|
||||||
horizontal = 1;
|
|
||||||
else if (layout == SPLIT_CENTERED_VERTICAL && (n - m->nmaster) > 1)
|
|
||||||
center = 1;
|
|
||||||
else if (layout == FLOATING_MASTER) {
|
|
||||||
center = 1;
|
|
||||||
if (aw < ah)
|
|
||||||
horizontal = 1;
|
|
||||||
}
|
|
||||||
else if (layout == SPLIT_CENTERED_HORIZONTAL) {
|
|
||||||
horizontal = 1;
|
|
||||||
center = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif // FLEXTILE_DELUXE_LAYOUT
|
|
||||||
#if CENTEREDMASTER_LAYOUT
|
|
||||||
else if (m->lt[m->sellt]->arrange == ¢eredmaster && (n - m->nmaster) > 1)
|
|
||||||
center = 1;
|
|
||||||
#endif // CENTEREDMASTER_LAYOUT
|
|
||||||
#if CENTEREDFLOATINGMASTER_LAYOUT
|
|
||||||
else if (m->lt[m->sellt]->arrange == ¢eredfloatingmaster)
|
|
||||||
center = 1;
|
|
||||||
#endif // CENTEREDFLOATINGMASTER_LAYOUT
|
|
||||||
#if BSTACK_LAYOUT
|
|
||||||
else if (m->lt[m->sellt]->arrange == &bstack)
|
|
||||||
horizontal = 1;
|
|
||||||
#endif // BSTACK_LAYOUT
|
|
||||||
#if BSTACKHORIZ_LAYOUT
|
|
||||||
else if (m->lt[m->sellt]->arrange == &bstackhoriz)
|
|
||||||
horizontal = 1;
|
|
||||||
#endif // BSTACKHORIZ_LAYOUT
|
|
||||||
|
|
||||||
#if VANITYGAPS_PATCH
|
#if VANITYGAPS_PATCH
|
||||||
ay += oh;
|
ay += oh;
|
||||||
ax += ov;
|
ax += ov;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user