summary refs log tree commit diff
path: root/mousefunc.c
diff options
context:
space:
mode:
authorokan <okan>2009-12-08 16:52:17 +0000
committerokan <okan>2009-12-08 16:52:17 +0000
commitee7df6a95f80bebc9ec2d8571c1ff8ff2f53cfd0 (patch)
tree72d45dd2b4f7a08e9fa71bd138354cd9741f33b5 /mousefunc.c
parentaa88d5848e0b3ee3ea7c64c7582eddd963dcecb2 (diff)
downloadcwm-ee7df6a95f80bebc9ec2d8571c1ff8ff2f53cfd0.tar.gz
cwm-ee7df6a95f80bebc9ec2d8571c1ff8ff2f53cfd0.tar.xz
cwm-ee7df6a95f80bebc9ec2d8571c1ff8ff2f53cfd0.zip
start fixing screen_ctx usage, for it is utterly broken. bring font
into screen_ctx and start passing screen_ctx around to in order get rid
of Curscreen; fixup per-screen config colors the same way.

diff mostly from oga@, with a bit harsher reaction to the state of screen_ctx.

"please commit" oga@
Diffstat (limited to 'mousefunc.c')
-rw-r--r--mousefunc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/mousefunc.c b/mousefunc.c
index 479454d..c0b3b1a 100644
--- a/mousefunc.c
+++ b/mousefunc.c
@@ -51,10 +51,10 @@ mousefunc_sweep_draw(struct client_ctx *cc)
 	snprintf(asize, sizeof(asize), "%dx%d",
 	    (cc->geom.width - cc->geom.basew) / cc->geom.incw,
 	    (cc->geom.height - cc->geom.baseh) / cc->geom.inch);
-	width_size = font_width(asize, strlen(asize)) + 4;
-	width_name = font_width(cc->name, strlen(cc->name)) + 4;
+	width_size = font_width(sc, asize, strlen(asize)) + 4;
+	width_name = font_width(sc, cc->name, strlen(cc->name)) + 4;
 	width = MAX(width_size, width_name);
-	height = font_ascent() + font_descent() + 1;
+	height = font_ascent(sc) + font_descent(sc) + 1;
 
 	XMoveResizeWindow(X_Dpy, sc->menuwin, cc->geom.x, cc->geom.y,
 	    width, height * 2);
@@ -62,9 +62,9 @@ mousefunc_sweep_draw(struct client_ctx *cc)
 	XReparentWindow(X_Dpy, sc->menuwin, cc->win, 0, 0);
 	XClearWindow(X_Dpy, sc->menuwin);
 	font_draw(sc, cc->name, strlen(cc->name), sc->menuwin,
-	    2, font_ascent() + 1);
+	    2, font_ascent(sc) + 1);
 	font_draw(sc, asize, strlen(asize), sc->menuwin,
-	    width / 2 - width_size / 2, height + font_ascent() + 1);
+	    width / 2 - width_size / 2, height + font_ascent(sc) + 1);
 }
 
 void