From 492675fdd3427e52b80f347599d5c6ddc42f454b Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 1 May 2007 00:53:54 +0000 Subject: [PATCH] this test wasnt valid --- tests/grav.c | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/tests/grav.c b/tests/grav.c index 3b37cec6..0fe32d49 100644 --- a/tests/grav.c +++ b/tests/grav.c @@ -18,14 +18,14 @@ #include #include +#include int main () { - XSetWindowAttributes xswa; - unsigned long xswamask; Display *display; Window win; XEvent report; int x=10,y=10,h=100,w=400; + XSizeHints *hints; display = XOpenDisplay(NULL); @@ -34,18 +34,23 @@ int main () { return 0; } - xswa.win_gravity = StaticGravity; - xswamask = CWWinGravity; - win = XCreateWindow(display, RootWindow(display, 0), x, y, w, h, 10, CopyFromParent, CopyFromParent, - CopyFromParent, xswamask, &xswa); + CopyFromParent, 0, NULL); + + hints = XAllocSizeHints(); + hints->flags = PWinGravity; + hints->win_gravity = SouthEastGravity; + XSetWMNormalHints(display, win, hints); + XFree(hints); XSetWindowBackground(display,win,WhitePixel(display,0)); XMapWindow(display, win); XFlush(display); + XMoveWindow(display, win, 960-1, 600-1); + XSelectInput(display, win, ExposureMask | StructureNotifyMask); while (1) { -- 2.39.2