reverting to old resize policy

This commit is contained in:
arg@10ksloc.org 2006-08-02 10:48:58 +02:00
parent 52021851d1
commit 57871415c1
2 changed files with 31 additions and 20 deletions

View File

@ -271,7 +271,7 @@ resize(Client *c, Bool sizehints, Corner sticky)
{ {
int bottom = c->y + c->h; int bottom = c->y + c->h;
int right = c->x + c->w; int right = c->x + c->w;
XWindowChanges wc; XConfigureEvent e;
if(sizehints) { if(sizehints) {
if(c->incw) if(c->incw)
@ -287,22 +287,30 @@ resize(Client *c, Bool sizehints, Corner sticky)
if(c->maxh && c->h > c->maxh) if(c->maxh && c->h > c->maxh)
c->h = c->maxh; c->h = c->maxh;
} }
if(c->x > sw) /* might happen on restart */
c->x = sw - c->w;
if(c->y > sh)
c->y = sh - c->h;
if(sticky == TopRight || sticky == BotRight) if(sticky == TopRight || sticky == BotRight)
c->x = right - c->w; c->x = right - c->w;
if(sticky == BotLeft || sticky == BotRight) if(sticky == BotLeft || sticky == BotRight)
c->y = bottom - c->h; c->y = bottom - c->h;
resizetitle(c); resizetitle(c);
XSetWindowBorderWidth(dpy, c->win, 1);
XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
if(c->tags[tsel]) e.type = ConfigureNotify;
wc.x = c->x; e.event = c->win;
else e.window = c->win;
wc.x = c->x + 2 * sw; e.x = c->x;
wc.y = c->y; e.y = c->y;
wc.width = c->w; e.width = c->w;
wc.height = c->h; e.height = c->h;
wc.border_width = 1; e.border_width = c->border;
XConfigureWindow(dpy, c->win, CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc); e.above = None;
e.override_redirect = False;
XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&e);
XSync(dpy, False); XSync(dpy, False);
} }

23
event.c
View File

@ -153,6 +153,7 @@ configurerequest(XEvent *e)
XConfigureRequestEvent *ev = &e->xconfigurerequest; XConfigureRequestEvent *ev = &e->xconfigurerequest;
XWindowChanges wc; XWindowChanges wc;
ev->value_mask &= ~CWSibling;
if((c = getclient(ev->window))) { if((c = getclient(ev->window))) {
gravitate(c, True); gravitate(c, True);
if(ev->value_mask & CWX) if(ev->value_mask & CWX)
@ -168,16 +169,18 @@ configurerequest(XEvent *e)
gravitate(c, False); gravitate(c, False);
resize(c, True, TopLeft); resize(c, True, TopLeft);
} }
else {
wc.x = ev->x; wc.x = ev->x;
wc.y = ev->y; wc.y = ev->y;
wc.width = ev->width; wc.width = ev->width;
wc.height = ev->height; wc.height = ev->height;
wc.border_width = 1; wc.border_width = 1;
XConfigureWindow(dpy, ev->window, wc.sibling = None;
CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc); wc.stack_mode = Above;
XSync(dpy, False); ev->value_mask &= ~CWStackMode;
} ev->value_mask |= CWBorderWidth;
XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
XSync(dpy, False);
} }
static void static void