2 * Scroll windows and DCs
4 * Copyright David W. Metcalfe, 1993
5 * Alex Korobka 1995,1996
19 #include "sysmetrics.h"
23 /*************************************************************************
24 * ScrollWindow16 (USER.61)
26 void WINAPI
ScrollWindow16(HWND16 hwnd
, INT16 dx
, INT16 dy
, const RECT16
*rect
,
27 const RECT16
*clipRect
)
29 RECT32 rect32
, clipRect32
;
31 if (rect
) CONV_RECT16TO32( rect
, &rect32
);
32 if (clipRect
) CONV_RECT16TO32( clipRect
, &clipRect32
);
33 ScrollWindow32( hwnd
, dx
, dy
, rect
? &rect32
: NULL
,
34 clipRect
? &clipRect32
: NULL
);
37 /*************************************************************************
38 * ScrollWindow32 (USER32.450)
40 * FIXME: verify clipping region calculations
42 BOOL32 WINAPI
ScrollWindow32( HWND32 hwnd
, INT32 dx
, INT32 dy
,
43 const RECT32
*rect
, const RECT32
*clipRect
)
46 HRGN32 hrgnUpdate
,hrgnClip
;
48 HWND32 hCaretWnd
= CARET_GetHwnd();
49 WND
* wndScroll
= WIN_FindWndPtr( hwnd
);
51 TRACE(scroll
,"hwnd=%04x, dx=%d, dy=%d, lpRect =%p clipRect=%i,%i,%i,%i\n",
53 clipRect
? clipRect
->left
: 0,
54 clipRect
? clipRect
->top
: 0,
55 clipRect
? clipRect
->right
: 0,
56 clipRect
? clipRect
->bottom
: 0 );
58 if ( !wndScroll
|| !WIN_IsWindowDrawable( wndScroll
, TRUE
) ) return TRUE
;
60 if ( !rect
) /* do not clip children */
62 GetClientRect32(hwnd
, &rc
);
63 hrgnClip
= CreateRectRgnIndirect32( &rc
);
65 if ((hCaretWnd
== hwnd
) || IsChild32(hwnd
,hCaretWnd
))
66 HideCaret32(hCaretWnd
);
69 hdc
= GetDCEx32(hwnd
, hrgnClip
, DCX_CACHE
| DCX_CLIPSIBLINGS
);
70 DeleteObject32( hrgnClip
);
72 else /* clip children */
74 CopyRect32(&rc
, rect
);
76 if (hCaretWnd
== hwnd
) HideCaret32(hCaretWnd
);
79 hdc
= GetDCEx32( hwnd
, 0, DCX_CACHE
| DCX_USESTYLE
);
83 GetClientRect32(hwnd
, &cliprc
);
85 CopyRect32(&cliprc
, clipRect
);
87 hrgnUpdate
= CreateRectRgn32( 0, 0, 0, 0 );
88 ScrollDC32( hdc
, dx
, dy
, &rc
, &cliprc
, hrgnUpdate
, NULL
);
89 ReleaseDC32(hwnd
, hdc
);
91 if( !rect
) /* move child windows and update region */
95 if( wndScroll
->hrgnUpdate
> 1 )
96 OffsetRgn32( wndScroll
->hrgnUpdate
, dx
, dy
);
98 for (wndPtr
= wndScroll
->child
; wndPtr
; wndPtr
= wndPtr
->next
)
99 SetWindowPos32(wndPtr
->hwndSelf
, 0, wndPtr
->rectWindow
.left
+ dx
,
100 wndPtr
->rectWindow
.top
+ dy
, 0,0, SWP_NOZORDER
|
101 SWP_NOSIZE
| SWP_NOACTIVATE
| SWP_NOREDRAW
|
105 PAINT_RedrawWindow( hwnd
, NULL
, hrgnUpdate
, RDW_ALLCHILDREN
|
106 RDW_INVALIDATE
| RDW_ERASE
| RDW_ERASENOW
, RDW_C_USEHRGN
);
108 DeleteObject32( hrgnUpdate
);
113 pt
.x
+= dx
; pt
.y
+= dy
;
114 SetCaretPos32(pt
.x
, pt
.y
);
115 ShowCaret32(hCaretWnd
);
121 /*************************************************************************
122 * ScrollDC16 (USER.221)
124 BOOL16 WINAPI
ScrollDC16( HDC16 hdc
, INT16 dx
, INT16 dy
, const RECT16
*rect
,
125 const RECT16
*cliprc
, HRGN16 hrgnUpdate
,
128 RECT32 rect32
, clipRect32
, rcUpdate32
;
131 if (rect
) CONV_RECT16TO32( rect
, &rect32
);
132 if (cliprc
) CONV_RECT16TO32( cliprc
, &clipRect32
);
133 ret
= ScrollDC32( hdc
, dx
, dy
, rect
? &rect32
: NULL
,
134 cliprc
? &clipRect32
: NULL
, hrgnUpdate
, &rcUpdate32
);
135 if (rcUpdate
) CONV_RECT32TO16( &rcUpdate32
, rcUpdate
);
140 /*************************************************************************
141 * ScrollDC32 (USER32.449)
143 * Both 'rc' and 'prLClip' are in logical units but update info is
144 * returned in device coordinates.
146 BOOL32 WINAPI
ScrollDC32( HDC32 hdc
, INT32 dx
, INT32 dy
, const RECT32
*rc
,
147 const RECT32
*prLClip
, HRGN32 hrgnUpdate
,
153 DC
*dc
= (DC
*)GDI_GetObjPtr(hdc
, DC_MAGIC
);
155 TRACE(scroll
,"%04x %d,%d hrgnUpdate=%04x rcUpdate = %p cliprc = (%d,%d-%d,%d), rc=(%d,%d-%d,%d)\n",
156 (HDC16
)hdc
, dx
, dy
, hrgnUpdate
, rcUpdate
,
157 prLClip
? prLClip
->left
: 0, prLClip
? prLClip
->top
: 0, prLClip
? prLClip
->right
: 0, prLClip
? prLClip
->bottom
: 0,
158 rc
? rc
->left
: 0, rc
? rc
->top
: 0, rc
? rc
->right
: 0, rc
? rc
->bottom
: 0 );
160 if ( !dc
|| !hdc
) return FALSE
;
163 TRACE(scroll,"\t[wndOrgX=%i, wndExtX=%i, vportOrgX=%i, vportExtX=%i]\n",
164 dc->wndOrgX, dc->wndExtX, dc->vportOrgX, dc->vportExtX );
165 TRACE(scroll,"\t[wndOrgY=%i, wndExtY=%i, vportOrgY=%i, vportExtY=%i]\n",
166 dc->wndOrgY, dc->wndExtY, dc->vportOrgY, dc->vportExtY );
169 /* compute device clipping region */
173 else /* maybe we should just return FALSE? */
174 GetClipBox32( hdc
, &rClip
);
177 IntersectRect32(&rClip
,&rClip
,prLClip
);
179 if( rClip
.left
>= rClip
.right
|| rClip
.top
>= rClip
.bottom
)
181 GDI_HEAP_UNLOCK( hdc
);
186 IntersectVisRect( hdc
, rClip
.left
, rClip
.top
,
187 rClip
.right
, rClip
.bottom
);
190 /* translate coordinates */
192 ldx
= dx
* dc
->wndExtX
/ dc
->vportExtX
;
193 ldy
= dy
* dc
->wndExtY
/ dc
->vportExtY
;
196 dest
.x
= (src
.x
= rClip
.left
) + ldx
;
198 src
.x
= (dest
.x
= rClip
.left
) - ldx
;
201 dest
.y
= (src
.y
= rClip
.top
) + ldy
;
203 src
.y
= (dest
.y
= rClip
.top
) - ldy
;
207 if( rClip
.right
- rClip
.left
> ldx
&&
208 rClip
.bottom
- rClip
.top
> ldy
)
210 ldx
= rClip
.right
- rClip
.left
- ldx
;
211 ldy
= rClip
.bottom
- rClip
.top
- ldy
;
213 if (!BitBlt32( hdc
, dest
.x
, dest
.y
, ldx
, ldy
,
214 hdc
, src
.x
, src
.y
, SRCCOPY
))
216 GDI_HEAP_UNLOCK( hdc
);
221 /* restore clipping region */
223 RestoreVisRgn( hdc
);
226 /* compute update areas */
228 if ( (hrgnUpdate
|| rcUpdate
) && dc
->w
.hVisRgn
)
230 HRGN32 hrgn
= (hrgnUpdate
) ? hrgnUpdate
: CreateRectRgn32( 0,0,0,0 );
233 LPtoDP32( hdc
, (LPPOINT32
)&rClip
, 2 );
234 OffsetRect32( &rClip
, dc
->w
.DCOrgX
, dc
->w
.DCOrgY
);
235 hrgnClip
= CreateRectRgnIndirect32( &rClip
);
237 CombineRgn32( hrgn
, dc
->w
.hVisRgn
, hrgnClip
, RGN_AND
);
238 OffsetRgn32( hrgn
, dx
, dy
);
239 CombineRgn32( hrgn
, dc
->w
.hVisRgn
, hrgn
, RGN_DIFF
);
240 CombineRgn32( hrgn
, hrgn
, hrgnClip
, RGN_AND
);
241 OffsetRgn32( hrgn
, -dc
->w
.DCOrgX
, -dc
->w
.DCOrgY
);
243 if( rcUpdate
) GetRgnBox32( hrgnUpdate
, rcUpdate
);
245 if (!hrgnUpdate
) DeleteObject32( hrgn
);
246 DeleteObject32( hrgnClip
);
249 GDI_HEAP_UNLOCK( hdc
);
254 /*************************************************************************
255 * ScrollWindowEx16 (USER.319)
257 INT16 WINAPI
ScrollWindowEx16( HWND16 hwnd
, INT16 dx
, INT16 dy
,
258 const RECT16
*rect
, const RECT16
*clipRect
,
259 HRGN16 hrgnUpdate
, LPRECT16 rcUpdate
,
262 RECT32 rect32
, clipRect32
, rcUpdate32
;
265 if (rect
) CONV_RECT16TO32( rect
, &rect32
);
266 if (clipRect
) CONV_RECT16TO32( clipRect
, &clipRect32
);
267 ret
= ScrollWindowEx32( hwnd
, dx
, dy
, rect
? &rect32
: NULL
,
268 clipRect
? &clipRect32
: NULL
, hrgnUpdate
,
269 (rcUpdate
) ? &rcUpdate32
: NULL
, flags
);
270 if (rcUpdate
) CONV_RECT32TO16( &rcUpdate32
, rcUpdate
);
274 /*************************************************************************
277 static BOOL32
SCROLL_FixCaret(HWND32 hWnd
, LPRECT32 lprc
, UINT32 flags
)
279 HWND32 hCaret
= CARET_GetHwnd();
284 CARET_GetRect( &rc
);
285 if( hCaret
== hWnd
||
286 (flags
& SW_SCROLLCHILDREN
&& IsChild32(hWnd
, hCaret
)) )
290 pt
.x
= rc
.left
; pt
.y
= rc
.top
;
291 MapWindowPoints32( hCaret
, hWnd
, (LPPOINT32
)&rc
, 2 );
292 if( IntersectRect32(lprc
, lprc
, &rc
) )
295 lprc
->left
= pt
.x
; lprc
->top
= pt
.y
;
303 /*************************************************************************
304 * ScrollWindowEx32 (USER32.451)
306 * NOTE: Use this function instead of ScrollWindow32
308 INT32 WINAPI
ScrollWindowEx32( HWND32 hwnd
, INT32 dx
, INT32 dy
,
309 const RECT32
*rect
, const RECT32
*clipRect
,
310 HRGN32 hrgnUpdate
, LPRECT32 rcUpdate
,
313 INT32 retVal
= NULLREGION
;
314 BOOL32 bCaret
= FALSE
, bOwnRgn
= TRUE
;
316 WND
* wnd
= WIN_FindWndPtr( hwnd
);
318 if( !wnd
|| !WIN_IsWindowDrawable( wnd
, TRUE
)) return ERROR
;
320 if (rect
== NULL
) GetClientRect32(hwnd
, &rc
);
323 if (clipRect
) IntersectRect32(&cliprc
,&rc
,clipRect
);
326 if (!IsRectEmpty32(&cliprc
) && (dx
|| dy
))
330 BOOL32 bUpdate
= (rcUpdate
|| hrgnUpdate
|| flags
& (SW_INVALIDATE
| SW_ERASE
));
331 HRGN32 hrgnClip
= CreateRectRgnIndirect32(&cliprc
);
333 TRACE(scroll
,"%04x, %d,%d hrgnUpdate=%04x rcUpdate = %p \
334 cliprc = (%d,%d-%d,%d), rc=(%d,%d-%d,%d) %04x\n",
335 (HWND16
)hwnd
, dx
, dy
, hrgnUpdate
, rcUpdate
,
336 clipRect
?clipRect
->left
:0, clipRect
?clipRect
->top
:0, clipRect
?clipRect
->right
:0, clipRect
?clipRect
->bottom
:0,
337 rect
?rect
->left
:0, rect
?rect
->top
:0, rect
?rect
->right
:0, rect
?rect
->bottom
:0, (UINT16
)flags
);
340 bCaret
= SCROLL_FixCaret(hwnd
, &rc
, flags
);
342 if( hrgnUpdate
) bOwnRgn
= FALSE
;
343 else if( bUpdate
) hrgnUpdate
= CreateRectRgn32( 0, 0, 0, 0 );
345 hDC
= GetDCEx32( hwnd
, hrgnClip
, DCX_CACHE
| DCX_USESTYLE
|
346 ((flags
& SW_SCROLLCHILDREN
) ? DCX_NOCLIPCHILDREN
: 0) );
347 if( (dc
= (DC
*)GDI_GetObjPtr(hDC
, DC_MAGIC
)) )
351 if( dx
> 0 ) dst
.x
= (src
.x
= dc
->w
.DCOrgX
+ cliprc
.left
) + dx
;
352 else src
.x
= (dst
.x
= dc
->w
.DCOrgX
+ cliprc
.left
) - dx
;
354 if( dy
> 0 ) dst
.y
= (src
.y
= dc
->w
.DCOrgY
+ cliprc
.top
) + dy
;
355 else src
.y
= (dst
.y
= dc
->w
.DCOrgY
+ cliprc
.top
) - dy
;
357 if( bUpdate
) /* handles non-Wine windows hanging over the scrolled area */
358 TSXSetGraphicsExposures( display
, dc
->u
.x
.gc
, True
);
360 TSXSetFunction( display
, dc
->u
.x
.gc
, GXcopy
);
361 TSXCopyArea( display
, dc
->u
.x
.drawable
, dc
->u
.x
.drawable
, dc
->u
.x
.gc
,
362 src
.x
, src
.y
, cliprc
.right
- cliprc
.left
- abs(dx
),
363 cliprc
.bottom
- cliprc
.top
- abs(dy
), dst
.x
, dst
.y
);
366 TSXSetGraphicsExposures( display
, dc
->u
.x
.gc
, False
);
368 if( dc
->w
.hVisRgn
&& bUpdate
)
370 OffsetRgn32( hrgnClip
, dc
->w
.DCOrgX
, dc
->w
.DCOrgY
);
371 CombineRgn32( hrgnUpdate
, dc
->w
.hVisRgn
, hrgnClip
, RGN_AND
);
372 OffsetRgn32( hrgnUpdate
, dx
, dy
);
373 CombineRgn32( hrgnUpdate
, dc
->w
.hVisRgn
, hrgnUpdate
, RGN_DIFF
);
374 CombineRgn32( hrgnUpdate
, hrgnUpdate
, hrgnClip
, RGN_AND
);
375 OffsetRgn32( hrgnUpdate
, -dc
->w
.DCOrgX
, -dc
->w
.DCOrgY
);
377 if( rcUpdate
) GetRgnBox32( hrgnUpdate
, rcUpdate
);
379 ReleaseDC32(hwnd
, hDC
);
380 GDI_HEAP_UNLOCK( hDC
);
383 if( wnd
->hrgnUpdate
> 1 )
385 if( rect
|| clipRect
)
387 if( (CombineRgn32( hrgnClip
, hrgnClip
,
388 wnd
->hrgnUpdate
, RGN_AND
) != NULLREGION
) )
390 CombineRgn32( wnd
->hrgnUpdate
, wnd
->hrgnUpdate
, hrgnClip
, RGN_DIFF
);
391 OffsetRgn32( hrgnClip
, dx
, dy
);
392 CombineRgn32( wnd
->hrgnUpdate
, wnd
->hrgnUpdate
, hrgnClip
, RGN_OR
);
396 OffsetRgn32( wnd
->hrgnUpdate
, dx
, dy
);
399 if( flags
& SW_SCROLLCHILDREN
)
403 for( w
= wnd
->child
; w
; w
= w
->next
)
405 CONV_RECT16TO32( &w
->rectWindow
, &r
);
406 if( !clipRect
|| IntersectRect32(&r
, &r
, &cliprc
) )
407 SetWindowPos32(w
->hwndSelf
, 0, w
->rectWindow
.left
+ dx
,
408 w
->rectWindow
.top
+ dy
, 0,0, SWP_NOZORDER
|
409 SWP_NOSIZE
| SWP_NOACTIVATE
| SWP_NOREDRAW
|
414 if( flags
& (SW_INVALIDATE
| SW_ERASE
) )
415 PAINT_RedrawWindow( hwnd
, NULL
, hrgnUpdate
, RDW_INVALIDATE
| RDW_ERASE
|
416 ((flags
& SW_ERASE
) ? RDW_ERASENOW
: 0) | ((flags
& SW_SCROLLCHILDREN
) ? RDW_ALLCHILDREN
: 0 ), 0 );
420 SetCaretPos32( rc
.left
+ dx
, rc
.top
+ dy
);
424 if( bOwnRgn
&& hrgnUpdate
) DeleteObject32( hrgnUpdate
);
425 DeleteObject32( hrgnClip
);