Copyright (c) 2005 X.Org Foundation L.L.C. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Copyright (c) Applied Testing and Technology, Inc. 1995 All Rights Reserved. >># Project: VSW5 >># >># File: xts5/Xlib15/XGetWMNormalHints.m >># >># Description: >># Tests for XGetWMNormalHints() >># >># Modifications: >># $Log: gtwmnrmlhn.m,v $ >># Revision 1.2 2005-11-03 08:42:50 jmichael >># clean up all vsw5 paths to use xts5 instead. >># >># Revision 1.1.1.2 2005/04/15 14:05:21 anderson >># Reimport of the base with the legal name in the copyright fixed. >># >># Revision 8.0 1998/12/23 23:33:57 mar >># Branch point for Release 5.0.2 >># >># Revision 7.0 1998/10/30 22:55:54 mar >># Branch point for Release 5.0.2b1 >># >># Revision 6.0 1998/03/02 05:25:19 tbr >># Branch point for Release 5.0.1 >># >># Revision 5.0 1998/01/26 03:21:51 tbr >># Branch point for Release 5.0.1b1 >># >># Revision 4.1 1996/05/09 00:28:55 andy >># Corrected Xatom include >># >># Revision 4.0 1995/12/15 09:09:15 tbr >># Branch point for Release 5.0.0 >># >># Revision 3.1 1995/12/15 01:11:07 andy >># Prepare for GA Release >># /* Portions of this software are based on Xlib and X Protocol Test Suite. We have used this material under the terms of its copyright, which grants free use, subject to the conditions below. Note however that those portions of this software that are based on the original Test Suite have been significantly revised and that all such revisions are copyright (c) 1995 Applied Testing and Technology, Inc. Insomuch as the proprietary revisions cannot be separated from the freely copyable material, the net result is that use of this software is governed by the ApTest copyright. Copyright (c) 1990, 1991 X Consortium Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium. Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of UniSoft not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. UniSoft makes no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. */ >>TITLE XGetWMNormalHints Xlib15 Status XGetWMNormalHints(display, w, hints_return, supplied_return) Display *display = Dsp; Window w = DRW(Dsp); XSizeHints *hints_return = &sizehints; long *supplied_return = &supret; >>EXTERN #include "X11/Xatom.h" #define NumPropSizeElements 18 #define OldNumPropSizeElements 15 #define AllFlags (USPosition|USSize|PPosition|PSize|PMinSize|PMaxSize|PResizeInc|PAspect|PBaseSize|PWinGravity) static XSizeHints sizehints = { AllFlags ,1,2,3,4,5,6,7,8,9,10, {11,12} , {13,14}, 15, 16, 17}; static XSizeHints rhints = { 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, {111, 112}, {113, 114}, 115, 116, 117 }; static long supret; >>ASSERTION Good A When the WM_NORMAL_HINTS property has been set on the window .A w with a .M type of WM_SIZE_HINTS, a .M format of 32 and is long enough to contain either a pre-ICCCM structure or a new size hints structure, then a call to xname sets the components of the .S XSizeHints structure named by the .A hints_return argument irrespective of whether the particular hint was previously set, and returns non-zero. >>STRATEGY >># We do not verify the type and format, since we rely on XSetWMHints >># which is tested elsewhere in Xlib15. Create a window with XCreate window. Set the WM_NORMAL_HINTS property with XSetWMNormalHints. Obtain the value of the WM_NORMAL_HINTS property using XGetWMNormalhints. Verify that the entire structure has been returned. >>CODE Status status; Window win; long rsupp; XVisualInfo *vp; resetvinf(VI_WIN); nextvinf(&vp); win = makewin(display, vp); XSetWMNormalHints(display, win, &sizehints); w = win; hints_return = &rhints; supplied_return = &rsupp; status = XCALL; if( status == False ) { report("XGetWMNormalHints() returned False."); FAIL; } else CHECK; if(rhints.flags != AllFlags) { report("The flags component of the XSizeHints structure was %lX instead of %X.", rhints.flags, AllFlags); FAIL; } else CHECK; if(rhints.x != 1) { report("The x component of the XSizeHints structure was %d instead of 1.", rhints.x); FAIL; } else CHECK; if(rhints.y != 2) { report("The y component of the XSizeHints structure was %d instead of 2.", rhints.y); FAIL; } else CHECK; if(rhints.width != 3) { report("The width component of the XSizeHints structure was %d instead of 3.", rhints.width); FAIL; } else CHECK; if(rhints.height != 4) { report("The height component of the XSizeHints structure was %d instead of 4.", rhints.height); FAIL; } else CHECK; if(rhints.min_width != 5) { report("The min_width component of the XSizeHints structure was %d instead of 5.", rhints.min_width); FAIL; } else CHECK; if(rhints.min_height != 6) { report("The min_height component of the XSizeHints structure was %d instead of 6.", rhints.min_height); FAIL; } else CHECK; if(rhints.max_width != 7) { report("The max_width component of the XSizeHints structure was %d instead of 7.", rhints.max_width); FAIL; } else CHECK; if(rhints.max_height != 8) { report("The max_height component of the XSizeHints structure was %d instead of 8.", rhints.max_height); FAIL; } else CHECK; if(rhints.width_inc != 9) { report("The width_inc component of the XSizeHints structure was %d instead of 9.", rhints.width_inc); FAIL; } else CHECK; if(rhints.height_inc != 10) { report("The height_inc component of the XSizeHints structure was %d instead of 10.", rhints.height_inc); FAIL; } else CHECK; if((rhints.min_aspect.x != 11) || (rhints.min_aspect.y != 12)){ report("The min_aspect components of the XSizeHints structure were %d, %d instead of 11, 12.", rhints.min_aspect.x, rhints.min_aspect.y); FAIL; } else CHECK; if((rhints.max_aspect.x != 13) || (rhints.max_aspect.y != 14)){ report("The max_aspect components of the XSizeHints structure were %d, %d instead of 13, 14.", rhints.max_aspect.x, rhints.max_aspect.y); FAIL; } else CHECK; if(rhints.base_width != 15) { report("The base_width component of the XSizeHints structure was %d instead of 15.", rhints.base_width); FAIL; } else CHECK; if(rhints.base_height != 16) { report("The base_height component of the XSizeHints structure was %d instead of 16.", rhints.base_height); FAIL; } else CHECK; if(rhints.win_gravity != 17) { report("The win_gravity component of the XSizeHints structure was %d instead of 17", rhints.win_gravity); FAIL; } else CHECK; CHECKPASS(17); >>ASSERTION Good A When the WM_NORMAL_HINTS property is not set on the window .A w , or is not of .M type WM_SIZE_HINTS, or is not of .M format 32, or the property is not long enough to contain either a pre-ICCCM structure or a new size hints structure, then a call to xname returns zero. >>STRATEGY Create a window with XCreateWindow. Obtain the unset WM_NORMAL_HINTS property with XGetWMNormalHints. Verify that the call returned zero. Create a window with XCreateWindow. Set the WM_NORMAL_HINTS property of format 32 type WM_SIZE_HINTS with OldNumPropSizeElements-1 elements XChangeProperty. Obtain the WM_NORMAL_HINTS property with XGetWMNormalHints. Verify that the call returned zero. Create a window with XCreateWindow. Set the WM_NORMAL_HINTS property of format 16 type WM_SIZE_HINTS with NumPropSizeElements elements with XChangeProperty. Obtain the WM_NORMAL_HINTS property with XGetWMNormalHints. Verify that the call returned zero. Create a window with XCreateWindow. Set the WM_NORMAL_HINTS property of format 32 type STRING with NumPropSizeElements elements with XChangeProperty. Obtain the WM_NORMAL_HINTS property with XGetWMNormalHints. Verify that the call returned zero. >>CODE Status status; Window win; XSizeHints rhints; long rsupp; XSizeHints dummy; /* Big enough (by definition). */ XVisualInfo *vp; resetvinf(VI_WIN); nextvinf(&vp); win = makewin(display, vp); w = win; status = XCALL; if(status != False) { report("XGetWMNormalHints() did not return False when the property was unset."); FAIL; } else CHECK; win = makewin(display, vp); XChangeProperty(display, win, XA_WM_NORMAL_HINTS, XA_WM_SIZE_HINTS, 32, PropModeReplace, (unsigned char *)&dummy, OldNumPropSizeElements-1); w = win; hints_return = &rhints; supplied_return = &rsupp; status = XCALL; if(status != False) { report("XGetWMNormalHints() did not return False when size was %lu 32-bit elements.", (unsigned long) OldNumPropSizeElements-1); FAIL; } else CHECK; win = makewin(display, vp); XChangeProperty(display, win, XA_WM_NORMAL_HINTS, XA_WM_SIZE_HINTS, 16, PropModeReplace, (unsigned char *)&dummy, NumPropSizeElements); w = win; status = XCALL; if(status != False) { report("XGetWMNormalHints() did not return False when format was 16."); FAIL; } else CHECK; win = makewin(display, vp); XChangeProperty(display, win, XA_WM_NORMAL_HINTS, XA_STRING, 32, PropModeReplace, (unsigned char *)&dummy, NumPropSizeElements); w = win; status = XCALL; if(status != False) { report("XGetWMNormalHints() did not return False when type was STRING."); FAIL; } else CHECK; CHECKPASS(4); >>ASSERTION Good A When a call to xname returns successfully and a pre-ICCCM size hints property is read, then the .A supplied_return argument contains the bits .S "(USPosition | USSize | PPosition | PSize | PMinSize | PMaxSize | PResizeInc | PAspect)." >>STRATEGY Create a window with XCreateWindow. Set the WM_NORMAL_HINTS property with size OldNumPropSizeElements using XChangeProperty. Obtain the value of the WM_NORMAL_HINTS property using XGetWMNormalHints. Verify that the value returned in supplied_return was (USPosition|USSize|PPosition|PSize|PMinSize|PMaxSize|PResizeInc|PAspect). >>CODE Status status; Window win; XSizeHints rhints; long rsupp; XSizeHints dummy; /* Big enough (by definition). */ XVisualInfo *vp; unsigned long flagval = (USPosition | USSize | PPosition | PSize | PMinSize | PMaxSize | PResizeInc | PAspect); resetvinf(VI_WIN); nextvinf(&vp); win = makewin(display, vp); XChangeProperty(display, win, XA_WM_NORMAL_HINTS, XA_WM_SIZE_HINTS, 32, PropModeReplace, (unsigned char *)&dummy, OldNumPropSizeElements); w = win; hints_return = &rhints; supplied_return = &rsupp; status = XCALL; if(status == False) { report("XGetWMNormalHints() returned False."); FAIL; } else CHECK; if( rsupp != flagval) { report("supplied_return was %lu instead of (USPosition | USSize | PPosition | PSize | PMinSize | PMaxSize | PResizeInc | PAspect) (%ul)", rsupp, flagval); report("for a pre-ICCCM structure."); FAIL; } else CHECK; CHECKPASS(2); >>ASSERTION Good A When the WM_NORMAL_HINTS property is large enough to contain the base size and window gravity fields, then the .A supplied_return argument contains the bits .S "(PBaseSize | PWinGravity | USPosition | USSize | PPosition | PSize | PMinSize | PMaxSize | PResizeInc | PAspect)." >>STRATEGY Create a window with XCreateWindow. Set the WM_NORMAL_HINTS property with size OldNumPropSizeElements using XChangeProperty. Obtain the value of the WM_NORMAL_HINTS property using XGetWMNormalHints. Verify that the value returned in supplied_return was (PBaseSize|PWinGravity|USPosition|USSize|PPosition|PSize|PMinSize|PMaxSize|PResizeInc|PAspect). >>CODE Status status; Window win; XSizeHints rhints; long rsupp; XSizeHints dummy; /* Big enough (by definition). */ XVisualInfo *vp; unsigned long flagval = (PBaseSize | PWinGravity | USPosition | USSize | PPosition | PSize | PMinSize | PMaxSize | PResizeInc | PAspect); resetvinf(VI_WIN); nextvinf(&vp); win = makewin(display, vp); XChangeProperty(display, win, XA_WM_NORMAL_HINTS, XA_WM_SIZE_HINTS, 32, PropModeReplace, (unsigned char *)&dummy, NumPropSizeElements); w = win; hints_return = &rhints; supplied_return = &rsupp; status = XCALL; if(status == False) { report("XGetWMNormalHints() returned False."); FAIL; } else CHECK; if( rsupp != flagval) { report("supplied_return was %lu instead of (PBaseSize | PWinGravity | USPosition | USSize | PPosition | PSize | PMinSize | PMaxSize | PResizeInc | PAspect) (%ul)", rsupp, flagval); report("for an ICCCMv1 structure."); FAIL; } else CHECK; CHECKPASS(2); >>ASSERTION Bad A .ER BadWindow >># Kieron Action Review.