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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
|
!ifndef NULLSOFT_NX_WINDOW_RECT_NSIS_HEADER
!define NULLSOFT_NX_WINDOW_RECT_NSIS_HEADER
!include "util.nsh"
!include "logicLib.nsh"
!include "system.nsh"
!macro NX_GetWindowRectInternal
Exch $0
Push $2
Push $3
Push $4
Push $5
Push $1
System::Call "*${stRECT} .r1"
System::Call "${fnGetWindowRect}($0, $1)"
System::Call "*$1${stRECT} (.r2, .r3, .r4, .r5)"
System::Free $1
Pop $1
Exch 4
Pop $0
Exch $5
Exch 3
Exch $2
Exch
Exch $4
Exch 2
Exch $3
Exch
!macroend
!macro NX_GetWindowRect __hwnd __left __top __right __bottom
Push "${__hwnd}"
${CallArtificialFunction} NX_GetWindowRectInternal
Pop "${__left}"
Pop "${__top}"
Pop "${__right}"
Pop "${__bottom}"
!macroend
!define NX_GetWindowRect `!insertmacro NX_GetWindowRect`
!macro NX_GetMappedWindowRectInternal
Exch $0
Exch
Exch $2
Push $3
Push $4
Push $5
Push $1
System::Call "*${stRECT} .r1"
System::Call "${fnGetWindowRect}(r0, r1)"
System::Call '${fnMapWindowPoints}(0, r2, r1, 2)'
System::Call "*$1${stRECT} (.r5, .r2, .r3, .r4)"
System::Free $1
Pop $1
Exch 4
Pop $0
Exch $4
Exch 3
Exch $5
Exch
Exch $3
Exch 2
Exch $2
Exch
!macroend
!macro NX_GetMappedWindowRect __hwnd __hwndParent __left __top __right __bottom
Push "${__hwndParent}"
Push "${__hwnd}"
${CallArtificialFunction} NX_GetMappedWindowRectInternal
Pop "${__left}"
Pop "${__top}"
Pop "${__right}"
Pop "${__bottom}"
!macroend
!define NX_GetMappedWindowRect `!insertmacro NX_GetMappedWindowRect`
!macro NX_GetWindowSizeInternal
Exch $0
Push $2
Push $3
Push $4
Push $5
Push $1
System::Call "*${stRECT} .r1"
System::Call "${fnGetWindowRect} ($0, $1)"
System::Call "*$1${stRECT} (.r2, .r3, .r4, .r5)"
System::Free $1
Pop $1
IntOp $0 $4 - $2
IntOp $2 $5 - $3
Pop $5
Pop $4
Pop $3
Exch $2
Exch
Exch $0
!macroend
!macro NX_GetWindowSize __hwnd __width __height
Push "${__hwnd}"
${CallArtificialFunction} NX_GetWindowSizeInternal
Pop "${__width}"
Pop "${__height}"
!macroend
!define NX_GetWindowSize `!insertmacro NX_GetWindowSize`
!macro NX_GetWindowPosInternal
Exch $0
Push $2
Push $3
Push $4
Push $5
Push $1
System::Call "*${stRECT} .r1"
System::Call "${fnGetWindowRect}($0, $1)"
System::Call "*$1${stRECT} (.r2, .r3, .r4, .r5)"
System::Free $1
Pop $1
StrCpy $0 $3
Pop $5
Pop $4
Pop $3
Exch $2
Exch
Exch $0
Exch
!macroend
!macro NX_GetWindowPos __hwnd __left __top
Push "${__hwnd}"
${CallArtificialFunction} NX_GetWindowPosInternal
Pop "${__left}"
Pop "${__top}"
!macroend
!define NX_GetWindowPos `!insertmacro NX_GetWindowPos`
!macro NX_GetMappedWindowPosInternal
Exch $0
Exch
Exch $2
Push $3
Push $4
Push $5
Push $1
System::Call "*${stRECT} .r1"
System::Call "${fnGetWindowRect}($0, $1)"
System::Call "${fnMapWindowPoints}(0, $2, r1, 1)"
System::Call "*$1${stRECT} (.r2, .r3, .r4, .r5)"
System::Free $1
Pop $1
StrCpy $0 $3
Pop $5
Pop $4
Pop $3
Exch $2
Exch
Exch $0
Exch
!macroend
!macro NX_GetMappedWindowPos __hwnd __hwndParent __left __top
Push "${__hwndParent}"
Push "${__hwnd}"
${CallArtificialFunction} NX_GetMappedWindowPosInternal
Pop "${__left}"
Pop "${__top}"
!macroend
!define NX_GetMappedWindowPos `!insertmacro NX_GetMappedWindowPos`
!macro NX_SetWindowPos __hwnd __left __top
System::Call "${fnSetWindowPos} \
(${__hwnd}, 0, ${__left}, ${__top}, 0, 0, \
${SWP_NOACTIVATE}|${SWP_NOZORDER}|${SWP_NOSIZE})"
!macroend
!define NX_SetWindowPos `!insertmacro NX_SetWindowPos`
!macro NX_SetWindowSize __hwnd __width __height
System::Call "${fnSetWindowPos} \
(${__hwnd}, 0, 0, 0, ${__width}, ${__height}, \
${SWP_NOACTIVATE}|${SWP_NOZORDER}|${SWP_NOMOVE})"
!macroend
!define NX_SetWindowSize `!insertmacro NX_SetWindowSize`
!macro NX_SetWindowPosAndSize __hwnd __left __top __width __height
System::Call "User32::SetWindowPos(i, i, i, i, i, i, i) b \
(${__hwnd}, 0, ${__left}, ${__top}, ${__width}, ${__height},\
${SWP_NOACTIVATE}|${SWP_NOZORDER})"
!macroend
!define NX_SetWindowPosAndSize `!insertmacro NX_SetWindowPosAndSize`
!macro NX_SetWindowOrder __hwnd __insertAfterWindow
System::Call "${fnSetWindowPos} \
(${__hwnd}, ${__insertAfterWindow}, 0, 0, 0, 0, \
${SWP_NOACTIVATE}|${SWP_NOSIZE}|${SWP_NOMOVE})"
!macroend
!define NX_SetWindowOrder `!insertmacro NX_SetWindowOrder`
!macro NX_OffsetWindowPosInternal
!define hwnd_ $R0
!define offsetX_ $R1
!define offsetY_ $R2
Exch ${offsetY_}
Exch
Exch ${offsetX_}
Exch 2
Exch ${hwnd_}
Push $0
Push $1
Push $2
Push $3
Push $4
System::Call "*${stRECT} .r4"
System::Call "${fnGetWindowRect} (${hwnd_}, r4)"
System::Call "${fnGetAncestor} (${hwnd_}, ${GA_PARENT}).r0"
${If} $R0 != 0
System::Call "${fnMapWindowPoints} (0, r0, r4, 2)"
${EndIf}
System::Call "*$4${stRECT} (.r0, .r1, .r2, .r3)"
System::Free $4
IntOp $0 $0 + ${offsetX_}
IntOp $1 $1 + ${offsetY_}
System::Call "${fnSetWindowPos} \
(${hwnd_}, 0, $0, $1, 0, 0, \
${SWP_NOACTIVATE}|${SWP_NOZORDER}|${SWP_NOSIZE})"
Pop $4
Pop $3
Pop $2
Pop $1
Pop $0
Pop ${hwnd_}
Pop ${offsetY_}
Pop ${offsetX_}
!undef hwnd_
!undef offsetX_
!undef offsetY_
!macroend
!macro NX_OffsetWindowPos __hwnd __offset_x __offset_y
Push "${__hwnd}"
Push "${__offset_x}"
Push "${__offset_y}"
${CallArtificialFunction} NX_OffsetWindowPosInternal
!macroend
!define NX_OffsetWindowPos "!insertmacro 'NX_OffsetWindowPos'"
!macro NX_IncreaseWindowSizeInternal
!define hwnd_ $R0
!define deltaCX_ $R1
!define deltaCY_ $R2
Exch ${deltaCY_}
Exch
Exch ${deltaCX_}
Exch 2
Exch ${hwnd_}
Push $0
Push $1
Push $2
Push $3
Push $4
System::Call "*${stRECT} .r4"
System::Call "${fnGetWindowRect}(${hwnd_}, r4)"
System::Call "*$4${stRECT} (.r0, .r1, .r2, .r3)"
System::Free $4
IntOp $0 $2 - $0
IntOp $1 $3 - $1
IntOp $0 $0 + ${deltaCX_}
IntOp $1 $1 + ${deltaCY_}
System::Call "${fnSetWindowPos}\
(${__hwnd}, 0, 0, 0, $0, $1, \
${SWP_NOACTIVATE}|${SWP_NOZORDER}|${SWP_NOMOVE})"
Pop $4
Pop $3
Pop $2
Pop $1
Pop $0
Pop ${hwnd_}
Pop ${deltaCY_}
Pop ${deltaCX_}
!undef hwnd_
!undef deltaCX_
!undef deltaCY_
!macroend
!macro NX_IncreaseWindowSize __hwnd __delta_cx __delta_cy
Push "${__hwnd}"
Push "${__delta_cx}"
Push "${__delta_cy}"
${CallArtificialFunction} NX_IncreaseWindowSizeInternal
!macroend
!define NX_IncreaseWindowSize "!insertmacro 'NX_IncreaseWindowSize'"
!macro NX_ConvertHorzDLUInternal
Exch $1 ; dlu
Exch
Exch $0 ; hwnd
Push $2
System::Call "*${stRECT}($1, 0, 0, 0) .r2"
System::Call "${fnMapDialogRect}($0, $2).s"
Pop $1
${If} $1 != 0
System::Call "*$2${stRECT} (.r1, _)"
${EndIf}
System::Free $2
Pop $2
Pop $0
Exch $1
!macroend
!macro NX_ConvertHorzDLU __hwnd __dlu __px
Push "${__hwnd}"
Push "${__dlu}"
${CallArtificialFunction} NX_ConvertHorzDLUInternal
Pop "${__px}"
!macroend
!define NX_ConvertHorzDLU `!insertmacro NX_ConvertHorzDLU`
!macro NX_ConvertVertDLUInternal
Exch $1 ; dlu
Exch
Exch $0 ; hwnd
Push $2
System::Call "*${stRECT}(0, $1, 0, 0) .r2"
System::Call "${fnMapDialogRect}($0, $2).s"
Pop $1
${If} $1 != 0
System::Call "*$2${stRECT} (., .r1, _)"
${EndIf}
System::Free $2
Pop $2
Pop $0
Exch $1
!macroend
!macro NX_ConvertVertDLU __hwnd __dlu __px
Push "${__hwnd}"
Push "${__dlu}"
${CallArtificialFunction} NX_ConvertVertDLUInternal
Pop "${__px}"
!macroend
!define NX_ConvertVertDLU `!insertmacro NX_ConvertVertDLU`
!endif ; defined(NULLSOFT_NX_WINDOW_RECT_NSIS_HEADER)
|