diff options
author | oga | 2008-04-16 13:35:37 +0000 |
---|---|---|
committer | oga | 2008-04-16 13:35:37 +0000 |
commit | 02211e5b89f2fd8670b150d7892f56d0f6dba351 (patch) | |
tree | 77e0463fa2987752c73fb0692e37685825dc2fd0 /screen.c | |
parent | 026f72d2d3b6a4d7ec2de075c0497c219881c01a (diff) | |
download | cwm-02211e5b89f2fd8670b150d7892f56d0f6dba351.tar.gz |
Remove screen_infomsg(), nothing uses it.
ok okan.
Diffstat (limited to 'screen.c')
-rw-r--r-- | screen.c | 40 |
1 files changed, 1 insertions, 39 deletions
@@ -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); } |