From 02211e5b89f2fd8670b150d7892f56d0f6dba351 Mon Sep 17 00:00:00 2001 From: oga Date: Wed, 16 Apr 2008 13:35:37 +0000 Subject: Remove screen_infomsg(), nothing uses it. ok okan. --- screen.c | 40 +--------------------------------------- 1 file changed, 1 insertion(+), 39 deletions(-) (limited to 'screen.c') diff --git a/screen.c b/screen.c index ed9cd2c..6155e45 100644 --- a/screen.c +++ b/screen.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: screen.c,v 1.4 2008/04/15 20:24:41 oga Exp $ + * $Id: screen.c,v 1.5 2008/04/16 13:35:37 oga Exp $ */ #include "headers.h" @@ -24,13 +24,6 @@ extern struct screen_ctx_q Screenq; extern struct screen_ctx *Curscreen; -static void -_clearwindow_cb(int sig) -{ - struct screen_ctx *sc = screen_current(); - XUnmapWindow(X_Dpy, sc->infowin); -} - struct screen_ctx * screen_fromroot(Window rootwin) { @@ -79,35 +72,4 @@ screen_init(void) struct screen_ctx *sc = screen_current(); sc->cycle_client = NULL; - - sc->infowin = XCreateSimpleWindow(X_Dpy, sc->rootwin, 0, 0, - 1, 1, 1, sc->blackpixl, sc->whitepixl); - - /* XXX - marius. */ - if (signal(SIGALRM, _clearwindow_cb) == SIG_ERR) - err(1, "signal"); -} - -void -screen_infomsg(char *msg) -{ - struct screen_ctx *sc = screen_current(); - char buf[1024]; - int dy, dx; - struct fontdesc *font = DefaultFont; - - XUnmapWindow(X_Dpy, sc->infowin); - alarm(0); - - snprintf(buf, sizeof(buf), ">%s", msg); - dy = font_ascent(font) + font_descent(font) + 1; - dx = font_width(font, buf, strlen(buf)); - - XMoveResizeWindow(X_Dpy, sc->infowin, 0, 0, dx, dy); - XMapRaised(X_Dpy, sc->infowin); - - font_draw(font, buf, strlen(buf), sc->infowin, - 0, font_ascent(font) + 1); - - alarm(1); } -- cgit v1.2.3-2-gb3c3