mpr: Don't stop enumeration on the first failing network provider.
[wine.git] / server / window.c
blobf35d6f60a42f62056449bc99f7dfc994d678d739
1 /*
2 * Server-side window handling
4 * Copyright (C) 2001 Alexandre Julliard
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.
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.
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
21 #include "config.h"
22 #include "wine/port.h"
24 #include <assert.h>
25 #include <stdarg.h>
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"
35 #include "object.h"
36 #include "request.h"
37 #include "thread.h"
38 #include "process.h"
39 #include "user.h"
40 #include "unicode.h"
42 /* a window property */
43 struct property
45 unsigned short type; /* property type (see below) */
46 atom_t atom; /* property atom */
47 lparam_t data; /* property data (user-defined storage) */
50 enum property_type
52 PROP_TYPE_FREE, /* free entry */
53 PROP_TYPE_STRING, /* atom that was originally a string */
54 PROP_TYPE_ATOM /* plain atom */
58 struct window
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 */
96 /* flags that can be set by the client */
97 #define PAINT_HAS_SURFACE SET_WINPOS_PAINT_SURFACE
98 #define PAINT_HAS_PIXEL_FORMAT SET_WINPOS_PIXEL_FORMAT
99 #define PAINT_CLIENT_FLAGS (PAINT_HAS_SURFACE | PAINT_HAS_PIXEL_FORMAT)
100 /* flags only manipulated by the server */
101 #define PAINT_INTERNAL 0x0010 /* internal WM_PAINT pending */
102 #define PAINT_ERASE 0x0020 /* needs WM_ERASEBKGND */
103 #define PAINT_NONCLIENT 0x0040 /* needs WM_NCPAINT */
104 #define PAINT_DELAYED_ERASE 0x0080 /* still needs erase after WM_ERASEBKGND */
105 #define PAINT_PIXEL_FORMAT_CHILD 0x0100 /* at least one child has a custom pixel format */
107 /* growable array of user handles */
108 struct user_handle_array
110 user_handle_t *handles;
111 int count;
112 int total;
115 /* global window pointers */
116 static struct window *shell_window;
117 static struct window *shell_listview;
118 static struct window *progman_window;
119 static struct window *taskman_window;
121 /* magic HWND_TOP etc. pointers */
122 #define WINPTR_TOP ((struct window *)1L)
123 #define WINPTR_BOTTOM ((struct window *)2L)
124 #define WINPTR_TOPMOST ((struct window *)3L)
125 #define WINPTR_NOTOPMOST ((struct window *)4L)
127 /* retrieve a pointer to a window from its handle */
128 static inline struct window *get_window( user_handle_t handle )
130 struct window *ret = get_user_object( handle, USER_WINDOW );
131 if (!ret) set_win32_error( ERROR_INVALID_WINDOW_HANDLE );
132 return ret;
135 /* check if window is the desktop */
136 static inline int is_desktop_window( const struct window *win )
138 return !win->parent; /* only desktop windows have no parent */
141 /* get next window in Z-order list */
142 static inline struct window *get_next_window( struct window *win )
144 struct list *ptr = list_next( &win->parent->children, &win->entry );
145 return ptr ? LIST_ENTRY( ptr, struct window, entry ) : NULL;
148 /* get previous window in Z-order list */
149 static inline struct window *get_prev_window( struct window *win )
151 struct list *ptr = list_prev( &win->parent->children, &win->entry );
152 return ptr ? LIST_ENTRY( ptr, struct window, entry ) : NULL;
155 /* get first child in Z-order list */
156 static inline struct window *get_first_child( struct window *win )
158 struct list *ptr = list_head( &win->children );
159 return ptr ? LIST_ENTRY( ptr, struct window, entry ) : NULL;
162 /* get last child in Z-order list */
163 static inline struct window *get_last_child( struct window *win )
165 struct list *ptr = list_tail( &win->children );
166 return ptr ? LIST_ENTRY( ptr, struct window, entry ) : NULL;
169 /* set the PAINT_PIXEL_FORMAT_CHILD flag on all the parents */
170 /* note: we never reset the flag, it's just a heuristic */
171 static inline void update_pixel_format_flags( struct window *win )
173 for (win = win->parent; win && win->parent; win = win->parent)
174 win->paint_flags |= PAINT_PIXEL_FORMAT_CHILD;
177 /* link a window at the right place in the siblings list */
178 static void link_window( struct window *win, struct window *previous )
180 if (previous == WINPTR_NOTOPMOST)
182 if (!(win->ex_style & WS_EX_TOPMOST) && win->is_linked) return; /* nothing to do */
183 win->ex_style &= ~WS_EX_TOPMOST;
184 previous = WINPTR_TOP; /* fallback to the HWND_TOP case */
187 list_remove( &win->entry ); /* unlink it from the previous location */
189 if (previous == WINPTR_BOTTOM)
191 list_add_tail( &win->parent->children, &win->entry );
192 win->ex_style &= ~WS_EX_TOPMOST;
194 else if (previous == WINPTR_TOPMOST)
196 list_add_head( &win->parent->children, &win->entry );
197 win->ex_style |= WS_EX_TOPMOST;
199 else if (previous == WINPTR_TOP)
201 struct list *entry = win->parent->children.next;
202 if (!(win->ex_style & WS_EX_TOPMOST)) /* put it above the first non-topmost window */
204 while (entry != &win->parent->children)
206 struct window *next = LIST_ENTRY( entry, struct window, entry );
207 if (!(next->ex_style & WS_EX_TOPMOST)) break;
208 if (next->handle == win->owner) /* keep it above owner */
210 win->ex_style |= WS_EX_TOPMOST;
211 break;
213 entry = entry->next;
216 list_add_before( entry, &win->entry );
218 else
220 list_add_after( &previous->entry, &win->entry );
221 if (!(previous->ex_style & WS_EX_TOPMOST)) win->ex_style &= ~WS_EX_TOPMOST;
222 else
224 struct window *next = get_next_window( win );
225 if (next && (next->ex_style & WS_EX_TOPMOST)) win->ex_style |= WS_EX_TOPMOST;
229 win->is_linked = 1;
232 /* change the parent of a window (or unlink the window if the new parent is NULL) */
233 static int set_parent_window( struct window *win, struct window *parent )
235 struct window *ptr;
237 /* make sure parent is not a child of window */
238 for (ptr = parent; ptr; ptr = ptr->parent)
240 if (ptr == win)
242 set_error( STATUS_INVALID_PARAMETER );
243 return 0;
247 if (parent)
249 win->parent = parent;
250 link_window( win, WINPTR_TOP );
252 /* if parent belongs to a different thread and the window isn't */
253 /* top-level, attach the two threads */
254 if (parent->thread && parent->thread != win->thread && !is_desktop_window(parent))
255 attach_thread_input( win->thread, parent->thread );
257 if (win->paint_flags & (PAINT_HAS_PIXEL_FORMAT | PAINT_PIXEL_FORMAT_CHILD))
258 update_pixel_format_flags( win );
260 else /* move it to parent unlinked list */
262 list_remove( &win->entry ); /* unlink it from the previous location */
263 list_add_head( &win->parent->unlinked, &win->entry );
264 win->is_linked = 0;
266 return 1;
269 /* append a user handle to a handle array */
270 static int add_handle_to_array( struct user_handle_array *array, user_handle_t handle )
272 if (array->count >= array->total)
274 int new_total = max( array->total * 2, 32 );
275 user_handle_t *new_array = realloc( array->handles, new_total * sizeof(*new_array) );
276 if (!new_array)
278 free( array->handles );
279 set_error( STATUS_NO_MEMORY );
280 return 0;
282 array->handles = new_array;
283 array->total = new_total;
285 array->handles[array->count++] = handle;
286 return 1;
289 /* set a window property */
290 static void set_property( struct window *win, atom_t atom, lparam_t data, enum property_type type )
292 int i, free = -1;
293 struct property *new_props;
295 /* check if it exists already */
296 for (i = 0; i < win->prop_inuse; i++)
298 if (win->properties[i].type == PROP_TYPE_FREE)
300 free = i;
301 continue;
303 if (win->properties[i].atom == atom)
305 win->properties[i].type = type;
306 win->properties[i].data = data;
307 return;
311 /* need to add an entry */
312 if (!grab_global_atom( NULL, atom )) return;
313 if (free == -1)
315 /* no free entry */
316 if (win->prop_inuse >= win->prop_alloc)
318 /* need to grow the array */
319 if (!(new_props = realloc( win->properties,
320 sizeof(*new_props) * (win->prop_alloc + 16) )))
322 set_error( STATUS_NO_MEMORY );
323 release_global_atom( NULL, atom );
324 return;
326 win->prop_alloc += 16;
327 win->properties = new_props;
329 free = win->prop_inuse++;
331 win->properties[free].atom = atom;
332 win->properties[free].type = type;
333 win->properties[free].data = data;
336 /* remove a window property */
337 static lparam_t remove_property( struct window *win, atom_t atom )
339 int i;
341 for (i = 0; i < win->prop_inuse; i++)
343 if (win->properties[i].type == PROP_TYPE_FREE) continue;
344 if (win->properties[i].atom == atom)
346 release_global_atom( NULL, atom );
347 win->properties[i].type = PROP_TYPE_FREE;
348 return win->properties[i].data;
351 /* FIXME: last error? */
352 return 0;
355 /* find a window property */
356 static lparam_t get_property( struct window *win, atom_t atom )
358 int i;
360 for (i = 0; i < win->prop_inuse; i++)
362 if (win->properties[i].type == PROP_TYPE_FREE) continue;
363 if (win->properties[i].atom == atom) return win->properties[i].data;
365 /* FIXME: last error? */
366 return 0;
369 /* destroy all properties of a window */
370 static inline void destroy_properties( struct window *win )
372 int i;
374 if (!win->properties) return;
375 for (i = 0; i < win->prop_inuse; i++)
377 if (win->properties[i].type == PROP_TYPE_FREE) continue;
378 release_global_atom( NULL, win->properties[i].atom );
380 free( win->properties );
383 /* detach a window from its owner thread but keep the window around */
384 static void detach_window_thread( struct window *win )
386 struct thread *thread = win->thread;
388 if (!thread) return;
389 if (thread->queue)
391 if (win->update_region) inc_queue_paint_count( thread, -1 );
392 if (win->paint_flags & PAINT_INTERNAL) inc_queue_paint_count( thread, -1 );
393 queue_cleanup_window( thread, win->handle );
395 assert( thread->desktop_users > 0 );
396 thread->desktop_users--;
397 release_class( win->class );
398 win->class = NULL;
400 /* don't hold a reference to the desktop so that the desktop window can be */
401 /* destroyed when the desktop ref count reaches zero */
402 release_object( win->desktop );
403 win->thread = NULL;
406 /* get the process owning the top window of a given desktop */
407 struct process *get_top_window_owner( struct desktop *desktop )
409 struct window *win = desktop->top_window;
410 if (!win || !win->thread) return NULL;
411 return win->thread->process;
414 /* get the top window size of a given desktop */
415 void get_top_window_rectangle( struct desktop *desktop, rectangle_t *rect )
417 struct window *win = desktop->top_window;
418 if (!win) rect->left = rect->top = rect->right = rect->bottom = 0;
419 else *rect = win->window_rect;
422 /* post a message to the desktop window */
423 void post_desktop_message( struct desktop *desktop, unsigned int message,
424 lparam_t wparam, lparam_t lparam )
426 struct window *win = desktop->top_window;
427 if (win && win->thread) post_message( win->handle, message, wparam, lparam );
430 /* create a new window structure (note: the window is not linked in the window tree) */
431 static struct window *create_window( struct window *parent, struct window *owner,
432 atom_t atom, mod_handle_t instance )
434 static const rectangle_t empty_rect;
435 int extra_bytes;
436 struct window *win = NULL;
437 struct desktop *desktop;
438 struct window_class *class;
440 if (!(desktop = get_thread_desktop( current, DESKTOP_CREATEWINDOW ))) return NULL;
442 if (!(class = grab_class( current->process, atom, instance, &extra_bytes )))
444 release_object( desktop );
445 return NULL;
448 if (!parent) /* null parent is only allowed for desktop or HWND_MESSAGE top window */
450 if (is_desktop_class( class ))
451 parent = desktop->top_window; /* use existing desktop if any */
452 else if (is_hwnd_message_class( class ))
453 /* use desktop window if message window is already created */
454 parent = desktop->msg_window ? desktop->top_window : NULL;
455 else if (!(parent = desktop->top_window)) /* must already have a desktop then */
457 set_error( STATUS_ACCESS_DENIED );
458 goto failed;
462 /* parent must be on the same desktop */
463 if (parent && parent->desktop != desktop)
465 set_error( STATUS_ACCESS_DENIED );
466 goto failed;
469 if (!(win = mem_alloc( sizeof(*win) + extra_bytes - 1 ))) goto failed;
470 if (!(win->handle = alloc_user_handle( win, USER_WINDOW ))) goto failed;
472 win->parent = parent;
473 win->owner = owner ? owner->handle : 0;
474 win->thread = current;
475 win->desktop = desktop;
476 win->class = class;
477 win->atom = atom;
478 win->last_active = win->handle;
479 win->win_region = NULL;
480 win->update_region = NULL;
481 win->style = 0;
482 win->ex_style = 0;
483 win->id = 0;
484 win->instance = 0;
485 win->is_unicode = 1;
486 win->is_linked = 0;
487 win->is_layered = 0;
488 win->user_data = 0;
489 win->text = NULL;
490 win->paint_flags = 0;
491 win->prop_inuse = 0;
492 win->prop_alloc = 0;
493 win->properties = NULL;
494 win->nb_extra_bytes = extra_bytes;
495 win->window_rect = win->visible_rect = win->client_rect = empty_rect;
496 memset( win->extra_bytes, 0, extra_bytes );
497 list_init( &win->children );
498 list_init( &win->unlinked );
500 /* if parent belongs to a different thread and the window isn't */
501 /* top-level, attach the two threads */
502 if (parent && parent->thread && parent->thread != current && !is_desktop_window(parent))
504 if (!attach_thread_input( current, parent->thread )) goto failed;
506 else /* otherwise just make sure that the thread has a message queue */
508 if (!current->queue && !init_thread_queue( current )) goto failed;
511 /* put it on parent unlinked list */
512 if (parent) list_add_head( &parent->unlinked, &win->entry );
513 else
515 list_init( &win->entry );
516 if (is_desktop_class( class ))
518 assert( !desktop->top_window );
519 desktop->top_window = win;
520 set_process_default_desktop( current->process, desktop, current->desktop );
522 else
524 assert( !desktop->msg_window );
525 desktop->msg_window = win;
529 current->desktop_users++;
530 return win;
532 failed:
533 if (win)
535 if (win->handle) free_user_handle( win->handle );
536 free( win );
538 release_object( desktop );
539 release_class( class );
540 return NULL;
543 /* destroy all windows belonging to a given thread */
544 void destroy_thread_windows( struct thread *thread )
546 user_handle_t handle = 0;
547 struct window *win;
549 while ((win = next_user_handle( &handle, USER_WINDOW )))
551 if (win->thread != thread) continue;
552 if (is_desktop_window( win )) detach_window_thread( win );
553 else destroy_window( win );
557 /* get the desktop window */
558 static struct window *get_desktop_window( struct thread *thread )
560 struct window *top_window;
561 struct desktop *desktop = get_thread_desktop( thread, 0 );
563 if (!desktop) return NULL;
564 top_window = desktop->top_window;
565 release_object( desktop );
566 return top_window;
569 /* check whether child is a descendant of parent */
570 int is_child_window( user_handle_t parent, user_handle_t child )
572 struct window *child_ptr = get_user_object( child, USER_WINDOW );
573 struct window *parent_ptr = get_user_object( parent, USER_WINDOW );
575 if (!child_ptr || !parent_ptr) return 0;
576 while (child_ptr->parent)
578 if (child_ptr->parent == parent_ptr) return 1;
579 child_ptr = child_ptr->parent;
581 return 0;
584 /* check if window can be set as foreground window */
585 int is_valid_foreground_window( user_handle_t window )
587 struct window *win = get_user_object( window, USER_WINDOW );
588 return win && (win->style & (WS_POPUP|WS_CHILD)) != WS_CHILD;
591 /* make a window active if possible */
592 int make_window_active( user_handle_t window )
594 struct window *owner, *win = get_window( window );
596 if (!win) return 0;
598 /* set last active for window and its owners */
599 owner = win;
600 while (owner)
602 owner->last_active = win->handle;
603 owner = get_user_object( owner->owner, USER_WINDOW );
605 return 1;
608 /* increment (or decrement) the window paint count */
609 static inline void inc_window_paint_count( struct window *win, int incr )
611 if (win->thread) inc_queue_paint_count( win->thread, incr );
614 /* check if window and all its ancestors are visible */
615 static int is_visible( const struct window *win )
617 while (win)
619 if (!(win->style & WS_VISIBLE)) return 0;
620 win = win->parent;
621 /* if parent is minimized children are not visible */
622 if (win && (win->style & WS_MINIMIZE)) return 0;
624 return 1;
627 /* same as is_visible but takes a window handle */
628 int is_window_visible( user_handle_t window )
630 struct window *win = get_user_object( window, USER_WINDOW );
631 if (!win) return 0;
632 return is_visible( win );
635 int is_window_transparent( user_handle_t window )
637 struct window *win = get_user_object( window, USER_WINDOW );
638 if (!win) return 0;
639 return (win->ex_style & (WS_EX_LAYERED|WS_EX_TRANSPARENT)) == (WS_EX_LAYERED|WS_EX_TRANSPARENT);
642 /* check if point is inside the window */
643 static inline int is_point_in_window( struct window *win, int x, int y )
645 if (!(win->style & WS_VISIBLE)) return 0; /* not visible */
646 if ((win->style & (WS_POPUP|WS_CHILD|WS_DISABLED)) == (WS_CHILD|WS_DISABLED))
647 return 0; /* disabled child */
648 if ((win->ex_style & (WS_EX_LAYERED|WS_EX_TRANSPARENT)) == (WS_EX_LAYERED|WS_EX_TRANSPARENT))
649 return 0; /* transparent */
650 if (x < win->visible_rect.left || x >= win->visible_rect.right ||
651 y < win->visible_rect.top || y >= win->visible_rect.bottom)
652 return 0; /* not in window */
653 if (win->win_region &&
654 !point_in_region( win->win_region, x - win->window_rect.left, y - win->window_rect.top ))
655 return 0; /* not in window region */
656 return 1;
659 /* fill an array with the handles of the children of a specified window */
660 static unsigned int get_children_windows( struct window *parent, atom_t atom, thread_id_t tid,
661 user_handle_t *handles, unsigned int max_count )
663 struct window *ptr;
664 unsigned int count = 0;
666 if (!parent) return 0;
668 LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
670 if (atom && get_class_atom(ptr->class) != atom) continue;
671 if (tid && get_thread_id(ptr->thread) != tid) continue;
672 if (handles)
674 if (count >= max_count) break;
675 handles[count] = ptr->handle;
677 count++;
679 return count;
682 /* find child of 'parent' that contains the given point (in parent-relative coords) */
683 static struct window *child_window_from_point( struct window *parent, int x, int y )
685 struct window *ptr;
687 LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
689 if (!is_point_in_window( ptr, x, y )) continue; /* skip it */
691 /* if window is minimized or disabled, return at once */
692 if (ptr->style & (WS_MINIMIZE|WS_DISABLED)) return ptr;
694 /* if point is not in client area, return at once */
695 if (x < ptr->client_rect.left || x >= ptr->client_rect.right ||
696 y < ptr->client_rect.top || y >= ptr->client_rect.bottom)
697 return ptr;
699 return child_window_from_point( ptr, x - ptr->client_rect.left, y - ptr->client_rect.top );
701 return parent; /* not found any child */
704 /* find all children of 'parent' that contain the given point */
705 static int get_window_children_from_point( struct window *parent, int x, int y,
706 struct user_handle_array *array )
708 struct window *ptr;
710 LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
712 if (!is_point_in_window( ptr, x, y )) continue; /* skip it */
714 /* if point is in client area, and window is not minimized or disabled, check children */
715 if (!(ptr->style & (WS_MINIMIZE|WS_DISABLED)) &&
716 x >= ptr->client_rect.left && x < ptr->client_rect.right &&
717 y >= ptr->client_rect.top && y < ptr->client_rect.bottom)
719 if (!get_window_children_from_point( ptr, x - ptr->client_rect.left,
720 y - ptr->client_rect.top, array ))
721 return 0;
724 /* now add window to the array */
725 if (!add_handle_to_array( array, ptr->handle )) return 0;
727 return 1;
730 /* get handle of root of top-most window containing point */
731 user_handle_t shallow_window_from_point( struct desktop *desktop, int x, int y )
733 struct window *ptr;
735 if (!desktop->top_window) return 0;
737 LIST_FOR_EACH_ENTRY( ptr, &desktop->top_window->children, struct window, entry )
739 if (!is_point_in_window( ptr, x, y )) continue; /* skip it */
740 return ptr->handle;
742 return desktop->top_window->handle;
745 /* return thread of top-most window containing point (in absolute coords) */
746 struct thread *window_thread_from_point( user_handle_t scope, int x, int y )
748 struct window *win = get_user_object( scope, USER_WINDOW );
749 struct window *ptr;
751 if (!win) return NULL;
753 for (ptr = win; ptr && !is_desktop_window(ptr); ptr = ptr->parent)
755 x -= ptr->client_rect.left;
756 y -= ptr->client_rect.top;
759 ptr = child_window_from_point( win, x, y );
760 if (!ptr->thread) return NULL;
761 return (struct thread *)grab_object( ptr->thread );
764 /* return list of all windows containing point (in absolute coords) */
765 static int all_windows_from_point( struct window *top, int x, int y, struct user_handle_array *array )
767 struct window *ptr;
769 /* make point relative to top window */
770 for (ptr = top->parent; ptr && !is_desktop_window(ptr); ptr = ptr->parent)
772 x -= ptr->client_rect.left;
773 y -= ptr->client_rect.top;
776 if (!is_point_in_window( top, x, y )) return 1;
778 /* if point is in client area, and window is not minimized or disabled, check children */
779 if (!(top->style & (WS_MINIMIZE|WS_DISABLED)) &&
780 x >= top->client_rect.left && x < top->client_rect.right &&
781 y >= top->client_rect.top && y < top->client_rect.bottom)
783 if (!is_desktop_window(top))
785 x -= top->client_rect.left;
786 y -= top->client_rect.top;
788 if (!get_window_children_from_point( top, x, y, array )) return 0;
790 /* now add window to the array */
791 if (!add_handle_to_array( array, top->handle )) return 0;
792 return 1;
796 /* return the thread owning a window */
797 struct thread *get_window_thread( user_handle_t handle )
799 struct window *win = get_user_object( handle, USER_WINDOW );
800 if (!win || !win->thread) return NULL;
801 return (struct thread *)grab_object( win->thread );
805 /* check if any area of a window needs repainting */
806 static inline int win_needs_repaint( struct window *win )
808 return win->update_region || (win->paint_flags & PAINT_INTERNAL);
812 /* find a child of the specified window that needs repainting */
813 static struct window *find_child_to_repaint( struct window *parent, struct thread *thread )
815 struct window *ptr, *ret = NULL;
817 LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
819 if (!(ptr->style & WS_VISIBLE)) continue;
820 if (ptr->thread == thread && win_needs_repaint( ptr ))
821 ret = ptr;
822 else if (!(ptr->style & WS_MINIMIZE)) /* explore its children */
823 ret = find_child_to_repaint( ptr, thread );
824 if (ret) break;
827 if (ret && (ret->ex_style & WS_EX_TRANSPARENT))
829 /* transparent window, check for non-transparent sibling to paint first */
830 for (ptr = get_next_window(ret); ptr; ptr = get_next_window(ptr))
832 if (!(ptr->style & WS_VISIBLE)) continue;
833 if (ptr->ex_style & WS_EX_TRANSPARENT) continue;
834 if (ptr->thread != thread) continue;
835 if (win_needs_repaint( ptr )) return ptr;
838 return ret;
842 /* find a window that needs to receive a WM_PAINT; also clear its internal paint flag */
843 user_handle_t find_window_to_repaint( user_handle_t parent, struct thread *thread )
845 struct window *ptr, *win, *top_window = get_desktop_window( thread );
847 if (!top_window) return 0;
849 if (top_window->thread == thread && win_needs_repaint( top_window )) win = top_window;
850 else win = find_child_to_repaint( top_window, thread );
852 if (win && parent)
854 /* check that it is a child of the specified parent */
855 for (ptr = win; ptr; ptr = ptr->parent)
856 if (ptr->handle == parent) break;
857 /* otherwise don't return any window, we don't repaint a child before its parent */
858 if (!ptr) win = NULL;
860 if (!win) return 0;
861 win->paint_flags &= ~PAINT_INTERNAL;
862 return win->handle;
866 /* intersect the window region with the specified region, relative to the window parent */
867 static struct region *intersect_window_region( struct region *region, struct window *win )
869 /* make region relative to window rect */
870 offset_region( region, -win->window_rect.left, -win->window_rect.top );
871 if (!intersect_region( region, region, win->win_region )) return NULL;
872 /* make region relative to parent again */
873 offset_region( region, win->window_rect.left, win->window_rect.top );
874 return region;
878 /* convert coordinates from client to screen coords */
879 static inline void client_to_screen( struct window *win, int *x, int *y )
881 for ( ; win && !is_desktop_window(win); win = win->parent)
883 *x += win->client_rect.left;
884 *y += win->client_rect.top;
888 /* convert coordinates from client to screen coords */
889 static inline void client_to_screen_rect( struct window *win, rectangle_t *rect )
891 for ( ; win && !is_desktop_window(win); win = win->parent)
893 rect->left += win->client_rect.left;
894 rect->right += win->client_rect.left;
895 rect->top += win->client_rect.top;
896 rect->bottom += win->client_rect.top;
900 /* map the region from window to screen coordinates */
901 static inline void map_win_region_to_screen( struct window *win, struct region *region )
903 if (!is_desktop_window(win))
905 int x = win->window_rect.left;
906 int y = win->window_rect.top;
907 client_to_screen( win->parent, &x, &y );
908 offset_region( region, x, y );
913 /* clip all children of a given window out of the visible region */
914 static struct region *clip_children( struct window *parent, struct window *last,
915 struct region *region, int offset_x, int offset_y )
917 struct window *ptr;
918 struct region *tmp = create_empty_region();
920 if (!tmp) return NULL;
921 LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
923 if (ptr == last) break;
924 if (!(ptr->style & WS_VISIBLE)) continue;
925 if (ptr->ex_style & WS_EX_TRANSPARENT) continue;
926 set_region_rect( tmp, &ptr->visible_rect );
927 if (ptr->win_region && !intersect_window_region( tmp, ptr ))
929 free_region( tmp );
930 return NULL;
932 offset_region( tmp, offset_x, offset_y );
933 if (!(region = subtract_region( region, region, tmp ))) break;
934 if (is_region_empty( region )) break;
936 free_region( tmp );
937 return region;
941 /* offset the coordinates of a rectangle */
942 static inline void offset_rect( rectangle_t *rect, int offset_x, int offset_y )
944 rect->left += offset_x;
945 rect->top += offset_y;
946 rect->right += offset_x;
947 rect->bottom += offset_y;
951 /* set the region to the client rect clipped by the window rect, in parent-relative coordinates */
952 static void set_region_client_rect( struct region *region, struct window *win )
954 rectangle_t rect;
956 intersect_rect( &rect, &win->window_rect, &win->client_rect );
957 set_region_rect( region, &rect );
961 /* get the top-level window to clip against for a given window */
962 static inline struct window *get_top_clipping_window( struct window *win )
964 while (!(win->paint_flags & PAINT_HAS_SURFACE) && win->parent && !is_desktop_window(win->parent))
965 win = win->parent;
966 return win;
970 /* compute the visible region of a window, in window coordinates */
971 static struct region *get_visible_region( struct window *win, unsigned int flags )
973 struct region *tmp = NULL, *region;
974 int offset_x, offset_y;
976 if (!(region = create_empty_region())) return NULL;
978 /* first check if all ancestors are visible */
980 if (!is_visible( win )) return region; /* empty region */
982 /* create a region relative to the window itself */
984 if ((flags & DCX_PARENTCLIP) && win->parent && !is_desktop_window(win->parent))
986 set_region_client_rect( region, win->parent );
987 offset_region( region, -win->parent->client_rect.left, -win->parent->client_rect.top );
989 else if (flags & DCX_WINDOW)
991 set_region_rect( region, &win->visible_rect );
992 if (win->win_region && !intersect_window_region( region, win )) goto error;
994 else
996 set_region_client_rect( region, win );
997 if (win->win_region && !intersect_window_region( region, win )) goto error;
1000 /* clip children */
1002 if (flags & DCX_CLIPCHILDREN)
1004 if (is_desktop_window(win)) offset_x = offset_y = 0;
1005 else
1007 offset_x = win->client_rect.left;
1008 offset_y = win->client_rect.top;
1010 if (!clip_children( win, NULL, region, offset_x, offset_y )) goto error;
1013 /* clip siblings of ancestors */
1015 if (is_desktop_window(win)) offset_x = offset_y = 0;
1016 else
1018 offset_x = win->window_rect.left;
1019 offset_y = win->window_rect.top;
1022 if ((tmp = create_empty_region()) != NULL)
1024 while (win->parent)
1026 /* we don't clip out top-level siblings as that's up to the native windowing system */
1027 if ((win->style & WS_CLIPSIBLINGS) && !is_desktop_window( win->parent ))
1029 if (!clip_children( win->parent, win, region, 0, 0 )) goto error;
1030 if (is_region_empty( region )) break;
1032 /* clip to parent client area */
1033 win = win->parent;
1034 if (!is_desktop_window(win))
1036 offset_x += win->client_rect.left;
1037 offset_y += win->client_rect.top;
1038 offset_region( region, win->client_rect.left, win->client_rect.top );
1040 set_region_client_rect( tmp, win );
1041 if (win->win_region && !intersect_window_region( tmp, win )) goto error;
1042 if (!intersect_region( region, region, tmp )) goto error;
1043 if (is_region_empty( region )) break;
1045 free_region( tmp );
1047 offset_region( region, -offset_x, -offset_y ); /* make it relative to target window */
1048 return region;
1050 error:
1051 if (tmp) free_region( tmp );
1052 free_region( region );
1053 return NULL;
1057 /* clip all children with a custom pixel format out of the visible region */
1058 static struct region *clip_pixel_format_children( struct window *parent, struct region *parent_clip,
1059 struct region *region, int offset_x, int offset_y )
1061 struct window *ptr;
1062 struct region *clip = create_empty_region();
1064 if (!clip) return NULL;
1066 LIST_FOR_EACH_ENTRY_REV( ptr, &parent->children, struct window, entry )
1068 if (!(ptr->style & WS_VISIBLE)) continue;
1069 if (ptr->ex_style & WS_EX_TRANSPARENT) continue;
1071 /* add the visible rect */
1072 set_region_rect( clip, &ptr->visible_rect );
1073 if (ptr->win_region && !intersect_window_region( clip, ptr )) break;
1074 offset_region( clip, offset_x, offset_y );
1075 if (!intersect_region( clip, clip, parent_clip )) break;
1076 if (!union_region( region, region, clip )) break;
1077 if (!(ptr->paint_flags & (PAINT_HAS_PIXEL_FORMAT | PAINT_PIXEL_FORMAT_CHILD))) continue;
1079 /* subtract the client rect if it uses a custom pixel format */
1080 set_region_rect( clip, &ptr->client_rect );
1081 if (ptr->win_region && !intersect_window_region( clip, ptr )) break;
1082 offset_region( clip, offset_x, offset_y );
1083 if (!intersect_region( clip, clip, parent_clip )) break;
1084 if ((ptr->paint_flags & PAINT_HAS_PIXEL_FORMAT) && !subtract_region( region, region, clip ))
1085 break;
1087 if (!clip_pixel_format_children( ptr, clip, region, offset_x + ptr->client_rect.left,
1088 offset_y + ptr->client_rect.top ))
1089 break;
1091 free_region( clip );
1092 return region;
1096 /* compute the visible surface region of a window, in parent coordinates */
1097 static struct region *get_surface_region( struct window *win )
1099 struct region *region, *clip;
1100 int offset_x, offset_y;
1102 /* create a region relative to the window itself */
1104 if (!(region = create_empty_region())) return NULL;
1105 if (!(clip = create_empty_region())) goto error;
1106 set_region_rect( region, &win->visible_rect );
1107 if (win->win_region && !intersect_window_region( region, win )) goto error;
1108 set_region_rect( clip, &win->client_rect );
1109 if (win->win_region && !intersect_window_region( clip, win )) goto error;
1111 if ((win->paint_flags & PAINT_HAS_PIXEL_FORMAT) && !subtract_region( region, region, clip ))
1112 goto error;
1114 /* clip children */
1116 if (!is_desktop_window(win))
1118 offset_x = win->client_rect.left;
1119 offset_y = win->client_rect.top;
1121 else offset_x = offset_y = 0;
1123 if (!clip_pixel_format_children( win, clip, region, offset_x, offset_y )) goto error;
1125 free_region( clip );
1126 return region;
1128 error:
1129 if (clip) free_region( clip );
1130 free_region( region );
1131 return NULL;
1135 /* get the window class of a window */
1136 struct window_class* get_window_class( user_handle_t window )
1138 struct window *win;
1139 if (!(win = get_window( window ))) return NULL;
1140 if (!win->class) set_error( STATUS_ACCESS_DENIED );
1141 return win->class;
1144 /* determine the window visible rectangle, i.e. window or client rect cropped by parent rects */
1145 /* the returned rectangle is in window coordinates; return 0 if rectangle is empty */
1146 static int get_window_visible_rect( struct window *win, rectangle_t *rect, int frame )
1148 int offset_x = 0, offset_y = 0;
1150 if (!(win->style & WS_VISIBLE)) return 0;
1152 *rect = frame ? win->window_rect : win->client_rect;
1153 if (!is_desktop_window(win))
1155 offset_x = win->window_rect.left;
1156 offset_y = win->window_rect.top;
1159 while (win->parent)
1161 win = win->parent;
1162 if (!(win->style & WS_VISIBLE) || win->style & WS_MINIMIZE) return 0;
1163 if (!is_desktop_window(win))
1165 offset_x += win->client_rect.left;
1166 offset_y += win->client_rect.top;
1167 offset_rect( rect, win->client_rect.left, win->client_rect.top );
1169 if (!intersect_rect( rect, rect, &win->client_rect )) return 0;
1170 if (!intersect_rect( rect, rect, &win->window_rect )) return 0;
1172 offset_rect( rect, -offset_x, -offset_y );
1173 return 1;
1176 /* return a copy of the specified region cropped to the window client or frame rectangle, */
1177 /* and converted from client to window coordinates. Helper for (in)validate_window. */
1178 static struct region *crop_region_to_win_rect( struct window *win, struct region *region, int frame )
1180 rectangle_t rect;
1181 struct region *tmp;
1183 if (!get_window_visible_rect( win, &rect, frame )) return NULL;
1184 if (!(tmp = create_empty_region())) return NULL;
1185 set_region_rect( tmp, &rect );
1187 if (region)
1189 /* map it to client coords */
1190 offset_region( tmp, win->window_rect.left - win->client_rect.left,
1191 win->window_rect.top - win->client_rect.top );
1193 /* intersect specified region with bounding rect */
1194 if (!intersect_region( tmp, region, tmp )) goto done;
1195 if (is_region_empty( tmp )) goto done;
1197 /* map it back to window coords */
1198 offset_region( tmp, win->client_rect.left - win->window_rect.left,
1199 win->client_rect.top - win->window_rect.top );
1201 return tmp;
1203 done:
1204 free_region( tmp );
1205 return NULL;
1209 /* set a region as new update region for the window */
1210 static void set_update_region( struct window *win, struct region *region )
1212 if (region && !is_region_empty( region ))
1214 if (!win->update_region) inc_window_paint_count( win, 1 );
1215 else free_region( win->update_region );
1216 win->update_region = region;
1218 else
1220 if (win->update_region)
1222 inc_window_paint_count( win, -1 );
1223 free_region( win->update_region );
1225 win->paint_flags &= ~(PAINT_ERASE | PAINT_DELAYED_ERASE | PAINT_NONCLIENT);
1226 win->update_region = NULL;
1227 if (region) free_region( region );
1232 /* add a region to the update region; the passed region is freed or reused */
1233 static int add_update_region( struct window *win, struct region *region )
1235 if (win->update_region && !union_region( region, win->update_region, region ))
1237 free_region( region );
1238 return 0;
1240 set_update_region( win, region );
1241 return 1;
1245 /* crop the update region of children to the specified rectangle, in client coords */
1246 static void crop_children_update_region( struct window *win, rectangle_t *rect )
1248 struct window *child;
1249 struct region *tmp;
1250 rectangle_t child_rect;
1252 LIST_FOR_EACH_ENTRY( child, &win->children, struct window, entry )
1254 if (!(child->style & WS_VISIBLE)) continue;
1255 if (!rect) /* crop everything out */
1257 crop_children_update_region( child, NULL );
1258 set_update_region( child, NULL );
1259 continue;
1262 /* nothing to do if child is completely inside rect */
1263 if (child->window_rect.left >= rect->left &&
1264 child->window_rect.top >= rect->top &&
1265 child->window_rect.right <= rect->right &&
1266 child->window_rect.bottom <= rect->bottom) continue;
1268 /* map to child client coords and crop grand-children */
1269 child_rect = *rect;
1270 offset_rect( &child_rect, -child->client_rect.left, -child->client_rect.top );
1271 crop_children_update_region( child, &child_rect );
1273 /* now crop the child itself */
1274 if (!child->update_region) continue;
1275 if (!(tmp = create_empty_region())) continue;
1276 set_region_rect( tmp, rect );
1277 offset_region( tmp, -child->window_rect.left, -child->window_rect.top );
1278 if (intersect_region( tmp, child->update_region, tmp )) set_update_region( child, tmp );
1279 else free_region( tmp );
1284 /* validate the non client area of a window */
1285 static void validate_non_client( struct window *win )
1287 struct region *tmp;
1288 rectangle_t rect;
1290 if (!win->update_region) return; /* nothing to do */
1292 /* get client rect in window coords */
1293 rect.left = win->client_rect.left - win->window_rect.left;
1294 rect.top = win->client_rect.top - win->window_rect.top;
1295 rect.right = win->client_rect.right - win->window_rect.left;
1296 rect.bottom = win->client_rect.bottom - win->window_rect.top;
1298 if ((tmp = create_empty_region()))
1300 set_region_rect( tmp, &rect );
1301 if (intersect_region( tmp, win->update_region, tmp ))
1302 set_update_region( win, tmp );
1303 else
1304 free_region( tmp );
1306 win->paint_flags &= ~PAINT_NONCLIENT;
1310 /* validate a window completely so that we don't get any further paint messages for it */
1311 static void validate_whole_window( struct window *win )
1313 set_update_region( win, NULL );
1315 if (win->paint_flags & PAINT_INTERNAL)
1317 win->paint_flags &= ~PAINT_INTERNAL;
1318 inc_window_paint_count( win, -1 );
1323 /* validate a window's children so that we don't get any further paint messages for it */
1324 static void validate_children( struct window *win )
1326 struct window *child;
1328 LIST_FOR_EACH_ENTRY( child, &win->children, struct window, entry )
1330 if (!(child->style & WS_VISIBLE)) continue;
1331 validate_children(child);
1332 validate_whole_window(child);
1337 /* validate the update region of a window on all parents; helper for get_update_region */
1338 static void validate_parents( struct window *child )
1340 int offset_x = 0, offset_y = 0;
1341 struct window *win = child;
1342 struct region *tmp = NULL;
1344 if (!child->update_region) return;
1346 while (win->parent)
1348 /* map to parent client coords */
1349 offset_x += win->window_rect.left;
1350 offset_y += win->window_rect.top;
1352 win = win->parent;
1354 /* and now map to window coords */
1355 offset_x += win->client_rect.left - win->window_rect.left;
1356 offset_y += win->client_rect.top - win->window_rect.top;
1358 if (win->update_region && !(win->style & WS_CLIPCHILDREN))
1360 if (!tmp && !(tmp = create_empty_region())) return;
1361 offset_region( child->update_region, offset_x, offset_y );
1362 if (subtract_region( tmp, win->update_region, child->update_region ))
1364 set_update_region( win, tmp );
1365 tmp = NULL;
1367 /* restore child coords */
1368 offset_region( child->update_region, -offset_x, -offset_y );
1371 if (tmp) free_region( tmp );
1375 /* add/subtract a region (in client coordinates) to the update region of the window */
1376 static void redraw_window( struct window *win, struct region *region, int frame, unsigned int flags )
1378 struct region *tmp;
1379 struct window *child;
1381 if (flags & RDW_INVALIDATE)
1383 if (!(tmp = crop_region_to_win_rect( win, region, frame ))) return;
1385 if (!add_update_region( win, tmp )) return;
1387 if (flags & RDW_FRAME) win->paint_flags |= PAINT_NONCLIENT;
1388 if (flags & RDW_ERASE) win->paint_flags |= PAINT_ERASE;
1390 else if (flags & RDW_VALIDATE)
1392 if (!region && (flags & RDW_NOFRAME)) /* shortcut: validate everything */
1394 set_update_region( win, NULL );
1396 else if (win->update_region)
1398 if ((tmp = crop_region_to_win_rect( win, region, frame )))
1400 if (!subtract_region( tmp, win->update_region, tmp ))
1402 free_region( tmp );
1403 return;
1405 set_update_region( win, tmp );
1407 if (flags & RDW_NOFRAME) validate_non_client( win );
1408 if (flags & RDW_NOERASE) win->paint_flags &= ~(PAINT_ERASE | PAINT_DELAYED_ERASE);
1412 if ((flags & RDW_INTERNALPAINT) && !(win->paint_flags & PAINT_INTERNAL))
1414 win->paint_flags |= PAINT_INTERNAL;
1415 inc_window_paint_count( win, 1 );
1417 else if ((flags & RDW_NOINTERNALPAINT) && (win->paint_flags & PAINT_INTERNAL))
1419 win->paint_flags &= ~PAINT_INTERNAL;
1420 inc_window_paint_count( win, -1 );
1423 /* now process children recursively */
1425 if (flags & RDW_NOCHILDREN) return;
1426 if (win->style & WS_MINIMIZE) return;
1427 if ((win->style & WS_CLIPCHILDREN) && !(flags & RDW_ALLCHILDREN)) return;
1429 if (!(tmp = crop_region_to_win_rect( win, region, 0 ))) return;
1431 /* map to client coordinates */
1432 offset_region( tmp, win->window_rect.left - win->client_rect.left,
1433 win->window_rect.top - win->client_rect.top );
1435 if (flags & RDW_INVALIDATE) flags |= RDW_FRAME | RDW_ERASE;
1437 LIST_FOR_EACH_ENTRY( child, &win->children, struct window, entry )
1439 if (!(child->style & WS_VISIBLE)) continue;
1440 if (!rect_in_region( tmp, &child->window_rect )) continue;
1441 offset_region( tmp, -child->client_rect.left, -child->client_rect.top );
1442 redraw_window( child, tmp, 1, flags );
1443 offset_region( tmp, child->client_rect.left, child->client_rect.top );
1445 free_region( tmp );
1449 /* retrieve the update flags for a window depending on the state of the update region */
1450 static unsigned int get_update_flags( struct window *win, unsigned int flags )
1452 unsigned int ret = 0;
1454 if (flags & UPDATE_NONCLIENT)
1456 if ((win->paint_flags & PAINT_NONCLIENT) && win->update_region) ret |= UPDATE_NONCLIENT;
1458 if (flags & UPDATE_ERASE)
1460 if ((win->paint_flags & PAINT_ERASE) && win->update_region) ret |= UPDATE_ERASE;
1462 if (flags & UPDATE_PAINT)
1464 if (win->update_region)
1466 if (win->paint_flags & PAINT_DELAYED_ERASE) ret |= UPDATE_DELAYED_ERASE;
1467 ret |= UPDATE_PAINT;
1470 if (flags & UPDATE_INTERNALPAINT)
1472 if (win->paint_flags & PAINT_INTERNAL)
1474 ret |= UPDATE_INTERNALPAINT;
1475 if (win->paint_flags & PAINT_DELAYED_ERASE) ret |= UPDATE_DELAYED_ERASE;
1478 return ret;
1482 /* iterate through the children of the given window until we find one with some update flags */
1483 static unsigned int get_child_update_flags( struct window *win, struct window *from_child,
1484 unsigned int flags, struct window **child )
1486 struct window *ptr;
1487 unsigned int ret = 0;
1489 /* first make sure we want to iterate children at all */
1491 if (win->style & WS_MINIMIZE) return 0;
1493 /* note: the WS_CLIPCHILDREN test is the opposite of the invalidation case,
1494 * here we only want to repaint children of windows that clip them, others
1495 * need to wait for WM_PAINT to be done in the parent first.
1497 if (!(flags & UPDATE_ALLCHILDREN) && !(win->style & WS_CLIPCHILDREN)) return 0;
1499 LIST_FOR_EACH_ENTRY( ptr, &win->children, struct window, entry )
1501 if (from_child) /* skip all children until from_child is found */
1503 if (ptr == from_child) from_child = NULL;
1504 continue;
1506 if (!(ptr->style & WS_VISIBLE)) continue;
1507 if ((ret = get_update_flags( ptr, flags )) != 0)
1509 *child = ptr;
1510 break;
1512 if ((ret = get_child_update_flags( ptr, NULL, flags, child ))) break;
1514 return ret;
1517 /* iterate through children and siblings of the given window until we find one with some update flags */
1518 static unsigned int get_window_update_flags( struct window *win, struct window *from_child,
1519 unsigned int flags, struct window **child )
1521 unsigned int ret;
1522 struct window *ptr, *from_sibling = NULL;
1524 /* if some parent is not visible start from the next sibling */
1526 if (!is_visible( win )) return 0;
1527 for (ptr = from_child; ptr; ptr = ptr->parent)
1529 if (!(ptr->style & WS_VISIBLE) || (ptr->style & WS_MINIMIZE)) from_sibling = ptr;
1530 if (ptr == win) break;
1533 /* non-client painting must be delayed if one of the parents is going to
1534 * be repainted and doesn't clip children */
1536 if ((flags & UPDATE_NONCLIENT) && !(flags & (UPDATE_PAINT|UPDATE_INTERNALPAINT)))
1538 for (ptr = win->parent; ptr; ptr = ptr->parent)
1540 if (!(ptr->style & WS_CLIPCHILDREN) && win_needs_repaint( ptr ))
1541 return 0;
1543 if (from_child && !(flags & UPDATE_ALLCHILDREN))
1545 for (ptr = from_sibling ? from_sibling : from_child; ptr; ptr = ptr->parent)
1547 if (!(ptr->style & WS_CLIPCHILDREN) && win_needs_repaint( ptr )) from_sibling = ptr;
1548 if (ptr == win) break;
1554 /* check window itself (only if not restarting from a child) */
1556 if (!from_child)
1558 if ((ret = get_update_flags( win, flags )))
1560 *child = win;
1561 return ret;
1563 from_child = win;
1566 /* now check children */
1568 if (flags & UPDATE_NOCHILDREN) return 0;
1569 if (!from_sibling)
1571 if ((ret = get_child_update_flags( from_child, NULL, flags, child ))) return ret;
1572 from_sibling = from_child;
1575 /* then check siblings and parent siblings */
1577 while (from_sibling->parent && from_sibling != win)
1579 if ((ret = get_child_update_flags( from_sibling->parent, from_sibling, flags, child )))
1580 return ret;
1581 from_sibling = from_sibling->parent;
1583 return 0;
1587 /* expose the areas revealed by a vis region change on the window parent */
1588 /* returns the region exposed on the window itself (in client coordinates) */
1589 static struct region *expose_window( struct window *win, const rectangle_t *old_window_rect,
1590 struct region *old_vis_rgn )
1592 struct region *new_vis_rgn, *exposed_rgn;
1594 if (!(new_vis_rgn = get_visible_region( win, DCX_WINDOW ))) return NULL;
1596 if ((exposed_rgn = create_empty_region()))
1598 if (subtract_region( exposed_rgn, new_vis_rgn, old_vis_rgn ) && !is_region_empty( exposed_rgn ))
1600 /* make it relative to the new client area */
1601 offset_region( exposed_rgn, win->window_rect.left - win->client_rect.left,
1602 win->window_rect.top - win->client_rect.top );
1604 else
1606 free_region( exposed_rgn );
1607 exposed_rgn = NULL;
1611 if (win->parent && !is_desktop_window( win->parent ))
1613 /* make it relative to the old window pos for subtracting */
1614 offset_region( new_vis_rgn, win->window_rect.left - old_window_rect->left,
1615 win->window_rect.top - old_window_rect->top );
1617 if ((win->parent->style & WS_CLIPCHILDREN) ?
1618 subtract_region( new_vis_rgn, old_vis_rgn, new_vis_rgn ) :
1619 xor_region( new_vis_rgn, old_vis_rgn, new_vis_rgn ))
1621 if (!is_region_empty( new_vis_rgn ))
1623 /* make it relative to parent */
1624 offset_region( new_vis_rgn, old_window_rect->left, old_window_rect->top );
1625 redraw_window( win->parent, new_vis_rgn, 0, RDW_INVALIDATE | RDW_ERASE | RDW_ALLCHILDREN );
1629 free_region( new_vis_rgn );
1630 return exposed_rgn;
1634 /* set the window and client rectangles, updating the update region if necessary */
1635 static void set_window_pos( struct window *win, struct window *previous,
1636 unsigned int swp_flags, const rectangle_t *window_rect,
1637 const rectangle_t *client_rect, const rectangle_t *visible_rect,
1638 const rectangle_t *valid_rects )
1640 struct region *old_vis_rgn = NULL, *exposed_rgn = NULL;
1641 const rectangle_t old_window_rect = win->window_rect;
1642 const rectangle_t old_visible_rect = win->visible_rect;
1643 const rectangle_t old_client_rect = win->client_rect;
1644 rectangle_t rect;
1645 int client_changed, frame_changed;
1646 int visible = (win->style & WS_VISIBLE) || (swp_flags & SWP_SHOWWINDOW);
1648 if (win->parent && !is_visible( win->parent )) visible = 0;
1650 if (visible && !(old_vis_rgn = get_visible_region( win, DCX_WINDOW ))) return;
1652 /* set the new window info before invalidating anything */
1654 win->window_rect = *window_rect;
1655 win->visible_rect = *visible_rect;
1656 win->client_rect = *client_rect;
1657 if (!(swp_flags & SWP_NOZORDER) && win->parent) link_window( win, previous );
1658 if (swp_flags & SWP_SHOWWINDOW) win->style |= WS_VISIBLE;
1659 else if (swp_flags & SWP_HIDEWINDOW) win->style &= ~WS_VISIBLE;
1661 /* keep children at the same position relative to top right corner when the parent is mirrored */
1662 if (win->ex_style & WS_EX_LAYOUTRTL)
1664 struct window *child;
1665 int old_size = old_client_rect.right - old_client_rect.left;
1666 int new_size = win->client_rect.right - win->client_rect.left;
1668 if (old_size != new_size) LIST_FOR_EACH_ENTRY( child, &win->children, struct window, entry )
1670 offset_rect( &child->window_rect, new_size - old_size, 0 );
1671 offset_rect( &child->visible_rect, new_size - old_size, 0 );
1672 offset_rect( &child->client_rect, new_size - old_size, 0 );
1676 /* reset cursor clip rectangle when the desktop changes size */
1677 if (win == win->desktop->top_window) win->desktop->cursor.clip = *window_rect;
1679 /* if the window is not visible, everything is easy */
1680 if (!visible) return;
1682 /* expose anything revealed by the change */
1684 if (!(swp_flags & SWP_NOREDRAW))
1685 exposed_rgn = expose_window( win, &old_window_rect, old_vis_rgn );
1687 if (!(win->style & WS_VISIBLE))
1689 /* clear the update region since the window is no longer visible */
1690 validate_whole_window( win );
1691 validate_children( win );
1692 goto done;
1695 /* crop update region to the new window rect */
1697 if (win->update_region)
1699 if (get_window_visible_rect( win, &rect, 1 ))
1701 struct region *tmp = create_empty_region();
1702 if (tmp)
1704 set_region_rect( tmp, &rect );
1705 if (intersect_region( tmp, win->update_region, tmp ))
1706 set_update_region( win, tmp );
1707 else
1708 free_region( tmp );
1711 else set_update_region( win, NULL ); /* visible rect is empty */
1714 /* crop children regions to the new window rect */
1716 if (get_window_visible_rect( win, &rect, 0 ))
1718 /* map to client coords */
1719 offset_rect( &rect, win->window_rect.left - win->client_rect.left,
1720 win->window_rect.top - win->client_rect.top );
1721 crop_children_update_region( win, &rect );
1723 else crop_children_update_region( win, NULL );
1725 if (swp_flags & SWP_NOREDRAW) goto done; /* do not repaint anything */
1727 /* expose the whole non-client area if it changed in any way */
1729 if (swp_flags & SWP_NOCOPYBITS)
1731 frame_changed = ((swp_flags & SWP_FRAMECHANGED) ||
1732 memcmp( window_rect, &old_window_rect, sizeof(old_window_rect) ) ||
1733 memcmp( visible_rect, &old_visible_rect, sizeof(old_visible_rect) ));
1734 client_changed = memcmp( client_rect, &old_client_rect, sizeof(old_client_rect) );
1736 else
1738 /* assume the bits have been moved to follow the window rect */
1739 int x_offset = window_rect->left - old_window_rect.left;
1740 int y_offset = window_rect->top - old_window_rect.top;
1741 frame_changed = ((swp_flags & SWP_FRAMECHANGED) ||
1742 window_rect->right - old_window_rect.right != x_offset ||
1743 window_rect->bottom - old_window_rect.bottom != y_offset ||
1744 visible_rect->left - old_visible_rect.left != x_offset ||
1745 visible_rect->right - old_visible_rect.right != x_offset ||
1746 visible_rect->top - old_visible_rect.top != y_offset ||
1747 visible_rect->bottom - old_visible_rect.bottom != y_offset);
1748 client_changed = (client_rect->left - old_client_rect.left != x_offset ||
1749 client_rect->right - old_client_rect.right != x_offset ||
1750 client_rect->top - old_client_rect.top != y_offset ||
1751 client_rect->bottom - old_client_rect.bottom != y_offset ||
1752 !valid_rects ||
1753 memcmp( &valid_rects[0], client_rect, sizeof(*client_rect) ));
1756 if (frame_changed || client_changed)
1758 struct region *win_rgn = old_vis_rgn; /* reuse previous region */
1760 set_region_rect( win_rgn, window_rect );
1761 if (valid_rects)
1763 /* subtract the valid portion of client rect from the total region */
1764 struct region *tmp = create_empty_region();
1765 if (tmp)
1767 set_region_rect( tmp, &valid_rects[0] );
1768 /* subtract update region since invalid parts of the valid rect won't be copied */
1769 if (win->update_region)
1771 offset_region( tmp, -window_rect->left, -window_rect->top );
1772 subtract_region( tmp, tmp, win->update_region );
1773 offset_region( tmp, window_rect->left, window_rect->top );
1775 if (subtract_region( tmp, win_rgn, tmp )) win_rgn = tmp;
1776 else free_region( tmp );
1779 if (!is_desktop_window(win))
1780 offset_region( win_rgn, -client_rect->left, -client_rect->top );
1781 if (exposed_rgn)
1783 union_region( exposed_rgn, exposed_rgn, win_rgn );
1784 if (win_rgn != old_vis_rgn) free_region( win_rgn );
1786 else
1788 exposed_rgn = win_rgn;
1789 if (win_rgn == old_vis_rgn) old_vis_rgn = NULL;
1793 if (exposed_rgn)
1794 redraw_window( win, exposed_rgn, 1, RDW_INVALIDATE | RDW_ERASE | RDW_FRAME | RDW_ALLCHILDREN );
1796 done:
1797 if (old_vis_rgn) free_region( old_vis_rgn );
1798 if (exposed_rgn) free_region( exposed_rgn );
1799 clear_error(); /* we ignore out of memory errors once the new rects have been set */
1803 /* set the window region, updating the update region if necessary */
1804 static void set_window_region( struct window *win, struct region *region, int redraw )
1806 struct region *old_vis_rgn = NULL, *exposed_rgn;
1808 /* no need to redraw if window is not visible */
1809 if (redraw && !is_visible( win )) redraw = 0;
1811 if (redraw) old_vis_rgn = get_visible_region( win, DCX_WINDOW );
1813 if (win->win_region) free_region( win->win_region );
1814 win->win_region = region;
1816 /* expose anything revealed by the change */
1817 if (old_vis_rgn && ((exposed_rgn = expose_window( win, &win->window_rect, old_vis_rgn ))))
1819 redraw_window( win, exposed_rgn, 1, RDW_INVALIDATE | RDW_ERASE | RDW_FRAME | RDW_ALLCHILDREN );
1820 free_region( exposed_rgn );
1823 if (old_vis_rgn) free_region( old_vis_rgn );
1824 clear_error(); /* we ignore out of memory errors since the region has been set */
1828 /* destroy a window */
1829 void destroy_window( struct window *win )
1831 /* hide the window */
1832 if (is_visible(win))
1834 struct region *vis_rgn = get_visible_region( win, DCX_WINDOW );
1835 win->style &= ~WS_VISIBLE;
1836 if (vis_rgn)
1838 struct region *exposed_rgn = expose_window( win, &win->window_rect, vis_rgn );
1839 if (exposed_rgn) free_region( exposed_rgn );
1840 free_region( vis_rgn );
1842 validate_whole_window( win );
1843 validate_children( win );
1846 /* destroy all children */
1847 while (!list_empty(&win->children))
1848 destroy_window( LIST_ENTRY( list_head(&win->children), struct window, entry ));
1849 while (!list_empty(&win->unlinked))
1850 destroy_window( LIST_ENTRY( list_head(&win->unlinked), struct window, entry ));
1852 /* reset global window pointers, if the corresponding window is destroyed */
1853 if (win == shell_window) shell_window = NULL;
1854 if (win == shell_listview) shell_listview = NULL;
1855 if (win == progman_window) progman_window = NULL;
1856 if (win == taskman_window) taskman_window = NULL;
1857 free_hotkeys( win->desktop, win->handle );
1858 cleanup_clipboard_window( win->desktop, win->handle );
1859 free_user_handle( win->handle );
1860 destroy_properties( win );
1861 list_remove( &win->entry );
1862 if (is_desktop_window(win))
1864 struct desktop *desktop = win->desktop;
1865 assert( desktop->top_window == win || desktop->msg_window == win );
1866 if (desktop->top_window == win) desktop->top_window = NULL;
1867 else desktop->msg_window = NULL;
1869 else if (is_desktop_window( win->parent ))
1871 post_message( win->parent->handle, WM_PARENTNOTIFY, WM_DESTROY, win->handle );
1874 detach_window_thread( win );
1875 if (win->win_region) free_region( win->win_region );
1876 if (win->update_region) free_region( win->update_region );
1877 if (win->class) release_class( win->class );
1878 free( win->text );
1879 memset( win, 0x55, sizeof(*win) + win->nb_extra_bytes - 1 );
1880 free( win );
1884 /* create a window */
1885 DECL_HANDLER(create_window)
1887 struct window *win, *parent = NULL, *owner = NULL;
1888 struct unicode_str cls_name = get_req_unicode_str();
1889 atom_t atom;
1891 reply->handle = 0;
1892 if (req->parent && !(parent = get_window( req->parent ))) return;
1894 if (req->owner)
1896 if (!(owner = get_window( req->owner ))) return;
1897 if (is_desktop_window(owner)) owner = NULL;
1898 else if (parent && !is_desktop_window(parent))
1900 /* an owned window must be created as top-level */
1901 set_error( STATUS_ACCESS_DENIED );
1902 return;
1904 else /* owner must be a top-level window */
1905 while ((owner->style & (WS_POPUP|WS_CHILD)) == WS_CHILD && !is_desktop_window(owner->parent))
1906 owner = owner->parent;
1909 atom = cls_name.len ? find_global_atom( NULL, &cls_name ) : req->atom;
1911 if (!(win = create_window( parent, owner, atom, req->instance ))) return;
1913 reply->handle = win->handle;
1914 reply->parent = win->parent ? win->parent->handle : 0;
1915 reply->owner = win->owner;
1916 reply->extra = win->nb_extra_bytes;
1917 reply->class_ptr = get_class_client_ptr( win->class );
1921 /* set the parent of a window */
1922 DECL_HANDLER(set_parent)
1924 struct window *win, *parent = NULL;
1926 if (!(win = get_window( req->handle ))) return;
1927 if (req->parent && !(parent = get_window( req->parent ))) return;
1929 if (is_desktop_window(win))
1931 set_error( STATUS_INVALID_PARAMETER );
1932 return;
1934 reply->old_parent = win->parent->handle;
1935 reply->full_parent = parent ? parent->handle : 0;
1936 set_parent_window( win, parent );
1940 /* destroy a window */
1941 DECL_HANDLER(destroy_window)
1943 struct window *win = get_window( req->handle );
1944 if (win)
1946 if (!is_desktop_window(win)) destroy_window( win );
1947 else if (win->thread == current) detach_window_thread( win );
1948 else set_error( STATUS_ACCESS_DENIED );
1953 /* retrieve the desktop window for the current thread */
1954 DECL_HANDLER(get_desktop_window)
1956 struct desktop *desktop = get_thread_desktop( current, 0 );
1957 int force;
1959 if (!desktop) return;
1961 /* if winstation is invisible, then avoid roundtrip */
1962 force = req->force || !(desktop->winstation->flags & WSF_VISIBLE);
1964 if (!desktop->top_window && force) /* create it */
1966 if ((desktop->top_window = create_window( NULL, NULL, DESKTOP_ATOM, 0 )))
1968 detach_window_thread( desktop->top_window );
1969 desktop->top_window->style = WS_POPUP | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN;
1973 if (!desktop->msg_window && force) /* create it */
1975 static const WCHAR messageW[] = {'M','e','s','s','a','g','e'};
1976 static const struct unicode_str name = { messageW, sizeof(messageW) };
1977 atom_t atom = add_global_atom( NULL, &name );
1978 if (atom && (desktop->msg_window = create_window( NULL, NULL, atom, 0 )))
1980 detach_window_thread( desktop->msg_window );
1981 desktop->msg_window->style = WS_POPUP | WS_CLIPSIBLINGS | WS_CLIPCHILDREN;
1985 reply->top_window = desktop->top_window ? desktop->top_window->handle : 0;
1986 reply->msg_window = desktop->msg_window ? desktop->msg_window->handle : 0;
1987 release_object( desktop );
1991 /* set a window owner */
1992 DECL_HANDLER(set_window_owner)
1994 struct window *win = get_window( req->handle );
1995 struct window *owner = NULL, *ptr;
1997 if (!win) return;
1998 if (req->owner && !(owner = get_window( req->owner ))) return;
1999 if (is_desktop_window(win))
2001 set_error( STATUS_ACCESS_DENIED );
2002 return;
2005 /* make sure owner is not a successor of window */
2006 for (ptr = owner; ptr; ptr = ptr->owner ? get_window( ptr->owner ) : NULL)
2008 if (ptr == win)
2010 set_error( STATUS_INVALID_PARAMETER );
2011 return;
2015 reply->prev_owner = win->owner;
2016 reply->full_owner = win->owner = owner ? owner->handle : 0;
2020 /* get information from a window handle */
2021 DECL_HANDLER(get_window_info)
2023 struct window *win = get_window( req->handle );
2025 reply->full_handle = 0;
2026 reply->tid = reply->pid = 0;
2027 if (win)
2029 reply->full_handle = win->handle;
2030 reply->last_active = win->handle;
2031 reply->is_unicode = win->is_unicode;
2032 if (get_user_object( win->last_active, USER_WINDOW )) reply->last_active = win->last_active;
2033 if (win->thread)
2035 reply->tid = get_thread_id( win->thread );
2036 reply->pid = get_process_id( win->thread->process );
2037 reply->atom = win->class ? get_class_atom( win->class ) : DESKTOP_ATOM;
2043 /* set some information in a window */
2044 DECL_HANDLER(set_window_info)
2046 struct window *win = get_window( req->handle );
2048 if (!win) return;
2049 if (req->flags && is_desktop_window(win) && win->thread != current)
2051 set_error( STATUS_ACCESS_DENIED );
2052 return;
2054 if (req->extra_size > sizeof(req->extra_value) ||
2055 req->extra_offset < -1 ||
2056 req->extra_offset > win->nb_extra_bytes - (int)req->extra_size)
2058 set_win32_error( ERROR_INVALID_INDEX );
2059 return;
2061 if (req->extra_offset != -1)
2063 memcpy( &reply->old_extra_value, win->extra_bytes + req->extra_offset, req->extra_size );
2065 else if (req->flags & SET_WIN_EXTRA)
2067 set_win32_error( ERROR_INVALID_INDEX );
2068 return;
2070 reply->old_style = win->style;
2071 reply->old_ex_style = win->ex_style;
2072 reply->old_id = win->id;
2073 reply->old_instance = win->instance;
2074 reply->old_user_data = win->user_data;
2075 if (req->flags & SET_WIN_STYLE) win->style = req->style;
2076 if (req->flags & SET_WIN_EXSTYLE)
2078 /* WS_EX_TOPMOST can only be changed for unlinked windows */
2079 if (!win->is_linked) win->ex_style = req->ex_style;
2080 else win->ex_style = (req->ex_style & ~WS_EX_TOPMOST) | (win->ex_style & WS_EX_TOPMOST);
2081 if (!(win->ex_style & WS_EX_LAYERED)) win->is_layered = 0;
2083 if (req->flags & SET_WIN_ID) win->id = req->id;
2084 if (req->flags & SET_WIN_INSTANCE) win->instance = req->instance;
2085 if (req->flags & SET_WIN_UNICODE) win->is_unicode = req->is_unicode;
2086 if (req->flags & SET_WIN_USERDATA) win->user_data = req->user_data;
2087 if (req->flags & SET_WIN_EXTRA) memcpy( win->extra_bytes + req->extra_offset,
2088 &req->extra_value, req->extra_size );
2090 /* changing window style triggers a non-client paint */
2091 if (req->flags & SET_WIN_STYLE) win->paint_flags |= PAINT_NONCLIENT;
2095 /* get a list of the window parents, up to the root of the tree */
2096 DECL_HANDLER(get_window_parents)
2098 struct window *ptr, *win = get_window( req->handle );
2099 int total = 0;
2100 user_handle_t *data;
2101 data_size_t len;
2103 if (win) for (ptr = win->parent; ptr; ptr = ptr->parent) total++;
2105 reply->count = total;
2106 len = min( get_reply_max_size(), total * sizeof(user_handle_t) );
2107 if (len && ((data = set_reply_data_size( len ))))
2109 for (ptr = win->parent; ptr && len; ptr = ptr->parent, len -= sizeof(*data))
2110 *data++ = ptr->handle;
2115 /* get a list of the window children */
2116 DECL_HANDLER(get_window_children)
2118 struct window *parent = NULL;
2119 unsigned int total;
2120 user_handle_t *data;
2121 data_size_t len;
2122 struct unicode_str cls_name = get_req_unicode_str();
2123 atom_t atom = req->atom;
2124 struct desktop *desktop = NULL;
2126 if (cls_name.len && !(atom = find_global_atom( NULL, &cls_name ))) return;
2128 if (req->desktop)
2130 if (!(desktop = get_desktop_obj( current->process, req->desktop, DESKTOP_ENUMERATE ))) return;
2131 parent = desktop->top_window;
2133 else
2135 if (req->parent && !(parent = get_window( req->parent ))) return;
2136 if (!parent && !(desktop = get_thread_desktop( current, 0 ))) return;
2139 if (parent)
2140 total = get_children_windows( parent, atom, req->tid, NULL, 0 );
2141 else
2142 total = get_children_windows( desktop->top_window, atom, req->tid, NULL, 0 ) +
2143 get_children_windows( desktop->msg_window, atom, req->tid, NULL, 0 );
2145 reply->count = total;
2146 len = min( get_reply_max_size(), total * sizeof(user_handle_t) );
2147 if (len && ((data = set_reply_data_size( len ))))
2149 if (parent) get_children_windows( parent, atom, req->tid, data, len / sizeof(user_handle_t) );
2150 else
2152 total = get_children_windows( desktop->top_window, atom, req->tid,
2153 data, len / sizeof(user_handle_t) );
2154 data += total;
2155 len -= total * sizeof(user_handle_t);
2156 if (len >= sizeof(user_handle_t))
2157 get_children_windows( desktop->msg_window, atom, req->tid,
2158 data, len / sizeof(user_handle_t) );
2161 if (desktop) release_object( desktop );
2165 /* get a list of the window children that contain a given point */
2166 DECL_HANDLER(get_window_children_from_point)
2168 struct user_handle_array array;
2169 struct window *parent = get_window( req->parent );
2170 data_size_t len;
2172 if (!parent) return;
2174 array.handles = NULL;
2175 array.count = 0;
2176 array.total = 0;
2177 if (!all_windows_from_point( parent, req->x, req->y, &array )) return;
2179 reply->count = array.count;
2180 len = min( get_reply_max_size(), array.count * sizeof(user_handle_t) );
2181 if (len) set_reply_data_ptr( array.handles, len );
2182 else free( array.handles );
2186 /* get window tree information from a window handle */
2187 DECL_HANDLER(get_window_tree)
2189 struct window *ptr, *win = get_window( req->handle );
2191 if (!win) return;
2193 reply->parent = 0;
2194 reply->owner = 0;
2195 reply->next_sibling = 0;
2196 reply->prev_sibling = 0;
2197 reply->first_sibling = 0;
2198 reply->last_sibling = 0;
2199 reply->first_child = 0;
2200 reply->last_child = 0;
2202 if (win->parent)
2204 struct window *parent = win->parent;
2205 reply->parent = parent->handle;
2206 reply->owner = win->owner;
2207 if (win->is_linked)
2209 if ((ptr = get_next_window( win ))) reply->next_sibling = ptr->handle;
2210 if ((ptr = get_prev_window( win ))) reply->prev_sibling = ptr->handle;
2212 if ((ptr = get_first_child( parent ))) reply->first_sibling = ptr->handle;
2213 if ((ptr = get_last_child( parent ))) reply->last_sibling = ptr->handle;
2215 if ((ptr = get_first_child( win ))) reply->first_child = ptr->handle;
2216 if ((ptr = get_last_child( win ))) reply->last_child = ptr->handle;
2220 /* set the position and Z order of a window */
2221 DECL_HANDLER(set_window_pos)
2223 rectangle_t window_rect, client_rect, visible_rect;
2224 struct window *previous = NULL;
2225 struct window *top, *win = get_window( req->handle );
2226 unsigned int flags = req->swp_flags;
2228 if (!win) return;
2229 if (!win->parent) flags |= SWP_NOZORDER; /* no Z order for the desktop */
2231 if (!(flags & SWP_NOZORDER))
2233 switch ((int)req->previous)
2235 case 0: /* HWND_TOP */
2236 previous = WINPTR_TOP;
2237 break;
2238 case 1: /* HWND_BOTTOM */
2239 previous = WINPTR_BOTTOM;
2240 break;
2241 case -1: /* HWND_TOPMOST */
2242 previous = WINPTR_TOPMOST;
2243 break;
2244 case -2: /* HWND_NOTOPMOST */
2245 previous = WINPTR_NOTOPMOST;
2246 break;
2247 default:
2248 if (!(previous = get_window( req->previous ))) return;
2249 /* previous must be a sibling */
2250 if (previous->parent != win->parent)
2252 set_error( STATUS_INVALID_PARAMETER );
2253 return;
2255 break;
2257 if (previous == win) flags |= SWP_NOZORDER; /* nothing to do */
2260 /* windows that use UpdateLayeredWindow don't trigger repaints */
2261 if ((win->ex_style & WS_EX_LAYERED) && !win->is_layered) flags |= SWP_NOREDRAW;
2263 /* window rectangle must be ordered properly */
2264 if (req->window.right < req->window.left || req->window.bottom < req->window.top)
2266 set_error( STATUS_INVALID_PARAMETER );
2267 return;
2270 window_rect = visible_rect = req->window;
2271 client_rect = req->client;
2272 if (get_req_data_size() >= sizeof(rectangle_t))
2273 memcpy( &visible_rect, get_req_data(), sizeof(rectangle_t) );
2274 if (win->parent && win->parent->ex_style & WS_EX_LAYOUTRTL)
2276 mirror_rect( &win->parent->client_rect, &window_rect );
2277 mirror_rect( &win->parent->client_rect, &visible_rect );
2278 mirror_rect( &win->parent->client_rect, &client_rect );
2281 win->paint_flags = (win->paint_flags & ~PAINT_CLIENT_FLAGS) | (req->paint_flags & PAINT_CLIENT_FLAGS);
2282 if (win->paint_flags & PAINT_HAS_PIXEL_FORMAT) update_pixel_format_flags( win );
2284 if (get_req_data_size() >= 3 * sizeof(rectangle_t))
2286 rectangle_t valid_rects[2];
2287 memcpy( valid_rects, (const rectangle_t *)get_req_data() + 1, 2 * sizeof(rectangle_t) );
2288 if (win->parent && win->parent->ex_style & WS_EX_LAYOUTRTL)
2290 mirror_rect( &win->parent->client_rect, &valid_rects[0] );
2291 mirror_rect( &win->parent->client_rect, &valid_rects[1] );
2293 set_window_pos( win, previous, flags, &window_rect, &client_rect, &visible_rect, valid_rects );
2295 else set_window_pos( win, previous, flags, &window_rect, &client_rect, &visible_rect, NULL );
2297 reply->new_style = win->style;
2298 reply->new_ex_style = win->ex_style;
2300 top = get_top_clipping_window( win );
2301 if (is_visible( top ) &&
2302 (top->paint_flags & PAINT_HAS_SURFACE) &&
2303 (top->paint_flags & (PAINT_HAS_PIXEL_FORMAT | PAINT_PIXEL_FORMAT_CHILD)))
2304 reply->surface_win = top->handle;
2308 /* get the window and client rectangles of a window */
2309 DECL_HANDLER(get_window_rectangles)
2311 struct window *win = get_window( req->handle );
2313 if (!win) return;
2315 reply->window = win->window_rect;
2316 reply->visible = win->visible_rect;
2317 reply->client = win->client_rect;
2319 switch (req->relative)
2321 case COORDS_CLIENT:
2322 offset_rect( &reply->window, -win->client_rect.left, -win->client_rect.top );
2323 offset_rect( &reply->visible, -win->client_rect.left, -win->client_rect.top );
2324 offset_rect( &reply->client, -win->client_rect.left, -win->client_rect.top );
2325 if (win->ex_style & WS_EX_LAYOUTRTL)
2327 mirror_rect( &win->client_rect, &reply->window );
2328 mirror_rect( &win->client_rect, &reply->visible );
2330 break;
2331 case COORDS_WINDOW:
2332 offset_rect( &reply->window, -win->window_rect.left, -win->window_rect.top );
2333 offset_rect( &reply->visible, -win->window_rect.left, -win->window_rect.top );
2334 offset_rect( &reply->client, -win->window_rect.left, -win->window_rect.top );
2335 if (win->ex_style & WS_EX_LAYOUTRTL)
2337 mirror_rect( &win->window_rect, &reply->visible );
2338 mirror_rect( &win->window_rect, &reply->client );
2340 break;
2341 case COORDS_PARENT:
2342 if (win->parent && win->parent->ex_style & WS_EX_LAYOUTRTL)
2344 mirror_rect( &win->parent->client_rect, &reply->window );
2345 mirror_rect( &win->parent->client_rect, &reply->visible );
2346 mirror_rect( &win->parent->client_rect, &reply->client );
2348 break;
2349 case COORDS_SCREEN:
2350 client_to_screen_rect( win->parent, &reply->window );
2351 client_to_screen_rect( win->parent, &reply->visible );
2352 client_to_screen_rect( win->parent, &reply->client );
2353 break;
2354 default:
2355 set_error( STATUS_INVALID_PARAMETER );
2356 break;
2361 /* get the window text */
2362 DECL_HANDLER(get_window_text)
2364 struct window *win = get_window( req->handle );
2366 if (win && win->text)
2368 data_size_t len = strlenW( win->text ) * sizeof(WCHAR);
2369 if (len > get_reply_max_size()) len = get_reply_max_size();
2370 set_reply_data( win->text, len );
2375 /* set the window text */
2376 DECL_HANDLER(set_window_text)
2378 struct window *win = get_window( req->handle );
2380 if (win)
2382 WCHAR *text = NULL;
2383 data_size_t len = get_req_data_size() / sizeof(WCHAR);
2384 if (len)
2386 if (!(text = mem_alloc( (len+1) * sizeof(WCHAR) ))) return;
2387 memcpy( text, get_req_data(), len * sizeof(WCHAR) );
2388 text[len] = 0;
2390 free( win->text );
2391 win->text = text;
2396 /* get the coordinates offset between two windows */
2397 DECL_HANDLER(get_windows_offset)
2399 struct window *win;
2400 int mirror_from = 0, mirror_to = 0;
2402 reply->x = reply->y = 0;
2403 if (req->from)
2405 if (!(win = get_window( req->from ))) return;
2406 if (win->ex_style & WS_EX_LAYOUTRTL)
2408 mirror_from = 1;
2409 reply->x += win->client_rect.right - win->client_rect.left;
2411 while (win && !is_desktop_window(win))
2413 reply->x += win->client_rect.left;
2414 reply->y += win->client_rect.top;
2415 win = win->parent;
2418 if (req->to)
2420 if (!(win = get_window( req->to ))) return;
2421 if (win->ex_style & WS_EX_LAYOUTRTL)
2423 mirror_to = 1;
2424 reply->x -= win->client_rect.right - win->client_rect.left;
2426 while (win && !is_desktop_window(win))
2428 reply->x -= win->client_rect.left;
2429 reply->y -= win->client_rect.top;
2430 win = win->parent;
2433 if (mirror_from) reply->x = -reply->x;
2434 reply->mirror = mirror_from ^ mirror_to;
2438 /* get the visible region of a window */
2439 DECL_HANDLER(get_visible_region)
2441 struct region *region;
2442 struct window *top, *win = get_window( req->window );
2444 if (!win) return;
2446 top = get_top_clipping_window( win );
2447 if ((region = get_visible_region( win, req->flags )))
2449 rectangle_t *data;
2450 map_win_region_to_screen( win, region );
2451 data = get_region_data_and_free( region, get_reply_max_size(), &reply->total_size );
2452 if (data) set_reply_data_ptr( data, reply->total_size );
2454 reply->top_win = top->handle;
2455 reply->top_rect = top->visible_rect;
2457 if (!is_desktop_window(win))
2459 reply->win_rect = (req->flags & DCX_WINDOW) ? win->window_rect : win->client_rect;
2460 client_to_screen_rect( top->parent, &reply->top_rect );
2461 client_to_screen_rect( win->parent, &reply->win_rect );
2463 else
2465 reply->win_rect.left = 0;
2466 reply->win_rect.top = 0;
2467 reply->win_rect.right = win->client_rect.right - win->client_rect.left;
2468 reply->win_rect.bottom = win->client_rect.bottom - win->client_rect.top;
2470 reply->paint_flags = win->paint_flags & PAINT_CLIENT_FLAGS;
2474 /* get the surface visible region of a window */
2475 DECL_HANDLER(get_surface_region)
2477 struct region *region;
2478 struct window *win = get_window( req->window );
2480 if (!win || !is_visible( win )) return;
2482 if ((region = get_surface_region( win )))
2484 rectangle_t *data;
2485 if (win->parent) map_win_region_to_screen( win->parent, region );
2486 data = get_region_data_and_free( region, get_reply_max_size(), &reply->total_size );
2487 if (data) set_reply_data_ptr( data, reply->total_size );
2489 reply->visible_rect = win->visible_rect;
2490 if (win->parent) client_to_screen_rect( win->parent, &reply->visible_rect );
2494 /* get the window region */
2495 DECL_HANDLER(get_window_region)
2497 rectangle_t *data;
2498 struct window *win = get_window( req->window );
2500 if (!win) return;
2501 if (!win->win_region) return;
2503 if (win->ex_style & WS_EX_LAYOUTRTL)
2505 struct region *region = create_empty_region();
2507 if (!region) return;
2508 if (!copy_region( region, win->win_region ))
2510 free_region( region );
2511 return;
2513 mirror_region( &win->window_rect, region );
2514 data = get_region_data_and_free( region, get_reply_max_size(), &reply->total_size );
2516 else data = get_region_data( win->win_region, get_reply_max_size(), &reply->total_size );
2518 if (data) set_reply_data_ptr( data, reply->total_size );
2522 /* set the window region */
2523 DECL_HANDLER(set_window_region)
2525 struct region *region = NULL;
2526 struct window *win = get_window( req->window );
2528 if (!win) return;
2530 if (get_req_data_size()) /* no data means remove the region completely */
2532 if (!(region = create_region_from_req_data( get_req_data(), get_req_data_size() )))
2533 return;
2534 if (win->ex_style & WS_EX_LAYOUTRTL) mirror_region( &win->window_rect, region );
2536 set_window_region( win, region, req->redraw );
2540 /* get a window update region */
2541 DECL_HANDLER(get_update_region)
2543 rectangle_t *data;
2544 unsigned int flags = req->flags;
2545 struct window *from_child = NULL;
2546 struct window *win = get_window( req->window );
2548 reply->flags = 0;
2549 if (!win) return;
2551 if (req->from_child)
2553 struct window *ptr;
2555 if (!(from_child = get_window( req->from_child ))) return;
2557 /* make sure from_child is a child of win */
2558 ptr = from_child;
2559 while (ptr && ptr != win) ptr = ptr->parent;
2560 if (!ptr)
2562 set_error( STATUS_INVALID_PARAMETER );
2563 return;
2567 if (flags & UPDATE_DELAYED_ERASE) /* this means that the previous call didn't erase */
2569 if (from_child) from_child->paint_flags |= PAINT_DELAYED_ERASE;
2570 else win->paint_flags |= PAINT_DELAYED_ERASE;
2573 reply->flags = get_window_update_flags( win, from_child, flags, &win );
2574 reply->child = win->handle;
2576 if (flags & UPDATE_NOREGION) return;
2578 if (win->update_region)
2580 /* convert update region to screen coordinates */
2581 struct region *region = create_empty_region();
2583 if (!region) return;
2584 if (!copy_region( region, win->update_region ))
2586 free_region( region );
2587 return;
2589 map_win_region_to_screen( win, region );
2590 if (!(data = get_region_data_and_free( region, get_reply_max_size(),
2591 &reply->total_size ))) return;
2592 set_reply_data_ptr( data, reply->total_size );
2595 if (reply->flags & (UPDATE_PAINT|UPDATE_INTERNALPAINT)) /* validate everything */
2597 validate_parents( win );
2598 validate_whole_window( win );
2600 else
2602 if (reply->flags & UPDATE_NONCLIENT) validate_non_client( win );
2603 if (reply->flags & UPDATE_ERASE)
2605 win->paint_flags &= ~(PAINT_ERASE | PAINT_DELAYED_ERASE);
2606 /* desktop window only gets erased, not repainted */
2607 if (is_desktop_window(win)) validate_whole_window( win );
2613 /* update the z order of a window so that a given rectangle is fully visible */
2614 DECL_HANDLER(update_window_zorder)
2616 rectangle_t tmp, rect = req->rect;
2617 struct window *ptr, *win = get_window( req->window );
2619 if (!win || !win->parent || !is_visible( win )) return; /* nothing to do */
2620 if (win->ex_style & WS_EX_LAYOUTRTL) mirror_rect( &win->client_rect, &rect );
2621 offset_rect( &rect, win->client_rect.left, win->client_rect.top );
2623 LIST_FOR_EACH_ENTRY( ptr, &win->parent->children, struct window, entry )
2625 if (ptr == win) break;
2626 if (!(ptr->style & WS_VISIBLE)) continue;
2627 if (ptr->ex_style & WS_EX_TRANSPARENT) continue;
2628 if (ptr->is_layered && (ptr->layered_flags & LWA_COLORKEY)) continue;
2629 if (!intersect_rect( &tmp, &ptr->visible_rect, &rect )) continue;
2630 if (ptr->win_region)
2632 tmp = rect;
2633 offset_rect( &tmp, -ptr->window_rect.left, -ptr->window_rect.top );
2634 if (!rect_in_region( ptr->win_region, &tmp )) continue;
2636 /* found a window obscuring the rectangle, now move win above this one */
2637 /* making sure to not violate the topmost rule */
2638 if (!(ptr->ex_style & WS_EX_TOPMOST) || (win->ex_style & WS_EX_TOPMOST))
2640 list_remove( &win->entry );
2641 list_add_before( &ptr->entry, &win->entry );
2643 break;
2648 /* mark parts of a window as needing a redraw */
2649 DECL_HANDLER(redraw_window)
2651 struct region *region = NULL;
2652 struct window *win = get_window( req->window );
2654 if (!win) return;
2655 if (!is_visible( win )) return; /* nothing to do */
2657 if (req->flags & (RDW_VALIDATE|RDW_INVALIDATE))
2659 if (get_req_data_size()) /* no data means whole rectangle */
2661 if (!(region = create_region_from_req_data( get_req_data(), get_req_data_size() )))
2662 return;
2663 if (win->ex_style & WS_EX_LAYOUTRTL) mirror_region( &win->client_rect, region );
2667 redraw_window( win, region, (req->flags & RDW_INVALIDATE) && (req->flags & RDW_FRAME),
2668 req->flags );
2669 if (region) free_region( region );
2673 /* set a window property */
2674 DECL_HANDLER(set_window_property)
2676 struct unicode_str name = get_req_unicode_str();
2677 struct window *win = get_window( req->window );
2679 if (!win) return;
2681 if (name.len)
2683 atom_t atom = add_global_atom( NULL, &name );
2684 if (atom)
2686 set_property( win, atom, req->data, PROP_TYPE_STRING );
2687 release_global_atom( NULL, atom );
2690 else set_property( win, req->atom, req->data, PROP_TYPE_ATOM );
2694 /* remove a window property */
2695 DECL_HANDLER(remove_window_property)
2697 struct unicode_str name = get_req_unicode_str();
2698 struct window *win = get_window( req->window );
2700 if (win)
2702 atom_t atom = name.len ? find_global_atom( NULL, &name ) : req->atom;
2703 if (atom) reply->data = remove_property( win, atom );
2708 /* get a window property */
2709 DECL_HANDLER(get_window_property)
2711 struct unicode_str name = get_req_unicode_str();
2712 struct window *win = get_window( req->window );
2714 if (win)
2716 atom_t atom = name.len ? find_global_atom( NULL, &name ) : req->atom;
2717 if (atom) reply->data = get_property( win, atom );
2722 /* get the list of properties of a window */
2723 DECL_HANDLER(get_window_properties)
2725 property_data_t *data;
2726 int i, count, max = get_reply_max_size() / sizeof(*data);
2727 struct window *win = get_window( req->window );
2729 reply->total = 0;
2730 if (!win) return;
2732 for (i = count = 0; i < win->prop_inuse; i++)
2733 if (win->properties[i].type != PROP_TYPE_FREE) count++;
2734 reply->total = count;
2736 if (count > max) count = max;
2737 if (!count || !(data = set_reply_data_size( count * sizeof(*data) ))) return;
2739 for (i = 0; i < win->prop_inuse && count; i++)
2741 if (win->properties[i].type == PROP_TYPE_FREE) continue;
2742 data->atom = win->properties[i].atom;
2743 data->string = (win->properties[i].type == PROP_TYPE_STRING);
2744 data->data = win->properties[i].data;
2745 data++;
2746 count--;
2751 /* get the new window pointer for a global window, checking permissions */
2752 /* helper for set_global_windows request */
2753 static int get_new_global_window( struct window **win, user_handle_t handle )
2755 if (!handle)
2757 *win = NULL;
2758 return 1;
2760 else if (*win)
2762 set_error( STATUS_ACCESS_DENIED );
2763 return 0;
2765 *win = get_window( handle );
2766 return (*win != NULL);
2769 /* Set/get the global windows */
2770 DECL_HANDLER(set_global_windows)
2772 struct window *new_shell_window = shell_window;
2773 struct window *new_shell_listview = shell_listview;
2774 struct window *new_progman_window = progman_window;
2775 struct window *new_taskman_window = taskman_window;
2777 reply->old_shell_window = shell_window ? shell_window->handle : 0;
2778 reply->old_shell_listview = shell_listview ? shell_listview->handle : 0;
2779 reply->old_progman_window = progman_window ? progman_window->handle : 0;
2780 reply->old_taskman_window = taskman_window ? taskman_window->handle : 0;
2782 if (req->flags & SET_GLOBAL_SHELL_WINDOWS)
2784 if (!get_new_global_window( &new_shell_window, req->shell_window )) return;
2785 if (!get_new_global_window( &new_shell_listview, req->shell_listview )) return;
2787 if (req->flags & SET_GLOBAL_PROGMAN_WINDOW)
2789 if (!get_new_global_window( &new_progman_window, req->progman_window )) return;
2791 if (req->flags & SET_GLOBAL_TASKMAN_WINDOW)
2793 if (!get_new_global_window( &new_taskman_window, req->taskman_window )) return;
2795 shell_window = new_shell_window;
2796 shell_listview = new_shell_listview;
2797 progman_window = new_progman_window;
2798 taskman_window = new_taskman_window;
2801 /* retrieve layered info for a window */
2802 DECL_HANDLER(get_window_layered_info)
2804 struct window *win = get_window( req->handle );
2806 if (!win) return;
2808 if (win->is_layered)
2810 reply->color_key = win->color_key;
2811 reply->alpha = win->alpha;
2812 reply->flags = win->layered_flags;
2814 else set_win32_error( ERROR_INVALID_WINDOW_HANDLE );
2818 /* set layered info for a window */
2819 DECL_HANDLER(set_window_layered_info)
2821 struct window *win = get_window( req->handle );
2823 if (!win) return;
2825 if (win->ex_style & WS_EX_LAYERED)
2827 int was_layered = win->is_layered;
2829 if (req->flags & LWA_ALPHA) win->alpha = req->alpha;
2830 else if (!win->is_layered) win->alpha = 0; /* alpha init value is 0 */
2832 win->color_key = req->color_key;
2833 win->layered_flags = req->flags;
2834 win->is_layered = 1;
2835 /* repaint since we know now it's not going to use UpdateLayeredWindow */
2836 if (!was_layered) redraw_window( win, 0, 1, RDW_ALLCHILDREN | RDW_INVALIDATE | RDW_ERASE | RDW_FRAME );
2838 else set_win32_error( ERROR_INVALID_WINDOW_HANDLE );