wined3d: Force ARB shader programs reselection on bool/int constant changes.
[wine] / dlls / user32 / painting.c
1 /*
2  * Window painting functions
3  *
4  * Copyright 1993, 1994, 1995, 2001, 2004, 2005, 2008 Alexandre Julliard
5  * Copyright 1996, 1997, 1999 Alex Korobka
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #include "config.h"
23 #include "wine/port.h"
24
25 #include <assert.h>
26 #include <stdarg.h>
27 #include <string.h>
28
29 #include "ntstatus.h"
30 #define WIN32_NO_STATUS
31 #include "windef.h"
32 #include "winbase.h"
33 #include "wingdi.h"
34 #include "winuser.h"
35 #include "wine/server.h"
36 #include "win.h"
37 #include "user_private.h"
38 #include "controls.h"
39 #include "wine/gdi_driver.h"
40 #include "wine/list.h"
41 #include "wine/debug.h"
42
43 WINE_DEFAULT_DEBUG_CHANNEL(win);
44
45
46 struct dce
47 {
48     struct list entry;         /* entry in global DCE list */
49     HDC         hdc;
50     HWND        hwnd;
51     HRGN        clip_rgn;
52     DWORD       flags;
53     LONG        count;         /* usage count; 0 or 1 for cache DCEs, always 1 for window DCEs,
54                                   always >= 1 for class DCEs */
55 };
56
57 static struct list dce_list = LIST_INIT(dce_list);
58
59 static BOOL CALLBACK dc_hook( HDC hDC, WORD code, DWORD_PTR data, LPARAM lParam );
60
61 static const WCHAR displayW[] = { 'D','I','S','P','L','A','Y',0 };
62
63
64 /***********************************************************************
65  *           dump_rdw_flags
66  */
67 static void dump_rdw_flags(UINT flags)
68 {
69     TRACE("flags:");
70     if (flags & RDW_INVALIDATE) TRACE(" RDW_INVALIDATE");
71     if (flags & RDW_INTERNALPAINT) TRACE(" RDW_INTERNALPAINT");
72     if (flags & RDW_ERASE) TRACE(" RDW_ERASE");
73     if (flags & RDW_VALIDATE) TRACE(" RDW_VALIDATE");
74     if (flags & RDW_NOINTERNALPAINT) TRACE(" RDW_NOINTERNALPAINT");
75     if (flags & RDW_NOERASE) TRACE(" RDW_NOERASE");
76     if (flags & RDW_NOCHILDREN) TRACE(" RDW_NOCHILDREN");
77     if (flags & RDW_ALLCHILDREN) TRACE(" RDW_ALLCHILDREN");
78     if (flags & RDW_UPDATENOW) TRACE(" RDW_UPDATENOW");
79     if (flags & RDW_ERASENOW) TRACE(" RDW_ERASENOW");
80     if (flags & RDW_FRAME) TRACE(" RDW_FRAME");
81     if (flags & RDW_NOFRAME) TRACE(" RDW_NOFRAME");
82
83 #define RDW_FLAGS \
84     (RDW_INVALIDATE | \
85     RDW_INTERNALPAINT | \
86     RDW_ERASE | \
87     RDW_VALIDATE | \
88     RDW_NOINTERNALPAINT | \
89     RDW_NOERASE | \
90     RDW_NOCHILDREN | \
91     RDW_ALLCHILDREN | \
92     RDW_UPDATENOW | \
93     RDW_ERASENOW | \
94     RDW_FRAME | \
95     RDW_NOFRAME)
96
97     if (flags & ~RDW_FLAGS) TRACE(" %04x", flags & ~RDW_FLAGS);
98     TRACE("\n");
99 #undef RDW_FLAGS
100 }
101
102
103 /***********************************************************************
104  *              update_visible_region
105  *
106  * Set the visible region and X11 drawable for the DC associated to
107  * a given window.
108  */
109 static void update_visible_region( struct dce *dce )
110 {
111     NTSTATUS status;
112     HRGN vis_rgn = 0;
113     HWND top_win = 0;
114     DWORD flags = dce->flags;
115     size_t size = 256;
116     RECT win_rect, top_rect;
117
118     /* don't clip siblings if using parent clip region */
119     if (flags & DCX_PARENTCLIP) flags &= ~DCX_CLIPSIBLINGS;
120
121     /* fetch the visible region from the server */
122     do
123     {
124         RGNDATA *data = HeapAlloc( GetProcessHeap(), 0, sizeof(*data) + size - 1 );
125         if (!data) return;
126
127         SERVER_START_REQ( get_visible_region )
128         {
129             req->window  = wine_server_user_handle( dce->hwnd );
130             req->flags   = flags;
131             wine_server_set_reply( req, data->Buffer, size );
132             if (!(status = wine_server_call( req )))
133             {
134                 size_t reply_size = wine_server_reply_size( reply );
135                 data->rdh.dwSize   = sizeof(data->rdh);
136                 data->rdh.iType    = RDH_RECTANGLES;
137                 data->rdh.nCount   = reply_size / sizeof(RECT);
138                 data->rdh.nRgnSize = reply_size;
139                 vis_rgn = ExtCreateRegion( NULL, size, data );
140
141                 top_win         = wine_server_ptr_handle( reply->top_win );
142                 win_rect.left   = reply->win_rect.left;
143                 win_rect.top    = reply->win_rect.top;
144                 win_rect.right  = reply->win_rect.right;
145                 win_rect.bottom = reply->win_rect.bottom;
146                 top_rect.left   = reply->top_rect.left;
147                 top_rect.top    = reply->top_rect.top;
148                 top_rect.right  = reply->top_rect.right;
149                 top_rect.bottom = reply->top_rect.bottom;
150             }
151             else size = reply->total_size;
152         }
153         SERVER_END_REQ;
154         HeapFree( GetProcessHeap(), 0, data );
155     } while (status == STATUS_BUFFER_OVERFLOW);
156
157     if (status || !vis_rgn) return;
158
159     USER_Driver->pGetDC( dce->hdc, dce->hwnd, top_win, &win_rect, &top_rect, flags );
160
161     if (dce->clip_rgn) CombineRgn( vis_rgn, vis_rgn, dce->clip_rgn,
162                                    (flags & DCX_INTERSECTRGN) ? RGN_AND : RGN_DIFF );
163
164     __wine_set_visible_region( dce->hdc, vis_rgn, &win_rect );
165 }
166
167
168 /***********************************************************************
169  *              reset_dce_attrs
170  */
171 static void reset_dce_attrs( struct dce *dce )
172 {
173     RestoreDC( dce->hdc, 1 );  /* initial save level is always 1 */
174     SaveDC( dce->hdc );  /* save the state again for next time */
175 }
176
177
178 /***********************************************************************
179  *              release_dce
180  */
181 static void release_dce( struct dce *dce )
182 {
183     if (!dce->hwnd) return;  /* already released */
184
185     USER_Driver->pReleaseDC( dce->hwnd, dce->hdc );
186
187     if (dce->clip_rgn) DeleteObject( dce->clip_rgn );
188     dce->clip_rgn = 0;
189     dce->hwnd     = 0;
190     dce->flags   &= DCX_CACHE;
191 }
192
193
194 /***********************************************************************
195  *   delete_clip_rgn
196  */
197 static void delete_clip_rgn( struct dce *dce )
198 {
199     if (!dce->clip_rgn) return;  /* nothing to do */
200
201     dce->flags &= ~(DCX_EXCLUDERGN | DCX_INTERSECTRGN);
202     DeleteObject( dce->clip_rgn );
203     dce->clip_rgn = 0;
204
205     /* make it dirty so that the vis rgn gets recomputed next time */
206     SetHookFlags( dce->hdc, DCHF_INVALIDATEVISRGN );
207 }
208
209
210 /***********************************************************************
211  *           alloc_dce
212  *
213  * Allocate a new DCE.
214  */
215 static struct dce *alloc_dce(void)
216 {
217     struct dce *dce;
218
219     if (!(dce = HeapAlloc( GetProcessHeap(), 0, sizeof(*dce) ))) return NULL;
220     if (!(dce->hdc = CreateDCW( displayW, NULL, NULL, NULL )))
221     {
222         HeapFree( GetProcessHeap(), 0, dce );
223         return 0;
224     }
225     SaveDC( dce->hdc );
226
227     dce->hwnd      = 0;
228     dce->clip_rgn  = 0;
229     dce->flags     = 0;
230     dce->count     = 1;
231
232     /* store DCE handle in DC hook data field */
233     SetDCHook( dce->hdc, dc_hook, (DWORD_PTR)dce );
234     SetHookFlags( dce->hdc, DCHF_INVALIDATEVISRGN );
235     return dce;
236 }
237
238
239 /***********************************************************************
240  *              get_window_dce
241  */
242 static struct dce *get_window_dce( HWND hwnd )
243 {
244     struct dce *dce;
245     WND *win = WIN_GetPtr( hwnd );
246
247     if (!win || win == WND_OTHER_PROCESS || win == WND_DESKTOP) return NULL;
248
249     dce = win->dce;
250     if (!dce && (dce = get_class_dce( win->class )))
251     {
252         win->dce = dce;
253         dce->count++;
254     }
255     WIN_ReleasePtr( win );
256
257     if (!dce)  /* try to allocate one */
258     {
259         struct dce *dce_to_free = NULL;
260         LONG class_style = GetClassLongW( hwnd, GCL_STYLE );
261
262         if (class_style & CS_CLASSDC)
263         {
264             if (!(dce = alloc_dce())) return NULL;
265
266             win = WIN_GetPtr( hwnd );
267             if (win && win != WND_OTHER_PROCESS && win != WND_DESKTOP)
268             {
269                 if (win->dce)  /* another thread beat us to it */
270                 {
271                     dce_to_free = dce;
272                     dce = win->dce;
273                 }
274                 else if ((win->dce = set_class_dce( win->class, dce )) != dce)
275                 {
276                     dce_to_free = dce;
277                     dce = win->dce;
278                     dce->count++;
279                 }
280                 else
281                 {
282                     dce->count++;
283                     list_add_tail( &dce_list, &dce->entry );
284                 }
285                 WIN_ReleasePtr( win );
286             }
287             else dce_to_free = dce;
288         }
289         else if (class_style & CS_OWNDC)
290         {
291             if (!(dce = alloc_dce())) return NULL;
292
293             win = WIN_GetPtr( hwnd );
294             if (win && win != WND_OTHER_PROCESS && win != WND_DESKTOP)
295             {
296                 if (win->dwStyle & WS_CLIPCHILDREN) dce->flags |= DCX_CLIPCHILDREN;
297                 if (win->dwStyle & WS_CLIPSIBLINGS) dce->flags |= DCX_CLIPSIBLINGS;
298                 if (win->dce)  /* another thread beat us to it */
299                 {
300                     dce_to_free = dce;
301                     dce = win->dce;
302                 }
303                 else
304                 {
305                     win->dce = dce;
306                     dce->hwnd = hwnd;
307                     dce->count++;
308                     list_add_tail( &dce_list, &dce->entry );
309                 }
310                 WIN_ReleasePtr( win );
311             }
312             else dce_to_free = dce;
313         }
314
315         if (dce_to_free)
316         {
317             SetDCHook( dce_to_free->hdc, NULL, 0 );
318             DeleteDC( dce_to_free->hdc );
319             HeapFree( GetProcessHeap(), 0, dce_to_free );
320             if (dce_to_free == dce)
321                 dce = NULL;
322         }
323     }
324     return dce;
325 }
326
327
328 /***********************************************************************
329  *           free_dce
330  *
331  * Free a class or window DCE.
332  */
333 void free_dce( struct dce *dce, HWND hwnd )
334 {
335     USER_Lock();
336
337     if (dce)
338     {
339         if (!--dce->count)
340         {
341             /* turn it into a cache entry */
342             reset_dce_attrs( dce );
343             release_dce( dce );
344             dce->flags |= DCX_CACHE;
345         }
346         else if (dce->hwnd == hwnd)
347         {
348             release_dce( dce );
349         }
350     }
351
352     /* now check for cache DCEs */
353
354     if (hwnd)
355     {
356         LIST_FOR_EACH_ENTRY( dce, &dce_list, struct dce, entry )
357         {
358             if (dce->hwnd != hwnd) continue;
359             if (!(dce->flags & DCX_CACHE)) continue;
360
361             if (dce->count) WARN( "GetDC() without ReleaseDC() for window %p\n", hwnd );
362             dce->count = 0;
363             release_dce( dce );
364         }
365     }
366
367     USER_Unlock();
368 }
369
370
371 /***********************************************************************
372  *           make_dc_dirty
373  *
374  * Mark the associated DC as dirty to force a refresh of the visible region
375  */
376 static void make_dc_dirty( struct dce *dce )
377 {
378     if (!dce->count)
379     {
380         /* Don't bother with visible regions of unused DCEs */
381         TRACE("\tpurged %p dce [%p]\n", dce, dce->hwnd);
382         release_dce( dce );
383     }
384     else
385     {
386         /* Set dirty bits in the hDC and DCE structs */
387         TRACE("\tfixed up %p dce [%p]\n", dce, dce->hwnd);
388         SetHookFlags( dce->hdc, DCHF_INVALIDATEVISRGN );
389     }
390 }
391
392
393 /***********************************************************************
394  *   invalidate_dce
395  *
396  * It is called from SetWindowPos() - we have to
397  * mark as dirty all busy DCEs for windows that have pWnd->parent as
398  * an ancestor and whose client rect intersects with specified update
399  * rectangle. In addition, pWnd->parent DCEs may need to be updated if
400  * DCX_CLIPCHILDREN flag is set.
401  */
402 void invalidate_dce( HWND hwnd, const RECT *extra_rect )
403 {
404     RECT window_rect;
405     struct dce *dce;
406     HWND hwndScope = GetAncestor( hwnd, GA_PARENT );
407
408     if (!hwndScope) return;
409
410     GetWindowRect( hwnd, &window_rect );
411
412     TRACE("%p scope hwnd = %p %s (%s)\n",
413           hwnd, hwndScope, wine_dbgstr_rect(&window_rect), wine_dbgstr_rect(extra_rect) );
414
415     /* walk all DCEs and fixup non-empty entries */
416
417     USER_Lock();
418     LIST_FOR_EACH_ENTRY( dce, &dce_list, struct dce, entry )
419     {
420         TRACE( "%p: hwnd %p dcx %08x %s %s\n", dce, dce->hwnd, dce->flags,
421                (dce->flags & DCX_CACHE) ? "Cache" : "Owned", dce->count ? "InUse" : "" );
422
423         if (!dce->hwnd) continue;
424         if ((dce->hwnd == hwndScope) && !(dce->flags & DCX_CLIPCHILDREN))
425             continue;  /* child window positions don't bother us */
426
427         /* if DCE window is a child of hwnd, it has to be invalidated */
428         if (dce->hwnd == hwnd || IsChild( hwnd, dce->hwnd ))
429         {
430             make_dc_dirty( dce );
431             continue;
432         }
433
434         /* otherwise check if the window rectangle intersects this DCE window */
435         if (hwndScope == dce->hwnd || IsChild( hwndScope, dce->hwnd ))
436         {
437             RECT dce_rect, tmp;
438             GetWindowRect( dce->hwnd, &dce_rect );
439             if (IntersectRect( &tmp, &dce_rect, &window_rect ) ||
440                 (extra_rect && IntersectRect( &tmp, &dce_rect, extra_rect )))
441                 make_dc_dirty( dce );
442         }
443     }
444     USER_Unlock();
445 }
446
447 /***********************************************************************
448  *              release_dc
449  *
450  * Implementation of ReleaseDC.
451  */
452 static INT release_dc( HWND hwnd, HDC hdc, BOOL end_paint )
453 {
454     struct dce *dce;
455     BOOL ret = FALSE;
456
457     TRACE("%p %p\n", hwnd, hdc );
458
459     USER_Lock();
460     dce = (struct dce *)GetDCHook( hdc, NULL );
461     if (dce && dce->count)
462     {
463         if (!(dce->flags & DCX_NORESETATTRS)) reset_dce_attrs( dce );
464         if (end_paint || (dce->flags & DCX_CACHE)) delete_clip_rgn( dce );
465         if (dce->flags & DCX_CACHE) dce->count = 0;
466         ret = TRUE;
467     }
468     USER_Unlock();
469     return ret;
470 }
471
472
473 /***********************************************************************
474  *              dc_hook
475  *
476  * See "Undoc. Windows" for hints (DC, SetDCHook, SetHookFlags)..
477  */
478 static BOOL CALLBACK dc_hook( HDC hDC, WORD code, DWORD_PTR data, LPARAM lParam )
479 {
480     BOOL retv = TRUE;
481     struct dce *dce = (struct dce *)data;
482
483     TRACE("hDC = %p, %u\n", hDC, code);
484
485     if (!dce) return 0;
486     assert( dce->hdc == hDC );
487
488     switch( code )
489     {
490     case DCHC_INVALIDVISRGN:
491         /* GDI code calls this when it detects that the
492          * DC is dirty (usually after SetHookFlags()). This
493          * means that we have to recompute the visible region.
494          */
495         if (dce->count) update_visible_region( dce );
496         else /* non-fatal but shouldn't happen */
497             WARN("DC is not in use!\n");
498         break;
499     case DCHC_DELETEDC:
500         /*
501          * Windows will not let you delete a DC that is busy
502          * (between GetDC and ReleaseDC)
503          */
504         USER_Lock();
505         if (dce->count > 1)
506         {
507             WARN("Application trying to delete a busy DC %p\n", dce->hdc);
508             retv = FALSE;
509         }
510         else
511         {
512             list_remove( &dce->entry );
513             if (dce->clip_rgn) DeleteObject( dce->clip_rgn );
514             HeapFree( GetProcessHeap(), 0, dce );
515         }
516         USER_Unlock();
517         break;
518     }
519     return retv;
520 }
521
522
523 /***********************************************************************
524  *           get_update_region
525  *
526  * Return update region (in screen coordinates) for a window.
527  */
528 static HRGN get_update_region( HWND hwnd, UINT *flags, HWND *child )
529 {
530     HRGN hrgn = 0;
531     NTSTATUS status;
532     RGNDATA *data;
533     size_t size = 256;
534
535     do
536     {
537         if (!(data = HeapAlloc( GetProcessHeap(), 0, sizeof(*data) + size - 1 )))
538         {
539             SetLastError( ERROR_OUTOFMEMORY );
540             return 0;
541         }
542
543         SERVER_START_REQ( get_update_region )
544         {
545             req->window     = wine_server_user_handle( hwnd );
546             req->from_child = wine_server_user_handle( child ? *child : 0 );
547             req->flags      = *flags;
548             wine_server_set_reply( req, data->Buffer, size );
549             if (!(status = wine_server_call( req )))
550             {
551                 size_t reply_size = wine_server_reply_size( reply );
552                 data->rdh.dwSize   = sizeof(data->rdh);
553                 data->rdh.iType    = RDH_RECTANGLES;
554                 data->rdh.nCount   = reply_size / sizeof(RECT);
555                 data->rdh.nRgnSize = reply_size;
556                 hrgn = ExtCreateRegion( NULL, size, data );
557                 if (child) *child = wine_server_ptr_handle( reply->child );
558                 *flags = reply->flags;
559             }
560             else size = reply->total_size;
561         }
562         SERVER_END_REQ;
563         HeapFree( GetProcessHeap(), 0, data );
564     } while (status == STATUS_BUFFER_OVERFLOW);
565
566     if (status) SetLastError( RtlNtStatusToDosError(status) );
567     return hrgn;
568 }
569
570
571 /***********************************************************************
572  *           get_update_flags
573  *
574  * Get only the update flags, not the update region.
575  */
576 static BOOL get_update_flags( HWND hwnd, HWND *child, UINT *flags )
577 {
578     BOOL ret;
579
580     SERVER_START_REQ( get_update_region )
581     {
582         req->window     = wine_server_user_handle( hwnd );
583         req->from_child = wine_server_user_handle( child ? *child : 0 );
584         req->flags      = *flags | UPDATE_NOREGION;
585         if ((ret = !wine_server_call_err( req )))
586         {
587             if (child) *child = wine_server_ptr_handle( reply->child );
588             *flags = reply->flags;
589         }
590     }
591     SERVER_END_REQ;
592     return ret;
593 }
594
595
596 /***********************************************************************
597  *           redraw_window_rects
598  *
599  * Redraw part of a window.
600  */
601 static BOOL redraw_window_rects( HWND hwnd, UINT flags, const RECT *rects, UINT count )
602 {
603     BOOL ret;
604
605     if (!(flags & (RDW_INVALIDATE|RDW_VALIDATE|RDW_INTERNALPAINT|RDW_NOINTERNALPAINT)))
606         return TRUE;  /* nothing to do */
607
608     SERVER_START_REQ( redraw_window )
609     {
610         req->window = wine_server_user_handle( hwnd );
611         req->flags  = flags;
612         wine_server_add_data( req, rects, count * sizeof(RECT) );
613         ret = !wine_server_call_err( req );
614     }
615     SERVER_END_REQ;
616     return ret;
617 }
618
619
620 /***********************************************************************
621  *           send_ncpaint
622  *
623  * Send a WM_NCPAINT message if needed, and return the resulting update region (in screen coords).
624  * Helper for erase_now and BeginPaint.
625  */
626 static HRGN send_ncpaint( HWND hwnd, HWND *child, UINT *flags )
627 {
628     HRGN whole_rgn = get_update_region( hwnd, flags, child );
629     HRGN client_rgn = 0;
630
631     if (child) hwnd = *child;
632
633     if (hwnd == GetDesktopWindow()) return whole_rgn;
634
635     if (whole_rgn)
636     {
637         RECT client, update;
638         INT type;
639
640         /* check if update rgn overlaps with nonclient area */
641         type = GetRgnBox( whole_rgn, &update );
642         WIN_GetRectangles( hwnd, COORDS_SCREEN, 0, &client );
643
644         if ((*flags & UPDATE_NONCLIENT) ||
645             update.left < client.left || update.top < client.top ||
646             update.right > client.right || update.bottom > client.bottom)
647         {
648             client_rgn = CreateRectRgnIndirect( &client );
649             CombineRgn( client_rgn, client_rgn, whole_rgn, RGN_AND );
650
651             /* check if update rgn contains complete nonclient area */
652             if (type == SIMPLEREGION)
653             {
654                 RECT window;
655                 GetWindowRect( hwnd, &window );
656                 if (EqualRect( &window, &update ))
657                 {
658                     DeleteObject( whole_rgn );
659                     whole_rgn = (HRGN)1;
660                 }
661             }
662         }
663         else
664         {
665             client_rgn = whole_rgn;
666             whole_rgn = 0;
667         }
668
669         if (whole_rgn) /* NOTE: WM_NCPAINT allows wParam to be 1 */
670         {
671             if (*flags & UPDATE_NONCLIENT) SendMessageW( hwnd, WM_NCPAINT, (WPARAM)whole_rgn, 0 );
672             if (whole_rgn > (HRGN)1) DeleteObject( whole_rgn );
673         }
674     }
675     return client_rgn;
676 }
677
678
679 /***********************************************************************
680  *           send_erase
681  *
682  * Send a WM_ERASEBKGND message if needed, and optionally return the DC for painting.
683  * If a DC is requested, the region is selected into it. In all cases the region is deleted.
684  * Helper for erase_now and BeginPaint.
685  */
686 static BOOL send_erase( HWND hwnd, UINT flags, HRGN client_rgn,
687                         RECT *clip_rect, HDC *hdc_ret )
688 {
689     BOOL need_erase = (flags & UPDATE_DELAYED_ERASE) != 0;
690     HDC hdc = 0;
691     RECT dummy;
692
693     if (!clip_rect) clip_rect = &dummy;
694     if (hdc_ret || (flags & UPDATE_ERASE))
695     {
696         UINT dcx_flags = DCX_INTERSECTRGN | DCX_USESTYLE;
697         if (IsIconic(hwnd)) dcx_flags |= DCX_WINDOW;
698
699         if ((hdc = GetDCEx( hwnd, client_rgn, dcx_flags )))
700         {
701             INT type = GetClipBox( hdc, clip_rect );
702
703             if (flags & UPDATE_ERASE)
704             {
705                 /* don't erase if the clip box is empty */
706                 if (type != NULLREGION)
707                     need_erase = !SendMessageW( hwnd, WM_ERASEBKGND, (WPARAM)hdc, 0 );
708             }
709             if (!hdc_ret) release_dc( hwnd, hdc, TRUE );
710         }
711
712         if (hdc_ret) *hdc_ret = hdc;
713     }
714     if (!hdc) DeleteObject( client_rgn );
715     return need_erase;
716 }
717
718
719 /***********************************************************************
720  *           erase_now
721  *
722  * Implementation of RDW_ERASENOW behavior.
723  */
724 void erase_now( HWND hwnd, UINT rdw_flags )
725 {
726     HWND child = 0;
727     HRGN hrgn;
728     BOOL need_erase = FALSE;
729
730     /* loop while we find a child to repaint */
731     for (;;)
732     {
733         UINT flags = UPDATE_NONCLIENT | UPDATE_ERASE;
734
735         if (rdw_flags & RDW_NOCHILDREN) flags |= UPDATE_NOCHILDREN;
736         else if (rdw_flags & RDW_ALLCHILDREN) flags |= UPDATE_ALLCHILDREN;
737         if (need_erase) flags |= UPDATE_DELAYED_ERASE;
738
739         if (!(hrgn = send_ncpaint( hwnd, &child, &flags ))) break;
740         need_erase = send_erase( child, flags, hrgn, NULL, NULL );
741
742         if (!flags) break;  /* nothing more to do */
743         if ((rdw_flags & RDW_NOCHILDREN) && !need_erase) break;
744     }
745 }
746
747
748 /***********************************************************************
749  *           update_now
750  *
751  * Implementation of RDW_UPDATENOW behavior.
752  *
753  * FIXME: Windows uses WM_SYNCPAINT to cut down the number of intertask
754  * SendMessage() calls. This is a comment inside DefWindowProc() source
755  * from 16-bit SDK:
756  *
757  *   This message avoids lots of inter-app message traffic
758  *   by switching to the other task and continuing the
759  *   recursion there.
760  *
761  * wParam         = flags
762  * LOWORD(lParam) = hrgnClip
763  * HIWORD(lParam) = hwndSkip  (not used; always NULL)
764  *
765  */
766 static void update_now( HWND hwnd, UINT rdw_flags )
767 {
768     HWND child = 0;
769
770     /* desktop window never gets WM_PAINT, only WM_ERASEBKGND */
771     if (hwnd == GetDesktopWindow()) erase_now( hwnd, rdw_flags | RDW_NOCHILDREN );
772
773     /* loop while we find a child to repaint */
774     for (;;)
775     {
776         UINT flags = UPDATE_PAINT | UPDATE_INTERNALPAINT;
777
778         if (rdw_flags & RDW_NOCHILDREN) flags |= UPDATE_NOCHILDREN;
779         else if (rdw_flags & RDW_ALLCHILDREN) flags |= UPDATE_ALLCHILDREN;
780
781         if (!get_update_flags( hwnd, &child, &flags )) break;
782         if (!flags) break;  /* nothing more to do */
783
784         SendMessageW( child, WM_PAINT, 0, 0 );
785         if (rdw_flags & RDW_NOCHILDREN) break;
786     }
787 }
788
789
790 /*************************************************************************
791  *             fix_caret
792  *
793  * Helper for ScrollWindowEx:
794  * If the return value is 0, no special caret handling is necessary.
795  * Otherwise the return value is the handle of the window that owns the
796  * caret. Its caret needs to be hidden during the scroll operation and
797  * moved to new_caret_pos if move_caret is TRUE.
798  */
799 static HWND fix_caret(HWND hWnd, const RECT *scroll_rect, INT dx, INT dy,
800                      UINT flags, LPBOOL move_caret, LPPOINT new_caret_pos)
801 {
802     GUITHREADINFO info;
803     RECT rect, mapped_rcCaret;
804     BOOL hide_caret = FALSE;
805
806     info.cbSize = sizeof(info);
807     if (!GetGUIThreadInfo( GetCurrentThreadId(), &info )) return 0;
808     if (!info.hwndCaret) return 0;
809     
810     if (info.hwndCaret == hWnd)
811     {
812         /* Move the caret if it's (partially) in the source rectangle */
813         if (IntersectRect(&rect, scroll_rect, &info.rcCaret))
814         {
815             *move_caret = TRUE;
816             hide_caret = TRUE;
817             new_caret_pos->x = info.rcCaret.left + dx;
818             new_caret_pos->y = info.rcCaret.top + dy;
819         }
820         else
821         {
822             *move_caret = FALSE;
823             
824             /* Hide the caret if it's in the destination rectangle */
825             rect = *scroll_rect;
826             OffsetRect(&rect, dx, dy);
827             hide_caret = IntersectRect(&rect, &rect, &info.rcCaret);
828         }
829     }
830     else
831     {
832         if ((flags & SW_SCROLLCHILDREN) && IsChild(hWnd, info.hwndCaret))
833         {
834             *move_caret = FALSE;
835             
836             /* Hide the caret if it's in the source or in the destination
837                rectangle */
838             mapped_rcCaret = info.rcCaret;
839             MapWindowPoints(info.hwndCaret, hWnd, (LPPOINT)&mapped_rcCaret, 2);
840             
841             if (IntersectRect(&rect, scroll_rect, &mapped_rcCaret))
842             {
843                 hide_caret = TRUE;
844             }
845             else
846             {
847                 rect = *scroll_rect;
848                 OffsetRect(&rect, dx, dy);
849                 hide_caret = IntersectRect(&rect, &rect, &mapped_rcCaret);
850             }
851         }
852         else
853             return 0;
854     }
855
856     if (hide_caret)
857     {    
858         HideCaret(info.hwndCaret);
859         return info.hwndCaret;
860     }
861     else
862         return 0;
863 }
864
865
866 /***********************************************************************
867  *              BeginPaint (USER32.@)
868  */
869 HDC WINAPI BeginPaint( HWND hwnd, PAINTSTRUCT *lps )
870 {
871     HRGN hrgn;
872     UINT flags = UPDATE_NONCLIENT | UPDATE_ERASE | UPDATE_PAINT | UPDATE_INTERNALPAINT | UPDATE_NOCHILDREN;
873
874     if (!lps) return 0;
875
876     HideCaret( hwnd );
877
878     if (!(hrgn = send_ncpaint( hwnd, NULL, &flags ))) return 0;
879
880     lps->fErase = send_erase( hwnd, flags, hrgn, &lps->rcPaint, &lps->hdc );
881
882     TRACE("hdc = %p box = (%s), fErase = %d\n",
883           lps->hdc, wine_dbgstr_rect(&lps->rcPaint), lps->fErase);
884
885     return lps->hdc;
886 }
887
888
889 /***********************************************************************
890  *              EndPaint (USER32.@)
891  */
892 BOOL WINAPI EndPaint( HWND hwnd, const PAINTSTRUCT *lps )
893 {
894     if (!lps) return FALSE;
895     release_dc( hwnd, lps->hdc, TRUE );
896     ShowCaret( hwnd );
897     return TRUE;
898 }
899
900
901 /***********************************************************************
902  *              GetDCEx (USER32.@)
903  */
904 HDC WINAPI GetDCEx( HWND hwnd, HRGN hrgnClip, DWORD flags )
905 {
906     const DWORD clip_flags = DCX_PARENTCLIP | DCX_CLIPSIBLINGS | DCX_CLIPCHILDREN | DCX_WINDOW;
907     const DWORD user_flags = clip_flags | DCX_NORESETATTRS; /* flags that can be set by user */
908     struct dce *dce;
909     BOOL bUpdateVisRgn = TRUE;
910     HWND parent;
911     LONG window_style = GetWindowLongW( hwnd, GWL_STYLE );
912
913     if (!hwnd) hwnd = GetDesktopWindow();
914     else hwnd = WIN_GetFullHandle( hwnd );
915
916     TRACE("hwnd %p, hrgnClip %p, flags %08x\n", hwnd, hrgnClip, flags);
917
918     if (!IsWindow(hwnd)) return 0;
919
920     /* fixup flags */
921
922     if (flags & (DCX_WINDOW | DCX_PARENTCLIP)) flags |= DCX_CACHE;
923
924     if (flags & DCX_USESTYLE)
925     {
926         flags &= ~(DCX_CLIPCHILDREN | DCX_CLIPSIBLINGS | DCX_PARENTCLIP);
927
928         if (window_style & WS_CLIPSIBLINGS) flags |= DCX_CLIPSIBLINGS;
929
930         if (!(flags & DCX_WINDOW))
931         {
932             if (GetClassLongW( hwnd, GCL_STYLE ) & CS_PARENTDC) flags |= DCX_PARENTCLIP;
933
934             if (window_style & WS_CLIPCHILDREN && !(window_style & WS_MINIMIZE))
935                 flags |= DCX_CLIPCHILDREN;
936         }
937     }
938
939     if (flags & DCX_WINDOW) flags &= ~DCX_CLIPCHILDREN;
940
941     parent = GetAncestor( hwnd, GA_PARENT );
942     if (!parent || (parent == GetDesktopWindow()))
943         flags = (flags & ~DCX_PARENTCLIP) | DCX_CLIPSIBLINGS;
944
945     /* it seems parent clip is ignored when clipping siblings or children */
946     if (flags & (DCX_CLIPSIBLINGS | DCX_CLIPCHILDREN)) flags &= ~DCX_PARENTCLIP;
947
948     if( flags & DCX_PARENTCLIP )
949     {
950         LONG parent_style = GetWindowLongW( parent, GWL_STYLE );
951         if( (window_style & WS_VISIBLE) && (parent_style & WS_VISIBLE) )
952         {
953             flags &= ~DCX_CLIPCHILDREN;
954             if (parent_style & WS_CLIPSIBLINGS) flags |= DCX_CLIPSIBLINGS;
955         }
956     }
957
958     /* find a suitable DCE */
959
960     if ((flags & DCX_CACHE) || !(dce = get_window_dce( hwnd )))
961     {
962         struct dce *dceEmpty = NULL, *dceUnused = NULL;
963
964         /* Strategy: First, we attempt to find a non-empty but unused DCE with
965          * compatible flags. Next, we look for an empty entry. If the cache is
966          * full we have to purge one of the unused entries.
967          */
968         USER_Lock();
969         LIST_FOR_EACH_ENTRY( dce, &dce_list, struct dce, entry )
970         {
971             if ((dce->flags & DCX_CACHE) && !dce->count)
972             {
973                 dceUnused = dce;
974
975                 if (!dce->hwnd) dceEmpty = dce;
976                 else if ((dce->hwnd == hwnd) && !((dce->flags ^ flags) & clip_flags))
977                 {
978                     TRACE("\tfound valid %p dce [%p], flags %08x\n",
979                           dce, hwnd, dce->flags );
980                     bUpdateVisRgn = FALSE;
981                     break;
982                 }
983             }
984         }
985
986         if (&dce->entry == &dce_list)  /* nothing found */
987             dce = dceEmpty ? dceEmpty : dceUnused;
988
989         if (dce) dce->count = 1;
990
991         USER_Unlock();
992
993         /* if there's no dce empty or unused, allocate a new one */
994         if (!dce)
995         {
996             if (!(dce = alloc_dce())) return 0;
997             dce->flags = DCX_CACHE;
998             USER_Lock();
999             list_add_head( &dce_list, &dce->entry );
1000             USER_Unlock();
1001         }
1002     }
1003     else
1004     {
1005         flags |= DCX_NORESETATTRS;
1006         if (dce->hwnd == hwnd)
1007         {
1008             TRACE("\tskipping hVisRgn update\n");
1009             bUpdateVisRgn = FALSE; /* updated automatically, via DCHook() */
1010         }
1011         else
1012         {
1013             /* we should free dce->clip_rgn here, but Windows apparently doesn't */
1014             dce->flags &= ~(DCX_EXCLUDERGN | DCX_INTERSECTRGN);
1015             dce->clip_rgn = 0;
1016         }
1017     }
1018
1019     if (flags & (DCX_INTERSECTRGN | DCX_EXCLUDERGN))
1020     {
1021         /* if the extra clip region has changed, get rid of the old one */
1022         if (dce->clip_rgn != hrgnClip || ((flags ^ dce->flags) & (DCX_INTERSECTRGN | DCX_EXCLUDERGN)))
1023             delete_clip_rgn( dce );
1024         dce->clip_rgn = hrgnClip;
1025         if (!dce->clip_rgn) dce->clip_rgn = CreateRectRgn( 0, 0, 0, 0 );
1026         dce->flags |= flags & (DCX_INTERSECTRGN | DCX_EXCLUDERGN);
1027         bUpdateVisRgn = TRUE;
1028     }
1029
1030     if (GetWindowLongW( hwnd, GWL_EXSTYLE ) & WS_EX_LAYOUTRTL) SetLayout( dce->hdc, LAYOUT_RTL );
1031
1032     dce->hwnd = hwnd;
1033     dce->flags = (dce->flags & ~user_flags) | (flags & user_flags);
1034
1035     if (SetHookFlags( dce->hdc, DCHF_VALIDATEVISRGN )) bUpdateVisRgn = TRUE;  /* DC was dirty */
1036
1037     if (bUpdateVisRgn) update_visible_region( dce );
1038
1039     TRACE("(%p,%p,0x%x): returning %p\n", hwnd, hrgnClip, flags, dce->hdc);
1040     return dce->hdc;
1041 }
1042
1043
1044 /***********************************************************************
1045  *              GetDC (USER32.@)
1046  *
1047  * Get a device context.
1048  *
1049  * RETURNS
1050  *      Success: Handle to the device context
1051  *      Failure: NULL.
1052  */
1053 HDC WINAPI GetDC( HWND hwnd )
1054 {
1055     if (!hwnd) return GetDCEx( 0, 0, DCX_CACHE | DCX_WINDOW );
1056     return GetDCEx( hwnd, 0, DCX_USESTYLE );
1057 }
1058
1059
1060 /***********************************************************************
1061  *              GetWindowDC (USER32.@)
1062  */
1063 HDC WINAPI GetWindowDC( HWND hwnd )
1064 {
1065     return GetDCEx( hwnd, 0, DCX_USESTYLE | DCX_WINDOW );
1066 }
1067
1068
1069 /***********************************************************************
1070  *              ReleaseDC (USER32.@)
1071  *
1072  * Release a device context.
1073  *
1074  * RETURNS
1075  *      Success: Non-zero. Resources used by hdc are released.
1076  *      Failure: 0.
1077  */
1078 INT WINAPI ReleaseDC( HWND hwnd, HDC hdc )
1079 {
1080     return release_dc( hwnd, hdc, FALSE );
1081 }
1082
1083
1084 /**********************************************************************
1085  *              WindowFromDC (USER32.@)
1086  */
1087 HWND WINAPI WindowFromDC( HDC hdc )
1088 {
1089     struct dce *dce;
1090     HWND hwnd = 0;
1091
1092     USER_Lock();
1093     dce = (struct dce *)GetDCHook( hdc, NULL );
1094     if (dce) hwnd = dce->hwnd;
1095     USER_Unlock();
1096     return hwnd;
1097 }
1098
1099
1100 /***********************************************************************
1101  *              LockWindowUpdate (USER32.@)
1102  *
1103  * Enables or disables painting in the chosen window.
1104  *
1105  * PARAMS
1106  *  hwnd [I] handle to a window.
1107  *
1108  * RETURNS
1109  *  If successful, returns nonzero value. Otherwise,
1110  *  returns 0.
1111  *
1112  * NOTES
1113  *  You can lock only one window at a time.
1114  */
1115 BOOL WINAPI LockWindowUpdate( HWND hwnd )
1116 {
1117     static HWND lockedWnd;
1118
1119     FIXME("(%p), partial stub!\n",hwnd);
1120
1121     USER_Lock();
1122     if (lockedWnd)
1123     {
1124         if (!hwnd)
1125         {
1126             /* Unlock lockedWnd */
1127             /* FIXME: Do something */
1128         }
1129         else
1130         {
1131             /* Attempted to lock a second window */
1132             /* Return FALSE and do nothing */
1133             USER_Unlock();
1134             return FALSE;
1135         }
1136     }
1137     lockedWnd = hwnd;
1138     USER_Unlock();
1139     return TRUE;
1140 }
1141
1142
1143 /***********************************************************************
1144  *              RedrawWindow (USER32.@)
1145  */
1146 BOOL WINAPI RedrawWindow( HWND hwnd, const RECT *rect, HRGN hrgn, UINT flags )
1147 {
1148     static const RECT empty;
1149     BOOL ret;
1150
1151     if (!hwnd) hwnd = GetDesktopWindow();
1152
1153     if (TRACE_ON(win))
1154     {
1155         if (hrgn)
1156         {
1157             RECT r;
1158             GetRgnBox( hrgn, &r );
1159             TRACE( "%p region %p box %s ", hwnd, hrgn, wine_dbgstr_rect(&r) );
1160         }
1161         else if (rect)
1162             TRACE( "%p rect %s ", hwnd, wine_dbgstr_rect(rect) );
1163         else
1164             TRACE( "%p whole window ", hwnd );
1165
1166         dump_rdw_flags(flags);
1167     }
1168
1169     /* process pending expose events before painting */
1170     if (flags & RDW_UPDATENOW) USER_Driver->pMsgWaitForMultipleObjectsEx( 0, NULL, 0, QS_PAINT, 0 );
1171
1172     if (rect && !hrgn)
1173     {
1174         if (IsRectEmpty( rect )) rect = &empty;
1175         ret = redraw_window_rects( hwnd, flags, rect, 1 );
1176     }
1177     else if (!hrgn)
1178     {
1179         ret = redraw_window_rects( hwnd, flags, NULL, 0 );
1180     }
1181     else  /* need to build a list of the region rectangles */
1182     {
1183         DWORD size;
1184         RGNDATA *data = NULL;
1185
1186         if (!(size = GetRegionData( hrgn, 0, NULL ))) return FALSE;
1187         if (!(data = HeapAlloc( GetProcessHeap(), 0, size ))) return FALSE;
1188         GetRegionData( hrgn, size, data );
1189         if (!data->rdh.nCount)  /* empty region -> use a single all-zero rectangle */
1190             ret = redraw_window_rects( hwnd, flags, &empty, 1 );
1191         else
1192             ret = redraw_window_rects( hwnd, flags, (const RECT *)data->Buffer, data->rdh.nCount );
1193         HeapFree( GetProcessHeap(), 0, data );
1194     }
1195
1196     if (flags & RDW_UPDATENOW) update_now( hwnd, flags );
1197     else if (flags & RDW_ERASENOW) erase_now( hwnd, flags );
1198
1199     return ret;
1200 }
1201
1202
1203 /***********************************************************************
1204  *              UpdateWindow (USER32.@)
1205  */
1206 BOOL WINAPI UpdateWindow( HWND hwnd )
1207 {
1208     if (!hwnd)
1209     {
1210         SetLastError( ERROR_INVALID_WINDOW_HANDLE );
1211         return FALSE;
1212     }
1213
1214     return RedrawWindow( hwnd, NULL, 0, RDW_UPDATENOW | RDW_ALLCHILDREN );
1215 }
1216
1217
1218 /***********************************************************************
1219  *              InvalidateRgn (USER32.@)
1220  */
1221 BOOL WINAPI InvalidateRgn( HWND hwnd, HRGN hrgn, BOOL erase )
1222 {
1223     if (!hwnd)
1224     {
1225         SetLastError( ERROR_INVALID_WINDOW_HANDLE );
1226         return FALSE;
1227     }
1228
1229     return RedrawWindow(hwnd, NULL, hrgn, RDW_INVALIDATE | (erase ? RDW_ERASE : 0) );
1230 }
1231
1232
1233 /***********************************************************************
1234  *              InvalidateRect (USER32.@)
1235  *
1236  * MSDN: if hwnd parameter is NULL, InvalidateRect invalidates and redraws
1237  * all windows and sends WM_ERASEBKGND and WM_NCPAINT.
1238  */
1239 BOOL WINAPI InvalidateRect( HWND hwnd, const RECT *rect, BOOL erase )
1240 {
1241     UINT flags = RDW_INVALIDATE | (erase ? RDW_ERASE : 0);
1242
1243     if (!hwnd)
1244     {
1245         flags = RDW_ALLCHILDREN | RDW_INVALIDATE | RDW_FRAME | RDW_ERASE | RDW_ERASENOW;
1246         rect = NULL;
1247     }
1248
1249     return RedrawWindow( hwnd, rect, 0, flags );
1250 }
1251
1252
1253 /***********************************************************************
1254  *              ValidateRgn (USER32.@)
1255  */
1256 BOOL WINAPI ValidateRgn( HWND hwnd, HRGN hrgn )
1257 {
1258     if (!hwnd)
1259     {
1260         SetLastError( ERROR_INVALID_WINDOW_HANDLE );
1261         return FALSE;
1262     }
1263
1264     return RedrawWindow( hwnd, NULL, hrgn, RDW_VALIDATE );
1265 }
1266
1267
1268 /***********************************************************************
1269  *              ValidateRect (USER32.@)
1270  *
1271  * MSDN: if hwnd parameter is NULL, ValidateRect invalidates and redraws
1272  * all windows and sends WM_ERASEBKGND and WM_NCPAINT.
1273  */
1274 BOOL WINAPI ValidateRect( HWND hwnd, const RECT *rect )
1275 {
1276     UINT flags = RDW_VALIDATE;
1277
1278     if (!hwnd)
1279     {
1280         flags = RDW_ALLCHILDREN | RDW_INVALIDATE | RDW_FRAME | RDW_ERASE | RDW_ERASENOW;
1281         rect = NULL;
1282     }
1283
1284     return RedrawWindow( hwnd, rect, 0, flags );
1285 }
1286
1287
1288 /***********************************************************************
1289  *              GetUpdateRgn (USER32.@)
1290  */
1291 INT WINAPI GetUpdateRgn( HWND hwnd, HRGN hrgn, BOOL erase )
1292 {
1293     INT retval = ERROR;
1294     UINT flags = UPDATE_NOCHILDREN;
1295     HRGN update_rgn;
1296
1297     if (erase) flags |= UPDATE_NONCLIENT | UPDATE_ERASE;
1298
1299     if ((update_rgn = send_ncpaint( hwnd, NULL, &flags )))
1300     {
1301         retval = CombineRgn( hrgn, update_rgn, 0, RGN_COPY );
1302         if (send_erase( hwnd, flags, update_rgn, NULL, NULL ))
1303         {
1304             flags = UPDATE_DELAYED_ERASE;
1305             get_update_flags( hwnd, NULL, &flags );
1306         }
1307         /* map region to client coordinates */
1308         map_window_region( 0, hwnd, hrgn );
1309     }
1310     return retval;
1311 }
1312
1313
1314 /***********************************************************************
1315  *              GetUpdateRect (USER32.@)
1316  */
1317 BOOL WINAPI GetUpdateRect( HWND hwnd, LPRECT rect, BOOL erase )
1318 {
1319     UINT flags = UPDATE_NOCHILDREN;
1320     HRGN update_rgn;
1321     BOOL need_erase;
1322
1323     if (erase) flags |= UPDATE_NONCLIENT | UPDATE_ERASE;
1324
1325     if (!(update_rgn = send_ncpaint( hwnd, NULL, &flags ))) return FALSE;
1326
1327     if (rect)
1328     {
1329         if (GetRgnBox( update_rgn, rect ) != NULLREGION)
1330         {
1331             HDC hdc = GetDCEx( hwnd, 0, DCX_USESTYLE );
1332             DWORD layout = SetLayout( hdc, 0 );  /* MapWindowPoints mirrors already */
1333             MapWindowPoints( 0, hwnd, (LPPOINT)rect, 2 );
1334             DPtoLP( hdc, (LPPOINT)rect, 2 );
1335             SetLayout( hdc, layout );
1336             ReleaseDC( hwnd, hdc );
1337         }
1338     }
1339     need_erase = send_erase( hwnd, flags, update_rgn, NULL, NULL );
1340
1341     /* check if we still have an update region */
1342     flags = UPDATE_PAINT | UPDATE_NOCHILDREN;
1343     if (need_erase) flags |= UPDATE_DELAYED_ERASE;
1344     return (get_update_flags( hwnd, NULL, &flags ) && (flags & UPDATE_PAINT));
1345 }
1346
1347
1348 /***********************************************************************
1349  *              ExcludeUpdateRgn (USER32.@)
1350  */
1351 INT WINAPI ExcludeUpdateRgn( HDC hdc, HWND hwnd )
1352 {
1353     HRGN update_rgn = CreateRectRgn( 0, 0, 0, 0 );
1354     INT ret = GetUpdateRgn( hwnd, update_rgn, FALSE );
1355
1356     if (ret != ERROR)
1357     {
1358         POINT pt;
1359
1360         GetDCOrgEx( hdc, &pt );
1361         MapWindowPoints( 0, hwnd, &pt, 1 );
1362         OffsetRgn( update_rgn, -pt.x, -pt.y );
1363         ret = ExtSelectClipRgn( hdc, update_rgn, RGN_DIFF );
1364         DeleteObject( update_rgn );
1365     }
1366     return ret;
1367 }
1368
1369
1370 /*************************************************************************
1371  *              ScrollWindowEx (USER32.@)
1372  *
1373  * Note: contrary to what the doc says, pixels that are scrolled from the
1374  *      outside of clipRect to the inside are NOT painted.
1375  *
1376  */
1377 INT WINAPI ScrollWindowEx( HWND hwnd, INT dx, INT dy,
1378                            const RECT *rect, const RECT *clipRect,
1379                            HRGN hrgnUpdate, LPRECT rcUpdate,
1380                            UINT flags )
1381 {
1382     INT   retVal = NULLREGION;
1383     BOOL  bOwnRgn = TRUE;
1384     BOOL  bUpdate = (rcUpdate || hrgnUpdate || flags & (SW_INVALIDATE | SW_ERASE));
1385     int rdw_flags;
1386     HRGN  hrgnTemp;
1387     HRGN  hrgnWinupd = 0;
1388     HDC   hDC;
1389     RECT  rc, cliprc;
1390     HWND hwndCaret = NULL;
1391     BOOL moveCaret = FALSE;
1392     POINT newCaretPos;
1393
1394     TRACE( "%p, %d,%d hrgnUpdate=%p rcUpdate = %p %s %04x\n",
1395            hwnd, dx, dy, hrgnUpdate, rcUpdate, wine_dbgstr_rect(rect), flags );
1396     TRACE( "clipRect = %s\n", wine_dbgstr_rect(clipRect));
1397     if( flags & ~( SW_SCROLLCHILDREN | SW_INVALIDATE | SW_ERASE))
1398         FIXME("some flags (%04x) are unhandled\n", flags);
1399
1400     rdw_flags = (flags & SW_ERASE) && (flags & SW_INVALIDATE) ?
1401                                 RDW_INVALIDATE | RDW_ERASE  : RDW_INVALIDATE ;
1402
1403     if (!WIN_IsWindowDrawable( hwnd, TRUE )) return ERROR;
1404     hwnd = WIN_GetFullHandle( hwnd );
1405
1406     GetClientRect(hwnd, &rc);
1407
1408     if (clipRect) IntersectRect(&cliprc,&rc,clipRect);
1409     else cliprc = rc;
1410
1411     if (rect) IntersectRect(&rc, &rc, rect);
1412
1413     if( hrgnUpdate ) bOwnRgn = FALSE;
1414     else if( bUpdate ) hrgnUpdate = CreateRectRgn( 0, 0, 0, 0 );
1415
1416     newCaretPos.x = newCaretPos.y = 0;
1417
1418     if( !IsRectEmpty(&cliprc) && (dx || dy)) {
1419         DWORD dcxflags = DCX_CACHE;
1420         DWORD style = GetWindowLongW( hwnd, GWL_STYLE );
1421
1422         hwndCaret = fix_caret(hwnd, &rc, dx, dy, flags, &moveCaret, &newCaretPos);
1423
1424         if( style & WS_CLIPSIBLINGS) dcxflags |= DCX_CLIPSIBLINGS;
1425         if( GetClassLongW( hwnd, GCL_STYLE ) & CS_PARENTDC)
1426             dcxflags |= DCX_PARENTCLIP;
1427         if( !(flags & SW_SCROLLCHILDREN) && (style & WS_CLIPCHILDREN))
1428             dcxflags |= DCX_CLIPCHILDREN;
1429         hDC = GetDCEx( hwnd, 0, dcxflags);
1430         if (hDC)
1431         {
1432             ScrollDC( hDC, dx, dy, &rc, &cliprc, hrgnUpdate, rcUpdate );
1433
1434             ReleaseDC( hwnd, hDC );
1435
1436             if (!bUpdate)
1437                 RedrawWindow( hwnd, NULL, hrgnUpdate, rdw_flags);
1438         }
1439
1440         /* If the windows has an update region, this must be
1441          * scrolled as well. Keep a copy in hrgnWinupd
1442          * to be added to hrngUpdate at the end. */
1443         hrgnTemp = CreateRectRgn( 0, 0, 0, 0 );
1444         retVal = GetUpdateRgn( hwnd, hrgnTemp, FALSE );
1445         if (retVal != NULLREGION)
1446         {
1447             HRGN hrgnClip = CreateRectRgnIndirect(&cliprc);
1448             if( !bOwnRgn) {
1449                 hrgnWinupd = CreateRectRgn( 0, 0, 0, 0);
1450                 CombineRgn( hrgnWinupd, hrgnTemp, 0, RGN_COPY);
1451             }
1452             OffsetRgn( hrgnTemp, dx, dy );
1453             CombineRgn( hrgnTemp, hrgnTemp, hrgnClip, RGN_AND );
1454             if( !bOwnRgn)
1455                 CombineRgn( hrgnWinupd, hrgnWinupd, hrgnTemp, RGN_OR );
1456             RedrawWindow( hwnd, NULL, hrgnTemp, rdw_flags);
1457
1458            /* Catch the case where the scrolling amount exceeds the size of the
1459             * original window. This generated a second update area that is the
1460             * location where the original scrolled content would end up.
1461             * This second region is not returned by the ScrollDC and sets
1462             * ScrollWindowEx apart from just a ScrollDC.
1463             *
1464             * This has been verified with testing on windows.
1465             */
1466             if (abs(dx) > abs(rc.right - rc.left) ||
1467                 abs(dy) > abs(rc.bottom - rc.top))
1468             {
1469                 SetRectRgn( hrgnTemp, rc.left + dx, rc.top + dy, rc.right+dx, rc.bottom + dy);
1470                 CombineRgn( hrgnTemp, hrgnTemp, hrgnClip, RGN_AND );
1471                 CombineRgn( hrgnUpdate, hrgnUpdate, hrgnTemp, RGN_OR );
1472
1473                 if( !bOwnRgn)
1474                     CombineRgn( hrgnWinupd, hrgnWinupd, hrgnTemp, RGN_OR );
1475             }
1476             DeleteObject( hrgnClip );
1477         }
1478         DeleteObject( hrgnTemp );
1479     } else {
1480         /* nothing was scrolled */
1481         if( !bOwnRgn)
1482             SetRectRgn( hrgnUpdate, 0, 0, 0, 0 );
1483         SetRectEmpty( rcUpdate);
1484     }
1485
1486     if( flags & SW_SCROLLCHILDREN )
1487     {
1488         HWND *list = WIN_ListChildren( hwnd );
1489         if (list)
1490         {
1491             int i;
1492             RECT r, dummy;
1493             for (i = 0; list[i]; i++)
1494             {
1495                 WIN_GetRectangles( list[i], COORDS_PARENT, &r, NULL );
1496                 if (!rect || IntersectRect(&dummy, &r, rect))
1497                     SetWindowPos( list[i], 0, r.left + dx, r.top  + dy, 0, 0,
1498                                   SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE |
1499                                   SWP_NOREDRAW | SWP_DEFERERASE );
1500             }
1501             HeapFree( GetProcessHeap(), 0, list );
1502         }
1503     }
1504
1505     if( flags & (SW_INVALIDATE | SW_ERASE) )
1506         RedrawWindow( hwnd, NULL, hrgnUpdate, rdw_flags |
1507                       ((flags & SW_SCROLLCHILDREN) ? RDW_ALLCHILDREN : 0 ) );
1508
1509     if( hrgnWinupd) {
1510         CombineRgn( hrgnUpdate, hrgnUpdate, hrgnWinupd, RGN_OR);
1511         DeleteObject( hrgnWinupd);
1512     }
1513
1514     if( hwndCaret ) {
1515         if ( moveCaret ) SetCaretPos( newCaretPos.x, newCaretPos.y );
1516         ShowCaret(hwndCaret);
1517     }
1518
1519     if( bOwnRgn && hrgnUpdate ) DeleteObject( hrgnUpdate );
1520
1521     return retVal;
1522 }
1523
1524
1525 /*************************************************************************
1526  *              ScrollWindow (USER32.@)
1527  *
1528  */
1529 BOOL WINAPI ScrollWindow( HWND hwnd, INT dx, INT dy,
1530                           const RECT *rect, const RECT *clipRect )
1531 {
1532     return (ERROR != ScrollWindowEx( hwnd, dx, dy, rect, clipRect, 0, NULL,
1533                                      (rect ? 0 : SW_SCROLLCHILDREN) |
1534                                      SW_INVALIDATE | SW_ERASE ));
1535 }
1536
1537
1538 /*************************************************************************
1539  *              ScrollDC (USER32.@)
1540  *
1541  * dx, dy, lprcScroll and lprcClip are all in logical coordinates (msdn is
1542  * wrong) hrgnUpdate is returned in device coordinates with rcUpdate in
1543  * logical coordinates.
1544  */
1545 BOOL WINAPI ScrollDC( HDC hdc, INT dx, INT dy, const RECT *lprcScroll,
1546                       const RECT *lprcClip, HRGN hrgnUpdate, LPRECT lprcUpdate )
1547
1548 {
1549     return USER_Driver->pScrollDC( hdc, dx, dy, lprcScroll, lprcClip, hrgnUpdate, lprcUpdate );
1550 }
1551
1552 /************************************************************************
1553  *              PrintWindow (USER32.@)
1554  *
1555  */
1556 BOOL WINAPI PrintWindow(HWND hwnd, HDC hdcBlt, UINT nFlags)
1557 {
1558     UINT flags = PRF_CHILDREN | PRF_ERASEBKGND | PRF_OWNED | PRF_CLIENT;
1559     if(!(nFlags & PW_CLIENTONLY))
1560     {
1561         flags |= PRF_NONCLIENT;
1562     }
1563     SendMessageW(hwnd, WM_PRINT, (WPARAM)hdcBlt, flags);
1564     return TRUE;
1565 }