JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
added mini stuff
[dwm.git] / client.c
index 3c8825d..3fb2318 100644 (file)
--- a/client.c
+++ b/client.c
 
 #include "dwm.h"
 
-static void (*arrange)(Arg *) = tiling;
+void (*arrange)(Arg *) = tiling;
 
 static Rule rule[] = {
-       { "Firefox-bin", "Gecko", { [Twww] = "www" } },
+       /* class                        instance        tags                                            floating */
+       { "Firefox-bin",        "Gecko",        { [Twww] = "www" },                     False },
 };
 
 static Client *
@@ -52,7 +53,7 @@ max(Arg *arg)
        sel->w = sw - 2 * sel->border;
        sel->h = sh - 2 * sel->border;
        craise(sel);
-       resize(sel);
+       resize(sel, False);
        discard_events(EnterWindowMask);
 }
 
@@ -64,27 +65,27 @@ view(Arg *arg)
 }
 
 void
-tag(Arg *arg)
+tappend(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];
+       sel->tags[arg->i] = tags[arg->i];
        arrange(NULL);
 }
 
+void
+ttrunc(Arg *arg)
+{
+       int i;
+       if(!sel)
+               return;
+
+       for(i = 0; i < TLast; i++)
+               sel->tags[i] = NULL;
+       tappend(arg);
+}
+
 static void
 ban_client(Client *c)
 {
@@ -100,7 +101,7 @@ floating(Arg *arg)
        arrange = floating;
        for(c = clients; c; c = c->next) {
                if(c->tags[tsel])
-                       resize(c);
+                       resize(c, True);
                else
                        ban_client(c);
        }
@@ -122,32 +123,37 @@ tiling(Arg *arg)
        w = sw - mw;
        arrange = tiling;
        for(n = 0, c = clients; c; c = c->next)
-               if(c->tags[tsel])
+               if(c->tags[tsel] && !c->floating)
                        n++;
 
-       h = (n > 2) ? sh / (n - 2) : sh;
+       h = (n > 1) ? sh / (n - 1) : sh;
 
        for(i = 0, c = clients; c; c = c->next) {
                if(c->tags[tsel]) {
+                       if(c->floating) {
+                               craise(c);
+                               resize(c, True);
+                               continue;
+                       }
                        if(n == 1) {
                                c->x = sx;
                                c->y = sy;
-                               c->w = sw;
-                               c->h = sh;
+                               c->w = sw - 2 * c->border;
+                               c->h = sh - 2 * c->border;
                        }
-                       else if(i == 1) {
+                       else if(i == 0) {
                                c->x = sx;
                                c->y = sy;
-                               c->w = mw;
-                               c->h = sh;
+                               c->w = mw - 2 * c->border;
+                               c->h = sh - 2 * c->border;
                        }
                        else {
                                c->x = sx + mw;
-                               c->y = sy + (i - 2) * h;
-                               c->w = w;
-                               c->h = h;
+                               c->y = sy + (i - 1) * h;
+                               c->w = w - 2 * c->border;
+                               c->h = h - 2 * c->border;
                        }
-                       resize(c);
+                       resize(c, False);
                        i++;
                }
                else
@@ -304,14 +310,11 @@ lower(Client *c)
 void
 focus(Client *c)
 {
-       if(sel && sel != c) {
-               XSetWindowBorder(dpy, sel->win, dc.bg);
-               XMapWindow(dpy, sel->title);
-               draw_client(sel);
-       }
+       Client *old = sel;
+
        sel = c;
-       XUnmapWindow(dpy, c->title);
-       XSetWindowBorder(dpy, c->win, dc.fg);
+       if(old && old != c)
+               draw_client(old);
        draw_client(c);
        XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
        XFlush(dpy);
@@ -333,14 +336,13 @@ init_tags(Client *c)
 
        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];
+                                       c->floating = rule[i].floating;
                                        matched = True;
                                        break;
                                }
@@ -360,6 +362,7 @@ manage(Window w, XWindowAttributes *wa)
 {
        Client *c, **l;
        XSetWindowAttributes twa;
+       Window trans;
 
        c = emallocz(sizeof(Client));
        c->win = w;
@@ -373,7 +376,7 @@ manage(Window w, XWindowAttributes *wa)
        update_size(c);
        XSelectInput(dpy, c->win,
                        StructureNotifyMask | PropertyChangeMask | EnterWindowMask);
-       XGetTransientForHint(dpy, c->win, &c->trans);
+       XGetTransientForHint(dpy, c->win, &trans);
        twa.override_redirect = 1;
        twa.background_pixmap = ParentRelative;
        twa.event_mask = ExposureMask;
@@ -399,6 +402,11 @@ manage(Window w, XWindowAttributes *wa)
                        GrabModeAsync, GrabModeSync, None, None);
        XGrabButton(dpy, Button3, Mod1Mask, c->win, False, ButtonPressMask,
                        GrabModeAsync, GrabModeSync, None, None);
+
+       if(!c->floating)
+               c->floating = trans
+                       || ((c->maxw == c->minw) && (c->maxh == c->minh));
+
        arrange(NULL);
        if(c->tags[tsel])
                focus(c);
@@ -463,14 +471,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)
@@ -554,8 +564,14 @@ void
 draw_client(Client *c)
 {
        int i;
-       if(c == sel)
+       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;