1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
|
/*
* Copyright 1990, 1991.y the Massachusetts Institute of Technology and
* UniSoft Group Limited.
*
* 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 names of MIT and UniSoft not be
* used in advertising or publicity pertaining to distribution of the
* software without specific, written prior permission. MIT and UniSoft
* make no representations about the suitability of this software for any
* purpose. It is provided "as is" without express or implied warranty.
*
* $XConsortium$
*/
>>TITLE XSetWMNormalHints CH09
void
XSetWMNormalHints(display, w, hints)
Display *display = Dsp;
Window w = DRW(display);
XSizeHints *hints = &sizehints_0;
>>EXTERN
#include "Xatom.h"
#define NewNumPropSizeElements 18 /* ICCCM v. 1 */
static XSizeHints sizehints_0 = { PAllHints,0,0,0,0,0,0,0,0,0,0, {0,0}, {0,0}, 0,0,0};
static XSizeHints sizehints_1 = { PAllHints,1,2,3,4,5,6,7,8,9,10, {11,12}, {13,14}, 15, 16, 17};
>>ASSERTION Good A
A call to xname sets the
.S WM_NORMAL_HINTS
property for the window
.A w
to be of type
.S WM_SIZE_HINTS ,
format of 32 and to have value set
to the hints in the
.S XSizeHints
structure named by the
.A hints
argument.
>>STRATEGY
Create a window with XCreateWindow.
Set the WM_NORMAL_HINTS property with XSetWMNormalHints.
Obtain the value, type and format of the WM_NORMAL_HINTS property using XGetWindowProperty.
Verify that the type is WM_SIZE_HINTS.
Verify that the format is 32.
Verify that the value is identical to that value set by XSetWMNormalHints.
>>CODE
Window win;
XVisualInfo *vp;
Atom rtype;
int rformat;
unsigned long ritems, rbytes, *uls = NULL;
XSizeHints pp;
int i;
resetvinf(VI_WIN);
nextvinf(&vp);
win = makewin(display, vp);
w = win;
hints = &sizehints_1;
XCALL;
if( XGetWindowProperty(display, win, XA_WM_NORMAL_HINTS, 0L,
(long) NewNumPropSizeElements, False,
AnyPropertyType, &rtype, &rformat, &ritems, &rbytes,
(unsigned char **) &uls) != Success ) {
delete("XGetWindowProperty() did not return Success.");
return;
} else
CHECK;
if( rtype != XA_WM_SIZE_HINTS ) {
report("WM_NORMAL_HINTS property was type %lu instead of XA_WM_SIZE_HINTS (%lu)",
(unsigned long) rtype, (unsigned long) XA_WM_SIZE_HINTS);
FAIL;
} else
CHECK;
if( rformat != 32 ) {
report("WM_NORMAL_HINTS property was format %d instead of 32.", rformat);
FAIL;
} else
CHECK;
/* unpack from the array of unsigned longs into pp */
pp.flags = uls[i=0];
pp.x = (int)uls[++i]; /* obsolete for new window mgrs, but clients */
pp.y = (int)uls[++i];
pp.width = (int)uls[++i];
pp.height = (int)uls[++i]; /* should set so old wm's don't mess up */
pp.min_width = (int)uls[++i]; pp.min_height = (int)uls[++i];
pp.max_width = (int)uls[++i]; pp.max_height = (int)uls[++i];
pp.width_inc = (int)uls[++i]; pp.height_inc = (int)uls[++i];
pp.min_aspect.x = (int)uls[++i]; pp.min_aspect.y = (int)uls[++i];
pp.max_aspect.x = (int)uls[++i]; pp.max_aspect.y = (int)uls[++i];
pp.base_width = (int)uls[++i]; /* added by ICCCM version 1 */
pp.base_height = (int)uls[++i]; /* added by ICCCM version 1 */
pp.win_gravity = (int)uls[++i]; /* added by ICCCM version 1 */
if(pp.flags != PAllHints) {
report("The flags component of the XSizeHints structure was %lu instead of PAllHints (%ld).", pp.flags, PAllHints);
FAIL;
} else
CHECK;
if(pp.x != 1) {
report("The x component of the XSizeHints structure was %d instead of 1.", pp.x);
FAIL;
} else
CHECK;
if(pp.y != 2) {
report("The y component of the XSizeHints structure was %d instead of 2.", pp.y);
FAIL;
} else
CHECK;
if(pp.width != 3) {
report("The width component of the XSizeHints structure was %d instead of 3.", pp.width);
FAIL;
} else
CHECK;
if(pp.height != 4) {
report("The height component of the XSizeHints structure was %d instead of 4.", pp.height);
FAIL;
} else
CHECK;
if(pp.min_width != 5) {
report("The min_width component of the XSizeHints structure was %d instead of 5.", pp.min_width);
FAIL;
} else
CHECK;
if(pp.min_height != 6) {
report("The min_height component of the XSizeHints structure was %d instead of 6.", pp.min_height);
FAIL;
} else
CHECK;
if(pp.max_width != 7) {
report("The max_width component of the XSizeHints structure was %d instead of 7.", pp.max_width);
FAIL;
} else
CHECK;
if(pp.max_height != 8) {
report("The max_height component of the XSizeHints structure was %d instead of 8.", pp.max_height);
FAIL;
} else
CHECK;
if(pp.width_inc != 9) {
report("The width_inc component of the XSizeHints structure was %d instead of 9.", pp.width_inc);
FAIL;
} else
CHECK;
if(pp.height_inc != 10) {
report("The height_inc component of the XSizeHints structure was %d instead of 10.", pp.height_inc);
FAIL;
} else
CHECK;
if((pp.min_aspect.x != 11) || (pp.min_aspect.y != 12)){
report("The min_aspect components of the XSizeHints structure were %d, %d instead of 11, 12.",
pp.min_aspect.x, pp.min_aspect.y);
FAIL;
} else
CHECK;
if((pp.max_aspect.x != 13) || (pp.max_aspect.y != 14)){
report("The max_aspect components of the XSizeHints structure were %d, %d instead of 13, 14.",
pp.max_aspect.x, pp.max_aspect.y);
FAIL;
} else
CHECK;
if(pp.base_width != 15) {
report("The base_width component of the XSizeHints structure was %d instead of 15.", pp.base_width);
FAIL;
} else
CHECK;
if(pp.base_height != 16) {
report("The base_height component of the XSizeHints structure was %d instead of 16.", pp.base_height);
FAIL;
} else
CHECK;
if(pp.win_gravity != 17) {
report("The win_gravity component of the XSizeHints structure was %d instead of 17", pp.win_gravity);
FAIL;
} else
CHECK;
XFree((char*)uls);
CHECKPASS(19);
>>ASSERTION Bad B 1
.ER BadAlloc
>>ASSERTION Bad A
.ER BadWindow
>># Kieron Completed Reviewed (& mucked up)
|