replaced getproto with a saner function, now old-school artifacts of WM times in...
[dwm.git] / client.c
index 2b194d7..e37b9e6 100644 (file)
--- a/client.c
+++ b/client.c
@@ -9,13 +9,6 @@
 
 /* static */
 
-static void
-closestpt(float *rx, float *ry, float x, float y, float grad) {
-       float u = (x * grad + y) / (grad * grad + 1);
-       *rx = u * grad;
-       *ry = u;
-}
-
 static void
 detachstack(Client *c) {
        Client **tc;
@@ -127,11 +120,26 @@ getclient(Window w) {
        return NULL;
 }
 
+Bool
+isprotodel(Client *c) {
+       int i, n;
+       Atom *protocols;
+       Bool ret = False;
+
+       if(XGetWMProtocols(dpy, c->win, &protocols, &n)) {
+               for(i = 0; !ret && i < n; i++)
+                       if(protocols[i] == wmatom[WMDelete])
+                               ret = True;
+               XFree(protocols);
+       }
+       return ret;
+}
+
 void
 killclient(Arg *arg) {
        if(!sel)
                return;
-       if(sel->proto & PROTODELWIN)
+       if(isprotodel(sel))
                sendevent(sel->win, wmatom[WMProtocols], wmatom[WMDelete]);
        else
                XKillClient(dpy, sel->win);
@@ -166,7 +174,6 @@ manage(Window w, XWindowAttributes *wa) {
                        c->y = way;
        }
        updatesizehints(c);
-       c->proto = getproto(c->win);
        XSelectInput(dpy, c->win,
                StructureNotifyMask | PropertyChangeMask | EnterWindowMask);
        XGetTransientForHint(dpy, c->win, &trans);
@@ -191,7 +198,7 @@ manage(Window w, XWindowAttributes *wa) {
 
 void
 resize(Client *c, Bool sizehints) {
-       float dx, dy, min, max, actual;
+       float actual, dx, dy, max, min;
        XWindowChanges wc;
 
        if(c->w <= 0 || c->h <= 0)
@@ -214,12 +221,14 @@ resize(Client *c, Bool sizehints) {
                        actual = dx / dy;
                        if(max > 0 && min > 0 && actual > 0) {
                                if(actual < min) {
-                                       closestpt(&dx, &dy, dx, dy, min);
+                                       dy = (dx * min + dy) / (min * min + 1);
+                                       dx = dy * min;
                                        c->w = (int)dx + c->basew;
                                        c->h = (int)dy + c->baseh;
                                }
                                else if(actual > max) {
-                                       closestpt(&dx, &dy, dx, dy, max);
+                                       dy = (dx * min + dy) / (max * max + 1);
+                                       dx = dy * min;
                                        c->w = (int)dx + c->basew;
                                        c->h = (int)dy + c->baseh;
                                }