Initial revision
This commit is contained in:
21
draw.c
Normal file
21
draw.c
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* calmwm - the calm window manager
|
||||
*
|
||||
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
|
||||
* All rights reserved.
|
||||
*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
#include "headers.h"
|
||||
#include "calmwm.h"
|
||||
|
||||
void
|
||||
draw_outline(struct client_ctx *cc)
|
||||
{
|
||||
struct screen_ctx *sc = CCTOSC(cc);
|
||||
|
||||
XDrawRectangle(G_dpy, sc->rootwin, sc->invgc,
|
||||
cc->geom.x - cc->bwidth, cc->geom.y - cc->bwidth,
|
||||
cc->geom.width + cc->bwidth, cc->geom.height + cc->bwidth);
|
||||
}
|
||||
Reference in New Issue
Block a user