2 * Window painting functions
4 * Copyright 1993, 1994, 1995, 2001, 2004 Alexandre Julliard
5 * Copyright 1999 Alex Korobka
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "wine/port.h"
29 #define WIN32_NO_STATUS
34 #include "wine/server.h"
36 #include "user_private.h"
37 #include "wine/debug.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(win
);
42 /***********************************************************************
45 static void dump_rdw_flags(UINT flags
)
48 if (flags
& RDW_INVALIDATE
) TRACE(" RDW_INVALIDATE");
49 if (flags
& RDW_INTERNALPAINT
) TRACE(" RDW_INTERNALPAINT");
50 if (flags
& RDW_ERASE
) TRACE(" RDW_ERASE");
51 if (flags
& RDW_VALIDATE
) TRACE(" RDW_VALIDATE");
52 if (flags
& RDW_NOINTERNALPAINT
) TRACE(" RDW_NOINTERNALPAINT");
53 if (flags
& RDW_NOERASE
) TRACE(" RDW_NOERASE");
54 if (flags
& RDW_NOCHILDREN
) TRACE(" RDW_NOCHILDREN");
55 if (flags
& RDW_ALLCHILDREN
) TRACE(" RDW_ALLCHILDREN");
56 if (flags
& RDW_UPDATENOW
) TRACE(" RDW_UPDATENOW");
57 if (flags
& RDW_ERASENOW
) TRACE(" RDW_ERASENOW");
58 if (flags
& RDW_FRAME
) TRACE(" RDW_FRAME");
59 if (flags
& RDW_NOFRAME
) TRACE(" RDW_NOFRAME");
66 RDW_NOINTERNALPAINT | \
75 if (flags
& ~RDW_FLAGS
) TRACE(" %04x", flags
& ~RDW_FLAGS
);
81 /***********************************************************************
84 * Return update region (in screen coordinates) for a window.
86 static HRGN
get_update_region( HWND hwnd
, UINT
*flags
, HWND
*child
)
95 if (!(data
= HeapAlloc( GetProcessHeap(), 0, sizeof(*data
) + size
- 1 )))
97 SetLastError( ERROR_OUTOFMEMORY
);
101 SERVER_START_REQ( get_update_region
)
104 req
->from_child
= child
? *child
: 0;
106 wine_server_set_reply( req
, data
->Buffer
, size
);
107 if (!(status
= wine_server_call( req
)))
109 size_t reply_size
= wine_server_reply_size( reply
);
110 data
->rdh
.dwSize
= sizeof(data
->rdh
);
111 data
->rdh
.iType
= RDH_RECTANGLES
;
112 data
->rdh
.nCount
= reply_size
/ sizeof(RECT
);
113 data
->rdh
.nRgnSize
= reply_size
;
114 hrgn
= ExtCreateRegion( NULL
, size
, data
);
115 if (child
) *child
= reply
->child
;
116 *flags
= reply
->flags
;
118 else size
= reply
->total_size
;
121 HeapFree( GetProcessHeap(), 0, data
);
122 } while (status
== STATUS_BUFFER_OVERFLOW
);
124 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
129 /***********************************************************************
132 * Get only the update flags, not the update region.
134 static BOOL
get_update_flags( HWND hwnd
, HWND
*child
, UINT
*flags
)
138 SERVER_START_REQ( get_update_region
)
141 req
->from_child
= child
? *child
: 0;
142 req
->flags
= *flags
| UPDATE_NOREGION
;
143 if ((ret
= !wine_server_call_err( req
)))
145 if (child
) *child
= reply
->child
;
146 *flags
= reply
->flags
;
154 /***********************************************************************
155 * redraw_window_rects
157 * Redraw part of a window.
159 static BOOL
redraw_window_rects( HWND hwnd
, UINT flags
, const RECT
*rects
, UINT count
)
163 if (!(flags
& (RDW_INVALIDATE
|RDW_VALIDATE
|RDW_INTERNALPAINT
|RDW_NOINTERNALPAINT
)))
164 return TRUE
; /* nothing to do */
166 SERVER_START_REQ( redraw_window
)
170 wine_server_add_data( req
, rects
, count
* sizeof(RECT
) );
171 ret
= !wine_server_call_err( req
);
178 /***********************************************************************
181 * Send a WM_NCPAINT message if needed, and return the resulting update region (in screen coords).
182 * Helper for erase_now and BeginPaint.
184 static HRGN
send_ncpaint( HWND hwnd
, HWND
*child
, UINT
*flags
)
186 HRGN whole_rgn
= get_update_region( hwnd
, flags
, child
);
189 if (child
) hwnd
= *child
;
196 /* check if update rgn overlaps with nonclient area */
197 type
= GetRgnBox( whole_rgn
, &update
);
198 GetClientRect( hwnd
, &client
);
199 MapWindowPoints( hwnd
, 0, (POINT
*)&client
, 2 );
201 if ((*flags
& UPDATE_NONCLIENT
) ||
202 update
.left
< client
.left
|| update
.top
< client
.top
||
203 update
.right
> client
.right
|| update
.bottom
> client
.bottom
)
205 client_rgn
= CreateRectRgnIndirect( &client
);
206 CombineRgn( client_rgn
, client_rgn
, whole_rgn
, RGN_AND
);
208 /* check if update rgn contains complete nonclient area */
209 if (type
== SIMPLEREGION
)
212 GetWindowRect( hwnd
, &window
);
213 if (EqualRect( &window
, &update
))
215 DeleteObject( whole_rgn
);
222 client_rgn
= whole_rgn
;
226 if (whole_rgn
) /* NOTE: WM_NCPAINT allows wParam to be 1 */
228 if (*flags
& UPDATE_NONCLIENT
) SendMessageW( hwnd
, WM_NCPAINT
, (WPARAM
)whole_rgn
, 0 );
229 if (whole_rgn
> (HRGN
)1) DeleteObject( whole_rgn
);
236 /***********************************************************************
239 * Send a WM_ERASEBKGND message if needed, and optionally return the DC for painting.
240 * If a DC is requested, the region is selected into it. In all cases the region is deleted.
241 * Helper for erase_now and BeginPaint.
243 static BOOL
send_erase( HWND hwnd
, UINT flags
, HRGN client_rgn
,
244 RECT
*clip_rect
, HDC
*hdc_ret
)
246 BOOL need_erase
= (flags
& UPDATE_DELAYED_ERASE
) != 0;
250 if (!clip_rect
) clip_rect
= &dummy
;
251 if (hdc_ret
|| (flags
& UPDATE_ERASE
))
253 UINT dcx_flags
= DCX_INTERSECTRGN
| DCX_USESTYLE
;
254 if (IsIconic(hwnd
)) dcx_flags
|= DCX_WINDOW
;
256 if ((hdc
= GetDCEx( hwnd
, client_rgn
, dcx_flags
)))
258 INT type
= GetClipBox( hdc
, clip_rect
);
260 if (flags
& UPDATE_ERASE
)
262 /* don't erase if the clip box is empty */
263 if (type
!= NULLREGION
)
264 need_erase
= !SendMessageW( hwnd
, WM_ERASEBKGND
, (WPARAM
)hdc
, 0 );
266 if (!hdc_ret
) USER_Driver
->pReleaseDC( hwnd
, hdc
, TRUE
);
269 if (hdc_ret
) *hdc_ret
= hdc
;
271 if (!hdc
) DeleteObject( client_rgn
);
276 /***********************************************************************
279 * Implementation of RDW_ERASENOW behavior.
281 void erase_now( HWND hwnd
, UINT rdw_flags
)
285 BOOL need_erase
= FALSE
;
287 /* loop while we find a child to repaint */
290 UINT flags
= UPDATE_NONCLIENT
| UPDATE_ERASE
;
292 if (rdw_flags
& RDW_NOCHILDREN
) flags
|= UPDATE_NOCHILDREN
;
293 else if (rdw_flags
& RDW_ALLCHILDREN
) flags
|= UPDATE_ALLCHILDREN
;
294 if (need_erase
) flags
|= UPDATE_DELAYED_ERASE
;
296 if (!(hrgn
= send_ncpaint( hwnd
, &child
, &flags
))) break;
297 need_erase
= send_erase( child
, flags
, hrgn
, NULL
, NULL
);
299 if (!flags
) break; /* nothing more to do */
300 if ((rdw_flags
& RDW_NOCHILDREN
) && !need_erase
) break;
305 /***********************************************************************
308 * Implementation of RDW_UPDATENOW behavior.
310 * FIXME: Windows uses WM_SYNCPAINT to cut down the number of intertask
311 * SendMessage() calls. This is a comment inside DefWindowProc() source
314 * This message avoids lots of inter-app message traffic
315 * by switching to the other task and continuing the
319 * LOWORD(lParam) = hrgnClip
320 * HIWORD(lParam) = hwndSkip (not used; always NULL)
323 static void update_now( HWND hwnd
, UINT rdw_flags
)
327 /* desktop window never gets WM_PAINT, only WM_ERASEBKGND */
328 if (hwnd
== GetDesktopWindow()) erase_now( hwnd
, rdw_flags
| RDW_NOCHILDREN
);
330 /* loop while we find a child to repaint */
333 UINT flags
= UPDATE_PAINT
| UPDATE_INTERNALPAINT
;
335 if (rdw_flags
& RDW_NOCHILDREN
) flags
|= UPDATE_NOCHILDREN
;
336 else if (rdw_flags
& RDW_ALLCHILDREN
) flags
|= UPDATE_ALLCHILDREN
;
338 if (!get_update_flags( hwnd
, &child
, &flags
)) break;
339 if (!flags
) break; /* nothing more to do */
341 SendMessageW( child
, WM_PAINT
, 0, 0 );
342 if (rdw_flags
& RDW_NOCHILDREN
) break;
347 /*************************************************************************
350 * Helper for ScrollWindowEx:
351 * If the return value is 0, no special caret handling is necessary.
352 * Otherwise the return value is the handle of the window that owns the
353 * caret. Its caret needs to be hidden during the scroll operation and
354 * moved to new_caret_pos if move_caret is TRUE.
356 static HWND
fix_caret(HWND hWnd
, const RECT
*scroll_rect
, INT dx
, INT dy
,
357 UINT flags
, LPBOOL move_caret
, LPPOINT new_caret_pos
)
360 RECT rect
, mapped_rcCaret
;
361 BOOL hide_caret
= FALSE
;
363 if (!GetGUIThreadInfo( GetCurrentThreadId(), &info
)) return 0;
364 if (!info
.hwndCaret
) return 0;
366 if (info
.hwndCaret
== hWnd
)
368 /* Move the caret if it's (partially) in the source rectangle */
369 if (IntersectRect(&rect
, scroll_rect
, &info
.rcCaret
))
373 new_caret_pos
->x
= info
.rcCaret
.left
+ dx
;
374 new_caret_pos
->y
= info
.rcCaret
.top
+ dy
;
380 /* Hide the caret if it's in the destination rectangle */
382 OffsetRect(&rect
, dx
, dy
);
383 hide_caret
= IntersectRect(&rect
, &rect
, &info
.rcCaret
);
388 if ((flags
& SW_SCROLLCHILDREN
) && IsChild(hWnd
, info
.hwndCaret
))
392 /* Hide the caret if it's in the source or in the destination
394 mapped_rcCaret
= info
.rcCaret
;
395 MapWindowPoints(info
.hwndCaret
, hWnd
, (LPPOINT
)&mapped_rcCaret
, 2);
397 if (IntersectRect(&rect
, scroll_rect
, &mapped_rcCaret
))
404 OffsetRect(&rect
, dx
, dy
);
405 hide_caret
= IntersectRect(&rect
, &rect
, &mapped_rcCaret
);
414 HideCaret(info
.hwndCaret
);
415 return info
.hwndCaret
;
422 /***********************************************************************
423 * BeginPaint (USER32.@)
425 HDC WINAPI
BeginPaint( HWND hwnd
, PAINTSTRUCT
*lps
)
429 UINT flags
= UPDATE_NONCLIENT
| UPDATE_ERASE
| UPDATE_PAINT
| UPDATE_INTERNALPAINT
| UPDATE_NOCHILDREN
;
433 if (!(full_handle
= WIN_IsCurrentThread( hwnd
)))
436 FIXME( "window %p belongs to other thread\n", hwnd
);
443 if (!(hrgn
= send_ncpaint( hwnd
, NULL
, &flags
))) return 0;
445 lps
->fErase
= send_erase( hwnd
, flags
, hrgn
, &lps
->rcPaint
, &lps
->hdc
);
447 TRACE("hdc = %p box = (%d,%d - %d,%d), fErase = %d\n",
448 lps
->hdc
, lps
->rcPaint
.left
, lps
->rcPaint
.top
, lps
->rcPaint
.right
, lps
->rcPaint
.bottom
,
455 /***********************************************************************
456 * EndPaint (USER32.@)
458 BOOL WINAPI
EndPaint( HWND hwnd
, const PAINTSTRUCT
*lps
)
460 if (!lps
) return FALSE
;
461 USER_Driver
->pReleaseDC( hwnd
, lps
->hdc
, TRUE
);
467 /***********************************************************************
470 HDC WINAPI
GetDCEx( HWND hwnd
, HRGN hrgnClip
, DWORD flags
)
472 if (!hwnd
) hwnd
= GetDesktopWindow();
473 else hwnd
= WIN_GetFullHandle( hwnd
);
475 return USER_Driver
->pGetDCEx( hwnd
, hrgnClip
, flags
);
479 /***********************************************************************
482 * Get a device context.
485 * Success: Handle to the device context
488 HDC WINAPI
GetDC( HWND hwnd
)
490 if (!hwnd
) return GetDCEx( 0, 0, DCX_CACHE
| DCX_WINDOW
);
491 return GetDCEx( hwnd
, 0, DCX_USESTYLE
);
495 /***********************************************************************
496 * GetWindowDC (USER32.@)
498 HDC WINAPI
GetWindowDC( HWND hwnd
)
500 return GetDCEx( hwnd
, 0, DCX_USESTYLE
| DCX_WINDOW
);
504 /***********************************************************************
505 * ReleaseDC (USER32.@)
507 * Release a device context.
510 * Success: Non-zero. Resources used by hdc are released.
513 INT WINAPI
ReleaseDC( HWND hwnd
, HDC hdc
)
515 return USER_Driver
->pReleaseDC( hwnd
, hdc
, FALSE
);
519 /**********************************************************************
520 * WindowFromDC (USER32.@)
522 HWND WINAPI
WindowFromDC( HDC hDC
)
524 return USER_Driver
->pWindowFromDC( hDC
);
528 /***********************************************************************
529 * LockWindowUpdate (USER32.@)
531 * Enables or disables painting in the chosen window.
534 * hwnd [I] handle to a window.
537 * If successful, returns nonzero value. Otherwise,
541 * You can lock only one window at a time.
543 BOOL WINAPI
LockWindowUpdate( HWND hwnd
)
545 static HWND lockedWnd
;
547 /* This function is fully implemented by the following patch:
549 * http://www.winehq.org/hypermail/wine-patches/2004/01/0142.html
551 * but in order to work properly, it needs the ability to invalidate
552 * DCEs in other processes when the lock window is changed, which
553 * isn't possible yet.
557 FIXME("(%p), partial stub!\n",hwnd
);
564 /* Unlock lockedWnd */
565 /* FIXME: Do something */
569 /* Attempted to lock a second window */
570 /* Return FALSE and do nothing */
581 /***********************************************************************
582 * RedrawWindow (USER32.@)
584 BOOL WINAPI
RedrawWindow( HWND hwnd
, const RECT
*rect
, HRGN hrgn
, UINT flags
)
586 static const RECT empty
;
589 if (!hwnd
) hwnd
= GetDesktopWindow();
596 GetRgnBox( hrgn
, &r
);
597 TRACE( "%p region %p box %s ", hwnd
, hrgn
, wine_dbgstr_rect(&r
) );
600 TRACE( "%p rect %s ", hwnd
, wine_dbgstr_rect(rect
) );
602 TRACE( "%p whole window ", hwnd
);
604 dump_rdw_flags(flags
);
607 /* process pending expose events before painting */
608 if (flags
& RDW_UPDATENOW
) USER_Driver
->pMsgWaitForMultipleObjectsEx( 0, NULL
, 0, QS_PAINT
, 0 );
612 if (IsRectEmpty( rect
)) rect
= &empty
;
613 ret
= redraw_window_rects( hwnd
, flags
, rect
, 1 );
617 ret
= redraw_window_rects( hwnd
, flags
, NULL
, 0 );
619 else /* need to build a list of the region rectangles */
622 RGNDATA
*data
= NULL
;
624 if (!(size
= GetRegionData( hrgn
, 0, NULL
))) return FALSE
;
625 if (!(data
= HeapAlloc( GetProcessHeap(), 0, size
))) return FALSE
;
626 GetRegionData( hrgn
, size
, data
);
627 if (!data
->rdh
.nCount
) /* empty region -> use a single all-zero rectangle */
628 ret
= redraw_window_rects( hwnd
, flags
, &empty
, 1 );
630 ret
= redraw_window_rects( hwnd
, flags
, (const RECT
*)data
->Buffer
, data
->rdh
.nCount
);
631 HeapFree( GetProcessHeap(), 0, data
);
634 if (flags
& RDW_UPDATENOW
) update_now( hwnd
, flags
);
635 else if (flags
& RDW_ERASENOW
) erase_now( hwnd
, flags
);
641 /***********************************************************************
642 * UpdateWindow (USER32.@)
644 BOOL WINAPI
UpdateWindow( HWND hwnd
)
646 return RedrawWindow( hwnd
, NULL
, 0, RDW_UPDATENOW
| RDW_ALLCHILDREN
);
650 /***********************************************************************
651 * InvalidateRgn (USER32.@)
653 BOOL WINAPI
InvalidateRgn( HWND hwnd
, HRGN hrgn
, BOOL erase
)
657 SetLastError( ERROR_INVALID_WINDOW_HANDLE
);
661 return RedrawWindow(hwnd
, NULL
, hrgn
, RDW_INVALIDATE
| (erase
? RDW_ERASE
: 0) );
665 /***********************************************************************
666 * InvalidateRect (USER32.@)
668 * MSDN: if hwnd parameter is NULL, InvalidateRect invalidates and redraws
669 * all windows and sends WM_ERASEBKGND and WM_NCPAINT.
671 BOOL WINAPI
InvalidateRect( HWND hwnd
, const RECT
*rect
, BOOL erase
)
673 UINT flags
= RDW_INVALIDATE
| (erase
? RDW_ERASE
: 0);
677 flags
= RDW_ALLCHILDREN
| RDW_INVALIDATE
| RDW_FRAME
| RDW_ERASE
| RDW_ERASENOW
;
681 return RedrawWindow( hwnd
, rect
, 0, flags
);
685 /***********************************************************************
686 * ValidateRgn (USER32.@)
688 BOOL WINAPI
ValidateRgn( HWND hwnd
, HRGN hrgn
)
692 SetLastError( ERROR_INVALID_WINDOW_HANDLE
);
696 return RedrawWindow( hwnd
, NULL
, hrgn
, RDW_VALIDATE
);
700 /***********************************************************************
701 * ValidateRect (USER32.@)
703 * MSDN: if hwnd parameter is NULL, ValidateRect invalidates and redraws
704 * all windows and sends WM_ERASEBKGND and WM_NCPAINT.
706 BOOL WINAPI
ValidateRect( HWND hwnd
, const RECT
*rect
)
708 UINT flags
= RDW_VALIDATE
;
712 flags
= RDW_ALLCHILDREN
| RDW_INVALIDATE
| RDW_FRAME
| RDW_ERASE
| RDW_ERASENOW
;
716 return RedrawWindow( hwnd
, rect
, 0, flags
);
720 /***********************************************************************
721 * GetUpdateRgn (USER32.@)
723 INT WINAPI
GetUpdateRgn( HWND hwnd
, HRGN hrgn
, BOOL erase
)
726 UINT flags
= UPDATE_NOCHILDREN
;
729 if (erase
) flags
|= UPDATE_NONCLIENT
| UPDATE_ERASE
;
731 if ((update_rgn
= send_ncpaint( hwnd
, NULL
, &flags
)))
735 retval
= CombineRgn( hrgn
, update_rgn
, 0, RGN_COPY
);
736 if (send_erase( hwnd
, flags
, update_rgn
, NULL
, NULL
))
738 flags
= UPDATE_DELAYED_ERASE
;
739 get_update_flags( hwnd
, NULL
, &flags
);
741 /* map region to client coordinates */
742 offset
.x
= offset
.y
= 0;
743 ScreenToClient( hwnd
, &offset
);
744 OffsetRgn( hrgn
, offset
.x
, offset
.y
);
750 /***********************************************************************
751 * GetUpdateRect (USER32.@)
753 BOOL WINAPI
GetUpdateRect( HWND hwnd
, LPRECT rect
, BOOL erase
)
755 UINT flags
= UPDATE_NOCHILDREN
;
759 if (erase
) flags
|= UPDATE_NONCLIENT
| UPDATE_ERASE
;
761 if (!(update_rgn
= send_ncpaint( hwnd
, NULL
, &flags
))) return FALSE
;
765 if (GetRgnBox( update_rgn
, rect
) != NULLREGION
)
767 HDC hdc
= GetDCEx( hwnd
, 0, DCX_USESTYLE
);
768 MapWindowPoints( 0, hwnd
, (LPPOINT
)rect
, 2 );
769 DPtoLP( hdc
, (LPPOINT
)rect
, 2 );
770 ReleaseDC( hwnd
, hdc
);
773 need_erase
= send_erase( hwnd
, flags
, update_rgn
, NULL
, NULL
);
775 /* check if we still have an update region */
776 flags
= UPDATE_PAINT
| UPDATE_NOCHILDREN
;
777 if (need_erase
) flags
|= UPDATE_DELAYED_ERASE
;
778 return (get_update_flags( hwnd
, NULL
, &flags
) && (flags
& UPDATE_PAINT
));
782 /***********************************************************************
783 * ExcludeUpdateRgn (USER32.@)
785 INT WINAPI
ExcludeUpdateRgn( HDC hdc
, HWND hwnd
)
787 HRGN update_rgn
= CreateRectRgn( 0, 0, 0, 0 );
788 INT ret
= GetUpdateRgn( hwnd
, update_rgn
, FALSE
);
794 GetDCOrgEx( hdc
, &pt
);
795 MapWindowPoints( 0, hwnd
, &pt
, 1 );
796 OffsetRgn( update_rgn
, -pt
.x
, -pt
.y
);
797 ret
= ExtSelectClipRgn( hdc
, update_rgn
, RGN_DIFF
);
798 DeleteObject( update_rgn
);
804 /*************************************************************************
805 * ScrollWindowEx (USER32.@)
807 * Note: contrary to what the doc says, pixels that are scrolled from the
808 * outside of clipRect to the inside are NOT painted.
811 INT WINAPI
ScrollWindowEx( HWND hwnd
, INT dx
, INT dy
,
812 const RECT
*rect
, const RECT
*clipRect
,
813 HRGN hrgnUpdate
, LPRECT rcUpdate
,
816 INT retVal
= NULLREGION
;
818 BOOL bUpdate
= (rcUpdate
|| hrgnUpdate
|| flags
& (SW_INVALIDATE
| SW_ERASE
));
824 HWND hwndCaret
= NULL
;
825 BOOL moveCaret
= FALSE
;
828 TRACE( "%p, %d,%d hrgnUpdate=%p rcUpdate = %p %s %04x\n",
829 hwnd
, dx
, dy
, hrgnUpdate
, rcUpdate
, wine_dbgstr_rect(rect
), flags
);
830 TRACE( "clipRect = %s\n", wine_dbgstr_rect(clipRect
));
831 if( flags
& ~( SW_SCROLLCHILDREN
| SW_INVALIDATE
| SW_ERASE
))
832 FIXME("some flags (%04x) are unhandled\n", flags
);
834 rdw_flags
= (flags
& SW_ERASE
) && (flags
& SW_INVALIDATE
) ?
835 RDW_INVALIDATE
| RDW_ERASE
: RDW_INVALIDATE
;
837 if (!WIN_IsWindowDrawable( hwnd
, TRUE
)) return ERROR
;
838 hwnd
= WIN_GetFullHandle( hwnd
);
840 GetClientRect(hwnd
, &rc
);
841 if (rect
) IntersectRect(&rc
, &rc
, rect
);
843 if (clipRect
) IntersectRect(&cliprc
,&rc
,clipRect
);
846 if( hrgnUpdate
) bOwnRgn
= FALSE
;
847 else if( bUpdate
) hrgnUpdate
= CreateRectRgn( 0, 0, 0, 0 );
849 newCaretPos
.x
= newCaretPos
.y
= 0;
851 if( !IsRectEmpty(&cliprc
) && (dx
|| dy
)) {
852 DWORD dcxflags
= DCX_CACHE
;
853 DWORD style
= GetWindowLongW( hwnd
, GWL_STYLE
);
855 hwndCaret
= fix_caret(hwnd
, &rc
, dx
, dy
, flags
, &moveCaret
, &newCaretPos
);
857 if( style
& WS_CLIPSIBLINGS
) dcxflags
|= DCX_CLIPSIBLINGS
;
858 if( GetClassLongW( hwnd
, GCL_STYLE
) & CS_PARENTDC
)
859 dcxflags
|= DCX_PARENTCLIP
;
860 if( !(flags
& SW_SCROLLCHILDREN
) && (style
& WS_CLIPCHILDREN
))
861 dcxflags
|= DCX_CLIPCHILDREN
;
862 hDC
= GetDCEx( hwnd
, 0, dcxflags
);
865 ScrollDC( hDC
, dx
, dy
, &rc
, &cliprc
, hrgnUpdate
, rcUpdate
);
867 ReleaseDC( hwnd
, hDC
);
870 RedrawWindow( hwnd
, NULL
, hrgnUpdate
, rdw_flags
);
873 /* If the windows has an update region, this must be
874 * scrolled as well. Keep a copy in hrgnWinupd
875 * to be added to hrngUpdate at the end. */
876 hrgnTemp
= CreateRectRgn( 0, 0, 0, 0 );
877 retVal
= GetUpdateRgn( hwnd
, hrgnTemp
, FALSE
);
878 if (retVal
!= NULLREGION
)
880 HRGN hrgnClip
= CreateRectRgnIndirect(&cliprc
);
882 hrgnWinupd
= CreateRectRgn( 0, 0, 0, 0);
883 CombineRgn( hrgnWinupd
, hrgnTemp
, 0, RGN_COPY
);
885 OffsetRgn( hrgnTemp
, dx
, dy
);
886 CombineRgn( hrgnTemp
, hrgnTemp
, hrgnClip
, RGN_AND
);
888 CombineRgn( hrgnWinupd
, hrgnWinupd
, hrgnTemp
, RGN_OR
);
889 RedrawWindow( hwnd
, NULL
, hrgnTemp
, rdw_flags
);
891 /* Catch the case where the scolling amount exceeds the size of the
892 * original window. This generated a second update area that is the
893 * location where the original scrolled content would end up.
894 * This second region is not returned by the ScrollDC and sets
895 * ScrollWindowEx apart from just a ScrollDC.
897 * This has been verified with testing on windows.
899 if (abs(dx
) > abs(rc
.right
- rc
.left
) ||
900 abs(dy
) > abs(rc
.bottom
- rc
.top
))
902 SetRectRgn( hrgnTemp
, rc
.left
+ dx
, rc
.top
+ dy
, rc
.right
+dx
, rc
.bottom
+ dy
);
903 CombineRgn( hrgnTemp
, hrgnTemp
, hrgnClip
, RGN_AND
);
904 CombineRgn( hrgnUpdate
, hrgnUpdate
, hrgnTemp
, RGN_OR
);
907 CombineRgn( hrgnWinupd
, hrgnWinupd
, hrgnTemp
, RGN_OR
);
909 DeleteObject( hrgnClip
);
911 DeleteObject( hrgnTemp
);
913 /* nothing was scrolled */
915 SetRectRgn( hrgnUpdate
, 0, 0, 0, 0 );
916 SetRectEmpty( rcUpdate
);
919 if( flags
& SW_SCROLLCHILDREN
)
921 HWND
*list
= WIN_ListChildren( hwnd
);
926 for (i
= 0; list
[i
]; i
++)
928 GetWindowRect( list
[i
], &r
);
929 MapWindowPoints( 0, hwnd
, (POINT
*)&r
, 2 );
930 if (!rect
|| IntersectRect(&dummy
, &r
, rect
))
931 SetWindowPos( list
[i
], 0, r
.left
+ dx
, r
.top
+ dy
, 0, 0,
932 SWP_NOZORDER
| SWP_NOSIZE
| SWP_NOACTIVATE
|
933 SWP_NOREDRAW
| SWP_DEFERERASE
);
935 HeapFree( GetProcessHeap(), 0, list
);
939 if( flags
& (SW_INVALIDATE
| SW_ERASE
) )
940 RedrawWindow( hwnd
, NULL
, hrgnUpdate
, rdw_flags
|
941 ((flags
& SW_SCROLLCHILDREN
) ? RDW_ALLCHILDREN
: 0 ) );
944 CombineRgn( hrgnUpdate
, hrgnUpdate
, hrgnWinupd
, RGN_OR
);
945 DeleteObject( hrgnWinupd
);
949 if ( moveCaret
) SetCaretPos( newCaretPos
.x
, newCaretPos
.y
);
950 ShowCaret(hwndCaret
);
953 if( bOwnRgn
&& hrgnUpdate
) DeleteObject( hrgnUpdate
);
959 /*************************************************************************
960 * ScrollWindow (USER32.@)
963 BOOL WINAPI
ScrollWindow( HWND hwnd
, INT dx
, INT dy
,
964 const RECT
*rect
, const RECT
*clipRect
)
966 return (ERROR
!= ScrollWindowEx( hwnd
, dx
, dy
, rect
, clipRect
, 0, NULL
,
967 (rect
? 0 : SW_SCROLLCHILDREN
) |
968 SW_INVALIDATE
| SW_ERASE
));
972 /*************************************************************************
973 * ScrollDC (USER32.@)
975 * dx, dy, lprcScroll and lprcClip are all in logical coordinates (msdn is
976 * wrong) hrgnUpdate is returned in device coordinates with rcUpdate in
977 * logical coordinates.
979 BOOL WINAPI
ScrollDC( HDC hdc
, INT dx
, INT dy
, const RECT
*lprcScroll
,
980 const RECT
*lprcClip
, HRGN hrgnUpdate
, LPRECT lprcUpdate
)
983 return USER_Driver
->pScrollDC( hdc
, dx
, dy
, lprcScroll
, lprcClip
, hrgnUpdate
, lprcUpdate
);