Fixed Makefile up-to-date check to avoid relinking all the object
[wine/wine-kai.git] / windows / painting.c
blob9af95e279b39870f42f0d7705e7c85343902183c
1 /*
2 * Window painting functions
4 * Copyright 1993, 1994, 1995 Alexandre Julliard
6 * FIXME: Do not repaint full nonclient area all the time. Instead, compute
7 * intersection with hrgnUpdate (which should be moved from client to
8 * window coords as well, lookup 'the pain' comment in the winpos.c).
9 */
11 #include "win.h"
12 #include "queue.h"
13 #include "gdi.h"
14 #include "dce.h"
15 #include "heap.h"
16 #include "debug.h"
17 #include "wine/winuser16.h"
19 /* Last CTLCOLOR id */
20 #define CTLCOLOR_MAX CTLCOLOR_STATIC
22 /***********************************************************************
23 * WIN_UpdateNCArea
26 void WIN_UpdateNCArea(WND* wnd, BOOL bUpdate)
28 POINT16 pt = {0, 0};
29 HRGN hClip = 1;
31 TRACE(nonclient,"hwnd %04x, hrgnUpdate %04x\n",
32 wnd->hwndSelf, wnd->hrgnUpdate );
34 /* desktop window doesn't have nonclient area */
35 if(wnd == WIN_GetDesktop())
37 wnd->flags &= ~WIN_NEEDS_NCPAINT;
38 return;
41 if( wnd->hrgnUpdate > 1 )
43 ClientToScreen16(wnd->hwndSelf, &pt);
45 hClip = CreateRectRgn( 0, 0, 0, 0 );
46 if (!CombineRgn( hClip, wnd->hrgnUpdate, 0, RGN_COPY ))
48 DeleteObject(hClip);
49 hClip = 1;
51 else
52 OffsetRgn( hClip, pt.x, pt.y );
54 if (bUpdate)
56 /* exclude non-client area from update region */
57 HRGN hrgn = CreateRectRgn( 0, 0,
58 wnd->rectClient.right - wnd->rectClient.left,
59 wnd->rectClient.bottom - wnd->rectClient.top);
61 if (hrgn && (CombineRgn( wnd->hrgnUpdate, wnd->hrgnUpdate,
62 hrgn, RGN_AND) == NULLREGION))
64 DeleteObject( wnd->hrgnUpdate );
65 wnd->hrgnUpdate = 1;
68 DeleteObject( hrgn );
72 wnd->flags &= ~WIN_NEEDS_NCPAINT;
74 if ((wnd->hwndSelf == GetActiveWindow()) &&
75 !(wnd->flags & WIN_NCACTIVATED))
77 wnd->flags |= WIN_NCACTIVATED;
78 if( hClip > 1) DeleteObject( hClip );
79 hClip = 1;
82 if (hClip) SendMessage16( wnd->hwndSelf, WM_NCPAINT, hClip, 0L );
84 if (hClip > 1) DeleteObject( hClip );
88 /***********************************************************************
89 * BeginPaint16 (USER.39)
91 HDC16 WINAPI BeginPaint16( HWND16 hwnd, LPPAINTSTRUCT16 lps )
93 BOOL bIcon;
94 HRGN hrgnUpdate;
95 WND *wndPtr = WIN_FindWndPtr( hwnd );
96 if (!wndPtr) return 0;
98 bIcon = (wndPtr->dwStyle & WS_MINIMIZE && wndPtr->class->hIcon);
100 wndPtr->flags &= ~WIN_NEEDS_BEGINPAINT;
102 if (wndPtr->flags & WIN_NEEDS_NCPAINT) WIN_UpdateNCArea( wndPtr, TRUE );
104 if (((hrgnUpdate = wndPtr->hrgnUpdate) != 0) ||
105 (wndPtr->flags & WIN_INTERNAL_PAINT))
106 QUEUE_DecPaintCount( wndPtr->hmemTaskQ );
108 wndPtr->hrgnUpdate = 0;
109 wndPtr->flags &= ~WIN_INTERNAL_PAINT;
111 HideCaret( hwnd );
113 TRACE(win,"hrgnUpdate = %04x, \n", hrgnUpdate);
115 /* When bIcon is TRUE hrgnUpdate is automatically in window coordinates
116 * (because rectClient == rectWindow for WS_MINIMIZE windows).
119 if (wndPtr->class->style & CS_PARENTDC)
121 /* Don't clip the output to the update region for CS_PARENTDC window */
122 if(hrgnUpdate > 1)
123 DeleteObject(hrgnUpdate);
124 lps->hdc = GetDCEx16( hwnd, 0, DCX_WINDOWPAINT | DCX_USESTYLE |
125 (bIcon ? DCX_WINDOW : 0) );
127 else
129 lps->hdc = GetDCEx16(hwnd, hrgnUpdate, DCX_INTERSECTRGN |
130 DCX_WINDOWPAINT | DCX_USESTYLE |
131 (bIcon ? DCX_WINDOW : 0) );
134 TRACE(win,"hdc = %04x\n", lps->hdc);
136 if (!lps->hdc)
138 WARN(win, "GetDCEx() failed in BeginPaint(), hwnd=%04x\n", hwnd);
139 return 0;
142 GetClipBox16( lps->hdc, &lps->rcPaint );
144 TRACE(win,"box = (%i,%i - %i,%i)\n", lps->rcPaint.left, lps->rcPaint.top,
145 lps->rcPaint.right, lps->rcPaint.bottom );
147 if (wndPtr->flags & WIN_NEEDS_ERASEBKGND)
149 wndPtr->flags &= ~WIN_NEEDS_ERASEBKGND;
150 lps->fErase = !SendMessage16(hwnd, (bIcon) ? WM_ICONERASEBKGND
151 : WM_ERASEBKGND,
152 (WPARAM16)lps->hdc, 0 );
154 else lps->fErase = TRUE;
156 return lps->hdc;
160 /***********************************************************************
161 * BeginPaint32 (USER32.10)
163 HDC WINAPI BeginPaint( HWND hwnd, PAINTSTRUCT *lps )
165 PAINTSTRUCT16 ps;
167 BeginPaint16( hwnd, &ps );
168 lps->hdc = (HDC)ps.hdc;
169 lps->fErase = ps.fErase;
170 lps->rcPaint.top = ps.rcPaint.top;
171 lps->rcPaint.left = ps.rcPaint.left;
172 lps->rcPaint.right = ps.rcPaint.right;
173 lps->rcPaint.bottom = ps.rcPaint.bottom;
174 lps->fRestore = ps.fRestore;
175 lps->fIncUpdate = ps.fIncUpdate;
176 return lps->hdc;
180 /***********************************************************************
181 * EndPaint16 (USER.40)
183 BOOL16 WINAPI EndPaint16( HWND16 hwnd, const PAINTSTRUCT16* lps )
185 ReleaseDC16( hwnd, lps->hdc );
186 ShowCaret( hwnd );
187 return TRUE;
191 /***********************************************************************
192 * EndPaint32 (USER32.176)
194 BOOL WINAPI EndPaint( HWND hwnd, const PAINTSTRUCT *lps )
196 ReleaseDC( hwnd, lps->hdc );
197 ShowCaret( hwnd );
198 return TRUE;
202 /***********************************************************************
203 * FillWindow (USER.324)
205 void WINAPI FillWindow16( HWND16 hwndParent, HWND16 hwnd, HDC16 hdc, HBRUSH16 hbrush )
207 RECT16 rect;
208 GetClientRect16( hwnd, &rect );
209 DPtoLP16( hdc, (LPPOINT16)&rect, 2 );
210 PaintRect16( hwndParent, hwnd, hdc, hbrush, &rect );
214 /***********************************************************************
215 * PAINT_GetControlBrush
217 static HBRUSH16 PAINT_GetControlBrush( HWND hParent, HWND hWnd, HDC16 hDC, UINT16 ctlType )
219 HBRUSH16 bkgBrush = (HBRUSH16)SendMessageA( hParent, WM_CTLCOLORMSGBOX + ctlType,
220 (WPARAM)hDC, (LPARAM)hWnd );
221 if( !IsGDIObject16(bkgBrush) )
222 bkgBrush = DEFWND_ControlColor( hDC, ctlType );
223 return bkgBrush;
227 /***********************************************************************
228 * PaintRect (USER.325)
230 void WINAPI PaintRect16( HWND16 hwndParent, HWND16 hwnd, HDC16 hdc,
231 HBRUSH16 hbrush, const RECT16 *rect)
233 if( hbrush <= CTLCOLOR_MAX )
235 if( hwndParent )
236 hbrush = PAINT_GetControlBrush( hwndParent, hwnd, hdc, (UINT16)hbrush );
237 else
238 return;
240 if( hbrush )
241 FillRect16( hdc, rect, hbrush );
245 /***********************************************************************
246 * GetControlBrush (USER.326)
248 HBRUSH16 WINAPI GetControlBrush16( HWND16 hwnd, HDC16 hdc, UINT16 ctlType )
250 WND* wndPtr = WIN_FindWndPtr( hwnd );
252 if((ctlType <= CTLCOLOR_MAX) && wndPtr )
254 WND* parent;
255 if( wndPtr->dwStyle & WS_POPUP ) parent = wndPtr->owner;
256 else parent = wndPtr->parent;
257 if( !parent ) parent = wndPtr;
258 return (HBRUSH16)PAINT_GetControlBrush( parent->hwndSelf, hwnd, hdc, ctlType );
260 return (HBRUSH16)0;
264 /***********************************************************************
265 * PAINT_RedrawWindow
267 * FIXME: Windows uses WM_SYNCPAINT to cut down the number of intertask
268 * SendMessage() calls. This is a comment inside DefWindowProc() source
269 * from 16-bit SDK:
271 * This message avoids lots of inter-app message traffic
272 * by switching to the other task and continuing the
273 * recursion there.
275 * wParam = flags
276 * LOWORD(lParam) = hrgnClip
277 * HIWORD(lParam) = hwndSkip (not used; always NULL)
279 * All in all, a prime candidate for a rewrite.
281 BOOL PAINT_RedrawWindow( HWND hwnd, const RECT *rectUpdate,
282 HRGN hrgnUpdate, UINT flags, UINT control )
284 BOOL bIcon;
285 HRGN hrgn;
286 RECT rectClient;
287 WND* wndPtr;
288 WND **list, **ppWnd;
290 if (!hwnd) hwnd = GetDesktopWindow();
291 if (!(wndPtr = WIN_FindWndPtr( hwnd ))) return FALSE;
292 if (!WIN_IsWindowDrawable( wndPtr, !(flags & RDW_FRAME) ) )
293 return TRUE; /* No redraw needed */
295 bIcon = (wndPtr->dwStyle & WS_MINIMIZE && wndPtr->class->hIcon);
296 if (rectUpdate)
298 TRACE(win, "%04x %d,%d-%d,%d %04x flags=%04x\n",
299 hwnd, rectUpdate->left, rectUpdate->top,
300 rectUpdate->right, rectUpdate->bottom, hrgnUpdate, flags );
302 else
304 TRACE(win, "%04x NULL %04x flags=%04x\n", hwnd, hrgnUpdate, flags);
307 GetClientRect( hwnd, &rectClient );
309 if (flags & RDW_INVALIDATE) /* Invalidate */
311 int rgnNotEmpty = COMPLEXREGION;
313 if (wndPtr->hrgnUpdate > 1) /* Is there already an update region? */
315 if ((hrgn = hrgnUpdate) == 0)
316 hrgn = CreateRectRgnIndirect( rectUpdate ? rectUpdate :
317 &rectClient );
318 rgnNotEmpty = CombineRgn( wndPtr->hrgnUpdate, wndPtr->hrgnUpdate,
319 hrgn, RGN_OR );
320 if (!hrgnUpdate) DeleteObject( hrgn );
322 else /* No update region yet */
324 if (!(wndPtr->flags & WIN_INTERNAL_PAINT))
325 QUEUE_IncPaintCount( wndPtr->hmemTaskQ );
326 if (hrgnUpdate)
328 wndPtr->hrgnUpdate = CreateRectRgn( 0, 0, 0, 0 );
329 rgnNotEmpty = CombineRgn( wndPtr->hrgnUpdate, hrgnUpdate,
330 0, RGN_COPY );
332 else wndPtr->hrgnUpdate = CreateRectRgnIndirect( rectUpdate ?
333 rectUpdate : &rectClient );
336 if (flags & RDW_FRAME) wndPtr->flags |= WIN_NEEDS_NCPAINT;
338 /* restrict update region to client area (FIXME: correct?) */
339 if (wndPtr->hrgnUpdate)
341 HRGN clientRgn = CreateRectRgnIndirect( &rectClient );
342 rgnNotEmpty = CombineRgn( wndPtr->hrgnUpdate, clientRgn,
343 wndPtr->hrgnUpdate, RGN_AND );
344 DeleteObject( clientRgn );
347 /* check for bogus update region */
348 if ( rgnNotEmpty == NULLREGION )
350 wndPtr->flags &= ~WIN_NEEDS_ERASEBKGND;
351 DeleteObject( wndPtr->hrgnUpdate );
352 wndPtr->hrgnUpdate=0;
353 if (!(wndPtr->flags & WIN_INTERNAL_PAINT))
354 QUEUE_DecPaintCount( wndPtr->hmemTaskQ );
356 else
357 if (flags & RDW_ERASE) wndPtr->flags |= WIN_NEEDS_ERASEBKGND;
358 flags |= RDW_FRAME; /* Force children frame invalidation */
360 else if (flags & RDW_VALIDATE) /* Validate */
362 /* We need an update region in order to validate anything */
363 if (wndPtr->hrgnUpdate > 1)
365 if (!hrgnUpdate && !rectUpdate)
367 /* Special case: validate everything */
368 DeleteObject( wndPtr->hrgnUpdate );
369 wndPtr->hrgnUpdate = 0;
371 else
373 if ((hrgn = hrgnUpdate) == 0)
374 hrgn = CreateRectRgnIndirect( rectUpdate );
375 if (CombineRgn( wndPtr->hrgnUpdate, wndPtr->hrgnUpdate,
376 hrgn, RGN_DIFF ) == NULLREGION)
378 DeleteObject( wndPtr->hrgnUpdate );
379 wndPtr->hrgnUpdate = 0;
381 if (!hrgnUpdate) DeleteObject( hrgn );
383 if (!wndPtr->hrgnUpdate) /* No more update region */
384 if (!(wndPtr->flags & WIN_INTERNAL_PAINT))
385 QUEUE_DecPaintCount( wndPtr->hmemTaskQ );
387 if (flags & RDW_NOFRAME) wndPtr->flags &= ~WIN_NEEDS_NCPAINT;
388 if (flags & RDW_NOERASE) wndPtr->flags &= ~WIN_NEEDS_ERASEBKGND;
391 /* Set/clear internal paint flag */
393 if (flags & RDW_INTERNALPAINT)
395 if ( wndPtr->hrgnUpdate <= 1 && !(wndPtr->flags & WIN_INTERNAL_PAINT))
396 QUEUE_IncPaintCount( wndPtr->hmemTaskQ );
397 wndPtr->flags |= WIN_INTERNAL_PAINT;
399 else if (flags & RDW_NOINTERNALPAINT)
401 if ( wndPtr->hrgnUpdate <= 1 && (wndPtr->flags & WIN_INTERNAL_PAINT))
402 QUEUE_DecPaintCount( wndPtr->hmemTaskQ );
403 wndPtr->flags &= ~WIN_INTERNAL_PAINT;
406 /* Erase/update window */
408 if (flags & RDW_UPDATENOW)
410 if (wndPtr->hrgnUpdate) /* wm_painticon wparam is 1 */
411 SendMessage16( hwnd, (bIcon) ? WM_PAINTICON : WM_PAINT, bIcon, 0 );
413 else if (flags & RDW_ERASENOW)
415 if (wndPtr->flags & WIN_NEEDS_NCPAINT)
416 WIN_UpdateNCArea( wndPtr, FALSE);
418 if (wndPtr->flags & WIN_NEEDS_ERASEBKGND)
420 HDC hdc = GetDCEx( hwnd, wndPtr->hrgnUpdate,
421 DCX_INTERSECTRGN | DCX_USESTYLE |
422 DCX_KEEPCLIPRGN | DCX_WINDOWPAINT |
423 (bIcon ? DCX_WINDOW : 0) );
424 if (hdc)
426 if (SendMessage16( hwnd, (bIcon) ? WM_ICONERASEBKGND
427 : WM_ERASEBKGND,
428 (WPARAM16)hdc, 0 ))
429 wndPtr->flags &= ~WIN_NEEDS_ERASEBKGND;
430 ReleaseDC( hwnd, hdc );
435 /* Recursively process children */
437 if (!(flags & RDW_NOCHILDREN) &&
438 ((flags & RDW_ALLCHILDREN) || !(wndPtr->dwStyle & WS_CLIPCHILDREN)) &&
439 !(wndPtr->dwStyle & WS_MINIMIZE) )
441 if ( hrgnUpdate || rectUpdate )
443 if (!(hrgn = CreateRectRgn( 0, 0, 0, 0 ))) return TRUE;
444 if( !hrgnUpdate )
446 control |= (RDW_C_DELETEHRGN | RDW_C_USEHRGN);
447 if( !(hrgnUpdate = CreateRectRgnIndirect( rectUpdate )) )
449 DeleteObject( hrgn );
450 return TRUE;
453 if( (list = WIN_BuildWinArray( wndPtr, 0, NULL )) )
455 for (ppWnd = list; *ppWnd; ppWnd++)
457 wndPtr = *ppWnd;
458 if (!IsWindow(wndPtr->hwndSelf)) continue;
459 if (wndPtr->dwStyle & WS_VISIBLE)
461 SetRectRgn( hrgn,
462 wndPtr->rectWindow.left, wndPtr->rectWindow.top,
463 wndPtr->rectWindow.right, wndPtr->rectWindow.bottom );
464 if (CombineRgn( hrgn, hrgn, hrgnUpdate, RGN_AND ))
466 OffsetRgn( hrgn, -wndPtr->rectClient.left,
467 -wndPtr->rectClient.top );
468 PAINT_RedrawWindow( wndPtr->hwndSelf, NULL, hrgn, flags,
469 RDW_C_USEHRGN );
473 HeapFree( SystemHeap, 0, list );
475 DeleteObject( hrgn );
476 if (control & RDW_C_DELETEHRGN) DeleteObject( hrgnUpdate );
478 else
480 if( (list = WIN_BuildWinArray( wndPtr, 0, NULL )) )
482 for (ppWnd = list; *ppWnd; ppWnd++)
484 wndPtr = *ppWnd;
485 if (IsWindow( wndPtr->hwndSelf ))
486 PAINT_RedrawWindow( wndPtr->hwndSelf, NULL, 0, flags, 0 );
488 HeapFree( SystemHeap, 0, list );
493 return TRUE;
497 /***********************************************************************
498 * RedrawWindow32 (USER32.426)
500 BOOL WINAPI RedrawWindow( HWND hwnd, const RECT *rectUpdate,
501 HRGN hrgnUpdate, UINT flags )
503 return PAINT_RedrawWindow( hwnd, rectUpdate, hrgnUpdate, flags, 0 );
507 /***********************************************************************
508 * RedrawWindow16 (USER.290)
510 BOOL16 WINAPI RedrawWindow16( HWND16 hwnd, const RECT16 *rectUpdate,
511 HRGN16 hrgnUpdate, UINT16 flags )
513 if (rectUpdate)
515 RECT r;
516 CONV_RECT16TO32( rectUpdate, &r );
517 return (BOOL16)RedrawWindow( (HWND)hwnd, &r, hrgnUpdate, flags );
519 return (BOOL16)PAINT_RedrawWindow( (HWND)hwnd, NULL,
520 (HRGN)hrgnUpdate, flags, 0 );
524 /***********************************************************************
525 * UpdateWindow16 (USER.124)
527 void WINAPI UpdateWindow16( HWND16 hwnd )
529 PAINT_RedrawWindow( hwnd, NULL, 0, RDW_UPDATENOW | RDW_NOCHILDREN, 0 );
532 /***********************************************************************
533 * UpdateWindow32 (USER32.567)
535 void WINAPI UpdateWindow( HWND hwnd )
537 PAINT_RedrawWindow( hwnd, NULL, 0, RDW_UPDATENOW | RDW_NOCHILDREN, 0 );
540 /***********************************************************************
541 * InvalidateRgn16 (USER.126)
543 void WINAPI InvalidateRgn16( HWND16 hwnd, HRGN16 hrgn, BOOL16 erase )
545 PAINT_RedrawWindow((HWND)hwnd, NULL, (HRGN)hrgn,
546 RDW_INVALIDATE | (erase ? RDW_ERASE : 0), 0 );
550 /***********************************************************************
551 * InvalidateRgn32 (USER32.329)
553 BOOL WINAPI InvalidateRgn( HWND hwnd, HRGN hrgn, BOOL erase )
555 return PAINT_RedrawWindow(hwnd, NULL, hrgn, RDW_INVALIDATE | (erase ? RDW_ERASE : 0), 0 );
559 /***********************************************************************
560 * InvalidateRect16 (USER.125)
562 void WINAPI InvalidateRect16( HWND16 hwnd, const RECT16 *rect, BOOL16 erase )
564 RedrawWindow16( hwnd, rect, 0, RDW_INVALIDATE | (erase ? RDW_ERASE : 0) );
568 /***********************************************************************
569 * InvalidateRect32 (USER32.328)
571 BOOL WINAPI InvalidateRect( HWND hwnd, const RECT *rect, BOOL erase )
573 return PAINT_RedrawWindow( hwnd, rect, 0,
574 RDW_INVALIDATE | (erase ? RDW_ERASE : 0), 0 );
578 /***********************************************************************
579 * ValidateRgn16 (USER.128)
581 void WINAPI ValidateRgn16( HWND16 hwnd, HRGN16 hrgn )
583 PAINT_RedrawWindow( (HWND)hwnd, NULL, (HRGN)hrgn,
584 RDW_VALIDATE | RDW_NOCHILDREN, 0 );
588 /***********************************************************************
589 * ValidateRgn32 (USER32.572)
591 void WINAPI ValidateRgn( HWND hwnd, HRGN hrgn )
593 PAINT_RedrawWindow( hwnd, NULL, hrgn, RDW_VALIDATE | RDW_NOCHILDREN, 0 );
597 /***********************************************************************
598 * ValidateRect16 (USER.127)
600 void WINAPI ValidateRect16( HWND16 hwnd, const RECT16 *rect )
602 RedrawWindow16( hwnd, rect, 0, RDW_VALIDATE | RDW_NOCHILDREN );
606 /***********************************************************************
607 * ValidateRect32 (USER32.571)
609 void WINAPI ValidateRect( HWND hwnd, const RECT *rect )
611 PAINT_RedrawWindow( hwnd, rect, 0, RDW_VALIDATE | RDW_NOCHILDREN, 0 );
615 /***********************************************************************
616 * GetUpdateRect16 (USER.190)
618 BOOL16 WINAPI GetUpdateRect16( HWND16 hwnd, LPRECT16 rect, BOOL16 erase )
620 RECT r;
621 BOOL16 ret;
623 if (!rect) return GetUpdateRect( hwnd, NULL, erase );
624 ret = GetUpdateRect( hwnd, &r, erase );
625 CONV_RECT32TO16( &r, rect );
626 return ret;
630 /***********************************************************************
631 * GetUpdateRect32 (USER32.297)
633 BOOL WINAPI GetUpdateRect( HWND hwnd, LPRECT rect, BOOL erase )
635 WND * wndPtr = WIN_FindWndPtr( hwnd );
636 if (!wndPtr) return FALSE;
638 if (rect)
640 if (wndPtr->hrgnUpdate > 1)
642 HRGN hrgn = CreateRectRgn( 0, 0, 0, 0 );
643 if (GetUpdateRgn( hwnd, hrgn, erase ) == ERROR) return FALSE;
644 GetRgnBox( hrgn, rect );
645 DeleteObject( hrgn );
646 if (wndPtr->class->style & CS_OWNDC)
648 if (GetMapMode(wndPtr->dce->hDC) != MM_TEXT)
650 DPtoLP (wndPtr->dce->hDC, (LPPOINT)rect, 2);
654 else SetRectEmpty( rect );
656 return (wndPtr->hrgnUpdate > 1);
660 /***********************************************************************
661 * GetUpdateRgn16 (USER.237)
663 INT16 WINAPI GetUpdateRgn16( HWND16 hwnd, HRGN16 hrgn, BOOL16 erase )
665 return GetUpdateRgn( hwnd, hrgn, erase );
669 /***********************************************************************
670 * GetUpdateRgn32 (USER32.298)
672 INT WINAPI GetUpdateRgn( HWND hwnd, HRGN hrgn, BOOL erase )
674 INT retval;
675 WND * wndPtr = WIN_FindWndPtr( hwnd );
676 if (!wndPtr) return ERROR;
678 if (wndPtr->hrgnUpdate <= 1)
680 SetRectRgn( hrgn, 0, 0, 0, 0 );
681 return NULLREGION;
683 retval = CombineRgn( hrgn, wndPtr->hrgnUpdate, 0, RGN_COPY );
684 if (erase) RedrawWindow( hwnd, NULL, 0, RDW_ERASENOW | RDW_NOCHILDREN );
685 return retval;
689 /***********************************************************************
690 * ExcludeUpdateRgn16 (USER.238)
692 INT16 WINAPI ExcludeUpdateRgn16( HDC16 hdc, HWND16 hwnd )
694 return ExcludeUpdateRgn( hdc, hwnd );
698 /***********************************************************************
699 * ExcludeUpdateRgn32 (USER32.195)
701 INT WINAPI ExcludeUpdateRgn( HDC hdc, HWND hwnd )
703 RECT rect;
704 WND * wndPtr;
706 if (!(wndPtr = WIN_FindWndPtr( hwnd ))) return ERROR;
708 if (wndPtr->hrgnUpdate)
710 INT ret;
711 HRGN hrgn = CreateRectRgn(wndPtr->rectWindow.left - wndPtr->rectClient.left,
712 wndPtr->rectWindow.top - wndPtr->rectClient.top,
713 wndPtr->rectClient.right - wndPtr->rectClient.left,
714 wndPtr->rectClient.bottom - wndPtr->rectClient.top);
715 if( wndPtr->hrgnUpdate > 1 )
716 CombineRgn(hrgn, wndPtr->hrgnUpdate, 0, RGN_COPY);
718 /* do ugly coordinate translations in dce.c */
720 ret = DCE_ExcludeRgn( hdc, wndPtr, hrgn );
721 DeleteObject( hrgn );
722 return ret;
724 return GetClipBox( hdc, &rect );