implemened distinguishing float/managed geometries of clients (works quite well)

This commit is contained in:
Anselm R. Garbe 2006-07-18 12:36:57 +02:00
parent 0aaa9a21f3
commit 58f2fe3f6a
5 changed files with 105 additions and 78 deletions

116
client.c
View File

@ -16,16 +16,16 @@ resizetitle(Client *c)
{ {
int i; int i;
c->tw = 0; c->bw = 0;
for(i = 0; i < TLast; i++) for(i = 0; i < TLast; i++)
if(c->tags[i]) if(c->tags[i])
c->tw += textw(c->tags[i]); c->bw += textw(c->tags[i]);
c->tw += textw(c->name); c->bw += textw(c->name);
if(c->tw > c->w) if(c->bw > *c->w)
c->tw = c->w + 2; c->bw = *c->w + 2;
c->tx = c->x + c->w - c->tw + 2; c->bx = *c->x + *c->w - c->bw + 2;
c->ty = c->y; c->by = *c->y;
XMoveResizeWindow(dpy, c->title, c->tx, c->ty, c->tw, c->th); XMoveResizeWindow(dpy, c->title, c->bx, c->by, c->bw, c->bh);
} }
static int static int
@ -39,8 +39,8 @@ xerrordummy(Display *dsply, XErrorEvent *ee)
void void
ban(Client *c) ban(Client *c)
{ {
XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y); XMoveWindow(dpy, c->win, *c->x + 2 * sw, *c->y);
XMoveWindow(dpy, c->title, c->tx + 2 * sw, c->ty); XMoveWindow(dpy, c->title, c->bx + 2 * sw, c->by);
} }
void void
@ -124,12 +124,12 @@ gravitate(Client *c, Bool invert)
case EastGravity: case EastGravity:
case CenterGravity: case CenterGravity:
case WestGravity: case WestGravity:
dy = -(c->h / 2) + c->border; dy = -(*c->h / 2) + c->border;
break; break;
case SouthEastGravity: case SouthEastGravity:
case SouthGravity: case SouthGravity:
case SouthWestGravity: case SouthWestGravity:
dy = -c->h; dy = -(*c->h);
break; break;
default: default:
break; break;
@ -145,12 +145,12 @@ gravitate(Client *c, Bool invert)
case NorthGravity: case NorthGravity:
case CenterGravity: case CenterGravity:
case SouthGravity: case SouthGravity:
dx = -(c->w / 2) + c->border; dx = -(*c->w / 2) + c->border;
break; break;
case NorthEastGravity: case NorthEastGravity:
case EastGravity: case EastGravity:
case SouthEastGravity: case SouthEastGravity:
dx = -(c->w + c->border); dx = -(*c->w + c->border);
break; break;
default: default:
break; break;
@ -160,8 +160,8 @@ gravitate(Client *c, Bool invert)
dx = -dx; dx = -dx;
dy = -dy; dy = -dy;
} }
c->x += dx; *c->x += dx;
c->y += dy; *c->y += dy;
} }
void void
@ -198,13 +198,13 @@ manage(Window w, XWindowAttributes *wa)
c = emallocz(sizeof(Client)); c = emallocz(sizeof(Client));
c->win = w; c->win = w;
c->tx = c->x = wa->x; c->bx = c->fx = c->tx = wa->x;
c->ty = c->y = wa->y; c->by = c->fy = c->ty = wa->y;
if(c->y < bh) if(c->fy < bh)
c->ty = c->y += bh; c->by = c->fy = c->ty += bh;
c->tw = c->w = wa->width; c->bw = c->fw = c->tw = wa->width;
c->h = wa->height; c->fh = c->th = wa->height;
c->th = bh; c->bh = bh;
c->border = 1; c->border = 1;
c->proto = getproto(c->win); c->proto = getproto(c->win);
setsize(c); setsize(c);
@ -215,12 +215,11 @@ manage(Window w, XWindowAttributes *wa)
twa.background_pixmap = ParentRelative; twa.background_pixmap = ParentRelative;
twa.event_mask = ExposureMask; twa.event_mask = ExposureMask;
c->title = XCreateWindow(dpy, root, c->tx, c->ty, c->tw, c->th, c->title = XCreateWindow(dpy, root, c->bx, c->by, c->bw, c->bh,
0, DefaultDepth(dpy, screen), CopyFromParent, 0, DefaultDepth(dpy, screen), CopyFromParent,
DefaultVisual(dpy, screen), DefaultVisual(dpy, screen),
CWOverrideRedirect | CWBackPixmap | CWEventMask, &twa); CWOverrideRedirect | CWBackPixmap | CWEventMask, &twa);
settitle(c);
settags(c); settags(c);
c->next = clients; c->next = clients;
@ -239,7 +238,11 @@ manage(Window w, XWindowAttributes *wa)
c->isfloat = trans c->isfloat = trans
|| ((c->maxw == c->minw) && (c->maxh == c->minh)); || ((c->maxw == c->minw) && (c->maxh == c->minh));
setgeom(c);
settitle(c);
arrange(NULL); arrange(NULL);
/* mapping the window now prevents flicker */ /* mapping the window now prevents flicker */
if(c->tags[tsel]) { if(c->tags[tsel]) {
XMapRaised(dpy, c->win); XMapRaised(dpy, c->win);
@ -259,10 +262,10 @@ maximize(Arg *arg)
{ {
if(!sel) if(!sel)
return; return;
sel->x = sx; *sel->x = sx;
sel->y = sy + bh; *sel->y = sy + bh;
sel->w = sw - 2 * sel->border; *sel->w = sw - 2 * sel->border;
sel->h = sh - 2 * sel->border - bh; *sel->h = sh - 2 * sel->border - bh;
higher(sel); higher(sel);
resize(sel, False); resize(sel, False);
} }
@ -286,32 +289,32 @@ resize(Client *c, Bool inc)
if(inc) { if(inc) {
if(c->incw) if(c->incw)
c->w -= (c->w - c->basew) % c->incw; *c->w -= (*c->w - c->basew) % c->incw;
if(c->inch) if(c->inch)
c->h -= (c->h - c->baseh) % c->inch; *c->h -= (*c->h - c->baseh) % c->inch;
} }
if(c->x > sw) /* might happen on restart */ if(*c->x > sw) /* might happen on restart */
c->x = sw - c->w; *c->x = sw - *c->w;
if(c->y > sh) if(*c->y > sh)
c->ty = c->y = sh - c->h; *c->y = sh - *c->h;
if(c->minw && c->w < c->minw) if(c->minw && *c->w < c->minw)
c->w = c->minw; *c->w = c->minw;
if(c->minh && c->h < c->minh) if(c->minh && *c->h < c->minh)
c->h = c->minh; *c->h = c->minh;
if(c->maxw && c->w > c->maxw) if(c->maxw && *c->w > c->maxw)
c->w = c->maxw; *c->w = c->maxw;
if(c->maxh && c->h > c->maxh) if(c->maxh && *c->h > c->maxh)
c->h = c->maxh; *c->h = c->maxh;
resizetitle(c); resizetitle(c);
XSetWindowBorderWidth(dpy, c->win, 1); XSetWindowBorderWidth(dpy, c->win, 1);
XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h); XMoveResizeWindow(dpy, c->win, *c->x, *c->y, *c->w, *c->h);
e.type = ConfigureNotify; e.type = ConfigureNotify;
e.event = c->win; e.event = c->win;
e.window = c->win; e.window = c->win;
e.x = c->x; e.x = *c->x;
e.y = c->y; e.y = *c->y;
e.width = c->w; e.width = *c->w;
e.height = c->h; e.height = *c->h;
e.border_width = c->border; e.border_width = c->border;
e.above = None; e.above = None;
e.override_redirect = False; e.override_redirect = False;
@ -319,6 +322,23 @@ resize(Client *c, Bool inc)
XSync(dpy, False); XSync(dpy, False);
} }
void
setgeom(Client *c)
{
if((arrange == dotile) && !c->isfloat) {
c->x = &c->tx;
c->y = &c->ty;
c->w = &c->tw;
c->h = &c->th;
}
else {
c->x = &c->fx;
c->y = &c->fy;
c->w = &c->fw;
c->h = &c->fh;
}
}
void void
setsize(Client *c) setsize(Client *c)
{ {

7
dwm.h
View File

@ -65,8 +65,10 @@ struct Client {
char name[256]; char name[256];
char *tags[TLast]; char *tags[TLast];
int proto; int proto;
int x, y, w, h; int *x, *y, *w, *h; /* current geom */
int tx, ty, tw, th; int bx, by, bw, bh; /* title bar */
int fx, fy, fw, fh; /* floating geom */
int tx, ty, tw, th; /* tiled geom */
int basew, baseh, incw, inch, maxw, maxh, minw, minh; int basew, baseh, incw, inch, maxw, maxh, minw, minh;
int grav; int grav;
unsigned int border; unsigned int border;
@ -120,6 +122,7 @@ extern void manage(Window w, XWindowAttributes *wa);
extern void maximize(Arg *arg); extern void maximize(Arg *arg);
extern void pop(Client *c); extern void pop(Client *c);
extern void resize(Client *c, Bool inc); extern void resize(Client *c, Bool inc);
extern void setgeom(Client *c);
extern void setsize(Client *c); extern void setsize(Client *c);
extern void settitle(Client *c); extern void settitle(Client *c);
extern void unmanage(Client *c); extern void unmanage(Client *c);

30
event.c
View File

@ -62,8 +62,8 @@ movemouse(Client *c)
unsigned int dui; unsigned int dui;
Window dummy; Window dummy;
ocx = c->x; ocx = *c->x;
ocy = c->y; ocy = *c->y;
if(XGrabPointer(dpy, root, False, MouseMask, GrabModeAsync, GrabModeAsync, if(XGrabPointer(dpy, root, False, MouseMask, GrabModeAsync, GrabModeAsync,
None, cursor[CurMove], CurrentTime) != GrabSuccess) None, cursor[CurMove], CurrentTime) != GrabSuccess)
return; return;
@ -77,8 +77,8 @@ movemouse(Client *c)
break; break;
case MotionNotify: case MotionNotify:
XSync(dpy, False); XSync(dpy, False);
c->x = ocx + (ev.xmotion.x - x1); *c->x = ocx + (ev.xmotion.x - x1);
c->y = ocy + (ev.xmotion.y - y1); *c->y = ocy + (ev.xmotion.y - y1);
resize(c, False); resize(c, False);
break; break;
case ButtonRelease: case ButtonRelease:
@ -94,12 +94,12 @@ resizemouse(Client *c)
XEvent ev; XEvent ev;
int ocx, ocy; int ocx, ocy;
ocx = c->x; ocx = *c->x;
ocy = c->y; ocy = *c->y;
if(XGrabPointer(dpy, root, False, MouseMask, GrabModeAsync, GrabModeAsync, if(XGrabPointer(dpy, root, False, MouseMask, GrabModeAsync, GrabModeAsync,
None, cursor[CurResize], CurrentTime) != GrabSuccess) None, cursor[CurResize], CurrentTime) != GrabSuccess)
return; return;
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w, c->h); XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, *c->w, *c->h);
for(;;) { for(;;) {
XMaskEvent(dpy, MouseMask | ExposureMask, &ev); XMaskEvent(dpy, MouseMask | ExposureMask, &ev);
switch(ev.type) { switch(ev.type) {
@ -109,10 +109,10 @@ resizemouse(Client *c)
break; break;
case MotionNotify: case MotionNotify:
XSync(dpy, False); XSync(dpy, False);
c->w = abs(ocx - ev.xmotion.x); *c->w = abs(ocx - ev.xmotion.x);
c->h = abs(ocy - ev.xmotion.y); *c->h = abs(ocy - ev.xmotion.y);
c->x = (ocx <= ev.xmotion.x) ? ocx : ocx - c->w; *c->x = (ocx <= ev.xmotion.x) ? ocx : ocx - *c->w;
c->y = (ocy <= ev.xmotion.y) ? ocy : ocy - c->h; *c->y = (ocy <= ev.xmotion.y) ? ocy : ocy - *c->h;
resize(c, True); resize(c, True);
break; break;
case ButtonRelease: case ButtonRelease:
@ -187,13 +187,13 @@ configurerequest(XEvent *e)
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)
c->x = ev->x; *c->x = ev->x;
if(ev->value_mask & CWY) if(ev->value_mask & CWY)
c->y = ev->y; *c->y = ev->y;
if(ev->value_mask & CWWidth) if(ev->value_mask & CWWidth)
c->w = ev->width; *c->w = ev->width;
if(ev->value_mask & CWHeight) if(ev->value_mask & CWHeight)
c->h = ev->height; *c->h = ev->height;
if(ev->value_mask & CWBorderWidth) if(ev->value_mask & CWBorderWidth)
c->border = 1; c->border = 1;
gravitate(c, False); gravitate(c, False);

1
main.c
View File

@ -261,6 +261,7 @@ main(int argc, char *argv[])
XChangeWindowAttributes(dpy, root, CWEventMask | CWCursor, &wa); XChangeWindowAttributes(dpy, root, CWEventMask | CWCursor, &wa);
strcpy(stext, "dwm-"VERSION); strcpy(stext, "dwm-"VERSION);
scan(); scan();
/* main event loop, reads status text from stdin as well */ /* main event loop, reads status text from stdin as well */

29
tag.c
View File

@ -43,8 +43,10 @@ dofloat(Arg *arg)
arrange = dofloat; arrange = dofloat;
for(c = clients; c; c = c->next) { for(c = clients; c; c = c->next) {
if(c->tags[tsel]) setgeom(c);
if(c->tags[tsel]) {
resize(c, True); resize(c, True);
}
else else
ban(c); ban(c);
} }
@ -75,6 +77,7 @@ dotile(Arg *arg)
h = sh - bh; h = sh - bh;
for(i = 0, c = clients; c; c = c->next) { for(i = 0, c = clients; c; c = c->next) {
setgeom(c);
if(c->tags[tsel]) { if(c->tags[tsel]) {
if(c->isfloat) { if(c->isfloat) {
higher(c); higher(c);
@ -82,22 +85,22 @@ dotile(Arg *arg)
continue; continue;
} }
if(n == 1) { if(n == 1) {
c->x = sx; *c->x = sx;
c->y = sy + bh; *c->y = sy + bh;
c->w = sw - 2 * c->border; *c->w = sw - 2 * c->border;
c->h = sh - 2 * c->border - bh; *c->h = sh - 2 * c->border - bh;
} }
else if(i == 0) { else if(i == 0) {
c->x = sx; *c->x = sx;
c->y = sy + bh; *c->y = sy + bh;
c->w = mw - 2 * c->border; *c->w = mw - 2 * c->border;
c->h = sh - 2 * c->border - bh; *c->h = sh - 2 * c->border - bh;
} }
else { else {
c->x = sx + mw; *c->x = sx + mw;
c->y = sy + (i - 1) * h + bh; *c->y = sy + (i - 1) * h + bh;
c->w = w - 2 * c->border; *c->w = w - 2 * c->border;
c->h = h - 2 * c->border; *c->h = h - 2 * c->border;
} }
resize(c, False); resize(c, False);
i++; i++;