server: Valid rects are in parent coordinates.
[wine] / server / window.c
1 /*
2  * Server-side window handling
3  *
4  * Copyright (C) 2001 Alexandre Julliard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #include "config.h"
22 #include "wine/port.h"
23
24 #include <assert.h>
25 #include <stdarg.h>
26
27 #include "ntstatus.h"
28 #define WIN32_NO_STATUS
29 #include "windef.h"
30 #include "winbase.h"
31 #include "wingdi.h"
32 #include "winuser.h"
33 #include "winternl.h"
34
35 #include "object.h"
36 #include "request.h"
37 #include "thread.h"
38 #include "process.h"
39 #include "user.h"
40 #include "unicode.h"
41
42 /* a window property */
43 struct property
44 {
45     unsigned short type;     /* property type (see below) */
46     atom_t         atom;     /* property atom */
47     lparam_t       data;     /* property data (user-defined storage) */
48 };
49
50 enum property_type
51 {
52     PROP_TYPE_FREE,   /* free entry */
53     PROP_TYPE_STRING, /* atom that was originally a string */
54     PROP_TYPE_ATOM    /* plain atom */
55 };
56
57
58 struct window
59 {
60     struct window   *parent;          /* parent window */
61     user_handle_t    owner;           /* owner of this window */
62     struct list      children;        /* list of children in Z-order */
63     struct list      unlinked;        /* list of children not linked in the Z-order list */
64     struct list      entry;           /* entry in parent's children list */
65     user_handle_t    handle;          /* full handle for this window */
66     struct thread   *thread;          /* thread owning the window */
67     struct desktop  *desktop;         /* desktop that the window belongs to */
68     struct window_class *class;       /* window class */
69     atom_t           atom;            /* class atom */
70     user_handle_t    last_active;     /* last active popup */
71     rectangle_t      window_rect;     /* window rectangle (relative to parent client area) */
72     rectangle_t      visible_rect;    /* visible part of window rect (relative to parent client area) */
73     rectangle_t      client_rect;     /* client rectangle (relative to parent client area) */
74     struct region   *win_region;      /* region for shaped windows (relative to window rect) */
75     struct region   *update_region;   /* update region (relative to window rect) */
76     unsigned int     style;           /* window style */
77     unsigned int     ex_style;        /* window extended style */
78     unsigned int     id;              /* window id */
79     mod_handle_t     instance;        /* creator instance */
80     unsigned int     is_unicode : 1;  /* ANSI or unicode */
81     unsigned int     is_linked : 1;   /* is it linked into the parent z-order list? */
82     unsigned int     is_layered : 1;  /* has layered info been set? */
83     unsigned int     color_key;       /* color key for a layered window */
84     unsigned int     alpha;           /* alpha value for a layered window */
85     unsigned int     layered_flags;   /* flags for a layered window */
86     lparam_t         user_data;       /* user-specific data */
87     WCHAR           *text;            /* window caption text */
88     unsigned int     paint_flags;     /* various painting flags */
89     int              prop_inuse;      /* number of in-use window properties */
90     int              prop_alloc;      /* number of allocated window properties */
91     struct property *properties;      /* window properties array */
92     int              nb_extra_bytes;  /* number of extra bytes */
93     char             extra_bytes[1];  /* extra bytes storage */
94 };
95
96 #define PAINT_INTERNAL      0x01  /* internal WM_PAINT pending */
97 #define PAINT_ERASE         0x02  /* needs WM_ERASEBKGND */
98 #define PAINT_NONCLIENT     0x04  /* needs WM_NCPAINT */
99 #define PAINT_DELAYED_ERASE 0x08  /* still needs erase after WM_ERASEBKGND */
100
101 /* growable array of user handles */
102 struct user_handle_array
103 {
104     user_handle_t *handles;
105     int            count;
106     int            total;
107 };
108
109 /* global window pointers */
110 static struct window *shell_window;
111 static struct window *shell_listview;
112 static struct window *progman_window;
113 static struct window *taskman_window;
114
115 /* magic HWND_TOP etc. pointers */
116 #define WINPTR_TOP       ((struct window *)1L)
117 #define WINPTR_BOTTOM    ((struct window *)2L)
118 #define WINPTR_TOPMOST   ((struct window *)3L)
119 #define WINPTR_NOTOPMOST ((struct window *)4L)
120
121 /* retrieve a pointer to a window from its handle */
122 static inline struct window *get_window( user_handle_t handle )
123 {
124     struct window *ret = get_user_object( handle, USER_WINDOW );
125     if (!ret) set_win32_error( ERROR_INVALID_WINDOW_HANDLE );
126     return ret;
127 }
128
129 /* check if window is the desktop */
130 static inline int is_desktop_window( const struct window *win )
131 {
132     return !win->parent;  /* only desktop windows have no parent */
133 }
134
135 /* get next window in Z-order list */
136 static inline struct window *get_next_window( struct window *win )
137 {
138     struct list *ptr = list_next( &win->parent->children, &win->entry );
139     return ptr ? LIST_ENTRY( ptr, struct window, entry ) : NULL;
140 }
141
142 /* get previous window in Z-order list */
143 static inline struct window *get_prev_window( struct window *win )
144 {
145     struct list *ptr = list_prev( &win->parent->children, &win->entry );
146     return ptr ? LIST_ENTRY( ptr, struct window, entry ) : NULL;
147 }
148
149 /* get first child in Z-order list */
150 static inline struct window *get_first_child( struct window *win )
151 {
152     struct list *ptr = list_head( &win->children );
153     return ptr ? LIST_ENTRY( ptr, struct window, entry ) : NULL;
154 }
155
156 /* get last child in Z-order list */
157 static inline struct window *get_last_child( struct window *win )
158 {
159     struct list *ptr = list_tail( &win->children );
160     return ptr ? LIST_ENTRY( ptr, struct window, entry ) : NULL;
161 }
162
163 /* link a window at the right place in the siblings list */
164 static void link_window( struct window *win, struct window *previous )
165 {
166     if (previous == WINPTR_NOTOPMOST)
167     {
168         if (!(win->ex_style & WS_EX_TOPMOST) && win->is_linked) return;  /* nothing to do */
169         win->ex_style &= ~WS_EX_TOPMOST;
170         previous = WINPTR_TOP;  /* fallback to the HWND_TOP case */
171     }
172
173     list_remove( &win->entry );  /* unlink it from the previous location */
174
175     if (previous == WINPTR_BOTTOM)
176     {
177         list_add_tail( &win->parent->children, &win->entry );
178         win->ex_style &= ~WS_EX_TOPMOST;
179     }
180     else if (previous == WINPTR_TOPMOST)
181     {
182         list_add_head( &win->parent->children, &win->entry );
183         win->ex_style |= WS_EX_TOPMOST;
184     }
185     else if (previous == WINPTR_TOP)
186     {
187         struct list *entry = win->parent->children.next;
188         if (!(win->ex_style & WS_EX_TOPMOST))  /* put it above the first non-topmost window */
189         {
190             while (entry != &win->parent->children)
191             {
192                 struct window *next = LIST_ENTRY( entry, struct window, entry );
193                 if (!(next->ex_style & WS_EX_TOPMOST)) break;
194                 if (next->handle == win->owner)  /* keep it above owner */
195                 {
196                     win->ex_style |= WS_EX_TOPMOST;
197                     break;
198                 }
199                 entry = entry->next;
200             }
201         }
202         list_add_before( entry, &win->entry );
203     }
204     else
205     {
206         list_add_after( &previous->entry, &win->entry );
207         if (!(previous->ex_style & WS_EX_TOPMOST)) win->ex_style &= ~WS_EX_TOPMOST;
208         else
209         {
210             struct window *next = get_next_window( win );
211             if (next && (next->ex_style & WS_EX_TOPMOST)) win->ex_style |= WS_EX_TOPMOST;
212         }
213     }
214
215     win->is_linked = 1;
216 }
217
218 /* change the parent of a window (or unlink the window if the new parent is NULL) */
219 static int set_parent_window( struct window *win, struct window *parent )
220 {
221     struct window *ptr;
222
223     /* make sure parent is not a child of window */
224     for (ptr = parent; ptr; ptr = ptr->parent)
225     {
226         if (ptr == win)
227         {
228             set_error( STATUS_INVALID_PARAMETER );
229             return 0;
230         }
231     }
232
233     if (parent)
234     {
235         win->parent = parent;
236         link_window( win, WINPTR_TOP );
237
238         /* if parent belongs to a different thread and the window isn't */
239         /* top-level, attach the two threads */
240         if (parent->thread && parent->thread != win->thread && !is_desktop_window(parent))
241             attach_thread_input( win->thread, parent->thread );
242     }
243     else  /* move it to parent unlinked list */
244     {
245         list_remove( &win->entry );  /* unlink it from the previous location */
246         list_add_head( &win->parent->unlinked, &win->entry );
247         win->is_linked = 0;
248     }
249     return 1;
250 }
251
252 /* append a user handle to a handle array */
253 static int add_handle_to_array( struct user_handle_array *array, user_handle_t handle )
254 {
255     if (array->count >= array->total)
256     {
257         int new_total = max( array->total * 2, 32 );
258         user_handle_t *new_array = realloc( array->handles, new_total * sizeof(*new_array) );
259         if (!new_array)
260         {
261             free( array->handles );
262             set_error( STATUS_NO_MEMORY );
263             return 0;
264         }
265         array->handles = new_array;
266         array->total = new_total;
267     }
268     array->handles[array->count++] = handle;
269     return 1;
270 }
271
272 /* set a window property */
273 static void set_property( struct window *win, atom_t atom, lparam_t data, enum property_type type )
274 {
275     int i, free = -1;
276     struct property *new_props;
277
278     /* check if it exists already */
279     for (i = 0; i < win->prop_inuse; i++)
280     {
281         if (win->properties[i].type == PROP_TYPE_FREE)
282         {
283             free = i;
284             continue;
285         }
286         if (win->properties[i].atom == atom)
287         {
288             win->properties[i].type = type;
289             win->properties[i].data = data;
290             return;
291         }
292     }
293
294     /* need to add an entry */
295     if (!grab_global_atom( NULL, atom )) return;
296     if (free == -1)
297     {
298         /* no free entry */
299         if (win->prop_inuse >= win->prop_alloc)
300         {
301             /* need to grow the array */
302             if (!(new_props = realloc( win->properties,
303                                        sizeof(*new_props) * (win->prop_alloc + 16) )))
304             {
305                 set_error( STATUS_NO_MEMORY );
306                 release_global_atom( NULL, atom );
307                 return;
308             }
309             win->prop_alloc += 16;
310             win->properties = new_props;
311         }
312         free = win->prop_inuse++;
313     }
314     win->properties[free].atom = atom;
315     win->properties[free].type = type;
316     win->properties[free].data = data;
317 }
318
319 /* remove a window property */
320 static lparam_t remove_property( struct window *win, atom_t atom )
321 {
322     int i;
323
324     for (i = 0; i < win->prop_inuse; i++)
325     {
326         if (win->properties[i].type == PROP_TYPE_FREE) continue;
327         if (win->properties[i].atom == atom)
328         {
329             release_global_atom( NULL, atom );
330             win->properties[i].type = PROP_TYPE_FREE;
331             return win->properties[i].data;
332         }
333     }
334     /* FIXME: last error? */
335     return 0;
336 }
337
338 /* find a window property */
339 static lparam_t get_property( struct window *win, atom_t atom )
340 {
341     int i;
342
343     for (i = 0; i < win->prop_inuse; i++)
344     {
345         if (win->properties[i].type == PROP_TYPE_FREE) continue;
346         if (win->properties[i].atom == atom) return win->properties[i].data;
347     }
348     /* FIXME: last error? */
349     return 0;
350 }
351
352 /* destroy all properties of a window */
353 static inline void destroy_properties( struct window *win )
354 {
355     int i;
356
357     if (!win->properties) return;
358     for (i = 0; i < win->prop_inuse; i++)
359     {
360         if (win->properties[i].type == PROP_TYPE_FREE) continue;
361         release_global_atom( NULL, win->properties[i].atom );
362     }
363     free( win->properties );
364 }
365
366 /* detach a window from its owner thread but keep the window around */
367 static void detach_window_thread( struct window *win )
368 {
369     struct thread *thread = win->thread;
370
371     if (!thread) return;
372     if (thread->queue)
373     {
374         if (win->update_region) inc_queue_paint_count( thread, -1 );
375         if (win->paint_flags & PAINT_INTERNAL) inc_queue_paint_count( thread, -1 );
376         queue_cleanup_window( thread, win->handle );
377     }
378     assert( thread->desktop_users > 0 );
379     thread->desktop_users--;
380     release_class( win->class );
381     win->class = NULL;
382
383     /* don't hold a reference to the desktop so that the desktop window can be */
384     /* destroyed when the desktop ref count reaches zero */
385     release_object( win->desktop );
386     win->thread = NULL;
387 }
388
389 /* get the process owning the top window of a given desktop */
390 struct process *get_top_window_owner( struct desktop *desktop )
391 {
392     struct window *win = desktop->top_window;
393     if (!win || !win->thread) return NULL;
394     return win->thread->process;
395 }
396
397 /* attempt to close the desktop window when the last process using it is gone */
398 void close_desktop_window( struct desktop *desktop )
399 {
400     struct window *win = desktop->top_window;
401     if (win && win->thread) post_message( win->handle, WM_CLOSE, 0, 0 );
402 }
403
404 /* create a new window structure (note: the window is not linked in the window tree) */
405 static struct window *create_window( struct window *parent, struct window *owner,
406                                      atom_t atom, mod_handle_t instance )
407 {
408     static const rectangle_t empty_rect;
409     int extra_bytes;
410     struct window *win = NULL;
411     struct desktop *desktop;
412     struct window_class *class;
413
414     if (!(desktop = get_thread_desktop( current, DESKTOP_CREATEWINDOW ))) return NULL;
415
416     if (!(class = grab_class( current->process, atom, instance, &extra_bytes )))
417     {
418         release_object( desktop );
419         return NULL;
420     }
421
422     if (!parent)  /* null parent is only allowed for desktop or HWND_MESSAGE top window */
423     {
424         if (is_desktop_class( class ))
425             parent = desktop->top_window;  /* use existing desktop if any */
426         else if (is_hwnd_message_class( class ))
427             /* use desktop window if message window is already created */
428             parent = desktop->msg_window ? desktop->top_window : NULL;
429         else if (!(parent = desktop->top_window))  /* must already have a desktop then */
430         {
431             set_error( STATUS_ACCESS_DENIED );
432             goto failed;
433         }
434     }
435
436     /* parent must be on the same desktop */
437     if (parent && parent->desktop != desktop)
438     {
439         set_error( STATUS_ACCESS_DENIED );
440         goto failed;
441     }
442
443     if (!(win = mem_alloc( sizeof(*win) + extra_bytes - 1 ))) goto failed;
444     if (!(win->handle = alloc_user_handle( win, USER_WINDOW ))) goto failed;
445
446     win->parent         = parent;
447     win->owner          = owner ? owner->handle : 0;
448     win->thread         = current;
449     win->desktop        = desktop;
450     win->class          = class;
451     win->atom           = atom;
452     win->last_active    = win->handle;
453     win->win_region     = NULL;
454     win->update_region  = NULL;
455     win->style          = 0;
456     win->ex_style       = 0;
457     win->id             = 0;
458     win->instance       = 0;
459     win->is_unicode     = 1;
460     win->is_linked      = 0;
461     win->is_layered     = 0;
462     win->user_data      = 0;
463     win->text           = NULL;
464     win->paint_flags    = 0;
465     win->prop_inuse     = 0;
466     win->prop_alloc     = 0;
467     win->properties     = NULL;
468     win->nb_extra_bytes = extra_bytes;
469     win->window_rect = win->visible_rect = win->client_rect = empty_rect;
470     memset( win->extra_bytes, 0, extra_bytes );
471     list_init( &win->children );
472     list_init( &win->unlinked );
473
474     /* if parent belongs to a different thread and the window isn't */
475     /* top-level, attach the two threads */
476     if (parent && parent->thread && parent->thread != current && !is_desktop_window(parent))
477     {
478         if (!attach_thread_input( current, parent->thread )) goto failed;
479     }
480     else  /* otherwise just make sure that the thread has a message queue */
481     {
482         if (!current->queue && !init_thread_queue( current )) goto failed;
483     }
484
485     /* put it on parent unlinked list */
486     if (parent) list_add_head( &parent->unlinked, &win->entry );
487     else
488     {
489         list_init( &win->entry );
490         if (is_desktop_class( class ))
491         {
492             assert( !desktop->top_window );
493             desktop->top_window = win;
494             set_process_default_desktop( current->process, desktop, current->desktop );
495         }
496         else
497         {
498             assert( !desktop->msg_window );
499             desktop->msg_window = win;
500         }
501     }
502
503     current->desktop_users++;
504     return win;
505
506 failed:
507     if (win)
508     {
509         if (win->handle) free_user_handle( win->handle );
510         free( win );
511     }
512     release_object( desktop );
513     release_class( class );
514     return NULL;
515 }
516
517 /* destroy all windows belonging to a given thread */
518 void destroy_thread_windows( struct thread *thread )
519 {
520     user_handle_t handle = 0;
521     struct window *win;
522
523     while ((win = next_user_handle( &handle, USER_WINDOW )))
524     {
525         if (win->thread != thread) continue;
526         if (is_desktop_window( win )) detach_window_thread( win );
527         else destroy_window( win );
528     }
529 }
530
531 /* get the desktop window */
532 static struct window *get_desktop_window( struct thread *thread )
533 {
534     struct window *top_window;
535     struct desktop *desktop = get_thread_desktop( thread, 0 );
536
537     if (!desktop) return NULL;
538     top_window = desktop->top_window;
539     release_object( desktop );
540     return top_window;
541 }
542
543 /* check whether child is a descendant of parent */
544 int is_child_window( user_handle_t parent, user_handle_t child )
545 {
546     struct window *child_ptr = get_user_object( child, USER_WINDOW );
547     struct window *parent_ptr = get_user_object( parent, USER_WINDOW );
548
549     if (!child_ptr || !parent_ptr) return 0;
550     while (child_ptr->parent)
551     {
552         if (child_ptr->parent == parent_ptr) return 1;
553         child_ptr = child_ptr->parent;
554     }
555     return 0;
556 }
557
558 /* check whether window is a top-level window */
559 int is_top_level_window( user_handle_t window )
560 {
561     struct window *win = get_user_object( window, USER_WINDOW );
562     return (win && (is_desktop_window(win) || is_desktop_window(win->parent)));
563 }
564
565 /* make a window active if possible */
566 int make_window_active( user_handle_t window )
567 {
568     struct window *owner, *win = get_window( window );
569
570     if (!win) return 0;
571
572     /* set last active for window and its owner */
573     win->last_active = win->handle;
574     if ((owner = get_user_object( win->owner, USER_WINDOW ))) owner->last_active = win->handle;
575     return 1;
576 }
577
578 /* increment (or decrement) the window paint count */
579 static inline void inc_window_paint_count( struct window *win, int incr )
580 {
581     if (win->thread) inc_queue_paint_count( win->thread, incr );
582 }
583
584 /* check if window and all its ancestors are visible */
585 static int is_visible( const struct window *win )
586 {
587     while (win)
588     {
589         if (!(win->style & WS_VISIBLE)) return 0;
590         win = win->parent;
591         /* if parent is minimized children are not visible */
592         if (win && (win->style & WS_MINIMIZE)) return 0;
593     }
594     return 1;
595 }
596
597 /* same as is_visible but takes a window handle */
598 int is_window_visible( user_handle_t window )
599 {
600     struct window *win = get_user_object( window, USER_WINDOW );
601     if (!win) return 0;
602     return is_visible( win );
603 }
604
605 int is_window_transparent( user_handle_t window )
606 {
607     struct window *win = get_user_object( window, USER_WINDOW );
608     if (!win) return 0;
609     return (win->ex_style & (WS_EX_LAYERED|WS_EX_TRANSPARENT)) == (WS_EX_LAYERED|WS_EX_TRANSPARENT);
610 }
611
612 /* check if point is inside the window */
613 static inline int is_point_in_window( struct window *win, int x, int y )
614 {
615     if (!(win->style & WS_VISIBLE)) return 0; /* not visible */
616     if ((win->style & (WS_POPUP|WS_CHILD|WS_DISABLED)) == (WS_CHILD|WS_DISABLED))
617         return 0;  /* disabled child */
618     if ((win->ex_style & (WS_EX_LAYERED|WS_EX_TRANSPARENT)) == (WS_EX_LAYERED|WS_EX_TRANSPARENT))
619         return 0;  /* transparent */
620     if (x < win->visible_rect.left || x >= win->visible_rect.right ||
621         y < win->visible_rect.top || y >= win->visible_rect.bottom)
622         return 0;  /* not in window */
623     if (win->win_region &&
624         !point_in_region( win->win_region, x - win->window_rect.left, y - win->window_rect.top ))
625         return 0;  /* not in window region */
626     return 1;
627 }
628
629 /* fill an array with the handles of the children of a specified window */
630 static unsigned int get_children_windows( struct window *parent, atom_t atom, thread_id_t tid,
631                                           user_handle_t *handles, unsigned int max_count )
632 {
633     struct window *ptr;
634     unsigned int count = 0;
635
636     if (!parent) return 0;
637
638     LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
639     {
640         if (atom && get_class_atom(ptr->class) != atom) continue;
641         if (tid && get_thread_id(ptr->thread) != tid) continue;
642         if (handles)
643         {
644             if (count >= max_count) break;
645             handles[count] = ptr->handle;
646         }
647         count++;
648     }
649     return count;
650 }
651
652 /* find child of 'parent' that contains the given point (in parent-relative coords) */
653 static struct window *child_window_from_point( struct window *parent, int x, int y )
654 {
655     struct window *ptr;
656
657     LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
658     {
659         if (!is_point_in_window( ptr, x, y )) continue;  /* skip it */
660
661         /* if window is minimized or disabled, return at once */
662         if (ptr->style & (WS_MINIMIZE|WS_DISABLED)) return ptr;
663
664         /* if point is not in client area, return at once */
665         if (x < ptr->client_rect.left || x >= ptr->client_rect.right ||
666             y < ptr->client_rect.top || y >= ptr->client_rect.bottom)
667             return ptr;
668
669         return child_window_from_point( ptr, x - ptr->client_rect.left, y - ptr->client_rect.top );
670     }
671     return parent;  /* not found any child */
672 }
673
674 /* find all children of 'parent' that contain the given point */
675 static int get_window_children_from_point( struct window *parent, int x, int y,
676                                            struct user_handle_array *array )
677 {
678     struct window *ptr;
679
680     LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
681     {
682         if (!is_point_in_window( ptr, x, y )) continue;  /* skip it */
683
684         /* if point is in client area, and window is not minimized or disabled, check children */
685         if (!(ptr->style & (WS_MINIMIZE|WS_DISABLED)) &&
686             x >= ptr->client_rect.left && x < ptr->client_rect.right &&
687             y >= ptr->client_rect.top && y < ptr->client_rect.bottom)
688         {
689             if (!get_window_children_from_point( ptr, x - ptr->client_rect.left,
690                                                  y - ptr->client_rect.top, array ))
691                 return 0;
692         }
693
694         /* now add window to the array */
695         if (!add_handle_to_array( array, ptr->handle )) return 0;
696     }
697     return 1;
698 }
699
700 /* find window containing point (in absolute coords) */
701 user_handle_t window_from_point( struct desktop *desktop, int x, int y )
702 {
703     struct window *ret;
704
705     if (!desktop->top_window) return 0;
706     ret = child_window_from_point( desktop->top_window, x, y );
707     return ret->handle;
708 }
709
710 /* return list of all windows containing point (in absolute coords) */
711 static int all_windows_from_point( struct window *top, int x, int y, struct user_handle_array *array )
712 {
713     struct window *ptr;
714
715     /* make point relative to top window */
716     for (ptr = top->parent; ptr && !is_desktop_window(ptr); ptr = ptr->parent)
717     {
718         x -= ptr->client_rect.left;
719         y -= ptr->client_rect.top;
720     }
721
722     if (!is_point_in_window( top, x, y )) return 1;
723
724     /* if point is in client area, and window is not minimized or disabled, check children */
725     if (!(top->style & (WS_MINIMIZE|WS_DISABLED)) &&
726         x >= top->client_rect.left && x < top->client_rect.right &&
727         y >= top->client_rect.top && y < top->client_rect.bottom)
728     {
729         if (!is_desktop_window(top))
730         {
731             x -= top->client_rect.left;
732             y -= top->client_rect.top;
733         }
734         if (!get_window_children_from_point( top, x, y, array )) return 0;
735     }
736     /* now add window to the array */
737     if (!add_handle_to_array( array, top->handle )) return 0;
738     return 1;
739 }
740
741
742 /* return the thread owning a window */
743 struct thread *get_window_thread( user_handle_t handle )
744 {
745     struct window *win = get_user_object( handle, USER_WINDOW );
746     if (!win || !win->thread) return NULL;
747     return (struct thread *)grab_object( win->thread );
748 }
749
750
751 /* check if any area of a window needs repainting */
752 static inline int win_needs_repaint( struct window *win )
753 {
754     return win->update_region || (win->paint_flags & PAINT_INTERNAL);
755 }
756
757
758 /* find a child of the specified window that needs repainting */
759 static struct window *find_child_to_repaint( struct window *parent, struct thread *thread )
760 {
761     struct window *ptr, *ret = NULL;
762
763     LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
764     {
765         if (!(ptr->style & WS_VISIBLE)) continue;
766         if (ptr->thread == thread && win_needs_repaint( ptr ))
767             ret = ptr;
768         else if (!(ptr->style & WS_MINIMIZE)) /* explore its children */
769             ret = find_child_to_repaint( ptr, thread );
770         if (ret) break;
771     }
772
773     if (ret && (ret->ex_style & WS_EX_TRANSPARENT))
774     {
775         /* transparent window, check for non-transparent sibling to paint first */
776         for (ptr = get_next_window(ret); ptr; ptr = get_next_window(ptr))
777         {
778             if (!(ptr->style & WS_VISIBLE)) continue;
779             if (ptr->ex_style & WS_EX_TRANSPARENT) continue;
780             if (ptr->thread != thread) continue;
781             if (win_needs_repaint( ptr )) return ptr;
782         }
783     }
784     return ret;
785 }
786
787
788 /* find a window that needs to receive a WM_PAINT; also clear its internal paint flag */
789 user_handle_t find_window_to_repaint( user_handle_t parent, struct thread *thread )
790 {
791     struct window *ptr, *win, *top_window = get_desktop_window( thread );
792
793     if (!top_window) return 0;
794
795     if (top_window->thread == thread && win_needs_repaint( top_window )) win = top_window;
796     else win = find_child_to_repaint( top_window, thread );
797
798     if (win && parent)
799     {
800         /* check that it is a child of the specified parent */
801         for (ptr = win; ptr; ptr = ptr->parent)
802             if (ptr->handle == parent) break;
803         /* otherwise don't return any window, we don't repaint a child before its parent */
804         if (!ptr) win = NULL;
805     }
806     if (!win) return 0;
807     win->paint_flags &= ~PAINT_INTERNAL;
808     return win->handle;
809 }
810
811
812 /* intersect the window region with the specified region, relative to the window parent */
813 static struct region *intersect_window_region( struct region *region, struct window *win )
814 {
815     /* make region relative to window rect */
816     offset_region( region, -win->window_rect.left, -win->window_rect.top );
817     if (!intersect_region( region, region, win->win_region )) return NULL;
818     /* make region relative to parent again */
819     offset_region( region, win->window_rect.left, win->window_rect.top );
820     return region;
821 }
822
823
824 /* convert coordinates from client to screen coords */
825 static inline void client_to_screen( struct window *win, int *x, int *y )
826 {
827     for ( ; win && !is_desktop_window(win); win = win->parent)
828     {
829         *x += win->client_rect.left;
830         *y += win->client_rect.top;
831     }
832 }
833
834 /* convert coordinates from client to screen coords */
835 static inline void client_to_screen_rect( struct window *win, rectangle_t *rect )
836 {
837     for ( ; win && !is_desktop_window(win); win = win->parent)
838     {
839         rect->left   += win->client_rect.left;
840         rect->right  += win->client_rect.left;
841         rect->top    += win->client_rect.top;
842         rect->bottom += win->client_rect.top;
843     }
844 }
845
846 /* map the region from window to screen coordinates */
847 static inline void map_win_region_to_screen( struct window *win, struct region *region )
848 {
849     if (!is_desktop_window(win))
850     {
851         int x = win->window_rect.left;
852         int y = win->window_rect.top;
853         client_to_screen( win->parent, &x, &y );
854         offset_region( region, x, y );
855     }
856 }
857
858
859 /* clip all children of a given window out of the visible region */
860 static struct region *clip_children( struct window *parent, struct window *last,
861                                      struct region *region, int offset_x, int offset_y )
862 {
863     struct window *ptr;
864     struct region *tmp = create_empty_region();
865
866     if (!tmp) return NULL;
867     LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
868     {
869         if (ptr == last) break;
870         if (!(ptr->style & WS_VISIBLE)) continue;
871         if (ptr->ex_style & WS_EX_TRANSPARENT) continue;
872         set_region_rect( tmp, &ptr->visible_rect );
873         if (ptr->win_region && !intersect_window_region( tmp, ptr ))
874         {
875             free_region( tmp );
876             return NULL;
877         }
878         offset_region( tmp, offset_x, offset_y );
879         if (!(region = subtract_region( region, region, tmp ))) break;
880         if (is_region_empty( region )) break;
881     }
882     free_region( tmp );
883     return region;
884 }
885
886
887 /* compute the intersection of two rectangles; return 0 if the result is empty */
888 static inline int intersect_rect( rectangle_t *dst, const rectangle_t *src1, const rectangle_t *src2 )
889 {
890     dst->left   = max( src1->left, src2->left );
891     dst->top    = max( src1->top, src2->top );
892     dst->right  = min( src1->right, src2->right );
893     dst->bottom = min( src1->bottom, src2->bottom );
894     return (dst->left < dst->right && dst->top < dst->bottom);
895 }
896
897
898 /* offset the coordinates of a rectangle */
899 static inline void offset_rect( rectangle_t *rect, int offset_x, int offset_y )
900 {
901     rect->left   += offset_x;
902     rect->top    += offset_y;
903     rect->right  += offset_x;
904     rect->bottom += offset_y;
905 }
906
907
908 /* set the region to the client rect clipped by the window rect, in parent-relative coordinates */
909 static void set_region_client_rect( struct region *region, struct window *win )
910 {
911     rectangle_t rect;
912
913     intersect_rect( &rect, &win->window_rect, &win->client_rect );
914     set_region_rect( region, &rect );
915 }
916
917
918 /* get the top-level window to clip against for a given window */
919 static inline struct window *get_top_clipping_window( struct window *win )
920 {
921     while (win->parent && !is_desktop_window(win->parent)) win = win->parent;
922     return win;
923 }
924
925
926 /* compute the visible region of a window, in window coordinates */
927 static struct region *get_visible_region( struct window *win, unsigned int flags )
928 {
929     struct region *tmp = NULL, *region;
930     int offset_x, offset_y;
931
932     if (!(region = create_empty_region())) return NULL;
933
934     /* first check if all ancestors are visible */
935
936     if (!is_visible( win )) return region;  /* empty region */
937
938     /* create a region relative to the window itself */
939
940     if ((flags & DCX_PARENTCLIP) && win->parent && !is_desktop_window(win->parent))
941     {
942         set_region_client_rect( region, win->parent );
943         offset_region( region, -win->parent->client_rect.left, -win->parent->client_rect.top );
944     }
945     else if (flags & DCX_WINDOW)
946     {
947         set_region_rect( region, &win->visible_rect );
948         if (win->win_region && !intersect_window_region( region, win )) goto error;
949     }
950     else
951     {
952         set_region_client_rect( region, win );
953         if (win->win_region && !intersect_window_region( region, win )) goto error;
954     }
955
956     /* clip children */
957
958     if (flags & DCX_CLIPCHILDREN)
959     {
960         if (is_desktop_window(win)) offset_x = offset_y = 0;
961         else
962         {
963             offset_x = win->client_rect.left;
964             offset_y = win->client_rect.top;
965         }
966         if (!clip_children( win, NULL, region, offset_x, offset_y )) goto error;
967     }
968
969     /* clip siblings of ancestors */
970
971     if (is_desktop_window(win)) offset_x = offset_y = 0;
972     else
973     {
974         offset_x = win->window_rect.left;
975         offset_y = win->window_rect.top;
976     }
977
978     if ((tmp = create_empty_region()) != NULL)
979     {
980         while (win->parent)
981         {
982             /* we don't clip out top-level siblings as that's up to the native windowing system */
983             if ((win->style & WS_CLIPSIBLINGS) && !is_desktop_window( win->parent ))
984             {
985                 if (!clip_children( win->parent, win, region, 0, 0 )) goto error;
986                 if (is_region_empty( region )) break;
987             }
988             /* clip to parent client area */
989             win = win->parent;
990             if (!is_desktop_window(win))
991             {
992                 offset_x += win->client_rect.left;
993                 offset_y += win->client_rect.top;
994                 offset_region( region, win->client_rect.left, win->client_rect.top );
995             }
996             set_region_client_rect( tmp, win );
997             if (win->win_region && !intersect_window_region( tmp, win )) goto error;
998             if (!intersect_region( region, region, tmp )) goto error;
999             if (is_region_empty( region )) break;
1000         }
1001         free_region( tmp );
1002     }
1003     offset_region( region, -offset_x, -offset_y );  /* make it relative to target window */
1004     return region;
1005
1006 error:
1007     if (tmp) free_region( tmp );
1008     free_region( region );
1009     return NULL;
1010 }
1011
1012
1013 /* get the window class of a window */
1014 struct window_class* get_window_class( user_handle_t window )
1015 {
1016     struct window *win;
1017     if (!(win = get_window( window ))) return NULL;
1018     if (!win->class) set_error( STATUS_ACCESS_DENIED );
1019     return win->class;
1020 }
1021
1022 /* determine the window visible rectangle, i.e. window or client rect cropped by parent rects */
1023 /* the returned rectangle is in window coordinates; return 0 if rectangle is empty */
1024 static int get_window_visible_rect( struct window *win, rectangle_t *rect, int frame )
1025 {
1026     int offset_x = 0, offset_y = 0;
1027
1028     if (!(win->style & WS_VISIBLE)) return 0;
1029
1030     *rect = frame ? win->window_rect : win->client_rect;
1031     if (!is_desktop_window(win))
1032     {
1033         offset_x = win->window_rect.left;
1034         offset_y = win->window_rect.top;
1035     }
1036
1037     while (win->parent)
1038     {
1039         win = win->parent;
1040         if (!(win->style & WS_VISIBLE) || win->style & WS_MINIMIZE) return 0;
1041         if (!is_desktop_window(win))
1042         {
1043             offset_x += win->client_rect.left;
1044             offset_y += win->client_rect.top;
1045             offset_rect( rect, win->client_rect.left, win->client_rect.top );
1046         }
1047         if (!intersect_rect( rect, rect, &win->client_rect )) return 0;
1048         if (!intersect_rect( rect, rect, &win->window_rect )) return 0;
1049     }
1050     offset_rect( rect, -offset_x, -offset_y );
1051     return 1;
1052 }
1053
1054 /* return a copy of the specified region cropped to the window client or frame rectangle, */
1055 /* and converted from client to window coordinates. Helper for (in)validate_window. */
1056 static struct region *crop_region_to_win_rect( struct window *win, struct region *region, int frame )
1057 {
1058     rectangle_t rect;
1059     struct region *tmp;
1060
1061     if (!get_window_visible_rect( win, &rect, frame )) return NULL;
1062     if (!(tmp = create_empty_region())) return NULL;
1063     set_region_rect( tmp, &rect );
1064
1065     if (region)
1066     {
1067         /* map it to client coords */
1068         offset_region( tmp, win->window_rect.left - win->client_rect.left,
1069                        win->window_rect.top - win->client_rect.top );
1070
1071         /* intersect specified region with bounding rect */
1072         if (!intersect_region( tmp, region, tmp )) goto done;
1073         if (is_region_empty( tmp )) goto done;
1074
1075         /* map it back to window coords */
1076         offset_region( tmp, win->client_rect.left - win->window_rect.left,
1077                        win->client_rect.top - win->window_rect.top );
1078     }
1079     return tmp;
1080
1081 done:
1082     free_region( tmp );
1083     return NULL;
1084 }
1085
1086
1087 /* set a region as new update region for the window */
1088 static void set_update_region( struct window *win, struct region *region )
1089 {
1090     if (region && !is_region_empty( region ))
1091     {
1092         if (!win->update_region) inc_window_paint_count( win, 1 );
1093         else free_region( win->update_region );
1094         win->update_region = region;
1095     }
1096     else
1097     {
1098         if (win->update_region)
1099         {
1100             inc_window_paint_count( win, -1 );
1101             free_region( win->update_region );
1102         }
1103         win->paint_flags &= ~(PAINT_ERASE | PAINT_DELAYED_ERASE | PAINT_NONCLIENT);
1104         win->update_region = NULL;
1105         if (region) free_region( region );
1106     }
1107 }
1108
1109
1110 /* add a region to the update region; the passed region is freed or reused */
1111 static int add_update_region( struct window *win, struct region *region )
1112 {
1113     if (win->update_region && !union_region( region, win->update_region, region ))
1114     {
1115         free_region( region );
1116         return 0;
1117     }
1118     set_update_region( win, region );
1119     return 1;
1120 }
1121
1122
1123 /* crop the update region of children to the specified rectangle, in client coords */
1124 static void crop_children_update_region( struct window *win, rectangle_t *rect )
1125 {
1126     struct window *child;
1127     struct region *tmp;
1128     rectangle_t child_rect;
1129
1130     LIST_FOR_EACH_ENTRY( child, &win->children, struct window, entry )
1131     {
1132         if (!(child->style & WS_VISIBLE)) continue;
1133         if (!rect)  /* crop everything out */
1134         {
1135             crop_children_update_region( child, NULL );
1136             set_update_region( child, NULL );
1137             continue;
1138         }
1139
1140         /* nothing to do if child is completely inside rect */
1141         if (child->window_rect.left >= rect->left &&
1142             child->window_rect.top >= rect->top &&
1143             child->window_rect.right <= rect->right &&
1144             child->window_rect.bottom <= rect->bottom) continue;
1145
1146         /* map to child client coords and crop grand-children */
1147         child_rect = *rect;
1148         offset_rect( &child_rect, -child->client_rect.left, -child->client_rect.top );
1149         crop_children_update_region( child, &child_rect );
1150
1151         /* now crop the child itself */
1152         if (!child->update_region) continue;
1153         if (!(tmp = create_empty_region())) continue;
1154         set_region_rect( tmp, rect );
1155         offset_region( tmp, -child->window_rect.left, -child->window_rect.top );
1156         if (intersect_region( tmp, child->update_region, tmp )) set_update_region( child, tmp );
1157         else free_region( tmp );
1158     }
1159 }
1160
1161
1162 /* validate the non client area of a window */
1163 static void validate_non_client( struct window *win )
1164 {
1165     struct region *tmp;
1166     rectangle_t rect;
1167
1168     if (!win->update_region) return;  /* nothing to do */
1169
1170     /* get client rect in window coords */
1171     rect.left   = win->client_rect.left - win->window_rect.left;
1172     rect.top    = win->client_rect.top - win->window_rect.top;
1173     rect.right  = win->client_rect.right - win->window_rect.left;
1174     rect.bottom = win->client_rect.bottom - win->window_rect.top;
1175
1176     if ((tmp = create_empty_region()))
1177     {
1178         set_region_rect( tmp, &rect );
1179         if (intersect_region( tmp, win->update_region, tmp ))
1180             set_update_region( win, tmp );
1181         else
1182             free_region( tmp );
1183     }
1184     win->paint_flags &= ~PAINT_NONCLIENT;
1185 }
1186
1187
1188 /* validate a window completely so that we don't get any further paint messages for it */
1189 static void validate_whole_window( struct window *win )
1190 {
1191     set_update_region( win, NULL );
1192
1193     if (win->paint_flags & PAINT_INTERNAL)
1194     {
1195         win->paint_flags &= ~PAINT_INTERNAL;
1196         inc_window_paint_count( win, -1 );
1197     }
1198 }
1199
1200
1201 /* validate a window's children so that we don't get any further paint messages for it */
1202 static void validate_children( struct window *win )
1203 {
1204     struct window *child;
1205
1206     LIST_FOR_EACH_ENTRY( child, &win->children, struct window, entry )
1207     {
1208         if (!(child->style & WS_VISIBLE)) continue;
1209         validate_children(child);
1210         validate_whole_window(child);
1211     }
1212 }
1213
1214
1215 /* validate the update region of a window on all parents; helper for get_update_region */
1216 static void validate_parents( struct window *child )
1217 {
1218     int offset_x = 0, offset_y = 0;
1219     struct window *win = child;
1220     struct region *tmp = NULL;
1221
1222     if (!child->update_region) return;
1223
1224     while (win->parent)
1225     {
1226         /* map to parent client coords */
1227         offset_x += win->window_rect.left;
1228         offset_y += win->window_rect.top;
1229
1230         win = win->parent;
1231
1232         /* and now map to window coords */
1233         offset_x += win->client_rect.left - win->window_rect.left;
1234         offset_y += win->client_rect.top - win->window_rect.top;
1235
1236         if (win->update_region && !(win->style & WS_CLIPCHILDREN))
1237         {
1238             if (!tmp && !(tmp = create_empty_region())) return;
1239             offset_region( child->update_region, offset_x, offset_y );
1240             if (subtract_region( tmp, win->update_region, child->update_region ))
1241             {
1242                 set_update_region( win, tmp );
1243                 tmp = NULL;
1244             }
1245             /* restore child coords */
1246             offset_region( child->update_region, -offset_x, -offset_y );
1247         }
1248     }
1249     if (tmp) free_region( tmp );
1250 }
1251
1252
1253 /* add/subtract a region (in client coordinates) to the update region of the window */
1254 static void redraw_window( struct window *win, struct region *region, int frame, unsigned int flags )
1255 {
1256     struct region *tmp;
1257     struct window *child;
1258
1259     if (flags & RDW_INVALIDATE)
1260     {
1261         if (!(tmp = crop_region_to_win_rect( win, region, frame ))) return;
1262
1263         if (!add_update_region( win, tmp )) return;
1264
1265         if (flags & RDW_FRAME) win->paint_flags |= PAINT_NONCLIENT;
1266         if (flags & RDW_ERASE) win->paint_flags |= PAINT_ERASE;
1267     }
1268     else if (flags & RDW_VALIDATE)
1269     {
1270         if (!region && (flags & RDW_NOFRAME))  /* shortcut: validate everything */
1271         {
1272             set_update_region( win, NULL );
1273         }
1274         else if (win->update_region)
1275         {
1276             if ((tmp = crop_region_to_win_rect( win, region, frame )))
1277             {
1278                 if (!subtract_region( tmp, win->update_region, tmp ))
1279                 {
1280                     free_region( tmp );
1281                     return;
1282                 }
1283                 set_update_region( win, tmp );
1284             }
1285             if (flags & RDW_NOFRAME) validate_non_client( win );
1286             if (flags & RDW_NOERASE) win->paint_flags &= ~(PAINT_ERASE | PAINT_DELAYED_ERASE);
1287         }
1288     }
1289
1290     if ((flags & RDW_INTERNALPAINT) && !(win->paint_flags & PAINT_INTERNAL))
1291     {
1292         win->paint_flags |= PAINT_INTERNAL;
1293         inc_window_paint_count( win, 1 );
1294     }
1295     else if ((flags & RDW_NOINTERNALPAINT) && (win->paint_flags & PAINT_INTERNAL))
1296     {
1297         win->paint_flags &= ~PAINT_INTERNAL;
1298         inc_window_paint_count( win, -1 );
1299     }
1300
1301     /* now process children recursively */
1302
1303     if (flags & RDW_NOCHILDREN) return;
1304     if (win->style & WS_MINIMIZE) return;
1305     if ((win->style & WS_CLIPCHILDREN) && !(flags & RDW_ALLCHILDREN)) return;
1306
1307     if (!(tmp = crop_region_to_win_rect( win, region, 0 ))) return;
1308
1309     /* map to client coordinates */
1310     offset_region( tmp, win->window_rect.left - win->client_rect.left,
1311                    win->window_rect.top - win->client_rect.top );
1312
1313     if (flags & RDW_INVALIDATE) flags |= RDW_FRAME | RDW_ERASE;
1314
1315     LIST_FOR_EACH_ENTRY( child, &win->children, struct window, entry )
1316     {
1317         if (!(child->style & WS_VISIBLE)) continue;
1318         if (!rect_in_region( tmp, &child->window_rect )) continue;
1319         offset_region( tmp, -child->client_rect.left, -child->client_rect.top );
1320         redraw_window( child, tmp, 1, flags );
1321         offset_region( tmp, child->client_rect.left, child->client_rect.top );
1322     }
1323     free_region( tmp );
1324 }
1325
1326
1327 /* retrieve the update flags for a window depending on the state of the update region */
1328 static unsigned int get_update_flags( struct window *win, unsigned int flags )
1329 {
1330     unsigned int ret = 0;
1331
1332     if (flags & UPDATE_NONCLIENT)
1333     {
1334         if ((win->paint_flags & PAINT_NONCLIENT) && win->update_region) ret |= UPDATE_NONCLIENT;
1335     }
1336     if (flags & UPDATE_ERASE)
1337     {
1338         if ((win->paint_flags & PAINT_ERASE) && win->update_region) ret |= UPDATE_ERASE;
1339     }
1340     if (flags & UPDATE_PAINT)
1341     {
1342         if (win->update_region)
1343         {
1344             if (win->paint_flags & PAINT_DELAYED_ERASE) ret |= UPDATE_DELAYED_ERASE;
1345             ret |= UPDATE_PAINT;
1346         }
1347     }
1348     if (flags & UPDATE_INTERNALPAINT)
1349     {
1350         if (win->paint_flags & PAINT_INTERNAL)
1351         {
1352             ret |= UPDATE_INTERNALPAINT;
1353             if (win->paint_flags & PAINT_DELAYED_ERASE) ret |= UPDATE_DELAYED_ERASE;
1354         }
1355     }
1356     return ret;
1357 }
1358
1359
1360 /* iterate through the children of the given window until we find one with some update flags */
1361 static unsigned int get_child_update_flags( struct window *win, struct window *from_child,
1362                                             unsigned int flags, struct window **child )
1363 {
1364     struct window *ptr;
1365     unsigned int ret = 0;
1366
1367     /* first make sure we want to iterate children at all */
1368
1369     if (win->style & WS_MINIMIZE) return 0;
1370
1371     /* note: the WS_CLIPCHILDREN test is the opposite of the invalidation case,
1372      * here we only want to repaint children of windows that clip them, others
1373      * need to wait for WM_PAINT to be done in the parent first.
1374      */
1375     if (!(flags & UPDATE_ALLCHILDREN) && !(win->style & WS_CLIPCHILDREN)) return 0;
1376
1377     LIST_FOR_EACH_ENTRY( ptr, &win->children, struct window, entry )
1378     {
1379         if (from_child)  /* skip all children until from_child is found */
1380         {
1381             if (ptr == from_child) from_child = NULL;
1382             continue;
1383         }
1384         if (!(ptr->style & WS_VISIBLE)) continue;
1385         if ((ret = get_update_flags( ptr, flags )) != 0)
1386         {
1387             *child = ptr;
1388             break;
1389         }
1390         if ((ret = get_child_update_flags( ptr, NULL, flags, child ))) break;
1391     }
1392     return ret;
1393 }
1394
1395 /* iterate through children and siblings of the given window until we find one with some update flags */
1396 static unsigned int get_window_update_flags( struct window *win, struct window *from_child,
1397                                              unsigned int flags, struct window **child )
1398 {
1399     unsigned int ret;
1400     struct window *ptr, *from_sibling = NULL;
1401
1402     /* if some parent is not visible start from the next sibling */
1403
1404     if (!is_visible( win )) return 0;
1405     for (ptr = from_child; ptr; ptr = ptr->parent)
1406     {
1407         if (!(ptr->style & WS_VISIBLE) || (ptr->style & WS_MINIMIZE)) from_sibling = ptr;
1408         if (ptr == win) break;
1409     }
1410
1411     /* non-client painting must be delayed if one of the parents is going to
1412      * be repainted and doesn't clip children */
1413
1414     if ((flags & UPDATE_NONCLIENT) && !(flags & (UPDATE_PAINT|UPDATE_INTERNALPAINT)))
1415     {
1416         for (ptr = win->parent; ptr; ptr = ptr->parent)
1417         {
1418             if (!(ptr->style & WS_CLIPCHILDREN) && win_needs_repaint( ptr ))
1419                 return 0;
1420         }
1421         if (from_child && !(flags & UPDATE_ALLCHILDREN))
1422         {
1423             for (ptr = from_sibling ? from_sibling : from_child; ptr; ptr = ptr->parent)
1424             {
1425                 if (!(ptr->style & WS_CLIPCHILDREN) && win_needs_repaint( ptr )) from_sibling = ptr;
1426                 if (ptr == win) break;
1427             }
1428         }
1429     }
1430
1431
1432     /* check window itself (only if not restarting from a child) */
1433
1434     if (!from_child)
1435     {
1436         if ((ret = get_update_flags( win, flags )))
1437         {
1438             *child = win;
1439             return ret;
1440         }
1441         from_child = win;
1442     }
1443
1444     /* now check children */
1445
1446     if (flags & UPDATE_NOCHILDREN) return 0;
1447     if (!from_sibling)
1448     {
1449         if ((ret = get_child_update_flags( from_child, NULL, flags, child ))) return ret;
1450         from_sibling = from_child;
1451     }
1452
1453     /* then check siblings and parent siblings */
1454
1455     while (from_sibling->parent && from_sibling != win)
1456     {
1457         if ((ret = get_child_update_flags( from_sibling->parent, from_sibling, flags, child )))
1458             return ret;
1459         from_sibling = from_sibling->parent;
1460     }
1461     return 0;
1462 }
1463
1464
1465 /* expose the areas revealed by a vis region change on the window parent */
1466 /* returns the region exposed on the window itself (in client coordinates) */
1467 static struct region *expose_window( struct window *win, const rectangle_t *old_window_rect,
1468                                      struct region *old_vis_rgn )
1469 {
1470     struct region *new_vis_rgn, *exposed_rgn;
1471
1472     if (!(new_vis_rgn = get_visible_region( win, DCX_WINDOW ))) return NULL;
1473
1474     if ((exposed_rgn = create_empty_region()))
1475     {
1476         if (subtract_region( exposed_rgn, new_vis_rgn, old_vis_rgn ) && !is_region_empty( exposed_rgn ))
1477         {
1478             /* make it relative to the new client area */
1479             offset_region( exposed_rgn, win->window_rect.left - win->client_rect.left,
1480                            win->window_rect.top - win->client_rect.top );
1481         }
1482         else
1483         {
1484             free_region( exposed_rgn );
1485             exposed_rgn = NULL;
1486         }
1487     }
1488
1489     if (win->parent)
1490     {
1491         /* make it relative to the old window pos for subtracting */
1492         offset_region( new_vis_rgn, win->window_rect.left - old_window_rect->left,
1493                        win->window_rect.top - old_window_rect->top  );
1494
1495         if ((win->parent->style & WS_CLIPCHILDREN) ?
1496             subtract_region( new_vis_rgn, old_vis_rgn, new_vis_rgn ) :
1497             xor_region( new_vis_rgn, old_vis_rgn, new_vis_rgn ))
1498         {
1499             if (!is_region_empty( new_vis_rgn ))
1500             {
1501                 /* make it relative to parent */
1502                 offset_region( new_vis_rgn, old_window_rect->left, old_window_rect->top );
1503                 redraw_window( win->parent, new_vis_rgn, 0, RDW_INVALIDATE | RDW_ERASE | RDW_ALLCHILDREN );
1504             }
1505         }
1506     }
1507     free_region( new_vis_rgn );
1508     return exposed_rgn;
1509 }
1510
1511
1512 /* set the window and client rectangles, updating the update region if necessary */
1513 static void set_window_pos( struct window *win, struct window *previous,
1514                             unsigned int swp_flags, const rectangle_t *window_rect,
1515                             const rectangle_t *client_rect, const rectangle_t *visible_rect,
1516                             const rectangle_t *valid_rects )
1517 {
1518     struct region *old_vis_rgn = NULL, *exposed_rgn = NULL;
1519     const rectangle_t old_window_rect = win->window_rect;
1520     const rectangle_t old_visible_rect = win->visible_rect;
1521     const rectangle_t old_client_rect = win->client_rect;
1522     rectangle_t rect;
1523     int client_changed, frame_changed;
1524     int visible = (win->style & WS_VISIBLE) || (swp_flags & SWP_SHOWWINDOW);
1525
1526     if (win->parent && !is_visible( win->parent )) visible = 0;
1527
1528     if (visible && !(old_vis_rgn = get_visible_region( win, DCX_WINDOW ))) return;
1529
1530     /* set the new window info before invalidating anything */
1531
1532     win->window_rect  = *window_rect;
1533     win->visible_rect = *visible_rect;
1534     win->client_rect  = *client_rect;
1535     if (!(swp_flags & SWP_NOZORDER) && win->parent) link_window( win, previous );
1536     if (swp_flags & SWP_SHOWWINDOW) win->style |= WS_VISIBLE;
1537     else if (swp_flags & SWP_HIDEWINDOW) win->style &= ~WS_VISIBLE;
1538
1539     /* keep children at the same position relative to top right corner when the parent is mirrored */
1540     if (win->ex_style & WS_EX_LAYOUTRTL)
1541     {
1542         struct window *child;
1543         int old_size = old_client_rect.right - old_client_rect.left;
1544         int new_size = win->client_rect.right - win->client_rect.left;
1545
1546         if (old_size != new_size) LIST_FOR_EACH_ENTRY( child, &win->children, struct window, entry )
1547         {
1548             offset_rect( &child->window_rect, new_size - old_size, 0 );
1549             offset_rect( &child->visible_rect, new_size - old_size, 0 );
1550             offset_rect( &child->client_rect, new_size - old_size, 0 );
1551         }
1552     }
1553
1554     /* if the window is not visible, everything is easy */
1555     if (!visible) return;
1556
1557     /* expose anything revealed by the change */
1558
1559     if (!(swp_flags & SWP_NOREDRAW))
1560         exposed_rgn = expose_window( win, &old_window_rect, old_vis_rgn );
1561
1562     if (!(win->style & WS_VISIBLE))
1563     {
1564         /* clear the update region since the window is no longer visible */
1565         validate_whole_window( win );
1566         validate_children( win );
1567         goto done;
1568     }
1569
1570     /* crop update region to the new window rect */
1571
1572     if (win->update_region)
1573     {
1574         if (get_window_visible_rect( win, &rect, 1 ))
1575         {
1576             struct region *tmp = create_empty_region();
1577             if (tmp)
1578             {
1579                 set_region_rect( tmp, &rect );
1580                 if (intersect_region( tmp, win->update_region, tmp ))
1581                     set_update_region( win, tmp );
1582                 else
1583                     free_region( tmp );
1584             }
1585         }
1586         else set_update_region( win, NULL ); /* visible rect is empty */
1587     }
1588
1589     /* crop children regions to the new window rect */
1590
1591     if (get_window_visible_rect( win, &rect, 0 ))
1592     {
1593         /* map to client coords */
1594         offset_rect( &rect, win->window_rect.left - win->client_rect.left,
1595                      win->window_rect.top - win->client_rect.top );
1596         crop_children_update_region( win, &rect );
1597     }
1598     else crop_children_update_region( win, NULL );
1599
1600     if (swp_flags & SWP_NOREDRAW) goto done;  /* do not repaint anything */
1601
1602     /* expose the whole non-client area if it changed in any way */
1603
1604     if (swp_flags & SWP_NOCOPYBITS)
1605     {
1606         frame_changed = ((swp_flags & SWP_FRAMECHANGED) ||
1607                          memcmp( window_rect, &old_window_rect, sizeof(old_window_rect) ) ||
1608                          memcmp( visible_rect, &old_visible_rect, sizeof(old_visible_rect) ));
1609         client_changed = memcmp( client_rect, &old_client_rect, sizeof(old_client_rect) );
1610     }
1611     else
1612     {
1613         /* assume the bits have been moved to follow the window rect */
1614         int x_offset = window_rect->left - old_window_rect.left;
1615         int y_offset = window_rect->top - old_window_rect.top;
1616         frame_changed = ((swp_flags & SWP_FRAMECHANGED) ||
1617                          window_rect->right  - old_window_rect.right != x_offset ||
1618                          window_rect->bottom - old_window_rect.bottom != y_offset ||
1619                          visible_rect->left   - old_visible_rect.left   != x_offset ||
1620                          visible_rect->right  - old_visible_rect.right  != x_offset ||
1621                          visible_rect->top    - old_visible_rect.top    != y_offset ||
1622                          visible_rect->bottom - old_visible_rect.bottom != y_offset);
1623         client_changed = (client_rect->left   - old_client_rect.left   != x_offset ||
1624                           client_rect->right  - old_client_rect.right  != x_offset ||
1625                           client_rect->top    - old_client_rect.top    != y_offset ||
1626                           client_rect->bottom - old_client_rect.bottom != y_offset ||
1627                           !valid_rects ||
1628                           memcmp( &valid_rects[0], client_rect, sizeof(*client_rect) ));
1629     }
1630
1631     if (frame_changed || client_changed)
1632     {
1633         struct region *win_rgn = old_vis_rgn;  /* reuse previous region */
1634
1635         set_region_rect( win_rgn, window_rect );
1636         if (valid_rects)
1637         {
1638             /* subtract the valid portion of client rect from the total region */
1639             struct region *tmp = create_empty_region();
1640             if (tmp)
1641             {
1642                 set_region_rect( tmp, &valid_rects[0] );
1643                 if (subtract_region( tmp, win_rgn, tmp )) win_rgn = tmp;
1644                 else free_region( tmp );
1645             }
1646         }
1647         if (!is_desktop_window(win))
1648             offset_region( win_rgn, -client_rect->left, -client_rect->top );
1649         if (exposed_rgn)
1650         {
1651             union_region( exposed_rgn, exposed_rgn, win_rgn );
1652             if (win_rgn != old_vis_rgn) free_region( win_rgn );
1653         }
1654         else
1655         {
1656             exposed_rgn = win_rgn;
1657             if (win_rgn == old_vis_rgn) old_vis_rgn = NULL;
1658         }
1659     }
1660
1661     if (exposed_rgn)
1662         redraw_window( win, exposed_rgn, 1, RDW_INVALIDATE | RDW_ERASE | RDW_FRAME | RDW_ALLCHILDREN );
1663
1664 done:
1665     if (old_vis_rgn) free_region( old_vis_rgn );
1666     if (exposed_rgn) free_region( exposed_rgn );
1667     clear_error();  /* we ignore out of memory errors once the new rects have been set */
1668 }
1669
1670
1671 /* set the window region, updating the update region if necessary */
1672 static void set_window_region( struct window *win, struct region *region, int redraw )
1673 {
1674     struct region *old_vis_rgn = NULL, *exposed_rgn;
1675
1676     /* no need to redraw if window is not visible */
1677     if (redraw && !is_visible( win )) redraw = 0;
1678
1679     if (redraw) old_vis_rgn = get_visible_region( win, DCX_WINDOW );
1680
1681     if (win->win_region) free_region( win->win_region );
1682     win->win_region = region;
1683
1684     /* expose anything revealed by the change */
1685     if (old_vis_rgn && ((exposed_rgn = expose_window( win, &win->window_rect, old_vis_rgn ))))
1686     {
1687         redraw_window( win, exposed_rgn, 1, RDW_INVALIDATE | RDW_ERASE | RDW_FRAME | RDW_ALLCHILDREN );
1688         free_region( exposed_rgn );
1689     }
1690
1691     if (old_vis_rgn) free_region( old_vis_rgn );
1692     clear_error();  /* we ignore out of memory errors since the region has been set */
1693 }
1694
1695
1696 /* destroy a window */
1697 void destroy_window( struct window *win )
1698 {
1699     /* hide the window */
1700     if (is_visible(win))
1701     {
1702         struct region *vis_rgn = get_visible_region( win, DCX_WINDOW );
1703         win->style &= ~WS_VISIBLE;
1704         if (vis_rgn)
1705         {
1706             struct region *exposed_rgn = expose_window( win, &win->window_rect, vis_rgn );
1707             if (exposed_rgn) free_region( exposed_rgn );
1708             free_region( vis_rgn );
1709         }
1710         validate_whole_window( win );
1711         validate_children( win );
1712     }
1713
1714     /* destroy all children */
1715     while (!list_empty(&win->children))
1716         destroy_window( LIST_ENTRY( list_head(&win->children), struct window, entry ));
1717     while (!list_empty(&win->unlinked))
1718         destroy_window( LIST_ENTRY( list_head(&win->unlinked), struct window, entry ));
1719
1720     /* reset global window pointers, if the corresponding window is destroyed */
1721     if (win == shell_window) shell_window = NULL;
1722     if (win == shell_listview) shell_listview = NULL;
1723     if (win == progman_window) progman_window = NULL;
1724     if (win == taskman_window) taskman_window = NULL;
1725     free_user_handle( win->handle );
1726     destroy_properties( win );
1727     list_remove( &win->entry );
1728     if (is_desktop_window(win))
1729     {
1730         struct desktop *desktop = win->desktop;
1731         assert( desktop->top_window == win || desktop->msg_window == win );
1732         if (desktop->top_window == win) desktop->top_window = NULL;
1733         else desktop->msg_window = NULL;
1734     }
1735     detach_window_thread( win );
1736     if (win->win_region) free_region( win->win_region );
1737     if (win->update_region) free_region( win->update_region );
1738     if (win->class) release_class( win->class );
1739     free( win->text );
1740     memset( win, 0x55, sizeof(*win) + win->nb_extra_bytes - 1 );
1741     free( win );
1742 }
1743
1744
1745 /* create a window */
1746 DECL_HANDLER(create_window)
1747 {
1748     struct window *win, *parent = NULL, *owner = NULL;
1749     struct unicode_str cls_name;
1750     atom_t atom;
1751
1752     reply->handle = 0;
1753     if (req->parent && !(parent = get_window( req->parent ))) return;
1754
1755     if (req->owner)
1756     {
1757         if (!(owner = get_window( req->owner ))) return;
1758         if (is_desktop_window(owner)) owner = NULL;
1759         else if (parent && !is_desktop_window(parent))
1760         {
1761             /* an owned window must be created as top-level */
1762             set_error( STATUS_ACCESS_DENIED );
1763             return;
1764         }
1765         else /* owner must be a top-level window */
1766             while (!is_desktop_window(owner->parent)) owner = owner->parent;
1767     }
1768
1769     get_req_unicode_str( &cls_name );
1770     atom = cls_name.len ? find_global_atom( NULL, &cls_name ) : req->atom;
1771
1772     if (!(win = create_window( parent, owner, atom, req->instance ))) return;
1773
1774     reply->handle    = win->handle;
1775     reply->parent    = win->parent ? win->parent->handle : 0;
1776     reply->owner     = win->owner;
1777     reply->extra     = win->nb_extra_bytes;
1778     reply->class_ptr = get_class_client_ptr( win->class );
1779 }
1780
1781
1782 /* set the parent of a window */
1783 DECL_HANDLER(set_parent)
1784 {
1785     struct window *win, *parent = NULL;
1786
1787     if (!(win = get_window( req->handle ))) return;
1788     if (req->parent && !(parent = get_window( req->parent ))) return;
1789
1790     if (is_desktop_window(win))
1791     {
1792         set_error( STATUS_INVALID_PARAMETER );
1793         return;
1794     }
1795     reply->old_parent  = win->parent->handle;
1796     reply->full_parent = parent ? parent->handle : 0;
1797     set_parent_window( win, parent );
1798 }
1799
1800
1801 /* destroy a window */
1802 DECL_HANDLER(destroy_window)
1803 {
1804     struct window *win = get_window( req->handle );
1805     if (win)
1806     {
1807         if (!is_desktop_window(win)) destroy_window( win );
1808         else if (win->thread == current) detach_window_thread( win );
1809         else set_error( STATUS_ACCESS_DENIED );
1810     }
1811 }
1812
1813
1814 /* retrieve the desktop window for the current thread */
1815 DECL_HANDLER(get_desktop_window)
1816 {
1817     struct desktop *desktop = get_thread_desktop( current, 0 );
1818
1819     if (!desktop) return;
1820
1821     if (!desktop->top_window && req->force)  /* create it */
1822     {
1823         if ((desktop->top_window = create_window( NULL, NULL, DESKTOP_ATOM, 0 )))
1824         {
1825             detach_window_thread( desktop->top_window );
1826             desktop->top_window->style  = WS_POPUP | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN;
1827         }
1828     }
1829
1830     if (!desktop->msg_window && req->force)  /* create it */
1831     {
1832         static const WCHAR messageW[] = {'M','e','s','s','a','g','e'};
1833         static const struct unicode_str name = { messageW, sizeof(messageW) };
1834         atom_t atom = add_global_atom( NULL, &name );
1835         if (atom && (desktop->msg_window = create_window( NULL, NULL, atom, 0 )))
1836         {
1837             detach_window_thread( desktop->msg_window );
1838             desktop->msg_window->style = WS_POPUP | WS_CLIPSIBLINGS | WS_CLIPCHILDREN;
1839         }
1840     }
1841
1842     reply->top_window = desktop->top_window ? desktop->top_window->handle : 0;
1843     reply->msg_window = desktop->msg_window ? desktop->msg_window->handle : 0;
1844     release_object( desktop );
1845 }
1846
1847
1848 /* set a window owner */
1849 DECL_HANDLER(set_window_owner)
1850 {
1851     struct window *win = get_window( req->handle );
1852     struct window *owner = NULL, *ptr;
1853
1854     if (!win) return;
1855     if (req->owner && !(owner = get_window( req->owner ))) return;
1856     if (is_desktop_window(win))
1857     {
1858         set_error( STATUS_ACCESS_DENIED );
1859         return;
1860     }
1861
1862     /* make sure owner is not a successor of window */
1863     for (ptr = owner; ptr; ptr = ptr->owner ? get_window( ptr->owner ) : NULL)
1864     {
1865         if (ptr == win)
1866         {
1867             set_error( STATUS_INVALID_PARAMETER );
1868             return;
1869         }
1870     }
1871
1872     reply->prev_owner = win->owner;
1873     reply->full_owner = win->owner = owner ? owner->handle : 0;
1874 }
1875
1876
1877 /* get information from a window handle */
1878 DECL_HANDLER(get_window_info)
1879 {
1880     struct window *win = get_window( req->handle );
1881
1882     reply->full_handle = 0;
1883     reply->tid = reply->pid = 0;
1884     if (win)
1885     {
1886         reply->full_handle = win->handle;
1887         reply->last_active = win->handle;
1888         reply->is_unicode  = win->is_unicode;
1889         if (get_user_object( win->last_active, USER_WINDOW )) reply->last_active = win->last_active;
1890         if (win->thread)
1891         {
1892             reply->tid  = get_thread_id( win->thread );
1893             reply->pid  = get_process_id( win->thread->process );
1894             reply->atom = win->class ? get_class_atom( win->class ) : DESKTOP_ATOM;
1895         }
1896     }
1897 }
1898
1899
1900 /* set some information in a window */
1901 DECL_HANDLER(set_window_info)
1902 {
1903     struct window *win = get_window( req->handle );
1904
1905     if (!win) return;
1906     if (req->flags && is_desktop_window(win) && win->thread != current)
1907     {
1908         set_error( STATUS_ACCESS_DENIED );
1909         return;
1910     }
1911     if (req->extra_size > sizeof(req->extra_value) ||
1912         req->extra_offset < -1 ||
1913         req->extra_offset > win->nb_extra_bytes - (int)req->extra_size)
1914     {
1915         set_win32_error( ERROR_INVALID_INDEX );
1916         return;
1917     }
1918     if (req->extra_offset != -1)
1919     {
1920         memcpy( &reply->old_extra_value, win->extra_bytes + req->extra_offset, req->extra_size );
1921     }
1922     else if (req->flags & SET_WIN_EXTRA)
1923     {
1924         set_win32_error( ERROR_INVALID_INDEX );
1925         return;
1926     }
1927     reply->old_style     = win->style;
1928     reply->old_ex_style  = win->ex_style;
1929     reply->old_id        = win->id;
1930     reply->old_instance  = win->instance;
1931     reply->old_user_data = win->user_data;
1932     if (req->flags & SET_WIN_STYLE) win->style = req->style;
1933     if (req->flags & SET_WIN_EXSTYLE)
1934     {
1935         /* WS_EX_TOPMOST can only be changed for unlinked windows */
1936         if (!win->is_linked) win->ex_style = req->ex_style;
1937         else win->ex_style = (req->ex_style & ~WS_EX_TOPMOST) | (win->ex_style & WS_EX_TOPMOST);
1938         if (!(win->ex_style & WS_EX_LAYERED)) win->is_layered = 0;
1939     }
1940     if (req->flags & SET_WIN_ID) win->id = req->id;
1941     if (req->flags & SET_WIN_INSTANCE) win->instance = req->instance;
1942     if (req->flags & SET_WIN_UNICODE) win->is_unicode = req->is_unicode;
1943     if (req->flags & SET_WIN_USERDATA) win->user_data = req->user_data;
1944     if (req->flags & SET_WIN_EXTRA) memcpy( win->extra_bytes + req->extra_offset,
1945                                             &req->extra_value, req->extra_size );
1946
1947     /* changing window style triggers a non-client paint */
1948     if (req->flags & SET_WIN_STYLE) win->paint_flags |= PAINT_NONCLIENT;
1949 }
1950
1951
1952 /* get a list of the window parents, up to the root of the tree */
1953 DECL_HANDLER(get_window_parents)
1954 {
1955     struct window *ptr, *win = get_window( req->handle );
1956     int total = 0;
1957     user_handle_t *data;
1958     data_size_t len;
1959
1960     if (win) for (ptr = win->parent; ptr; ptr = ptr->parent) total++;
1961
1962     reply->count = total;
1963     len = min( get_reply_max_size(), total * sizeof(user_handle_t) );
1964     if (len && ((data = set_reply_data_size( len ))))
1965     {
1966         for (ptr = win->parent; ptr && len; ptr = ptr->parent, len -= sizeof(*data))
1967             *data++ = ptr->handle;
1968     }
1969 }
1970
1971
1972 /* get a list of the window children */
1973 DECL_HANDLER(get_window_children)
1974 {
1975     struct window *parent = NULL;
1976     unsigned int total;
1977     user_handle_t *data;
1978     data_size_t len;
1979     struct unicode_str cls_name;
1980     atom_t atom = req->atom;
1981     struct desktop *desktop = NULL;
1982
1983     get_req_unicode_str( &cls_name );
1984     if (cls_name.len && !(atom = find_global_atom( NULL, &cls_name ))) return;
1985
1986     if (req->desktop)
1987     {
1988         if (!(desktop = get_desktop_obj( current->process, req->desktop, DESKTOP_ENUMERATE ))) return;
1989         parent = desktop->top_window;
1990     }
1991     else
1992     {
1993         if (req->parent && !(parent = get_window( req->parent ))) return;
1994         if (!parent && !(desktop = get_thread_desktop( current, 0 ))) return;
1995     }
1996
1997     if (parent)
1998         total = get_children_windows( parent, atom, req->tid, NULL, 0 );
1999     else
2000         total = get_children_windows( desktop->top_window, atom, req->tid, NULL, 0 ) +
2001                 get_children_windows( desktop->msg_window, atom, req->tid, NULL, 0 );
2002
2003     reply->count = total;
2004     len = min( get_reply_max_size(), total * sizeof(user_handle_t) );
2005     if (len && ((data = set_reply_data_size( len ))))
2006     {
2007         if (parent) get_children_windows( parent, atom, req->tid, data, len / sizeof(user_handle_t) );
2008         else
2009         {
2010             total = get_children_windows( desktop->top_window, atom, req->tid,
2011                                           data, len / sizeof(user_handle_t) );
2012             data += total;
2013             len -= total * sizeof(user_handle_t);
2014             if (len >= sizeof(user_handle_t))
2015                 get_children_windows( desktop->msg_window, atom, req->tid,
2016                                       data, len / sizeof(user_handle_t) );
2017         }
2018     }
2019     if (desktop) release_object( desktop );
2020 }
2021
2022
2023 /* get a list of the window children that contain a given point */
2024 DECL_HANDLER(get_window_children_from_point)
2025 {
2026     struct user_handle_array array;
2027     struct window *parent = get_window( req->parent );
2028     data_size_t len;
2029
2030     if (!parent) return;
2031
2032     array.handles = NULL;
2033     array.count = 0;
2034     array.total = 0;
2035     if (!all_windows_from_point( parent, req->x, req->y, &array )) return;
2036
2037     reply->count = array.count;
2038     len = min( get_reply_max_size(), array.count * sizeof(user_handle_t) );
2039     if (len) set_reply_data_ptr( array.handles, len );
2040     else free( array.handles );
2041 }
2042
2043
2044 /* get window tree information from a window handle */
2045 DECL_HANDLER(get_window_tree)
2046 {
2047     struct window *ptr, *win = get_window( req->handle );
2048
2049     if (!win) return;
2050
2051     reply->parent        = 0;
2052     reply->owner         = 0;
2053     reply->next_sibling  = 0;
2054     reply->prev_sibling  = 0;
2055     reply->first_sibling = 0;
2056     reply->last_sibling  = 0;
2057     reply->first_child   = 0;
2058     reply->last_child    = 0;
2059
2060     if (win->parent)
2061     {
2062         struct window *parent = win->parent;
2063         reply->parent = parent->handle;
2064         reply->owner  = win->owner;
2065         if (win->is_linked)
2066         {
2067             if ((ptr = get_next_window( win ))) reply->next_sibling = ptr->handle;
2068             if ((ptr = get_prev_window( win ))) reply->prev_sibling = ptr->handle;
2069         }
2070         if ((ptr = get_first_child( parent ))) reply->first_sibling = ptr->handle;
2071         if ((ptr = get_last_child( parent ))) reply->last_sibling = ptr->handle;
2072     }
2073     if ((ptr = get_first_child( win ))) reply->first_child = ptr->handle;
2074     if ((ptr = get_last_child( win ))) reply->last_child = ptr->handle;
2075 }
2076
2077
2078 /* set the position and Z order of a window */
2079 DECL_HANDLER(set_window_pos)
2080 {
2081     rectangle_t window_rect, client_rect, visible_rect;
2082     struct window *previous = NULL;
2083     struct window *win = get_window( req->handle );
2084     unsigned int flags = req->flags;
2085
2086     if (!win) return;
2087     if (!win->parent) flags |= SWP_NOZORDER;  /* no Z order for the desktop */
2088
2089     if (!(flags & SWP_NOZORDER))
2090     {
2091         switch ((int)req->previous)
2092         {
2093         case 0:   /* HWND_TOP */
2094             previous = WINPTR_TOP;
2095             break;
2096         case 1:   /* HWND_BOTTOM */
2097             previous = WINPTR_BOTTOM;
2098             break;
2099         case -1:  /* HWND_TOPMOST */
2100             previous = WINPTR_TOPMOST;
2101             break;
2102         case -2:  /* HWND_NOTOPMOST */
2103             previous = WINPTR_NOTOPMOST;
2104             break;
2105         default:
2106             if (!(previous = get_window( req->previous ))) return;
2107             /* previous must be a sibling */
2108             if (previous->parent != win->parent)
2109             {
2110                 set_error( STATUS_INVALID_PARAMETER );
2111                 return;
2112             }
2113             break;
2114         }
2115         if (previous == win) flags |= SWP_NOZORDER;  /* nothing to do */
2116     }
2117
2118     /* window rectangle must be ordered properly */
2119     if (req->window.right < req->window.left || req->window.bottom < req->window.top)
2120     {
2121         set_error( STATUS_INVALID_PARAMETER );
2122         return;
2123     }
2124
2125     window_rect = visible_rect = req->window;
2126     client_rect = req->client;
2127     if (get_req_data_size() >= sizeof(rectangle_t))
2128         memcpy( &visible_rect, get_req_data(), sizeof(rectangle_t) );
2129     if (win->parent && win->parent->ex_style & WS_EX_LAYOUTRTL)
2130     {
2131         mirror_rect( &win->parent->client_rect, &window_rect );
2132         mirror_rect( &win->parent->client_rect, &visible_rect );
2133         mirror_rect( &win->parent->client_rect, &client_rect );
2134     }
2135
2136     if (get_req_data_size() >= 3 * sizeof(rectangle_t))
2137     {
2138         rectangle_t valid_rects[2];
2139         memcpy( valid_rects, (const rectangle_t *)get_req_data() + 1, 2 * sizeof(rectangle_t) );
2140         if (win->parent && win->parent->ex_style & WS_EX_LAYOUTRTL)
2141         {
2142             mirror_rect( &win->parent->client_rect, &valid_rects[0] );
2143             mirror_rect( &win->parent->client_rect, &valid_rects[1] );
2144         }
2145         set_window_pos( win, previous, flags, &window_rect, &client_rect, &visible_rect, valid_rects );
2146     }
2147     else set_window_pos( win, previous, flags, &window_rect, &client_rect, &visible_rect, NULL );
2148
2149     reply->new_style = win->style;
2150     reply->new_ex_style = win->ex_style;
2151 }
2152
2153
2154 /* get the window and client rectangles of a window */
2155 DECL_HANDLER(get_window_rectangles)
2156 {
2157     struct window *win = get_window( req->handle );
2158
2159     if (!win) return;
2160
2161     reply->window  = win->window_rect;
2162     reply->visible = win->visible_rect;
2163     reply->client  = win->client_rect;
2164
2165     switch (req->relative)
2166     {
2167     case COORDS_CLIENT:
2168         offset_rect( &reply->window, -win->client_rect.left, -win->client_rect.top );
2169         offset_rect( &reply->visible, -win->client_rect.left, -win->client_rect.top );
2170         offset_rect( &reply->client, -win->client_rect.left, -win->client_rect.top );
2171         if (win->ex_style & WS_EX_LAYOUTRTL)
2172         {
2173             mirror_rect( &win->client_rect, &reply->window );
2174             mirror_rect( &win->client_rect, &reply->visible );
2175         }
2176         break;
2177     case COORDS_WINDOW:
2178         offset_rect( &reply->window, -win->window_rect.left, -win->window_rect.top );
2179         offset_rect( &reply->visible, -win->window_rect.left, -win->window_rect.top );
2180         offset_rect( &reply->client, -win->window_rect.left, -win->window_rect.top );
2181         if (win->ex_style & WS_EX_LAYOUTRTL)
2182         {
2183             mirror_rect( &win->window_rect, &reply->visible );
2184             mirror_rect( &win->window_rect, &reply->client );
2185         }
2186         break;
2187     case COORDS_PARENT:
2188         if (win->parent && win->parent->ex_style & WS_EX_LAYOUTRTL)
2189         {
2190             mirror_rect( &win->parent->client_rect, &reply->window );
2191             mirror_rect( &win->parent->client_rect, &reply->visible );
2192             mirror_rect( &win->parent->client_rect, &reply->client );
2193         }
2194         break;
2195     case COORDS_SCREEN:
2196         client_to_screen_rect( win->parent, &reply->window );
2197         client_to_screen_rect( win->parent, &reply->visible );
2198         client_to_screen_rect( win->parent, &reply->client );
2199         break;
2200     default:
2201         set_error( STATUS_INVALID_PARAMETER );
2202         break;
2203     }
2204 }
2205
2206
2207 /* get the window text */
2208 DECL_HANDLER(get_window_text)
2209 {
2210     struct window *win = get_window( req->handle );
2211
2212     if (win && win->text)
2213     {
2214         data_size_t len = strlenW( win->text ) * sizeof(WCHAR);
2215         if (len > get_reply_max_size()) len = get_reply_max_size();
2216         set_reply_data( win->text, len );
2217     }
2218 }
2219
2220
2221 /* set the window text */
2222 DECL_HANDLER(set_window_text)
2223 {
2224     struct window *win = get_window( req->handle );
2225
2226     if (win)
2227     {
2228         WCHAR *text = NULL;
2229         data_size_t len = get_req_data_size() / sizeof(WCHAR);
2230         if (len)
2231         {
2232             if (!(text = mem_alloc( (len+1) * sizeof(WCHAR) ))) return;
2233             memcpy( text, get_req_data(), len * sizeof(WCHAR) );
2234             text[len] = 0;
2235         }
2236         free( win->text );
2237         win->text = text;
2238     }
2239 }
2240
2241
2242 /* get the coordinates offset between two windows */
2243 DECL_HANDLER(get_windows_offset)
2244 {
2245     struct window *win;
2246     int mirror_from = 0, mirror_to = 0;
2247
2248     reply->x = reply->y = 0;
2249     if (req->from)
2250     {
2251         if (!(win = get_window( req->from ))) return;
2252         if (win->ex_style & WS_EX_LAYOUTRTL)
2253         {
2254             mirror_from = 1;
2255             reply->x += win->client_rect.right - win->client_rect.left;
2256         }
2257         while (win && !is_desktop_window(win))
2258         {
2259             reply->x += win->client_rect.left;
2260             reply->y += win->client_rect.top;
2261             win = win->parent;
2262         }
2263     }
2264     if (req->to)
2265     {
2266         if (!(win = get_window( req->to ))) return;
2267         if (win->ex_style & WS_EX_LAYOUTRTL)
2268         {
2269             mirror_to = 1;
2270             reply->x -= win->client_rect.right - win->client_rect.left;
2271         }
2272         while (win && !is_desktop_window(win))
2273         {
2274             reply->x -= win->client_rect.left;
2275             reply->y -= win->client_rect.top;
2276             win = win->parent;
2277         }
2278     }
2279     if (mirror_from) reply->x = -reply->x;
2280     reply->mirror = mirror_from ^ mirror_to;
2281 }
2282
2283
2284 /* get the visible region of a window */
2285 DECL_HANDLER(get_visible_region)
2286 {
2287     struct region *region;
2288     struct window *top, *win = get_window( req->window );
2289
2290     if (!win) return;
2291
2292     top = get_top_clipping_window( win );
2293     if ((region = get_visible_region( win, req->flags )))
2294     {
2295         rectangle_t *data;
2296         map_win_region_to_screen( win, region );
2297         data = get_region_data_and_free( region, get_reply_max_size(), &reply->total_size );
2298         if (data) set_reply_data_ptr( data, reply->total_size );
2299     }
2300     reply->top_win  = top->handle;
2301     reply->top_rect = (top == win && (req->flags & DCX_WINDOW)) ? top->visible_rect : top->client_rect;
2302
2303     if (!is_desktop_window(win))
2304     {
2305         reply->win_rect = (req->flags & DCX_WINDOW) ? win->window_rect : win->client_rect;
2306         client_to_screen_rect( top->parent, &reply->top_rect );
2307         client_to_screen_rect( win->parent, &reply->win_rect );
2308     }
2309     else
2310     {
2311         reply->win_rect.left   = 0;
2312         reply->win_rect.top    = 0;
2313         reply->win_rect.right  = win->client_rect.right - win->client_rect.left;
2314         reply->win_rect.bottom = win->client_rect.bottom - win->client_rect.top;
2315     }
2316 }
2317
2318
2319 /* get the window region */
2320 DECL_HANDLER(get_window_region)
2321 {
2322     rectangle_t *data;
2323     struct window *win = get_window( req->window );
2324
2325     if (!win) return;
2326     if (!win->win_region) return;
2327
2328     if (win->ex_style & WS_EX_LAYOUTRTL)
2329     {
2330         struct region *region = create_empty_region();
2331
2332         if (!region) return;
2333         if (!copy_region( region, win->win_region ))
2334         {
2335             free_region( region );
2336             return;
2337         }
2338         mirror_region( &win->window_rect, region );
2339         data = get_region_data_and_free( region, get_reply_max_size(), &reply->total_size );
2340     }
2341     else data = get_region_data( win->win_region, get_reply_max_size(), &reply->total_size );
2342
2343     if (data) set_reply_data_ptr( data, reply->total_size );
2344 }
2345
2346
2347 /* set the window region */
2348 DECL_HANDLER(set_window_region)
2349 {
2350     struct region *region = NULL;
2351     struct window *win = get_window( req->window );
2352
2353     if (!win) return;
2354
2355     if (get_req_data_size())  /* no data means remove the region completely */
2356     {
2357         if (!(region = create_region_from_req_data( get_req_data(), get_req_data_size() )))
2358             return;
2359         if (win->ex_style & WS_EX_LAYOUTRTL) mirror_region( &win->window_rect, region );
2360     }
2361     set_window_region( win, region, req->redraw );
2362 }
2363
2364
2365 /* get a window update region */
2366 DECL_HANDLER(get_update_region)
2367 {
2368     rectangle_t *data;
2369     unsigned int flags = req->flags;
2370     struct window *from_child = NULL;
2371     struct window *win = get_window( req->window );
2372
2373     reply->flags = 0;
2374     if (!win) return;
2375
2376     if (req->from_child)
2377     {
2378         struct window *ptr;
2379
2380         if (!(from_child = get_window( req->from_child ))) return;
2381
2382         /* make sure from_child is a child of win */
2383         ptr = from_child;
2384         while (ptr && ptr != win) ptr = ptr->parent;
2385         if (!ptr)
2386         {
2387             set_error( STATUS_INVALID_PARAMETER );
2388             return;
2389         }
2390     }
2391
2392     if (flags & UPDATE_DELAYED_ERASE)  /* this means that the previous call didn't erase */
2393     {
2394         if (from_child) from_child->paint_flags |= PAINT_DELAYED_ERASE;
2395         else win->paint_flags |= PAINT_DELAYED_ERASE;
2396     }
2397
2398     reply->flags = get_window_update_flags( win, from_child, flags, &win );
2399     reply->child = win->handle;
2400
2401     if (flags & UPDATE_NOREGION) return;
2402
2403     if (win->update_region)
2404     {
2405         /* convert update region to screen coordinates */
2406         struct region *region = create_empty_region();
2407
2408         if (!region) return;
2409         if (!copy_region( region, win->update_region ))
2410         {
2411             free_region( region );
2412             return;
2413         }
2414         map_win_region_to_screen( win, region );
2415         if (!(data = get_region_data_and_free( region, get_reply_max_size(),
2416                                                &reply->total_size ))) return;
2417         set_reply_data_ptr( data, reply->total_size );
2418     }
2419
2420     if (reply->flags & (UPDATE_PAINT|UPDATE_INTERNALPAINT)) /* validate everything */
2421     {
2422         validate_parents( win );
2423         validate_whole_window( win );
2424     }
2425     else
2426     {
2427         if (reply->flags & UPDATE_NONCLIENT) validate_non_client( win );
2428         if (reply->flags & UPDATE_ERASE)
2429         {
2430             win->paint_flags &= ~(PAINT_ERASE | PAINT_DELAYED_ERASE);
2431             /* desktop window only gets erased, not repainted */
2432             if (is_desktop_window(win)) validate_whole_window( win );
2433         }
2434     }
2435 }
2436
2437
2438 /* update the z order of a window so that a given rectangle is fully visible */
2439 DECL_HANDLER(update_window_zorder)
2440 {
2441     rectangle_t tmp, rect = req->rect;
2442     struct window *ptr, *win = get_window( req->window );
2443
2444     if (!win || !win->parent || !is_visible( win )) return;  /* nothing to do */
2445     if (win->ex_style & WS_EX_LAYOUTRTL) mirror_rect( &win->client_rect, &rect );
2446     offset_rect( &rect, win->client_rect.left, win->client_rect.top );
2447
2448     LIST_FOR_EACH_ENTRY( ptr, &win->parent->children, struct window, entry )
2449     {
2450         if (ptr == win) break;
2451         if (!(ptr->style & WS_VISIBLE)) continue;
2452         if (ptr->ex_style & WS_EX_TRANSPARENT) continue;
2453         if (!intersect_rect( &tmp, &ptr->visible_rect, &rect )) continue;
2454         if (ptr->win_region && !rect_in_region( ptr->win_region, &rect )) continue;
2455         /* found a window obscuring the rectangle, now move win above this one */
2456         /* making sure to not violate the topmost rule */
2457         if (!(ptr->ex_style & WS_EX_TOPMOST) || (win->ex_style & WS_EX_TOPMOST))
2458         {
2459             list_remove( &win->entry );
2460             list_add_before( &ptr->entry, &win->entry );
2461         }
2462         break;
2463     }
2464 }
2465
2466
2467 /* mark parts of a window as needing a redraw */
2468 DECL_HANDLER(redraw_window)
2469 {
2470     struct region *region = NULL;
2471     struct window *win = get_window( req->window );
2472
2473     if (!win) return;
2474     if (!is_visible( win )) return;  /* nothing to do */
2475
2476     if (req->flags & (RDW_VALIDATE|RDW_INVALIDATE))
2477     {
2478         if (get_req_data_size())  /* no data means whole rectangle */
2479         {
2480             if (!(region = create_region_from_req_data( get_req_data(), get_req_data_size() )))
2481                 return;
2482             if (win->ex_style & WS_EX_LAYOUTRTL) mirror_region( &win->client_rect, region );
2483         }
2484     }
2485
2486     redraw_window( win, region, (req->flags & RDW_INVALIDATE) && (req->flags & RDW_FRAME),
2487                    req->flags );
2488     if (region) free_region( region );
2489 }
2490
2491
2492 /* set a window property */
2493 DECL_HANDLER(set_window_property)
2494 {
2495     struct unicode_str name;
2496     struct window *win = get_window( req->window );
2497
2498     if (!win) return;
2499
2500     get_req_unicode_str( &name );
2501     if (name.len)
2502     {
2503         atom_t atom = add_global_atom( NULL, &name );
2504         if (atom)
2505         {
2506             set_property( win, atom, req->data, PROP_TYPE_STRING );
2507             release_global_atom( NULL, atom );
2508         }
2509     }
2510     else set_property( win, req->atom, req->data, PROP_TYPE_ATOM );
2511 }
2512
2513
2514 /* remove a window property */
2515 DECL_HANDLER(remove_window_property)
2516 {
2517     struct unicode_str name;
2518     struct window *win = get_window( req->window );
2519
2520     get_req_unicode_str( &name );
2521     if (win)
2522     {
2523         atom_t atom = name.len ? find_global_atom( NULL, &name ) : req->atom;
2524         if (atom) reply->data = remove_property( win, atom );
2525     }
2526 }
2527
2528
2529 /* get a window property */
2530 DECL_HANDLER(get_window_property)
2531 {
2532     struct unicode_str name;
2533     struct window *win = get_window( req->window );
2534
2535     get_req_unicode_str( &name );
2536     if (win)
2537     {
2538         atom_t atom = name.len ? find_global_atom( NULL, &name ) : req->atom;
2539         if (atom) reply->data = get_property( win, atom );
2540     }
2541 }
2542
2543
2544 /* get the list of properties of a window */
2545 DECL_HANDLER(get_window_properties)
2546 {
2547     property_data_t *data;
2548     int i, count, max = get_reply_max_size() / sizeof(*data);
2549     struct window *win = get_window( req->window );
2550
2551     reply->total = 0;
2552     if (!win) return;
2553
2554     for (i = count = 0; i < win->prop_inuse; i++)
2555         if (win->properties[i].type != PROP_TYPE_FREE) count++;
2556     reply->total = count;
2557
2558     if (count > max) count = max;
2559     if (!count || !(data = set_reply_data_size( count * sizeof(*data) ))) return;
2560
2561     for (i = 0; i < win->prop_inuse && count; i++)
2562     {
2563         if (win->properties[i].type == PROP_TYPE_FREE) continue;
2564         data->atom   = win->properties[i].atom;
2565         data->string = (win->properties[i].type == PROP_TYPE_STRING);
2566         data->data   = win->properties[i].data;
2567         data++;
2568         count--;
2569     }
2570 }
2571
2572
2573 /* get the new window pointer for a global window, checking permissions */
2574 /* helper for set_global_windows request */
2575 static int get_new_global_window( struct window **win, user_handle_t handle )
2576 {
2577     if (!handle)
2578     {
2579         *win = NULL;
2580         return 1;
2581     }
2582     else if (*win)
2583     {
2584         set_error( STATUS_ACCESS_DENIED );
2585         return 0;
2586     }
2587     *win = get_window( handle );
2588     return (*win != NULL);
2589 }
2590
2591 /* Set/get the global windows */
2592 DECL_HANDLER(set_global_windows)
2593 {
2594     struct window *new_shell_window   = shell_window;
2595     struct window *new_shell_listview = shell_listview;
2596     struct window *new_progman_window = progman_window;
2597     struct window *new_taskman_window = taskman_window;
2598
2599     reply->old_shell_window   = shell_window ? shell_window->handle : 0;
2600     reply->old_shell_listview = shell_listview ? shell_listview->handle : 0;
2601     reply->old_progman_window = progman_window ? progman_window->handle : 0;
2602     reply->old_taskman_window = taskman_window ? taskman_window->handle : 0;
2603
2604     if (req->flags & SET_GLOBAL_SHELL_WINDOWS)
2605     {
2606         if (!get_new_global_window( &new_shell_window, req->shell_window )) return;
2607         if (!get_new_global_window( &new_shell_listview, req->shell_listview )) return;
2608     }
2609     if (req->flags & SET_GLOBAL_PROGMAN_WINDOW)
2610     {
2611         if (!get_new_global_window( &new_progman_window, req->progman_window )) return;
2612     }
2613     if (req->flags & SET_GLOBAL_TASKMAN_WINDOW)
2614     {
2615         if (!get_new_global_window( &new_taskman_window, req->taskman_window )) return;
2616     }
2617     shell_window   = new_shell_window;
2618     shell_listview = new_shell_listview;
2619     progman_window = new_progman_window;
2620     taskman_window = new_taskman_window;
2621 }
2622
2623 /* retrieve layered info for a window */
2624 DECL_HANDLER(get_window_layered_info)
2625 {
2626     struct window *win = get_window( req->handle );
2627
2628     if (!win) return;
2629
2630     if (win->is_layered)
2631     {
2632         reply->color_key = win->color_key;
2633         reply->alpha     = win->alpha;
2634         reply->flags     = win->layered_flags;
2635     }
2636     else set_win32_error( ERROR_INVALID_WINDOW_HANDLE );
2637 }
2638
2639
2640 /* set layered info for a window */
2641 DECL_HANDLER(set_window_layered_info)
2642 {
2643     struct window *win = get_window( req->handle );
2644
2645     if (!win) return;
2646
2647     if (win->ex_style & WS_EX_LAYERED)
2648     {
2649         if (req->flags & LWA_ALPHA) win->alpha = req->alpha;
2650         else if (!win->is_layered) win->alpha = 0;  /* alpha init value is 0 */
2651
2652         win->color_key     = req->color_key;
2653         win->layered_flags = req->flags;
2654         win->is_layered    = 1;
2655     }
2656     else set_win32_error( ERROR_INVALID_WINDOW_HANDLE );
2657 }