X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=tests%2Fnoresize.c;h=ed32937a458e57aba473c86ba8afb7562884627e;hb=2fabd7bd15caa23e7d29e171fbcaa42ba19df90a;hp=dd33fd470a7f76096ada3a1c8b8187e4c7f0cec0;hpb=81af5a8b0caadc0a82ff2304c315f816c9576e93;p=chaz%2Fopenbox diff --git a/tests/noresize.c b/tests/noresize.c index dd33fd47..ed32937a 100644 --- a/tests/noresize.c +++ b/tests/noresize.c @@ -1,3 +1,21 @@ +/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- + + noresize.c for the Openbox window manager + Copyright (c) 2003-2007 Dana Jansens + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + See the COPYING file for a copy of the GNU General Public License. +*/ + #include #include #include @@ -22,7 +40,7 @@ int main () { xswamask = CWWinGravity; win = XCreateWindow(display, RootWindow(display, 0), - x, y, w, h, 10, CopyFromParent, CopyFromParent, + x, y, w, h, 0, CopyFromParent, CopyFromParent, CopyFromParent, xswamask, &xswa); XSetWindowBackground(display,win,WhitePixel(display,0)); @@ -34,10 +52,13 @@ int main () { size.min_height = h; XSetWMNormalHints(display, win, &size); + XSelectInput(display, win, ExposureMask | StructureNotifyMask); + XMapWindow(display, win); XFlush(display); - XSelectInput(display, win, ExposureMask | StructureNotifyMask); + XMoveWindow(display, win, 10, 10); + XMoveWindow(display, win, 10, 10); while (1) { XNextEvent(display, &report);