mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
40 lines
1.2 KiB
C
40 lines
1.2 KiB
C
|
void
|
||
|
resizemousescroll(const Arg *arg)
|
||
|
{
|
||
|
int nw, nh;
|
||
|
Client *c;
|
||
|
Monitor *m;
|
||
|
XEvent ev;
|
||
|
int dw = *((int*)arg->v + 1);
|
||
|
int dh = *(int*)arg->v;
|
||
|
|
||
|
if (!(c = selmon->sel))
|
||
|
return;
|
||
|
if (c->isfullscreen && c->fakefullscreen != 1) /* no support resizing fullscreen windows by mouse */
|
||
|
return;
|
||
|
restack(selmon);
|
||
|
if (XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
|
||
|
None, cursor[CurResize]->cursor, CurrentTime) != GrabSuccess)
|
||
|
return;
|
||
|
nw = MAX(c->w + dw, 1);
|
||
|
nh = MAX(c->h + dh, 1);
|
||
|
if (c->mon->wx + nw >= selmon->wx && c->mon->wx + nw <= selmon->wx + selmon->ww
|
||
|
&& c->mon->wy + nh >= selmon->wy && c->mon->wy + nh <= selmon->wy + selmon->wh)
|
||
|
{
|
||
|
if (!c->isfloating && selmon->lt[selmon->sellt]->arrange
|
||
|
&& (abs(nw - c->w) > snap || abs(nh - c->h) > snap))
|
||
|
togglefloating(NULL);
|
||
|
}
|
||
|
if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
|
||
|
resize(c, c->x, c->y, nw, nh, 1);
|
||
|
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
|
||
|
XUngrabPointer(dpy, CurrentTime);
|
||
|
while (XCheckMaskEvent(dpy, EnterWindowMask, &ev));
|
||
|
if ((m = recttomon(c->x, c->y, c->w, c->h)) != selmon) {
|
||
|
sendmon(c, m);
|
||
|
selmon = m;
|
||
|
focus(NULL);
|
||
|
}
|
||
|
}
|
||
|
|