2 * Scroll windows and DCs
4 * Copyright 1993 David W. Metcalfe
5 * Copyright 1995, 1996 Alex Korobka
6 * Copyright 2001 Alexandre Julliard
20 #include "debugtools.h"
22 DEFAULT_DEBUG_CHANNEL(x11drv);
25 /*************************************************************************
28 static BOOL fix_caret(HWND hWnd, LPRECT lprc, UINT flags)
30 HWND hCaret = CARET_GetHwnd();
37 (flags & SW_SCROLLCHILDREN && IsChild(hWnd, hCaret)) )
42 MapWindowPoints( hCaret, hWnd, (LPPOINT)&rc, 2 );
43 if( IntersectRect(lprc, lprc, &rc) )
56 /*************************************************************************
59 * Only the hrgnUpdate is returned in device coordinates.
60 * rcUpdate must be returned in logical coordinates to comply with win API.
61 * FIXME: the doc explicitly states the opposite, to be checked
63 BOOL X11DRV_ScrollDC( HDC hdc, INT dx, INT dy, const RECT *rc,
64 const RECT *clipRect, HRGN hrgnUpdate, LPRECT rcUpdate )
66 RECT rect, rClip, rSrc;
68 TRACE( "%04x %d,%d hrgnUpdate=%04x rcUpdate = %p\n", hdc, dx, dy, hrgnUpdate, rcUpdate );
69 if (clipRect) TRACE( "cliprc = (%d,%d,%d,%d)\n",
70 clipRect->left, clipRect->top, clipRect->right, clipRect->bottom );
71 if (rc) TRACE( "rc = (%d,%d,%d,%d)\n", rc->left, rc->top, rc->right, rc->bottom );
73 /* compute device clipping region (in device coordinates) */
76 else GetClipBox( hdc, &rect );
81 IntersectRect( &rClip, &rect, &rClip );
86 OffsetRect( &rSrc, -dx, -dy );
87 IntersectRect( &rSrc, &rSrc, &rect );
89 if (!IsRectEmpty(&rSrc))
92 if (!BitBlt( hdc, rSrc.left + dx, rSrc.top + dy,
93 rSrc.right - rSrc.left, rSrc.bottom - rSrc.top,
94 hdc, rSrc.left, rSrc.top, SRCCOPY))
98 /* compute update areas */
100 if (hrgnUpdate || rcUpdate)
102 HRGN hrgn = hrgnUpdate, hrgn2;
105 /* map everything to device coordinates */
106 pt.x = rect.left + dx;
107 pt.y = rect.top + dy;
108 LPtoDP( hdc, &pt, 1 );
109 LPtoDP( hdc, (LPPOINT)&rect, 2 );
110 LPtoDP( hdc, (LPPOINT)&rClip, 2 );
111 dx = pt.x - rect.left;
112 dy = pt.y - rect.top;
114 hrgn2 = CreateRectRgnIndirect( &rect );
115 if (hrgn) SetRectRgn( hrgn, rClip.left, rClip.top, rClip.right, rClip.bottom );
116 else hrgn = CreateRectRgn( rClip.left, rClip.top, rClip.right, rClip.bottom );
117 CombineRgn( hrgn, hrgn, hrgn2, RGN_AND );
118 OffsetRgn( hrgn2, dx, dy );
119 CombineRgn( hrgn, hrgn, hrgn2, RGN_DIFF );
123 GetRgnBox( hrgn, rcUpdate );
125 /* Put the rcUpdate in logical coordinate */
126 DPtoLP( hdc, (LPPOINT)rcUpdate, 2 );
128 if (!hrgnUpdate) DeleteObject( hrgn );
129 DeleteObject( hrgn2 );
135 /*************************************************************************
136 * ScrollWindowEx (X11DRV.@)
138 INT X11DRV_ScrollWindowEx( HWND hwnd, INT dx, INT dy,
139 const RECT *rect, const RECT *clipRect,
140 HRGN hrgnUpdate, LPRECT rcUpdate, UINT flags )
142 INT retVal = NULLREGION;
143 BOOL bCaret = FALSE, bOwnRgn = TRUE;
145 WND* wnd = WIN_FindWndPtr( hwnd );
147 if (!wnd) return ERROR;
148 if (!WIN_IsWindowDrawable( wnd, TRUE ))
150 WIN_ReleaseWndPtr( wnd );
153 hwnd = wnd->hwndSelf; /* make it a full handle */
154 WIN_ReleaseWndPtr( wnd );
156 GetClientRect(hwnd, &rc);
157 if (rect) IntersectRect(&rc, &rc, rect);
159 if (clipRect) IntersectRect(&cliprc,&rc,clipRect);
162 if (!IsRectEmpty(&cliprc) && (dx || dy))
165 BOOL bUpdate = (rcUpdate || hrgnUpdate || flags & (SW_INVALIDATE | SW_ERASE));
166 HRGN hrgnClip = CreateRectRgnIndirect(&cliprc);
170 TRACE( "%04x, %d,%d hrgnUpdate=%04x rcUpdate = %p rc=(%d,%d-%d,%d) %04x\n",
171 hwnd, dx, dy, hrgnUpdate, rcUpdate,
172 rc.left, rc.top, rc.right, rc.bottom, flags );
173 if (clipRect) TRACE( "cliprc = (%d,%d,%d,%d)\n",
174 clipRect->left, clipRect->top,
175 clipRect->right, clipRect->bottom );
178 bCaret = fix_caret(hwnd, &caretrc, flags);
180 if( hrgnUpdate ) bOwnRgn = FALSE;
181 else if( bUpdate ) hrgnUpdate = CreateRectRgn( 0, 0, 0, 0 );
183 hDC = GetDCEx( hwnd, 0, DCX_CACHE | DCX_USESTYLE );
186 HRGN hrgn = CreateRectRgn( 0, 0, 0, 0 );
187 X11DRV_StartGraphicsExposures( hDC );
188 X11DRV_ScrollDC( hDC, dx, dy, &rc, &cliprc, hrgnUpdate, rcUpdate );
189 X11DRV_EndGraphicsExposures( hDC, hrgn );
190 ReleaseDC( hwnd, hDC );
191 if (bUpdate) CombineRgn( hrgnUpdate, hrgnUpdate, hrgn, RGN_OR );
192 else RedrawWindow( hwnd, NULL, hrgn, RDW_INVALIDATE | RDW_ERASE );
193 DeleteObject( hrgn );
196 /* Take into account the fact that some damages may have occured during the scroll */
197 hrgnTemp = CreateRectRgn( 0, 0, 0, 0 );
198 if (GetUpdateRgn( hwnd, hrgnTemp, FALSE ) != NULLREGION)
200 OffsetRgn( hrgnTemp, dx, dy );
201 CombineRgn( hrgnTemp, hrgnTemp, hrgnClip, RGN_AND );
202 RedrawWindow( hwnd, NULL, hrgnTemp, RDW_INVALIDATE | RDW_ERASE );
204 DeleteObject( hrgnTemp );
206 if( flags & SW_SCROLLCHILDREN )
208 HWND *list = WIN_ListChildren( hwnd );
214 for (i = 0; list[i]; i++)
216 GetWindowRect( list[i], &r );
217 MapWindowPoints( 0, hwnd, (POINT *)&r, 2 );
218 if (!rect || IntersectRect(&dummy, &r, &rc))
219 SetWindowPos( list[i], 0, r.left + dx, r.top + dy, 0, 0,
220 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE |
221 SWP_NOREDRAW | SWP_DEFERERASE );
223 HeapFree( GetProcessHeap(), 0, list );
227 if( flags & (SW_INVALIDATE | SW_ERASE) )
228 RedrawWindow( hwnd, NULL, hrgnUpdate, RDW_INVALIDATE | RDW_ERASE |
229 ((flags & SW_ERASE) ? RDW_ERASENOW : 0) |
230 ((flags & SW_SCROLLCHILDREN) ? RDW_ALLCHILDREN : 0 ) );
234 SetCaretPos( caretrc.left + dx, caretrc.top + dy );
238 if( bOwnRgn && hrgnUpdate ) DeleteObject( hrgnUpdate );
239 DeleteObject( hrgnClip );