X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=client.c;h=6d7bd92f4106f3109eadcbf7cb87540d94b86128;hp=d3b731b06e1d68e0285d586209f504ea3ceb7b32;hb=7fe717c29f9dafc4fc38313adbbb7c85619dec69;hpb=ce846e941bee651ae5f17845f670f016040902f9 diff --git a/client.c b/client.c index d3b731b..6d7bd92 100644 --- a/client.c +++ b/client.c @@ -3,109 +3,205 @@ * See LICENSE file for license details. */ -#include #include +#include #include #include #include #include "dwm.h" -static void (*arrange)(void *) = floating; +static void (*arrange)(Arg *) = tiling; + +static Rule rule[] = { + { "Firefox-bin", "Gecko", { [Twww] = "www" } }, +}; + +static Client * +next(Client *c) +{ + for(; c && !c->tags[tsel]; c = c->next); + return c; +} + +void +zoom(Arg *arg) +{ + Client **l, *old; + + if(!(old = sel)) + return; + + for(l = &clients; *l && *l != sel; l = &(*l)->next); + *l = sel->next; + + old->next = clients; /* pop */ + clients = old; + sel = old; + arrange(NULL); + focus(sel); +} void -max(void *aux) +max(Arg *arg) { - if(!stack) + if(!sel) return; - stack->x = sx; - stack->y = sy; - stack->w = sw - 2 * stack->border; - stack->h = sh - 2 * stack->border; - craise(stack); - resize(stack); + sel->x = sx; + sel->y = sy; + sel->w = sw - 2 * sel->border; + sel->h = sh - 2 * sel->border; + craise(sel); + resize(sel, False); discard_events(EnterWindowMask); } void -floating(void *aux) +view(Arg *arg) +{ + tsel = arg->i; + arrange(NULL); +} + +void +tag(Arg *arg) +{ + int i, n; + if(!sel) + return; + + if(arg->i == tsel) { + for(n = i = 0; i < TLast; i++) + if(sel->tags[i]) + n++; + if(n < 2) + return; + } + + if(sel->tags[arg->i]) + sel->tags[arg->i] = NULL; /* toggle tag */ + else + sel->tags[arg->i] = tags[arg->i]; + arrange(NULL); +} + +static void +ban_client(Client *c) +{ + XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y); + XMoveWindow(dpy, c->title, c->tx + 2 * sw, c->ty); +} + +void +floating(Arg *arg) { Client *c; arrange = floating; - for(c = stack; c; c = c->snext) - resize(c); + for(c = clients; c; c = c->next) { + if(c->tags[tsel]) + resize(c, True); + else + ban_client(c); + } + if(sel && !sel->tags[tsel]) { + if((sel = next(clients))) { + craise(sel); + focus(sel); + } + } discard_events(EnterWindowMask); } void -tiling(void *aux) +tiling(Arg *arg) { Client *c; - int n, cols, rows, gw, gh, i, j; - float rt, fd; + int n, i, w, h; + w = sw - mw; arrange = tiling; - if(!clients) - return; - for(n = 0, c = clients; c; c = c->next, n++); - rt = sqrt(n); - if(modff(rt, &fd) < 0.5) - rows = floor(rt); - else - rows = ceil(rt); - if(rows * rows < n) - cols = rows + 1; - else - cols = rows; - - gw = (sw - 2) / cols; - gh = (sh - 2) / rows; - - for(i = j = 0, c = clients; c; c = c->next) { - c->x = i * gw; - c->y = j * gh; - c->w = gw; - c->h = gh; - resize(c); - if(++i == cols) { - j++; - i = 0; + for(n = 0, c = clients; c; c = c->next) + if(c->tags[tsel]) + n++; + + h = (n > 1) ? sh / (n - 1) : sh; + + for(i = 0, c = clients; c; c = c->next) { + if(c->tags[tsel]) { + if(n == 1) { + c->x = sx; + c->y = sy; + c->w = sw - 2 * c->border; + c->h = sh - 2 * c->border; + } + else if(i == 0) { + c->x = sx; + c->y = sy; + c->w = mw - 2 * c->border; + c->h = sh - 2 * c->border; + } + else { + c->x = sx + mw; + c->y = sy + (i - 1) * h; + c->w = w - 2 * c->border; + c->h = h - 2 * c->border; + } + resize(c, False); + i++; + } + else + ban_client(c); + } + if(sel && !sel->tags[tsel]) { + if((sel = next(clients))) { + craise(sel); + focus(sel); } } discard_events(EnterWindowMask); } void -sel(void *aux) +prevc(Arg *arg) { - const char *arg = aux; - Client *c = NULL; + Client *c; - if(!arg || !stack) + if(!sel) return; - if(!strncmp(arg, "next", 5)) - c = stack->snext ? stack->snext : stack; - else if(!strncmp(arg, "prev", 5)) - for(c = stack; c && c->snext; c = c->snext); - if(!c) - c = stack; - craise(c); - XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w / 2, c->h / 2); - focus(c); + + if((c = sel->revert && sel->revert->tags[tsel] ? sel->revert : NULL)) { + craise(c); + focus(c); + } } void -ckill(void *aux) +nextc(Arg *arg) { - Client *c = stack; + Client *c; + + if(!sel) + return; - if(!c) + if(!(c = next(sel->next))) + c = next(clients); + if(c) { + craise(c); + c->revert = sel; + focus(c); + } +} + +void +ckill(Arg *arg) +{ + if(!sel) return; - if(c->proto & WM_PROTOCOL_DELWIN) - send_message(c->win, wm_atom[WMProtocols], wm_atom[WMDelete]); + if(sel->proto & WM_PROTOCOL_DELWIN) + send_message(sel->win, wm_atom[WMProtocols], wm_atom[WMDelete]); else - XKillClient(dpy, c->win); + XKillClient(dpy, sel->win); } static void @@ -208,27 +304,54 @@ lower(Client *c) void focus(Client *c) { - Client **l, *old; + Client *old = sel; - old = stack; - for(l = &stack; *l && *l != c; l = &(*l)->snext); - if(*l) - *l = c->snext; - c->snext = stack; - stack = c; - if(old && old != c) { - XSetWindowBorder(dpy, old->win, dc.bg); - XMapWindow(dpy, old->title); + sel = c; + if(old && old != c) draw_client(old); - } - XUnmapWindow(dpy, c->title); - XSetWindowBorder(dpy, c->win, dc.fg); draw_client(c); XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime); XFlush(dpy); discard_events(EnterWindowMask); } +static void +init_tags(Client *c) +{ + XClassHint ch; + static unsigned int len = rule ? sizeof(rule) / sizeof(rule[0]) : 0; + unsigned int i, j; + Bool matched = False; + + if(!len) { + c->tags[tsel] = tags[tsel]; + return; + } + + if(XGetClassHint(dpy, c->win, &ch)) { + if(ch.res_class && ch.res_name) { + fprintf(stderr, "%s:%s\n", ch.res_class, ch.res_name); + for(i = 0; i < len; i++) + if(!strncmp(rule[i].class, ch.res_class, sizeof(rule[i].class)) + && !strncmp(rule[i].instance, ch.res_name, sizeof(rule[i].instance))) + { + fprintf(stderr, "->>>%s:%s\n", ch.res_class, ch.res_name); + for(j = 0; j < TLast; j++) + c->tags[j] = rule[i].tags[j]; + matched = True; + break; + } + } + if(ch.res_class) + XFree(ch.res_class); + if(ch.res_name) + XFree(ch.res_name); + } + + if(!matched) + c->tags[tsel] = tags[tsel]; +} + void manage(Window w, XWindowAttributes *wa) { @@ -243,6 +366,7 @@ manage(Window w, XWindowAttributes *wa) c->h = wa->height; c->th = th; c->border = 1; + c->proto = win_proto(c->win); update_size(c); XSelectInput(dpy, c->win, StructureNotifyMask | PropertyChangeMask | EnterWindowMask); @@ -251,16 +375,18 @@ manage(Window w, XWindowAttributes *wa) twa.background_pixmap = ParentRelative; twa.event_mask = ExposureMask; - c->tags[tsel] = tags[tsel]; c->title = XCreateWindow(dpy, root, c->tx, c->ty, c->tw, c->th, 0, DefaultDepth(dpy, screen), CopyFromParent, DefaultVisual(dpy, screen), CWOverrideRedirect | CWBackPixmap | CWEventMask, &twa); update_name(c); - for(l=&clients; *l; l=&(*l)->next); + init_tags(c); + + for(l = &clients; *l; l = &(*l)->next); c->next = *l; /* *l == nil */ *l = c; + XSetWindowBorderWidth(dpy, c->win, 1); XMapRaised(dpy, c->win); XMapRaised(dpy, c->title); @@ -271,8 +397,10 @@ manage(Window w, XWindowAttributes *wa) XGrabButton(dpy, Button3, Mod1Mask, c->win, False, ButtonPressMask, GrabModeAsync, GrabModeSync, None, None); arrange(NULL); - XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w / 2, c->h / 2); - focus(c); + if(c->tags[tsel]) + focus(c); + else + ban_client(c); } void @@ -332,14 +460,16 @@ gravitate(Client *c, Bool invert) void -resize(Client *c) +resize(Client *c, Bool inc) { XConfigureEvent e; - if(c->incw) - c->w -= (c->w - c->basew) % c->incw; - if(c->inch) - c->h -= (c->h - c->baseh) % c->inch; + if(inc) { + if(c->incw) + c->w -= (c->w - c->basew) % c->incw; + if(c->inch) + c->h -= (c->h - c->baseh) % c->inch; + } if(c->minw && c->w < c->minw) c->w = c->minw; if(c->minh && c->h < c->minh) @@ -381,18 +511,22 @@ unmanage(Client *c) XUngrabButton(dpy, AnyButton, AnyModifier, c->win); XDestroyWindow(dpy, c->title); - for(l=&clients; *l && *l != c; l=&(*l)->next); + for(l = &clients; *l && *l != c; l = &(*l)->next); *l = c->next; - for(l=&stack; *l && *l != c; l=&(*l)->snext); - *l = c->snext; + for(l = &clients; *l; l = &(*l)->next) + if((*l)->revert == c) + (*l)->revert = NULL; + if(sel == c) + sel = sel->revert ? sel->revert : clients; + free(c); XFlush(dpy); XSetErrorHandler(error_handler); XUngrabServer(dpy); arrange(NULL); - if(stack) - focus(stack); + if(sel) + focus(sel); } Client * @@ -419,8 +553,14 @@ void draw_client(Client *c) { int i; - if(c == stack) + if(c == sel) { + XUnmapWindow(dpy, c->title); + XSetWindowBorder(dpy, c->win, dc.fg); return; + } + + XSetWindowBorder(dpy, c->win, dc.bg); + XMapWindow(dpy, c->title); dc.x = dc.y = 0; dc.h = c->th;