Remove some possible interlocking problems with peb lock.
[wine] / windows / painting.c
1 /*
2  * Window painting functions
3  *
4  * Copyright 1993, 1994, 1995 Alexandre Julliard
5  *                       1999 Alex Korobka
6  */
7
8 #include <string.h>
9 #include "windef.h"
10 #include "wingdi.h"
11 #include "wine/winuser16.h"
12 #include "wine/unicode.h"
13 #include "wine/server.h"
14 #include "region.h"
15 #include "user.h"
16 #include "win.h"
17 #include "queue.h"
18 #include "dce.h"
19 #include "debugtools.h"
20
21 DEFAULT_DEBUG_CHANNEL(win);
22 DECLARE_DEBUG_CHANNEL(nonclient);
23
24 /* client rect in window coordinates */
25
26 #define GETCLIENTRECTW( wnd, r )        (r).left = (wnd)->rectClient.left - (wnd)->rectWindow.left; \
27                                         (r).top = (wnd)->rectClient.top - (wnd)->rectWindow.top; \
28                                         (r).right = (wnd)->rectClient.right - (wnd)->rectWindow.left; \
29                                         (r).bottom = (wnd)->rectClient.bottom - (wnd)->rectWindow.top
30
31   /* PAINT_RedrawWindow() control flags */
32 #define RDW_EX_DELAY_NCPAINT    0x0020
33
34   /* WIN_UpdateNCRgn() flags */
35 #define UNC_CHECK               0x0001
36 #define UNC_ENTIRE              0x0002
37 #define UNC_REGION              0x0004
38 #define UNC_UPDATE              0x0008
39 #define UNC_DELAY_NCPAINT       0x0010
40 #define UNC_IN_BEGINPAINT       0x0020
41
42   /* Last COLOR id */
43 #define COLOR_MAX   COLOR_GRADIENTINACTIVECAPTION
44
45
46 /***********************************************************************
47  *           add_paint_count
48  *
49  * Add an increment (normally 1 or -1) to the current paint count of a window.
50  */
51 static void add_paint_count( HWND hwnd, int incr )
52 {
53     SERVER_START_REQ( inc_window_paint_count )
54     {
55         req->handle = hwnd;
56         req->incr   = incr;
57         wine_server_call( req );
58     }
59     SERVER_END_REQ;
60 }
61
62
63 /***********************************************************************
64  *           WIN_HaveToDelayNCPAINT
65  *
66  * Currently, in the Wine painting mechanism, the WM_NCPAINT message
67  * is generated as soon as a region intersecting the non-client area 
68  * of a window is invalidated.
69  *
70  * This technique will work fine for all windows whose parents
71  * have the WS_CLIPCHILDREN style. When the parents have that style,
72  * they are not going to override the contents of their children.
73  * However, when the parent doesn't have that style, Windows relies
74  * on a "painter's algorithm" to display the contents of the windows.
75  * That is, windows are painted from back to front. This includes the
76  * non-client area.
77  *
78  * This method looks at the current state of a window to determine
79  * if the sending of the WM_NCPAINT message should be delayed until 
80  * the BeginPaint call.
81  *
82  * PARAMS:
83  *   wndPtr   - A Locked window pointer to the window we're
84  *              examining.
85  *   uncFlags - This is the flag passed to the WIN_UpdateNCRgn
86  *              function. This is a shortcut for the cases when
87  *              we already know when to avoid scanning all the
88  *              parents of a window. If you already know that this
89  *              window's NCPAINT should be delayed, set the 
90  *              UNC_DELAY_NCPAINT flag for this parameter. 
91  *
92  *              This shortcut behavior is implemented in the
93  *              RDW_Paint() method.
94  * 
95  */
96 static BOOL WIN_HaveToDelayNCPAINT( HWND hwnd, UINT uncFlags)
97 {
98   /*
99    * Test the shortcut first. (duh)
100    */
101   if (uncFlags & UNC_DELAY_NCPAINT)
102     return TRUE;
103
104   /*
105    * The UNC_IN_BEGINPAINT flag is set in the BeginPaint
106    * method only. This is another shortcut to avoid going
107    * up the parent's chain of the window to finally
108    * figure-out that none of them has an invalid region.
109    */
110   if (uncFlags & UNC_IN_BEGINPAINT)
111     return FALSE;
112
113   /*
114    * Scan all the parents of this window to find a window
115    * that doesn't have the WS_CLIPCHILDREN style and that
116    * has an invalid region. 
117    */
118   while ((hwnd = GetAncestor( hwnd, GA_PARENT )))
119   {
120       WND* parentWnd = WIN_FindWndPtr( hwnd );
121       if (!(parentWnd->dwStyle & WS_CLIPCHILDREN) && parentWnd->hrgnUpdate)
122       {
123           WIN_ReleaseWndPtr( parentWnd );
124           return TRUE;
125       }
126       WIN_ReleaseWndPtr( parentWnd );
127   }
128   return FALSE;
129 }
130
131 /***********************************************************************
132  *           WIN_UpdateNCRgn
133  *
134  *  Things to do:
135  *      Send WM_NCPAINT if required (when nonclient is invalid or UNC_ENTIRE flag is set)
136  *      Crop hrgnUpdate to a client rect, especially if it 1.
137  *      If UNC_REGION is set return update region for the client rect.
138  *
139  *  NOTE: UNC_REGION is mainly for the RDW_Paint() chunk that sends WM_ERASEBKGND message.
140  *        The trick is that when the returned region handle may be different from hRgn.
141  *        In this case the old hRgn must be considered gone. BUT, if the returned value
142  *        is 1 then the hRgn is preserved and RDW_Paint() will have to get 
143  *        a DC without extra clipping region.
144  */
145 static HRGN WIN_UpdateNCRgn(WND* wnd, HRGN hRgn, UINT uncFlags )
146 {
147     RECT  r;
148     HRGN  hClip = 0;
149     HRGN  hrgnRet = 0;
150
151     TRACE_(nonclient)("hwnd %04x [%04x] hrgn %04x, unc %04x, ncf %i\n", 
152                       wnd->hwndSelf, wnd->hrgnUpdate, hRgn, uncFlags, wnd->flags & WIN_NEEDS_NCPAINT);
153
154     /* desktop window doesn't have a nonclient area */
155     if(wnd->hwndSelf == GetDesktopWindow())
156     {
157         wnd->flags &= ~WIN_NEEDS_NCPAINT;
158         if( wnd->hrgnUpdate > 1 )
159             hrgnRet = REGION_CropRgn( hRgn, wnd->hrgnUpdate, NULL, NULL );
160         else 
161         {
162             hrgnRet = wnd->hrgnUpdate;
163         }
164         return hrgnRet;
165     }
166
167     if ((wnd->hwndSelf == GetForegroundWindow()) &&
168         !(wnd->flags & WIN_NCACTIVATED) )
169     {
170         wnd->flags |= WIN_NCACTIVATED;
171         uncFlags |= UNC_ENTIRE; 
172     }
173
174     /*
175      * If the window's non-client area needs to be painted, 
176      */
177     if ( ( wnd->flags & WIN_NEEDS_NCPAINT ) &&
178          !WIN_HaveToDelayNCPAINT(wnd->hwndSelf, uncFlags) )
179     {
180             RECT r2, r3;
181
182             wnd->flags &= ~WIN_NEEDS_NCPAINT;  
183             GETCLIENTRECTW( wnd, r );
184
185             TRACE_(nonclient)( "\tclient box (%i,%i-%i,%i), hrgnUpdate %04x\n", 
186                                 r.left, r.top, r.right, r.bottom, wnd->hrgnUpdate );
187             if( wnd->hrgnUpdate > 1 )
188             {
189                 /* Check if update rgn overlaps with nonclient area */
190
191                 GetRgnBox( wnd->hrgnUpdate, &r2 );
192                 UnionRect( &r3, &r2, &r );
193                 if( r3.left != r.left || r3.top != r.top || 
194                     r3.right != r.right || r3.bottom != r.bottom ) /* it does */
195                 {
196                     /* crop hrgnUpdate, save old one in hClip - the only
197                      * case that places a valid region handle in hClip */
198
199                     hClip = wnd->hrgnUpdate;
200                     wnd->hrgnUpdate = REGION_CropRgn( hRgn, hClip, &r, NULL );
201                     if( uncFlags & UNC_REGION ) hrgnRet = hClip;
202                 }
203
204                 if( uncFlags & UNC_CHECK )
205                 {
206                     GetRgnBox( wnd->hrgnUpdate, &r3 );
207                     if( IsRectEmpty( &r3 ) )
208                     {
209                         /* delete the update region since all invalid 
210                          * parts were in the nonclient area */
211
212                         DeleteObject( wnd->hrgnUpdate );
213                         wnd->hrgnUpdate = 0;
214                         if(!(wnd->flags & WIN_INTERNAL_PAINT))
215                             add_paint_count( wnd->hwndSelf, -1 );
216
217                         wnd->flags &= ~WIN_NEEDS_ERASEBKGND;
218                     }
219                 }
220
221                 if(!hClip && wnd->hrgnUpdate ) goto copyrgn;
222             }
223             else 
224             if( wnd->hrgnUpdate == 1 )/* entire window */
225             {
226                 if( uncFlags & UNC_UPDATE ) wnd->hrgnUpdate = CreateRectRgnIndirect( &r );
227                 if( uncFlags & UNC_REGION ) hrgnRet = 1;
228                 uncFlags |= UNC_ENTIRE;
229             }
230     }
231     else /* no WM_NCPAINT unless forced */
232     {
233         if( wnd->hrgnUpdate >  1 )
234         {
235 copyrgn:
236             if( uncFlags & UNC_REGION )
237                 hrgnRet = REGION_CropRgn( hRgn, wnd->hrgnUpdate, NULL, NULL );
238         }
239         else
240         if( wnd->hrgnUpdate == 1 && (uncFlags & UNC_UPDATE) )
241         {
242             GETCLIENTRECTW( wnd, r ); 
243             wnd->hrgnUpdate = CreateRectRgnIndirect( &r );
244             if( uncFlags & UNC_REGION ) hrgnRet = 1;
245         }
246     }
247
248     if(!hClip && (uncFlags & UNC_ENTIRE) )
249     {
250         /* still don't do anything if there is no nonclient area */
251         hClip = (memcmp( &wnd->rectWindow, &wnd->rectClient, sizeof(RECT) ) != 0);
252     }
253
254     if( hClip ) /* NOTE: WM_NCPAINT allows wParam to be 1 */
255     {
256         if ( hClip == hrgnRet && hrgnRet > 1 ) {
257             hClip = CreateRectRgn( 0, 0, 0, 0 );
258             CombineRgn( hClip, hrgnRet, 0, RGN_COPY );
259         }
260
261         SendMessageA( wnd->hwndSelf, WM_NCPAINT, hClip, 0L );
262         if( (hClip > 1) && (hClip != hRgn) && (hClip != hrgnRet) )
263             DeleteObject( hClip );
264         /*
265          * Since all Window locks are suspended while processing the WM_NCPAINT
266          * we want to make sure the window still exists before continuing.
267          */
268         if (!IsWindow(wnd->hwndSelf))
269         {
270           DeleteObject(hrgnRet);
271           hrgnRet=0;
272         }
273     }
274
275     TRACE_(nonclient)("returning %04x (hClip = %04x, hrgnUpdate = %04x)\n", hrgnRet, hClip, wnd->hrgnUpdate );
276
277     return hrgnRet;
278 }
279
280
281 /***********************************************************************
282  *              BeginPaint (USER.39)
283  */
284 HDC16 WINAPI BeginPaint16( HWND16 hwnd, LPPAINTSTRUCT16 lps )
285 {
286     PAINTSTRUCT ps;
287
288     BeginPaint( WIN_Handle32(hwnd), &ps );
289     lps->hdc            = ps.hdc;
290     lps->fErase         = ps.fErase;
291     lps->rcPaint.top    = ps.rcPaint.top;
292     lps->rcPaint.left   = ps.rcPaint.left;
293     lps->rcPaint.right  = ps.rcPaint.right;
294     lps->rcPaint.bottom = ps.rcPaint.bottom;
295     lps->fRestore       = ps.fRestore;
296     lps->fIncUpdate     = ps.fIncUpdate;
297     return lps->hdc;
298 }
299
300
301 /***********************************************************************
302  *              BeginPaint (USER32.@)
303  */
304 HDC WINAPI BeginPaint( HWND hwnd, PAINTSTRUCT *lps )
305 {
306     BOOL bIcon;
307     HRGN hrgnUpdate;
308     RECT clipRect, clientRect;
309     HWND full_handle;
310     WND *wndPtr;
311
312     if (!(full_handle = WIN_IsCurrentThread( hwnd )))
313     {
314         if (IsWindow(hwnd))
315             FIXME( "window %x belongs to other thread\n", hwnd );
316         return 0;
317     }
318     hwnd = full_handle;
319
320     bIcon = (IsIconic(hwnd) && GetClassLongA(hwnd, GCL_HICON));
321
322     if (!(wndPtr = WIN_FindWndPtr( hwnd ))) return 0;
323     wndPtr->flags &= ~WIN_NEEDS_BEGINPAINT;
324
325     /* send WM_NCPAINT and make sure hrgnUpdate is a valid rgn handle */
326     WIN_UpdateNCRgn( wndPtr, 0, UNC_UPDATE | UNC_IN_BEGINPAINT);
327
328     /*
329      * Make sure the window is still a window. All window locks are suspended
330      * when the WM_NCPAINT is sent.
331      */
332     if (!IsWindow( hwnd ))
333     {
334         WIN_ReleaseWndPtr(wndPtr);
335         return 0;
336     }
337
338     if( ((hrgnUpdate = wndPtr->hrgnUpdate) != 0) || (wndPtr->flags & WIN_INTERNAL_PAINT))
339         add_paint_count( hwnd, -1 );
340
341     wndPtr->hrgnUpdate = 0;
342     wndPtr->flags &= ~WIN_INTERNAL_PAINT;
343
344     WIN_ReleaseWndPtr(wndPtr);
345
346     HideCaret( hwnd );
347
348     TRACE("hrgnUpdate = %04x, \n", hrgnUpdate);
349
350     if (GetClassLongA( hwnd, GCL_STYLE ) & CS_PARENTDC)
351     {
352         /* Don't clip the output to the update region for CS_PARENTDC window */
353         if( hrgnUpdate ) 
354             DeleteObject(hrgnUpdate);
355         lps->hdc = GetDCEx( hwnd, 0, DCX_WINDOWPAINT | DCX_USESTYLE |
356                               (bIcon ? DCX_WINDOW : 0) );
357     }
358     else
359     {
360         if( hrgnUpdate ) /* convert to client coordinates */
361             OffsetRgn( hrgnUpdate, wndPtr->rectWindow.left - wndPtr->rectClient.left,
362                                    wndPtr->rectWindow.top - wndPtr->rectClient.top );
363         lps->hdc = GetDCEx(hwnd, hrgnUpdate, DCX_INTERSECTRGN | 
364                              DCX_WINDOWPAINT | DCX_USESTYLE | (bIcon ? DCX_WINDOW : 0) );
365         /* ReleaseDC() in EndPaint() will delete the region */
366     }
367
368     TRACE("hdc = %04x\n", lps->hdc);
369
370     if (!lps->hdc)
371     {
372         WARN("GetDCEx() failed in BeginPaint(), hwnd=%04x\n", hwnd);
373         return 0;
374     }
375
376     /* It is possible that the clip box is bigger than the window itself,
377        if CS_PARENTDC flag is set. Windows never return a paint rect bigger
378        than the window itself, so we need to intersect the cliprect with
379        the window  */
380     
381     GetClientRect( hwnd, &clientRect );
382
383     GetClipBox( lps->hdc, &clipRect );
384     LPtoDP(lps->hdc, (LPPOINT)&clipRect, 2);      /* GetClipBox returns LP */
385
386     IntersectRect(&lps->rcPaint, &clientRect, &clipRect);
387     DPtoLP(lps->hdc, (LPPOINT)&lps->rcPaint, 2);  /* we must return LP */
388
389     TRACE("box = (%i,%i - %i,%i)\n", lps->rcPaint.left, lps->rcPaint.top,
390                     lps->rcPaint.right, lps->rcPaint.bottom );
391
392     if (!(wndPtr = WIN_FindWndPtr( hwnd ))) return 0;
393     if (wndPtr->flags & WIN_NEEDS_ERASEBKGND)
394     {
395         wndPtr->flags &= ~WIN_NEEDS_ERASEBKGND;
396         lps->fErase = !SendMessageA(hwnd, (bIcon) ? WM_ICONERASEBKGND : WM_ERASEBKGND,
397                                     (WPARAM16)lps->hdc, 0 );
398     }
399     else lps->fErase = TRUE;
400
401     WIN_ReleaseWndPtr(wndPtr);
402     return lps->hdc;
403 }
404
405
406 /***********************************************************************
407  *              EndPaint (USER.40)
408  */
409 BOOL16 WINAPI EndPaint16( HWND16 hwnd, const PAINTSTRUCT16* lps )
410 {
411     ReleaseDC16( hwnd, lps->hdc );
412     ShowCaret16( hwnd );
413     return TRUE;
414 }
415
416
417 /***********************************************************************
418  *              EndPaint (USER32.@)
419  */
420 BOOL WINAPI EndPaint( HWND hwnd, const PAINTSTRUCT *lps )
421 {
422     ReleaseDC( hwnd, lps->hdc );
423     ShowCaret( hwnd );
424     return TRUE;
425 }
426
427
428 /***********************************************************************
429  *              RDW_ValidateParent [RDW_UpdateRgns() helper] 
430  *
431  *  Validate the portions of parents that are covered by a validated child
432  *  wndPtr = child
433  */
434 static void RDW_ValidateParent(WND *wndChild)
435 {
436     HWND parent;
437     HRGN hrg;
438
439     if (wndChild->hrgnUpdate == 1 ) {
440         RECT r;
441         r.left = 0;
442         r.top = 0;
443         r.right = wndChild->rectWindow.right - wndChild->rectWindow.left;
444         r.bottom = wndChild->rectWindow.bottom - wndChild->rectWindow.top;
445         hrg = CreateRectRgnIndirect( &r );
446     } else
447         hrg = wndChild->hrgnUpdate;
448
449     parent = GetAncestor( wndChild->hwndSelf, GA_PARENT );
450     while (parent && parent != GetDesktopWindow())
451     {
452         WND *wndParent = WIN_FindWndPtr( parent );
453         if (!(wndParent->dwStyle & WS_CLIPCHILDREN))
454         {
455             if (wndParent->hrgnUpdate != 0)
456             {
457                 POINT ptOffset;
458                 RECT rect, rectParent;
459                 if( wndParent->hrgnUpdate == 1 )
460                 {
461                    RECT r;
462
463                    r.left = 0;
464                    r.top = 0;
465                    r.right = wndParent->rectWindow.right - wndParent->rectWindow.left;
466                    r.bottom = wndParent->rectWindow.bottom - wndParent->rectWindow.top;
467
468                    wndParent->hrgnUpdate = CreateRectRgnIndirect( &r );
469                 }
470                 /* we must offset the child region by the offset of the child rect in the parent */
471                 GetWindowRect(wndParent->hwndSelf, &rectParent);
472                 GetWindowRect(wndChild->hwndSelf, &rect);
473                 ptOffset.x = rect.left - rectParent.left;
474                 ptOffset.y = rect.top - rectParent.top;
475                 OffsetRgn( hrg, ptOffset.x, ptOffset.y );
476                 CombineRgn( wndParent->hrgnUpdate, wndParent->hrgnUpdate, hrg, RGN_DIFF );
477                 OffsetRgn( hrg, -ptOffset.x, -ptOffset.y );
478             }
479         }
480         WIN_ReleaseWndPtr( wndParent );
481         parent = GetAncestor( parent, GA_PARENT );
482     }
483     if (hrg != wndChild->hrgnUpdate) DeleteObject( hrg );
484 }
485
486 /***********************************************************************
487  *              RDW_UpdateRgns [RedrawWindow() helper] 
488  *
489  *  Walks the window tree and adds/removes parts of the hRgn to/from update
490  *  regions of windows that overlap it. Also, manages internal paint flags.
491  *
492  *  NOTE: Walks the window tree so the caller must lock it.
493  *        MUST preserve hRgn (can modify but then has to restore).
494  */
495 static void RDW_UpdateRgns( WND* wndPtr, HRGN hRgn, UINT flags, BOOL firstRecursLevel )
496 {
497     /* 
498      * Called only when one of the following is set:
499      * (RDW_INVALIDATE | RDW_VALIDATE | RDW_INTERNALPAINT | RDW_NOINTERNALPAINT)
500      */
501
502     BOOL bHadOne =  wndPtr->hrgnUpdate && hRgn;
503     BOOL bChildren =  (!(flags & RDW_NOCHILDREN) && !(wndPtr->dwStyle & WS_MINIMIZE) &&
504                        ((flags & RDW_ALLCHILDREN) || !(wndPtr->dwStyle & WS_CLIPCHILDREN)) );
505     RECT r;
506
507     r.left = 0;
508     r.top = 0;
509     r.right = wndPtr->rectWindow.right - wndPtr->rectWindow.left;
510     r.bottom = wndPtr->rectWindow.bottom - wndPtr->rectWindow.top;
511
512     TRACE("\thwnd %04x [%04x] -> hrgn [%04x], flags [%04x]\n", wndPtr->hwndSelf, wndPtr->hrgnUpdate, hRgn, flags );
513
514     if( flags & RDW_INVALIDATE )
515     {
516         if( hRgn > 1 )
517         {
518             switch( wndPtr->hrgnUpdate )
519             {
520                 default:
521                         CombineRgn( wndPtr->hrgnUpdate, wndPtr->hrgnUpdate, hRgn, RGN_OR );
522                         /* fall through */
523                 case 0:
524                         wndPtr->hrgnUpdate = REGION_CropRgn( wndPtr->hrgnUpdate, 
525                                                              wndPtr->hrgnUpdate ? wndPtr->hrgnUpdate : hRgn, 
526                                                              &r, NULL );
527                         if( !bHadOne )
528                         {
529                             GetRgnBox( wndPtr->hrgnUpdate, &r );
530                             if( IsRectEmpty( &r ) )
531                             {
532                                 DeleteObject( wndPtr->hrgnUpdate );
533                                 wndPtr->hrgnUpdate = 0;
534                                 goto end;
535                             }
536                         }
537                         break;
538                 case 1: /* already an entire window */
539                         break;
540             }
541         }
542         else if( hRgn == 1 )
543         {
544             if( wndPtr->hrgnUpdate > 1 )
545                 DeleteObject( wndPtr->hrgnUpdate );
546             wndPtr->hrgnUpdate = 1;
547         }
548         else
549             hRgn = wndPtr->hrgnUpdate;  /* this is a trick that depends on code in PAINT_RedrawWindow() */
550
551         if( !bHadOne && !(wndPtr->flags & WIN_INTERNAL_PAINT) )
552             add_paint_count( wndPtr->hwndSelf, 1 );
553
554         if (flags & RDW_FRAME) wndPtr->flags |= WIN_NEEDS_NCPAINT;
555         if (flags & RDW_ERASE) wndPtr->flags |= WIN_NEEDS_ERASEBKGND;
556         flags    |= RDW_FRAME;
557     }
558     else if( flags & RDW_VALIDATE )
559     {
560         if( wndPtr->hrgnUpdate )
561         {
562             if( hRgn > 1 )
563             {
564                 if( wndPtr->hrgnUpdate == 1 )
565                     wndPtr->hrgnUpdate = CreateRectRgnIndirect( &r );
566
567                 if( CombineRgn( wndPtr->hrgnUpdate, wndPtr->hrgnUpdate, hRgn, RGN_DIFF )
568                     == NULLREGION )
569                 {
570                     DeleteObject( wndPtr->hrgnUpdate );
571                     wndPtr->hrgnUpdate = 0;
572                 }
573             }
574             else /* validate everything */
575             {
576                 if( wndPtr->hrgnUpdate > 1 ) DeleteObject( wndPtr->hrgnUpdate );
577                 wndPtr->hrgnUpdate = 0;
578             }
579
580             if( !wndPtr->hrgnUpdate )
581             {
582                 wndPtr->flags &= ~WIN_NEEDS_ERASEBKGND;
583                 if( !(wndPtr->flags & WIN_INTERNAL_PAINT) )
584                     add_paint_count( wndPtr->hwndSelf, -1 );
585             }
586         }
587
588         if (flags & RDW_NOFRAME) wndPtr->flags &= ~WIN_NEEDS_NCPAINT;
589         if (flags & RDW_NOERASE) wndPtr->flags &= ~WIN_NEEDS_ERASEBKGND;
590
591     }
592
593     if ((firstRecursLevel) && (wndPtr->hrgnUpdate != 0) && (flags & RDW_UPDATENOW))
594         RDW_ValidateParent(wndPtr); /* validate parent covered by region */
595
596     /* in/validate child windows that intersect with the region if it
597      * is a valid handle. */
598
599     if( flags & (RDW_INVALIDATE | RDW_VALIDATE) )
600     {
601         HWND *list;
602         if( hRgn > 1 && bChildren && (list = WIN_ListChildren( wndPtr->hwndSelf )))
603         {
604             POINT ptTotal, prevOrigin = {0,0};
605             POINT ptClient;
606             INT i;
607
608             ptClient.x = wndPtr->rectClient.left - wndPtr->rectWindow.left;
609             ptClient.y = wndPtr->rectClient.top - wndPtr->rectWindow.top;
610
611             for(i = ptTotal.x = ptTotal.y = 0; list[i]; i++)
612             {
613                 WND *wnd = WIN_FindWndPtr( list[i] );
614                 if (!wnd) continue;
615                 if( wnd->dwStyle & WS_VISIBLE )
616                 {
617                     POINT ptOffset;
618
619                     r.left = wnd->rectWindow.left + ptClient.x;
620                     r.right = wnd->rectWindow.right + ptClient.x;
621                     r.top = wnd->rectWindow.top + ptClient.y;
622                     r.bottom = wnd->rectWindow.bottom + ptClient.y;
623
624                     ptOffset.x = r.left - prevOrigin.x;
625                     ptOffset.y = r.top - prevOrigin.y;
626                     OffsetRect( &r, -ptTotal.x, -ptTotal.y );
627
628                     if( RectInRegion( hRgn, &r ) )
629                     {
630                         OffsetRgn( hRgn, -ptOffset.x, -ptOffset.y );
631                         RDW_UpdateRgns( wnd, hRgn, flags, FALSE );
632                         prevOrigin.x = r.left + ptTotal.x;
633                         prevOrigin.y = r.top + ptTotal.y;
634                         ptTotal.x += ptOffset.x;
635                         ptTotal.y += ptOffset.y;
636                     }
637                 }
638                 WIN_ReleaseWndPtr( wnd );
639             }
640             HeapFree( GetProcessHeap(), 0, list );
641             OffsetRgn( hRgn, ptTotal.x, ptTotal.y );
642             bChildren = 0;
643         }
644     }
645
646     /* handle hRgn == 1 (alias for entire window) and/or internal paint recursion */
647
648     if( bChildren )
649     {
650         HWND *list;
651         if ((list = WIN_ListChildren( wndPtr->hwndSelf )))
652         {
653             INT i;
654             for (i = 0; list[i]; i++)
655             {
656                 WND *wnd = WIN_FindWndPtr( list[i] );
657                 if (!wnd) continue;
658                 if( wnd->dwStyle & WS_VISIBLE )
659                     RDW_UpdateRgns( wnd, hRgn, flags, FALSE );
660                 WIN_ReleaseWndPtr( wnd );
661             }
662             HeapFree( GetProcessHeap(), 0, list );
663         }
664     }
665
666 end:
667
668     /* Set/clear internal paint flag */
669
670     if (flags & RDW_INTERNALPAINT)
671     {
672         if ( !wndPtr->hrgnUpdate && !(wndPtr->flags & WIN_INTERNAL_PAINT))
673             add_paint_count( wndPtr->hwndSelf, 1 );
674         wndPtr->flags |= WIN_INTERNAL_PAINT;
675     }
676     else if (flags & RDW_NOINTERNALPAINT)
677     {
678         if ( !wndPtr->hrgnUpdate && (wndPtr->flags & WIN_INTERNAL_PAINT))
679             add_paint_count( wndPtr->hwndSelf, -1 );
680         wndPtr->flags &= ~WIN_INTERNAL_PAINT;
681     }
682 }
683
684 /***********************************************************************
685  *           RDW_Paint [RedrawWindow() helper]
686  *
687  * Walks the window tree and paints/erases windows that have
688  * nonzero update regions according to redraw flags. hrgn is a scratch
689  * region passed down during recursion. Must not be 1.
690  *
691  */
692 static HRGN RDW_Paint( WND* wndPtr, HRGN hrgn, UINT flags, UINT ex )
693 {
694 /* NOTE: wndPtr is locked by caller.
695  * 
696  * FIXME: Windows uses WM_SYNCPAINT to cut down the number of intertask
697  * SendMessage() calls. This is a comment inside DefWindowProc() source
698  * from 16-bit SDK:
699  *
700  *   This message avoids lots of inter-app message traffic
701  *   by switching to the other task and continuing the
702  *   recursion there.
703  *
704  * wParam         = flags
705  * LOWORD(lParam) = hrgnClip
706  * HIWORD(lParam) = hwndSkip  (not used; always NULL)
707  *
708  */
709     HDC  hDC;
710     HWND hWnd = wndPtr->hwndSelf;
711     BOOL bIcon = ((wndPtr->dwStyle & WS_MINIMIZE) && GetClassLongA(hWnd, GCL_HICON));
712
713       /* Erase/update the window itself ... */
714
715     TRACE("\thwnd %04x [%04x] -> hrgn [%04x], flags [%04x]\n", hWnd, wndPtr->hrgnUpdate, hrgn, flags );
716
717     /*
718      * Check if this window should delay it's processing of WM_NCPAINT.
719      * See WIN_HaveToDelayNCPAINT for a description of the mechanism
720      */
721     if ((ex & RDW_EX_DELAY_NCPAINT) || WIN_HaveToDelayNCPAINT(wndPtr->hwndSelf, 0) )
722         ex |= RDW_EX_DELAY_NCPAINT;
723
724     if (flags & RDW_UPDATENOW)
725     {
726         if (wndPtr->hrgnUpdate) /* wm_painticon wparam is 1 */
727             SendMessageW( hWnd, (bIcon) ? WM_PAINTICON : WM_PAINT, bIcon, 0 );
728     }
729     else if (flags & RDW_ERASENOW)
730     {
731         UINT dcx = DCX_INTERSECTRGN | DCX_USESTYLE | DCX_KEEPCLIPRGN | DCX_WINDOWPAINT | DCX_CACHE;
732         HRGN hrgnRet;
733
734         hrgnRet = WIN_UpdateNCRgn(wndPtr, 
735                                   hrgn, 
736                                   UNC_REGION | UNC_CHECK | 
737                                   ((ex & RDW_EX_DELAY_NCPAINT) ? UNC_DELAY_NCPAINT : 0) ); 
738
739         if( hrgnRet )
740         {
741             if( hrgnRet > 1 ) hrgn = hrgnRet; else hrgnRet = 0; /* entire client */
742             if( wndPtr->flags & WIN_NEEDS_ERASEBKGND )
743             {
744                 if( bIcon ) dcx |= DCX_WINDOW;
745                 else 
746                 if( hrgnRet )
747                     OffsetRgn( hrgnRet, wndPtr->rectWindow.left - wndPtr->rectClient.left, 
748                                         wndPtr->rectWindow.top  - wndPtr->rectClient.top);
749                 else
750                     dcx &= ~DCX_INTERSECTRGN;
751                 if (( hDC = GetDCEx( hWnd, hrgnRet, dcx )) )
752                 {
753                     if (SendMessageW( hWnd, (bIcon) ? WM_ICONERASEBKGND : WM_ERASEBKGND,
754                                       (WPARAM)hDC, 0 ))
755                     wndPtr->flags &= ~WIN_NEEDS_ERASEBKGND;
756                     ReleaseDC( hWnd, hDC );
757                 }
758             }
759         }
760     }
761
762     if( !IsWindow(hWnd) ) return hrgn;
763
764       /* ... and its child windows */
765
766     if(!(flags & RDW_NOCHILDREN) && !(wndPtr->dwStyle & WS_MINIMIZE) &&
767        ((flags & RDW_ALLCHILDREN) || !(wndPtr->dwStyle & WS_CLIPCHILDREN)) )
768     {
769         HWND *list, *phwnd;
770
771         if( (list = WIN_ListChildren( wndPtr->hwndSelf )) )
772         {
773             for (phwnd = list; *phwnd; phwnd++)
774             {
775                 if (!(wndPtr = WIN_FindWndPtr( *phwnd ))) continue;
776                 if ( (wndPtr->dwStyle & WS_VISIBLE) &&
777                      (wndPtr->hrgnUpdate || (wndPtr->flags & WIN_INTERNAL_PAINT)) )
778                     hrgn = RDW_Paint( wndPtr, hrgn, flags, ex );
779                 WIN_ReleaseWndPtr(wndPtr);
780             }
781             HeapFree( GetProcessHeap(), 0, list );
782         }
783     }
784
785     return hrgn;
786 }
787
788
789 /***********************************************************************
790  *              RedrawWindow (USER32.@)
791  */
792 BOOL WINAPI RedrawWindow( HWND hwnd, const RECT *rectUpdate,
793                               HRGN hrgnUpdate, UINT flags )
794 {
795     HRGN hRgn = 0;
796     RECT r, r2;
797     POINT pt;
798     WND* wndPtr;
799
800     if (!hwnd) hwnd = GetDesktopWindow();
801
802     /* check if the window or its parents are visible/not minimized */
803
804     if (!WIN_IsWindowDrawable( hwnd, !(flags & RDW_FRAME) )) return TRUE;
805
806     if (!(wndPtr = WIN_FindWndPtr( hwnd ))) return FALSE;
807     if (TRACE_ON(win))
808     {
809         if( hrgnUpdate )
810         {
811             GetRgnBox( hrgnUpdate, &r );
812             TRACE( "%04x (%04x) NULL %04x box (%i,%i-%i,%i) flags=%04x\n",
813                   hwnd, wndPtr->hrgnUpdate, hrgnUpdate, r.left, r.top, r.right, r.bottom, flags );
814         }
815         else
816         {
817             if( rectUpdate )
818                 r = *rectUpdate;
819             else
820                 SetRectEmpty( &r );
821             TRACE( "%04x (%04x) %s %d,%d-%d,%d %04x flags=%04x\n",
822                         hwnd, wndPtr->hrgnUpdate, rectUpdate ? "rect" : "NULL", r.left, 
823                         r.top, r.right, r.bottom, hrgnUpdate, flags );
824         }
825     }
826
827
828     /* process pending events and messages before painting */
829     if (flags & RDW_UPDATENOW)
830         MsgWaitForMultipleObjects( 0, NULL, FALSE, 0, QS_ALLINPUT );
831
832     /* prepare an update region in window coordinates */
833
834     if( flags & RDW_FRAME )
835         r = wndPtr->rectWindow;
836     else
837         r = wndPtr->rectClient;
838
839     pt.x = wndPtr->rectClient.left - wndPtr->rectWindow.left;
840     pt.y = wndPtr->rectClient.top - wndPtr->rectWindow.top;
841     OffsetRect( &r, -wndPtr->rectClient.left, -wndPtr->rectClient.top );
842
843     if (flags & RDW_INVALIDATE)  /* ------------------------- Invalidate */
844     {
845         /* If the window doesn't have hrgnUpdate we leave hRgn zero
846          * and put a new region straight into wndPtr->hrgnUpdate
847          * so that RDW_UpdateRgns() won't have to do any extra work.
848          */
849
850         if( hrgnUpdate )
851         {
852             if( wndPtr->hrgnUpdate )
853                 hRgn = REGION_CropRgn( 0, hrgnUpdate, NULL, &pt );
854             else 
855                 wndPtr->hrgnUpdate = REGION_CropRgn( 0, hrgnUpdate, &r, &pt ); 
856         }
857         else if( rectUpdate )
858         {
859             if( !IntersectRect( &r2, &r, rectUpdate ) ) goto END;
860             OffsetRect( &r2, pt.x, pt.y );
861
862 rect2i:
863             if( wndPtr->hrgnUpdate == 0 )
864                 wndPtr->hrgnUpdate = CreateRectRgnIndirect( &r2 );
865             else
866                 hRgn = CreateRectRgnIndirect( &r2 );
867         }
868         else /* entire window or client depending on RDW_FRAME */
869         {
870             if( flags & RDW_FRAME )
871             {
872                 if( wndPtr->hrgnUpdate )
873                     DeleteObject( wndPtr->hrgnUpdate );
874                 wndPtr->hrgnUpdate = 1;
875             }
876             else
877             {
878                 GETCLIENTRECTW( wndPtr, r2 );
879                 goto rect2i;
880             }
881         }
882     }
883     else if (flags & RDW_VALIDATE)  /* ------------------------- Validate */
884     {
885         /* In this we cannot leave with zero hRgn */
886         if( hrgnUpdate )
887         {
888             hRgn = REGION_CropRgn( hRgn, hrgnUpdate,  &r, &pt );
889             GetRgnBox( hRgn, &r2 );
890             if( IsRectEmpty( &r2 ) ) goto END;
891         }
892         else if( rectUpdate )
893         {
894             if( !IntersectRect( &r2, &r, rectUpdate ) ) goto END;
895                 OffsetRect( &r2, pt.x, pt.y );
896             hRgn = CreateRectRgnIndirect( &r2 );
897         }
898         else /* entire window or client depending on RDW_FRAME */
899         {
900             if( flags & RDW_FRAME ) 
901                 hRgn = 1;
902             else
903             {
904                 GETCLIENTRECTW( wndPtr, r2 );
905                 hRgn = CreateRectRgnIndirect( &r2 );
906             }
907         }
908     }
909
910     /* At this point hRgn is either an update region in window coordinates or 1 or 0 */
911
912     RDW_UpdateRgns( wndPtr, hRgn, flags, TRUE );
913
914     /* Erase/update windows, from now on hRgn is a scratch region */
915
916     hRgn = RDW_Paint( wndPtr, (hRgn == 1) ? 0 : hRgn, flags, 0 );
917
918 END:
919     if( hRgn > 1 && (hRgn != hrgnUpdate) )
920         DeleteObject(hRgn );
921     WIN_ReleaseWndPtr(wndPtr);
922     return TRUE;
923 }
924
925
926 /***********************************************************************
927  *              UpdateWindow (USER32.@)
928  */
929 void WINAPI UpdateWindow( HWND hwnd )
930 {
931     RedrawWindow( hwnd, NULL, 0, RDW_UPDATENOW | RDW_ALLCHILDREN );
932 }
933
934
935 /***********************************************************************
936  *              InvalidateRgn (USER32.@)
937  */
938 BOOL WINAPI InvalidateRgn( HWND hwnd, HRGN hrgn, BOOL erase )
939 {
940     return RedrawWindow(hwnd, NULL, hrgn, RDW_INVALIDATE | (erase ? RDW_ERASE : 0) );
941 }
942
943
944 /***********************************************************************
945  *              InvalidateRect (USER32.@)
946  */
947 BOOL WINAPI InvalidateRect( HWND hwnd, const RECT *rect, BOOL erase )
948 {
949     return RedrawWindow( hwnd, rect, 0, RDW_INVALIDATE | (erase ? RDW_ERASE : 0) );
950 }
951
952
953 /***********************************************************************
954  *              ValidateRgn (USER32.@)
955  */
956 void WINAPI ValidateRgn( HWND hwnd, HRGN hrgn )
957 {
958     RedrawWindow( hwnd, NULL, hrgn, RDW_VALIDATE | RDW_NOCHILDREN );
959 }
960
961
962 /***********************************************************************
963  *              ValidateRect (USER32.@)
964  */
965 void WINAPI ValidateRect( HWND hwnd, const RECT *rect )
966 {
967     RedrawWindow( hwnd, rect, 0, RDW_VALIDATE | RDW_NOCHILDREN );
968 }
969
970
971 /***********************************************************************
972  *              GetUpdateRect (USER32.@)
973  */
974 BOOL WINAPI GetUpdateRect( HWND hwnd, LPRECT rect, BOOL erase )
975 {
976     BOOL retvalue;
977     WND * wndPtr = WIN_FindWndPtr( hwnd );
978     if (!wndPtr) return FALSE;
979
980     if (rect)
981     {
982         if (wndPtr->hrgnUpdate > 1)
983         {
984             HRGN hrgn = CreateRectRgn( 0, 0, 0, 0 );
985             if (GetUpdateRgn( hwnd, hrgn, erase ) == ERROR)
986             {
987                 retvalue = FALSE;
988                 goto END;
989             }
990             GetRgnBox( hrgn, rect );
991             DeleteObject( hrgn );
992             if (GetClassLongA(wndPtr->hwndSelf, GCL_STYLE) & CS_OWNDC)
993             {
994                 if (GetMapMode(wndPtr->dce->hDC) != MM_TEXT)
995                 {
996                     DPtoLP (wndPtr->dce->hDC, (LPPOINT)rect,  2);
997                 }
998             }
999         }
1000         else
1001         if( wndPtr->hrgnUpdate == 1 )
1002         {
1003             GetClientRect( hwnd, rect );
1004             if (erase) RedrawWindow( hwnd, NULL, 0, RDW_FRAME | RDW_ERASENOW | RDW_NOCHILDREN );
1005         }
1006         else 
1007             SetRectEmpty( rect );
1008     }
1009     retvalue = (wndPtr->hrgnUpdate >= 1);
1010 END:
1011     WIN_ReleaseWndPtr(wndPtr);
1012     return retvalue;
1013 }
1014
1015
1016 /***********************************************************************
1017  *              GetUpdateRgn (USER32.@)
1018  */
1019 INT WINAPI GetUpdateRgn( HWND hwnd, HRGN hrgn, BOOL erase )
1020 {
1021     INT retval;
1022     WND * wndPtr = WIN_FindWndPtr( hwnd );
1023     if (!wndPtr) return ERROR;
1024
1025     if (wndPtr->hrgnUpdate == 0)
1026     {
1027         SetRectRgn( hrgn, 0, 0, 0, 0 );
1028         retval = NULLREGION;
1029         goto END;
1030     }
1031     else
1032     if (wndPtr->hrgnUpdate == 1)
1033     {
1034         SetRectRgn( hrgn, 0, 0, wndPtr->rectClient.right - wndPtr->rectClient.left,
1035                                 wndPtr->rectClient.bottom - wndPtr->rectClient.top );
1036         retval = SIMPLEREGION;
1037     }
1038     else
1039     {
1040         retval = CombineRgn( hrgn, wndPtr->hrgnUpdate, 0, RGN_COPY );
1041         OffsetRgn( hrgn, wndPtr->rectWindow.left - wndPtr->rectClient.left,
1042                          wndPtr->rectWindow.top - wndPtr->rectClient.top );
1043     }
1044     if (erase) RedrawWindow( hwnd, NULL, 0, RDW_ERASENOW | RDW_NOCHILDREN );
1045 END:
1046     WIN_ReleaseWndPtr(wndPtr);
1047     return retval;
1048 }
1049
1050
1051 /***********************************************************************
1052  *              ExcludeUpdateRgn (USER32.@)
1053  */
1054 INT WINAPI ExcludeUpdateRgn( HDC hdc, HWND hwnd )
1055 {
1056     RECT rect;
1057     WND * wndPtr;
1058
1059     if (!(wndPtr = WIN_FindWndPtr( hwnd ))) return ERROR;
1060
1061     if (wndPtr->hrgnUpdate)
1062     {
1063         INT ret;
1064         HRGN hrgn = CreateRectRgn(wndPtr->rectWindow.left - wndPtr->rectClient.left,
1065                                       wndPtr->rectWindow.top - wndPtr->rectClient.top,
1066                                       wndPtr->rectWindow.right - wndPtr->rectClient.left,
1067                                       wndPtr->rectWindow.bottom - wndPtr->rectClient.top);
1068         if( wndPtr->hrgnUpdate > 1 )
1069         {
1070             CombineRgn(hrgn, wndPtr->hrgnUpdate, 0, RGN_COPY);
1071             OffsetRgn(hrgn, wndPtr->rectWindow.left - wndPtr->rectClient.left, 
1072                             wndPtr->rectWindow.top - wndPtr->rectClient.top );
1073         }
1074
1075         /* do ugly coordinate translations in dce.c */
1076
1077         ret = DCE_ExcludeRgn( hdc, hwnd, hrgn );
1078         DeleteObject( hrgn );
1079         WIN_ReleaseWndPtr(wndPtr);
1080         return ret;
1081     } 
1082     WIN_ReleaseWndPtr(wndPtr);
1083     return GetClipBox( hdc, &rect );
1084 }
1085
1086
1087
1088 /***********************************************************************
1089  *              FillRect (USER.81)
1090  * NOTE
1091  *   The Win16 variant doesn't support special color brushes like
1092  *   the Win32 one, despite the fact that Win16, as well as Win32,
1093  *   supports special background brushes for a window class.
1094  */
1095 INT16 WINAPI FillRect16( HDC16 hdc, const RECT16 *rect, HBRUSH16 hbrush )
1096 {
1097     HBRUSH prevBrush;
1098
1099     /* coordinates are logical so we cannot fast-check 'rect',
1100      * it will be done later in the PatBlt().
1101      */
1102
1103     if (!(prevBrush = SelectObject( hdc, hbrush ))) return 0;
1104     PatBlt( hdc, rect->left, rect->top,
1105               rect->right - rect->left, rect->bottom - rect->top, PATCOPY );
1106     SelectObject( hdc, prevBrush );
1107     return 1;
1108 }
1109
1110
1111 /***********************************************************************
1112  *              FillRect (USER32.@)
1113  */
1114 INT WINAPI FillRect( HDC hdc, const RECT *rect, HBRUSH hbrush )
1115 {
1116     HBRUSH prevBrush;
1117
1118     if (hbrush <= (HBRUSH) (COLOR_MAX + 1)) {
1119         hbrush = GetSysColorBrush( (INT) hbrush - 1 );
1120     }
1121
1122     if (!(prevBrush = SelectObject( hdc, hbrush ))) return 0;
1123     PatBlt( hdc, rect->left, rect->top,
1124               rect->right - rect->left, rect->bottom - rect->top, PATCOPY );
1125     SelectObject( hdc, prevBrush );
1126     return 1;
1127 }
1128
1129
1130 /***********************************************************************
1131  *              InvertRect (USER.82)
1132  */
1133 void WINAPI InvertRect16( HDC16 hdc, const RECT16 *rect )
1134 {
1135     PatBlt( hdc, rect->left, rect->top,
1136               rect->right - rect->left, rect->bottom - rect->top, DSTINVERT );
1137 }
1138
1139
1140 /***********************************************************************
1141  *              InvertRect (USER32.@)
1142  */
1143 BOOL WINAPI InvertRect( HDC hdc, const RECT *rect )
1144 {
1145     return PatBlt( hdc, rect->left, rect->top,
1146                      rect->right - rect->left, rect->bottom - rect->top, 
1147                      DSTINVERT );
1148 }
1149
1150
1151 /***********************************************************************
1152  *              FrameRect (USER32.@)
1153  */
1154 INT WINAPI FrameRect( HDC hdc, const RECT *rect, HBRUSH hbrush )
1155 {
1156     HBRUSH prevBrush;
1157     RECT r = *rect;
1158
1159     if ( (r.right <= r.left) || (r.bottom <= r.top) ) return 0;
1160     if (!(prevBrush = SelectObject( hdc, hbrush ))) return 0;
1161     
1162     PatBlt( hdc, r.left, r.top, 1,
1163               r.bottom - r.top, PATCOPY );
1164     PatBlt( hdc, r.right - 1, r.top, 1,
1165               r.bottom - r.top, PATCOPY );
1166     PatBlt( hdc, r.left, r.top,
1167               r.right - r.left, 1, PATCOPY );
1168     PatBlt( hdc, r.left, r.bottom - 1,
1169               r.right - r.left, 1, PATCOPY );
1170
1171     SelectObject( hdc, prevBrush );
1172     return TRUE;
1173 }
1174
1175
1176 /***********************************************************************
1177  *              FrameRect (USER.83)
1178  */
1179 INT16 WINAPI FrameRect16( HDC16 hdc, const RECT16 *rect16, HBRUSH16 hbrush )
1180 {
1181     RECT rect;
1182     CONV_RECT16TO32( rect16, &rect );
1183     return FrameRect( hdc, &rect, hbrush );
1184 }
1185
1186
1187 /***********************************************************************
1188  *              DrawFocusRect (USER.466)
1189  */
1190 void WINAPI DrawFocusRect16( HDC16 hdc, const RECT16* rc )
1191 {
1192     RECT rect32;
1193     CONV_RECT16TO32( rc, &rect32 );
1194     DrawFocusRect( hdc, &rect32 );
1195 }
1196
1197
1198 /***********************************************************************
1199  *              DrawFocusRect (USER32.@)
1200  *
1201  * FIXME: PatBlt(PATINVERT) with background brush.
1202  */
1203 BOOL WINAPI DrawFocusRect( HDC hdc, const RECT* rc )
1204 {
1205     HBRUSH hOldBrush;
1206     HPEN hOldPen, hNewPen;
1207     INT oldDrawMode, oldBkMode;
1208
1209     hOldBrush = SelectObject(hdc, GetStockObject(NULL_BRUSH));
1210     hNewPen = CreatePen(PS_ALTERNATE, 1, GetSysColor(COLOR_WINDOWTEXT));
1211     hOldPen = SelectObject(hdc, hNewPen);
1212     oldDrawMode = SetROP2(hdc, R2_XORPEN);
1213     oldBkMode = SetBkMode(hdc, TRANSPARENT);
1214
1215     Rectangle(hdc, rc->left, rc->top, rc->right, rc->bottom);
1216
1217     SetBkMode(hdc, oldBkMode);
1218     SetROP2(hdc, oldDrawMode);
1219     SelectObject(hdc, hOldPen);
1220     DeleteObject(hNewPen);
1221     SelectObject(hdc, hOldBrush);
1222
1223     return TRUE;
1224 }
1225
1226
1227 /**********************************************************************
1228  *              DrawAnimatedRects (USER32.@)
1229  */
1230 BOOL WINAPI DrawAnimatedRects( HWND hwnd, INT idAni,
1231                                    const RECT* lprcFrom,
1232                                    const RECT* lprcTo )
1233 {
1234     FIXME_(win)("(0x%x,%d,%p,%p): stub\n",hwnd,idAni,lprcFrom,lprcTo);
1235     return TRUE;
1236 }
1237
1238
1239 /**********************************************************************
1240  *          PAINTING_DrawStateJam
1241  *
1242  * Jams in the requested type in the dc
1243  */
1244 static BOOL PAINTING_DrawStateJam(HDC hdc, UINT opcode,
1245                                   DRAWSTATEPROC func, LPARAM lp, WPARAM wp,
1246                                   LPRECT rc, UINT dtflags, BOOL unicode )
1247 {
1248     HDC memdc;
1249     HBITMAP hbmsave;
1250     BOOL retval;
1251     INT cx = rc->right - rc->left;
1252     INT cy = rc->bottom - rc->top;
1253     
1254     switch(opcode)
1255     {
1256     case DST_TEXT:
1257     case DST_PREFIXTEXT:
1258         if(unicode)
1259             return DrawTextW(hdc, (LPWSTR)lp, (INT)wp, rc, dtflags);
1260         else
1261             return DrawTextA(hdc, (LPSTR)lp, (INT)wp, rc, dtflags);
1262
1263     case DST_ICON:
1264         return DrawIcon(hdc, rc->left, rc->top, (HICON)lp);
1265
1266     case DST_BITMAP:
1267         memdc = CreateCompatibleDC(hdc);
1268         if(!memdc) return FALSE;
1269         hbmsave = (HBITMAP)SelectObject(memdc, (HBITMAP)lp);
1270         if(!hbmsave) 
1271         {
1272             DeleteDC(memdc);
1273             return FALSE;
1274         }
1275         retval = BitBlt(hdc, rc->left, rc->top, cx, cy, memdc, 0, 0, SRCCOPY);
1276         SelectObject(memdc, hbmsave);
1277         DeleteDC(memdc);
1278         return retval;
1279             
1280     case DST_COMPLEX:
1281         if(func) {
1282             BOOL bRet;
1283             /* DRAWSTATEPROC assumes that it draws at the center of coordinates  */
1284
1285             OffsetViewportOrgEx(hdc, rc->left, rc->top, NULL);
1286             bRet = func(hdc, lp, wp, cx, cy);
1287             /* Restore origin */
1288             OffsetViewportOrgEx(hdc, -rc->left, -rc->top, NULL);
1289             return bRet;
1290         } else
1291             return FALSE;
1292     }
1293     return FALSE;
1294 }
1295
1296 /**********************************************************************
1297  *      PAINTING_DrawState()
1298  */
1299 static BOOL PAINTING_DrawState(HDC hdc, HBRUSH hbr, DRAWSTATEPROC func, LPARAM lp, WPARAM wp,
1300                                INT x, INT y, INT cx, INT cy, UINT flags, BOOL unicode )
1301 {
1302     HBITMAP hbm, hbmsave;
1303     HFONT hfsave;
1304     HBRUSH hbsave, hbrtmp = 0;
1305     HDC memdc;
1306     RECT rc;
1307     UINT dtflags = DT_NOCLIP;
1308     COLORREF fg, bg;
1309     UINT opcode = flags & 0xf;
1310     INT len = wp;
1311     BOOL retval, tmp;
1312
1313     if((opcode == DST_TEXT || opcode == DST_PREFIXTEXT) && !len)    /* The string is '\0' terminated */
1314     {
1315         if(unicode)
1316             len = strlenW((LPWSTR)lp);
1317         else
1318             len = strlen((LPSTR)lp);
1319     }
1320
1321     /* Find out what size the image has if not given by caller */
1322     if(!cx || !cy)
1323     {
1324         SIZE s;
1325         CURSORICONINFO *ici;
1326         BITMAP bm;
1327
1328         switch(opcode)
1329         {
1330         case DST_TEXT:
1331         case DST_PREFIXTEXT:
1332             if(unicode)
1333                 retval = GetTextExtentPoint32W(hdc, (LPWSTR)lp, len, &s);
1334             else
1335                 retval = GetTextExtentPoint32A(hdc, (LPSTR)lp, len, &s);
1336             if(!retval) return FALSE;
1337             break;
1338             
1339         case DST_ICON:
1340             ici = (CURSORICONINFO *)GlobalLock16((HGLOBAL16)lp);
1341             if(!ici) return FALSE;
1342             s.cx = ici->nWidth;
1343             s.cy = ici->nHeight;
1344             GlobalUnlock16((HGLOBAL16)lp);
1345             break;            
1346
1347         case DST_BITMAP:
1348             if(!GetObjectA((HBITMAP)lp, sizeof(bm), &bm))
1349                 return FALSE;
1350             s.cx = bm.bmWidth;
1351             s.cy = bm.bmHeight;
1352             break;
1353             
1354         case DST_COMPLEX: /* cx and cy must be set in this mode */
1355             return FALSE;
1356         }
1357                     
1358         if(!cx) cx = s.cx;
1359         if(!cy) cy = s.cy;
1360     }
1361
1362     rc.left   = x;
1363     rc.top    = y;
1364     rc.right  = x + cx;
1365     rc.bottom = y + cy;
1366
1367     if(flags & DSS_RIGHT)    /* This one is not documented in the win32.hlp file */
1368         dtflags |= DT_RIGHT;
1369     if(opcode == DST_TEXT)
1370         dtflags |= DT_NOPREFIX;
1371
1372     /* For DSS_NORMAL we just jam in the image and return */
1373     if((flags & 0x7ff0) == DSS_NORMAL)
1374     {
1375         return PAINTING_DrawStateJam(hdc, opcode, func, lp, len, &rc, dtflags, unicode);
1376     }
1377
1378     /* For all other states we need to convert the image to B/W in a local bitmap */
1379     /* before it is displayed */
1380     fg = SetTextColor(hdc, RGB(0, 0, 0));
1381     bg = SetBkColor(hdc, RGB(255, 255, 255));
1382     hbm = (HBITMAP)NULL; hbmsave = (HBITMAP)NULL;
1383     memdc = (HDC)NULL; hbsave = (HBRUSH)NULL;
1384     retval = FALSE; /* assume failure */
1385     
1386     /* From here on we must use "goto cleanup" when something goes wrong */
1387     hbm     = CreateBitmap(cx, cy, 1, 1, NULL);
1388     if(!hbm) goto cleanup;
1389     memdc   = CreateCompatibleDC(hdc);
1390     if(!memdc) goto cleanup;
1391     hbmsave = (HBITMAP)SelectObject(memdc, hbm);
1392     if(!hbmsave) goto cleanup;
1393     rc.left = rc.top = 0;
1394     rc.right = cx;
1395     rc.bottom = cy;
1396     if(!FillRect(memdc, &rc, (HBRUSH)GetStockObject(WHITE_BRUSH))) goto cleanup;
1397     SetBkColor(memdc, RGB(255, 255, 255));
1398     SetTextColor(memdc, RGB(0, 0, 0));
1399     hfsave  = (HFONT)SelectObject(memdc, GetCurrentObject(hdc, OBJ_FONT));
1400
1401     /* DST_COMPLEX may draw text as well,
1402      * so we must be sure that correct font is selected
1403      */
1404     if(!hfsave && (opcode <= DST_PREFIXTEXT)) goto cleanup;
1405     tmp = PAINTING_DrawStateJam(memdc, opcode, func, lp, len, &rc, dtflags, unicode);
1406     if(hfsave) SelectObject(memdc, hfsave);
1407     if(!tmp) goto cleanup;
1408     
1409     /* This state cause the image to be dithered */
1410     if(flags & DSS_UNION)
1411     {
1412         hbsave = (HBRUSH)SelectObject(memdc, CACHE_GetPattern55AABrush());
1413         if(!hbsave) goto cleanup;
1414         tmp = PatBlt(memdc, 0, 0, cx, cy, 0x00FA0089);
1415         SelectObject(memdc, hbsave);
1416         if(!tmp) goto cleanup;
1417     }
1418
1419     if (flags & DSS_DISABLED)
1420        hbrtmp = CreateSolidBrush(GetSysColor(COLOR_3DHILIGHT));
1421     else if (flags & DSS_DEFAULT)
1422        hbrtmp = CreateSolidBrush(GetSysColor(COLOR_3DSHADOW));
1423
1424     /* Draw light or dark shadow */
1425     if (flags & (DSS_DISABLED|DSS_DEFAULT))
1426     {
1427        if(!hbrtmp) goto cleanup;
1428        hbsave = (HBRUSH)SelectObject(hdc, hbrtmp);
1429        if(!hbsave) goto cleanup;
1430        if(!BitBlt(hdc, x+1, y+1, cx, cy, memdc, 0, 0, 0x00B8074A)) goto cleanup;
1431        SelectObject(hdc, hbsave);
1432        DeleteObject(hbrtmp);
1433        hbrtmp = 0;
1434     }
1435
1436     if (flags & DSS_DISABLED)
1437     {
1438        hbr = hbrtmp = CreateSolidBrush(GetSysColor(COLOR_3DSHADOW));
1439        if(!hbrtmp) goto cleanup;
1440     }
1441     else if (!hbr)
1442     {
1443        hbr = (HBRUSH)GetStockObject(BLACK_BRUSH);
1444     }
1445
1446     hbsave = (HBRUSH)SelectObject(hdc, hbr);
1447     
1448     if(!BitBlt(hdc, x, y, cx, cy, memdc, 0, 0, 0x00B8074A)) goto cleanup;
1449     
1450     retval = TRUE; /* We succeeded */
1451     
1452 cleanup:    
1453     SetTextColor(hdc, fg);
1454     SetBkColor(hdc, bg);
1455
1456     if(hbsave)  SelectObject(hdc, hbsave);
1457     if(hbmsave) SelectObject(memdc, hbmsave);
1458     if(hbrtmp)  DeleteObject(hbrtmp);
1459     if(hbm)     DeleteObject(hbm);
1460     if(memdc)   DeleteDC(memdc);
1461
1462     return retval;
1463 }
1464
1465 /**********************************************************************
1466  *              DrawStateA (USER32.@)
1467  */
1468 BOOL WINAPI DrawStateA(HDC hdc, HBRUSH hbr,
1469                    DRAWSTATEPROC func, LPARAM ldata, WPARAM wdata,
1470                    INT x, INT y, INT cx, INT cy, UINT flags)
1471 {
1472     return PAINTING_DrawState(hdc, hbr, func, ldata, wdata, x, y, cx, cy, flags, FALSE);
1473 }
1474
1475 /**********************************************************************
1476  *              DrawStateW (USER32.@)
1477  */
1478 BOOL WINAPI DrawStateW(HDC hdc, HBRUSH hbr,
1479                    DRAWSTATEPROC func, LPARAM ldata, WPARAM wdata,
1480                    INT x, INT y, INT cx, INT cy, UINT flags)
1481 {
1482     return PAINTING_DrawState(hdc, hbr, func, ldata, wdata, x, y, cx, cy, flags, TRUE);
1483 }
1484
1485 /***********************************************************************
1486  *              SelectPalette (USER.282)
1487  */
1488 HPALETTE16 WINAPI SelectPalette16( HDC16 hDC, HPALETTE16 hPal,
1489                                    BOOL16 bForceBackground )
1490 {
1491     WORD wBkgPalette = 1;
1492
1493     if (!bForceBackground && (hPal != GetStockObject(DEFAULT_PALETTE)))
1494     {
1495         HWND hwnd = WindowFromDC( hDC );
1496         if (hwnd)
1497         {
1498             HWND hForeground = GetForegroundWindow();
1499             /* set primary palette if it's related to current active */
1500             if (hForeground == hwnd || IsChild(hForeground,hwnd)) wBkgPalette = 0;
1501         }
1502     }
1503     return GDISelectPalette16( hDC, hPal, wBkgPalette);
1504 }
1505
1506
1507 /***********************************************************************
1508  *              RealizePalette (USER.283)
1509  */
1510 UINT16 WINAPI RealizePalette16( HDC16 hDC )
1511 {
1512     UINT16 realized = GDIRealizePalette16( hDC );
1513
1514     /* do not send anything if no colors were changed */
1515     if (realized && IsDCCurrentPalette16( hDC ))
1516     {
1517         /* send palette change notification */
1518         HWND hWnd = WindowFromDC( hDC );
1519         if (hWnd) SendMessageA( HWND_BROADCAST, WM_PALETTECHANGED, (WPARAM)hWnd, 0L);
1520     }
1521     return realized;
1522 }
1523
1524
1525 /***********************************************************************
1526  *              UserRealizePalette (USER32.@)
1527  */
1528 UINT WINAPI UserRealizePalette( HDC hDC )
1529 {
1530     return RealizePalette16( hDC );
1531 }