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
22 #include "wine/port.h"
28 #define WIN32_NO_STATUS
42 /* a window property */
45 unsigned short type
; /* property type (see below) */
46 atom_t atom
; /* property atom */
47 lparam_t data
; /* property data (user-defined storage) */
52 PROP_TYPE_FREE
, /* free entry */
53 PROP_TYPE_STRING
, /* atom that was originally a string */
54 PROP_TYPE_ATOM
/* plain atom */
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
;
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
);
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
;
216 list_add_before( entry
, &win
->entry
);
220 list_add_after( &previous
->entry
, &win
->entry
);
221 if (!(previous
->ex_style
& WS_EX_TOPMOST
)) win
->ex_style
&= ~WS_EX_TOPMOST
;
224 struct window
*next
= get_next_window( win
);
225 if (next
&& (next
->ex_style
& WS_EX_TOPMOST
)) win
->ex_style
|= WS_EX_TOPMOST
;
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
)
237 /* make sure parent is not a child of window */
238 for (ptr
= parent
; ptr
; ptr
= ptr
->parent
)
242 set_error( STATUS_INVALID_PARAMETER
);
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
);
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
) );
278 free( array
->handles
);
279 set_error( STATUS_NO_MEMORY
);
282 array
->handles
= new_array
;
283 array
->total
= new_total
;
285 array
->handles
[array
->count
++] = handle
;
289 /* set a window property */
290 static void set_property( struct window
*win
, atom_t atom
, lparam_t data
, enum property_type type
)
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
)
303 if (win
->properties
[i
].atom
== atom
)
305 win
->properties
[i
].type
= type
;
306 win
->properties
[i
].data
= data
;
311 /* need to add an entry */
312 if (!grab_global_atom( NULL
, atom
)) return;
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
);
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
)
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? */
355 /* find a window property */
356 static lparam_t
get_property( struct window
*win
, atom_t atom
)
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? */
369 /* destroy all properties of a window */
370 static inline void destroy_properties( struct window
*win
)
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
;
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 );
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
);
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
;
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
);
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
);
462 /* parent must be on the same desktop */
463 if (parent
&& parent
->desktop
!= desktop
)
465 set_error( STATUS_ACCESS_DENIED
);
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
;
478 win
->last_active
= win
->handle
;
479 win
->win_region
= NULL
;
480 win
->update_region
= NULL
;
490 win
->paint_flags
= 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
);
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
);
524 assert( !desktop
->msg_window
);
525 desktop
->msg_window
= win
;
529 current
->desktop_users
++;
535 if (win
->handle
) free_user_handle( win
->handle
);
538 release_object( desktop
);
539 release_class( class );
543 /* destroy all windows belonging to a given thread */
544 void destroy_thread_windows( struct thread
*thread
)
546 user_handle_t handle
= 0;
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
);
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
;
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
);
598 /* set last active for window and its owners */
602 owner
->last_active
= win
->handle
;
603 owner
= get_user_object( owner
->owner
, USER_WINDOW
);
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
)
619 if (!(win
->style
& WS_VISIBLE
)) return 0;
621 /* if parent is minimized children are not visible */
622 if (win
&& (win
->style
& WS_MINIMIZE
)) return 0;
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
);
632 return is_visible( win
);
635 int is_window_transparent( user_handle_t window
)
637 struct window
*win
= get_user_object( window
, USER_WINDOW
);
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 */
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
)
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;
674 if (count
>= max_count
) break;
675 handles
[count
] = ptr
->handle
;
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
)
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
)
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
)
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
))
724 /* now add window to the array */
725 if (!add_handle_to_array( array
, ptr
->handle
)) return 0;
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
)
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 */
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
);
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
)
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;
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
))
822 else if (!(ptr
->style
& WS_MINIMIZE
)) /* explore its children */
823 ret
= find_child_to_repaint( ptr
, thread
);
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
;
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
);
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
;
861 win
->paint_flags
&= ~PAINT_INTERNAL
;
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
);
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
)
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
))
932 offset_region( tmp
, offset_x
, offset_y
);
933 if (!(region
= subtract_region( region
, region
, tmp
))) break;
934 if (is_region_empty( region
)) break;
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
)
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
))
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
;
996 set_region_client_rect( region
, win
);
997 if (win
->win_region
&& !intersect_window_region( region
, win
)) goto error
;
1002 if (flags
& DCX_CLIPCHILDREN
)
1004 if (is_desktop_window(win
)) offset_x
= offset_y
= 0;
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;
1018 offset_x
= win
->window_rect
.left
;
1019 offset_y
= win
->window_rect
.top
;
1022 if ((tmp
= create_empty_region()) != NULL
)
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 */
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;
1047 offset_region( region
, -offset_x
, -offset_y
); /* make it relative to target window */
1051 if (tmp
) free_region( tmp
);
1052 free_region( region
);
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
)
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
))
1087 if (!clip_pixel_format_children( ptr
, clip
, region
, offset_x
+ ptr
->client_rect
.left
,
1088 offset_y
+ ptr
->client_rect
.top
))
1091 free_region( clip
);
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
))
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
);
1129 if (clip
) free_region( clip
);
1130 free_region( region
);
1135 /* get the window class of a window */
1136 struct window_class
* get_window_class( user_handle_t window
)
1139 if (!(win
= get_window( window
))) return NULL
;
1140 if (!win
->class) set_error( STATUS_ACCESS_DENIED
);
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
;
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
);
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
)
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
);
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
);
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
;
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
);
1240 set_update_region( win
, region
);
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
;
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
);
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 */
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
)
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
);
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;
1348 /* map to parent client coords */
1349 offset_x
+= win
->window_rect
.left
;
1350 offset_y
+= win
->window_rect
.top
;
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
);
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
)
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
))
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
);
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
;
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
)
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
;
1506 if (!(ptr
->style
& WS_VISIBLE
)) continue;
1507 if ((ret
= get_update_flags( ptr
, flags
)) != 0)
1512 if ((ret
= get_child_update_flags( ptr
, NULL
, flags
, child
))) break;
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
)
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
))
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) */
1558 if ((ret
= get_update_flags( win
, flags
)))
1566 /* now check children */
1568 if (flags
& UPDATE_NOCHILDREN
) return 0;
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
)))
1581 from_sibling
= from_sibling
->parent
;
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
);
1606 free_region( exposed_rgn
);
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
);
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
;
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
);
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();
1704 set_region_rect( tmp
, &rect
);
1705 if (intersect_region( tmp
, win
->update_region
, tmp
))
1706 set_update_region( win
, 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
) );
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
||
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
);
1763 /* subtract the valid portion of client rect from the total region */
1764 struct region
*tmp
= create_empty_region();
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
);
1783 union_region( exposed_rgn
, exposed_rgn
, win_rgn
);
1784 if (win_rgn
!= old_vis_rgn
) free_region( win_rgn
);
1788 exposed_rgn
= win_rgn
;
1789 if (win_rgn
== old_vis_rgn
) old_vis_rgn
= NULL
;
1794 redraw_window( win
, exposed_rgn
, 1, RDW_INVALIDATE
| RDW_ERASE
| RDW_FRAME
| RDW_ALLCHILDREN
);
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
;
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 free_user_handle( win
->handle
);
1859 destroy_properties( win
);
1860 list_remove( &win
->entry
);
1861 if (is_desktop_window(win
))
1863 struct desktop
*desktop
= win
->desktop
;
1864 assert( desktop
->top_window
== win
|| desktop
->msg_window
== win
);
1865 if (desktop
->top_window
== win
) desktop
->top_window
= NULL
;
1866 else desktop
->msg_window
= NULL
;
1868 else if (is_desktop_window( win
->parent
))
1870 post_message( win
->parent
->handle
, WM_PARENTNOTIFY
, WM_DESTROY
, win
->handle
);
1873 detach_window_thread( win
);
1874 if (win
->win_region
) free_region( win
->win_region
);
1875 if (win
->update_region
) free_region( win
->update_region
);
1876 if (win
->class) release_class( win
->class );
1878 memset( win
, 0x55, sizeof(*win
) + win
->nb_extra_bytes
- 1 );
1883 /* create a window */
1884 DECL_HANDLER(create_window
)
1886 struct window
*win
, *parent
= NULL
, *owner
= NULL
;
1887 struct unicode_str cls_name
= get_req_unicode_str();
1891 if (req
->parent
&& !(parent
= get_window( req
->parent
))) return;
1895 if (!(owner
= get_window( req
->owner
))) return;
1896 if (is_desktop_window(owner
)) owner
= NULL
;
1897 else if (parent
&& !is_desktop_window(parent
))
1899 /* an owned window must be created as top-level */
1900 set_error( STATUS_ACCESS_DENIED
);
1903 else /* owner must be a top-level window */
1904 while (!is_desktop_window(owner
->parent
)) owner
= owner
->parent
;
1907 atom
= cls_name
.len
? find_global_atom( NULL
, &cls_name
) : req
->atom
;
1909 if (!(win
= create_window( parent
, owner
, atom
, req
->instance
))) return;
1911 reply
->handle
= win
->handle
;
1912 reply
->parent
= win
->parent
? win
->parent
->handle
: 0;
1913 reply
->owner
= win
->owner
;
1914 reply
->extra
= win
->nb_extra_bytes
;
1915 reply
->class_ptr
= get_class_client_ptr( win
->class );
1919 /* set the parent of a window */
1920 DECL_HANDLER(set_parent
)
1922 struct window
*win
, *parent
= NULL
;
1924 if (!(win
= get_window( req
->handle
))) return;
1925 if (req
->parent
&& !(parent
= get_window( req
->parent
))) return;
1927 if (is_desktop_window(win
))
1929 set_error( STATUS_INVALID_PARAMETER
);
1932 reply
->old_parent
= win
->parent
->handle
;
1933 reply
->full_parent
= parent
? parent
->handle
: 0;
1934 set_parent_window( win
, parent
);
1938 /* destroy a window */
1939 DECL_HANDLER(destroy_window
)
1941 struct window
*win
= get_window( req
->handle
);
1944 if (!is_desktop_window(win
)) destroy_window( win
);
1945 else if (win
->thread
== current
) detach_window_thread( win
);
1946 else set_error( STATUS_ACCESS_DENIED
);
1951 /* retrieve the desktop window for the current thread */
1952 DECL_HANDLER(get_desktop_window
)
1954 struct desktop
*desktop
= get_thread_desktop( current
, 0 );
1957 if (!desktop
) return;
1959 /* if winstation is invisible, then avoid roundtrip */
1960 force
= req
->force
|| !(desktop
->winstation
->flags
& WSF_VISIBLE
);
1962 if (!desktop
->top_window
&& force
) /* create it */
1964 if ((desktop
->top_window
= create_window( NULL
, NULL
, DESKTOP_ATOM
, 0 )))
1966 detach_window_thread( desktop
->top_window
);
1967 desktop
->top_window
->style
= WS_POPUP
| WS_VISIBLE
| WS_CLIPSIBLINGS
| WS_CLIPCHILDREN
;
1971 if (!desktop
->msg_window
&& force
) /* create it */
1973 static const WCHAR messageW
[] = {'M','e','s','s','a','g','e'};
1974 static const struct unicode_str name
= { messageW
, sizeof(messageW
) };
1975 atom_t atom
= add_global_atom( NULL
, &name
);
1976 if (atom
&& (desktop
->msg_window
= create_window( NULL
, NULL
, atom
, 0 )))
1978 detach_window_thread( desktop
->msg_window
);
1979 desktop
->msg_window
->style
= WS_POPUP
| WS_CLIPSIBLINGS
| WS_CLIPCHILDREN
;
1983 reply
->top_window
= desktop
->top_window
? desktop
->top_window
->handle
: 0;
1984 reply
->msg_window
= desktop
->msg_window
? desktop
->msg_window
->handle
: 0;
1985 release_object( desktop
);
1989 /* set a window owner */
1990 DECL_HANDLER(set_window_owner
)
1992 struct window
*win
= get_window( req
->handle
);
1993 struct window
*owner
= NULL
, *ptr
;
1996 if (req
->owner
&& !(owner
= get_window( req
->owner
))) return;
1997 if (is_desktop_window(win
))
1999 set_error( STATUS_ACCESS_DENIED
);
2003 /* make sure owner is not a successor of window */
2004 for (ptr
= owner
; ptr
; ptr
= ptr
->owner
? get_window( ptr
->owner
) : NULL
)
2008 set_error( STATUS_INVALID_PARAMETER
);
2013 reply
->prev_owner
= win
->owner
;
2014 reply
->full_owner
= win
->owner
= owner
? owner
->handle
: 0;
2018 /* get information from a window handle */
2019 DECL_HANDLER(get_window_info
)
2021 struct window
*win
= get_window( req
->handle
);
2023 reply
->full_handle
= 0;
2024 reply
->tid
= reply
->pid
= 0;
2027 reply
->full_handle
= win
->handle
;
2028 reply
->last_active
= win
->handle
;
2029 reply
->is_unicode
= win
->is_unicode
;
2030 if (get_user_object( win
->last_active
, USER_WINDOW
)) reply
->last_active
= win
->last_active
;
2033 reply
->tid
= get_thread_id( win
->thread
);
2034 reply
->pid
= get_process_id( win
->thread
->process
);
2035 reply
->atom
= win
->class ? get_class_atom( win
->class ) : DESKTOP_ATOM
;
2041 /* set some information in a window */
2042 DECL_HANDLER(set_window_info
)
2044 struct window
*win
= get_window( req
->handle
);
2047 if (req
->flags
&& is_desktop_window(win
) && win
->thread
!= current
)
2049 set_error( STATUS_ACCESS_DENIED
);
2052 if (req
->extra_size
> sizeof(req
->extra_value
) ||
2053 req
->extra_offset
< -1 ||
2054 req
->extra_offset
> win
->nb_extra_bytes
- (int)req
->extra_size
)
2056 set_win32_error( ERROR_INVALID_INDEX
);
2059 if (req
->extra_offset
!= -1)
2061 memcpy( &reply
->old_extra_value
, win
->extra_bytes
+ req
->extra_offset
, req
->extra_size
);
2063 else if (req
->flags
& SET_WIN_EXTRA
)
2065 set_win32_error( ERROR_INVALID_INDEX
);
2068 reply
->old_style
= win
->style
;
2069 reply
->old_ex_style
= win
->ex_style
;
2070 reply
->old_id
= win
->id
;
2071 reply
->old_instance
= win
->instance
;
2072 reply
->old_user_data
= win
->user_data
;
2073 if (req
->flags
& SET_WIN_STYLE
) win
->style
= req
->style
;
2074 if (req
->flags
& SET_WIN_EXSTYLE
)
2076 /* WS_EX_TOPMOST can only be changed for unlinked windows */
2077 if (!win
->is_linked
) win
->ex_style
= req
->ex_style
;
2078 else win
->ex_style
= (req
->ex_style
& ~WS_EX_TOPMOST
) | (win
->ex_style
& WS_EX_TOPMOST
);
2079 if (!(win
->ex_style
& WS_EX_LAYERED
)) win
->is_layered
= 0;
2081 if (req
->flags
& SET_WIN_ID
) win
->id
= req
->id
;
2082 if (req
->flags
& SET_WIN_INSTANCE
) win
->instance
= req
->instance
;
2083 if (req
->flags
& SET_WIN_UNICODE
) win
->is_unicode
= req
->is_unicode
;
2084 if (req
->flags
& SET_WIN_USERDATA
) win
->user_data
= req
->user_data
;
2085 if (req
->flags
& SET_WIN_EXTRA
) memcpy( win
->extra_bytes
+ req
->extra_offset
,
2086 &req
->extra_value
, req
->extra_size
);
2088 /* changing window style triggers a non-client paint */
2089 if (req
->flags
& SET_WIN_STYLE
) win
->paint_flags
|= PAINT_NONCLIENT
;
2093 /* get a list of the window parents, up to the root of the tree */
2094 DECL_HANDLER(get_window_parents
)
2096 struct window
*ptr
, *win
= get_window( req
->handle
);
2098 user_handle_t
*data
;
2101 if (win
) for (ptr
= win
->parent
; ptr
; ptr
= ptr
->parent
) total
++;
2103 reply
->count
= total
;
2104 len
= min( get_reply_max_size(), total
* sizeof(user_handle_t
) );
2105 if (len
&& ((data
= set_reply_data_size( len
))))
2107 for (ptr
= win
->parent
; ptr
&& len
; ptr
= ptr
->parent
, len
-= sizeof(*data
))
2108 *data
++ = ptr
->handle
;
2113 /* get a list of the window children */
2114 DECL_HANDLER(get_window_children
)
2116 struct window
*parent
= NULL
;
2118 user_handle_t
*data
;
2120 struct unicode_str cls_name
= get_req_unicode_str();
2121 atom_t atom
= req
->atom
;
2122 struct desktop
*desktop
= NULL
;
2124 if (cls_name
.len
&& !(atom
= find_global_atom( NULL
, &cls_name
))) return;
2128 if (!(desktop
= get_desktop_obj( current
->process
, req
->desktop
, DESKTOP_ENUMERATE
))) return;
2129 parent
= desktop
->top_window
;
2133 if (req
->parent
&& !(parent
= get_window( req
->parent
))) return;
2134 if (!parent
&& !(desktop
= get_thread_desktop( current
, 0 ))) return;
2138 total
= get_children_windows( parent
, atom
, req
->tid
, NULL
, 0 );
2140 total
= get_children_windows( desktop
->top_window
, atom
, req
->tid
, NULL
, 0 ) +
2141 get_children_windows( desktop
->msg_window
, atom
, req
->tid
, NULL
, 0 );
2143 reply
->count
= total
;
2144 len
= min( get_reply_max_size(), total
* sizeof(user_handle_t
) );
2145 if (len
&& ((data
= set_reply_data_size( len
))))
2147 if (parent
) get_children_windows( parent
, atom
, req
->tid
, data
, len
/ sizeof(user_handle_t
) );
2150 total
= get_children_windows( desktop
->top_window
, atom
, req
->tid
,
2151 data
, len
/ sizeof(user_handle_t
) );
2153 len
-= total
* sizeof(user_handle_t
);
2154 if (len
>= sizeof(user_handle_t
))
2155 get_children_windows( desktop
->msg_window
, atom
, req
->tid
,
2156 data
, len
/ sizeof(user_handle_t
) );
2159 if (desktop
) release_object( desktop
);
2163 /* get a list of the window children that contain a given point */
2164 DECL_HANDLER(get_window_children_from_point
)
2166 struct user_handle_array array
;
2167 struct window
*parent
= get_window( req
->parent
);
2170 if (!parent
) return;
2172 array
.handles
= NULL
;
2175 if (!all_windows_from_point( parent
, req
->x
, req
->y
, &array
)) return;
2177 reply
->count
= array
.count
;
2178 len
= min( get_reply_max_size(), array
.count
* sizeof(user_handle_t
) );
2179 if (len
) set_reply_data_ptr( array
.handles
, len
);
2180 else free( array
.handles
);
2184 /* get window tree information from a window handle */
2185 DECL_HANDLER(get_window_tree
)
2187 struct window
*ptr
, *win
= get_window( req
->handle
);
2193 reply
->next_sibling
= 0;
2194 reply
->prev_sibling
= 0;
2195 reply
->first_sibling
= 0;
2196 reply
->last_sibling
= 0;
2197 reply
->first_child
= 0;
2198 reply
->last_child
= 0;
2202 struct window
*parent
= win
->parent
;
2203 reply
->parent
= parent
->handle
;
2204 reply
->owner
= win
->owner
;
2207 if ((ptr
= get_next_window( win
))) reply
->next_sibling
= ptr
->handle
;
2208 if ((ptr
= get_prev_window( win
))) reply
->prev_sibling
= ptr
->handle
;
2210 if ((ptr
= get_first_child( parent
))) reply
->first_sibling
= ptr
->handle
;
2211 if ((ptr
= get_last_child( parent
))) reply
->last_sibling
= ptr
->handle
;
2213 if ((ptr
= get_first_child( win
))) reply
->first_child
= ptr
->handle
;
2214 if ((ptr
= get_last_child( win
))) reply
->last_child
= ptr
->handle
;
2218 /* set the position and Z order of a window */
2219 DECL_HANDLER(set_window_pos
)
2221 rectangle_t window_rect
, client_rect
, visible_rect
;
2222 struct window
*previous
= NULL
;
2223 struct window
*top
, *win
= get_window( req
->handle
);
2224 unsigned int flags
= req
->swp_flags
;
2227 if (!win
->parent
) flags
|= SWP_NOZORDER
; /* no Z order for the desktop */
2229 if (!(flags
& SWP_NOZORDER
))
2231 switch ((int)req
->previous
)
2233 case 0: /* HWND_TOP */
2234 previous
= WINPTR_TOP
;
2236 case 1: /* HWND_BOTTOM */
2237 previous
= WINPTR_BOTTOM
;
2239 case -1: /* HWND_TOPMOST */
2240 previous
= WINPTR_TOPMOST
;
2242 case -2: /* HWND_NOTOPMOST */
2243 previous
= WINPTR_NOTOPMOST
;
2246 if (!(previous
= get_window( req
->previous
))) return;
2247 /* previous must be a sibling */
2248 if (previous
->parent
!= win
->parent
)
2250 set_error( STATUS_INVALID_PARAMETER
);
2255 if (previous
== win
) flags
|= SWP_NOZORDER
; /* nothing to do */
2258 /* windows that use UpdateLayeredWindow don't trigger repaints */
2259 if ((win
->ex_style
& WS_EX_LAYERED
) && !win
->is_layered
) flags
|= SWP_NOREDRAW
;
2261 /* window rectangle must be ordered properly */
2262 if (req
->window
.right
< req
->window
.left
|| req
->window
.bottom
< req
->window
.top
)
2264 set_error( STATUS_INVALID_PARAMETER
);
2268 window_rect
= visible_rect
= req
->window
;
2269 client_rect
= req
->client
;
2270 if (get_req_data_size() >= sizeof(rectangle_t
))
2271 memcpy( &visible_rect
, get_req_data(), sizeof(rectangle_t
) );
2272 if (win
->parent
&& win
->parent
->ex_style
& WS_EX_LAYOUTRTL
)
2274 mirror_rect( &win
->parent
->client_rect
, &window_rect
);
2275 mirror_rect( &win
->parent
->client_rect
, &visible_rect
);
2276 mirror_rect( &win
->parent
->client_rect
, &client_rect
);
2279 win
->paint_flags
= (win
->paint_flags
& ~PAINT_CLIENT_FLAGS
) | (req
->paint_flags
& PAINT_CLIENT_FLAGS
);
2280 if (win
->paint_flags
& PAINT_HAS_PIXEL_FORMAT
) update_pixel_format_flags( win
);
2282 if (get_req_data_size() >= 3 * sizeof(rectangle_t
))
2284 rectangle_t valid_rects
[2];
2285 memcpy( valid_rects
, (const rectangle_t
*)get_req_data() + 1, 2 * sizeof(rectangle_t
) );
2286 if (win
->parent
&& win
->parent
->ex_style
& WS_EX_LAYOUTRTL
)
2288 mirror_rect( &win
->parent
->client_rect
, &valid_rects
[0] );
2289 mirror_rect( &win
->parent
->client_rect
, &valid_rects
[1] );
2291 set_window_pos( win
, previous
, flags
, &window_rect
, &client_rect
, &visible_rect
, valid_rects
);
2293 else set_window_pos( win
, previous
, flags
, &window_rect
, &client_rect
, &visible_rect
, NULL
);
2295 reply
->new_style
= win
->style
;
2296 reply
->new_ex_style
= win
->ex_style
;
2298 top
= get_top_clipping_window( win
);
2299 if (is_visible( top
) &&
2300 (top
->paint_flags
& PAINT_HAS_SURFACE
) &&
2301 (top
->paint_flags
& (PAINT_HAS_PIXEL_FORMAT
| PAINT_PIXEL_FORMAT_CHILD
)))
2302 reply
->surface_win
= top
->handle
;
2306 /* get the window and client rectangles of a window */
2307 DECL_HANDLER(get_window_rectangles
)
2309 struct window
*win
= get_window( req
->handle
);
2313 reply
->window
= win
->window_rect
;
2314 reply
->visible
= win
->visible_rect
;
2315 reply
->client
= win
->client_rect
;
2317 switch (req
->relative
)
2320 offset_rect( &reply
->window
, -win
->client_rect
.left
, -win
->client_rect
.top
);
2321 offset_rect( &reply
->visible
, -win
->client_rect
.left
, -win
->client_rect
.top
);
2322 offset_rect( &reply
->client
, -win
->client_rect
.left
, -win
->client_rect
.top
);
2323 if (win
->ex_style
& WS_EX_LAYOUTRTL
)
2325 mirror_rect( &win
->client_rect
, &reply
->window
);
2326 mirror_rect( &win
->client_rect
, &reply
->visible
);
2330 offset_rect( &reply
->window
, -win
->window_rect
.left
, -win
->window_rect
.top
);
2331 offset_rect( &reply
->visible
, -win
->window_rect
.left
, -win
->window_rect
.top
);
2332 offset_rect( &reply
->client
, -win
->window_rect
.left
, -win
->window_rect
.top
);
2333 if (win
->ex_style
& WS_EX_LAYOUTRTL
)
2335 mirror_rect( &win
->window_rect
, &reply
->visible
);
2336 mirror_rect( &win
->window_rect
, &reply
->client
);
2340 if (win
->parent
&& win
->parent
->ex_style
& WS_EX_LAYOUTRTL
)
2342 mirror_rect( &win
->parent
->client_rect
, &reply
->window
);
2343 mirror_rect( &win
->parent
->client_rect
, &reply
->visible
);
2344 mirror_rect( &win
->parent
->client_rect
, &reply
->client
);
2348 client_to_screen_rect( win
->parent
, &reply
->window
);
2349 client_to_screen_rect( win
->parent
, &reply
->visible
);
2350 client_to_screen_rect( win
->parent
, &reply
->client
);
2353 set_error( STATUS_INVALID_PARAMETER
);
2359 /* get the window text */
2360 DECL_HANDLER(get_window_text
)
2362 struct window
*win
= get_window( req
->handle
);
2364 if (win
&& win
->text
)
2366 data_size_t len
= strlenW( win
->text
) * sizeof(WCHAR
);
2367 if (len
> get_reply_max_size()) len
= get_reply_max_size();
2368 set_reply_data( win
->text
, len
);
2373 /* set the window text */
2374 DECL_HANDLER(set_window_text
)
2376 struct window
*win
= get_window( req
->handle
);
2381 data_size_t len
= get_req_data_size() / sizeof(WCHAR
);
2384 if (!(text
= mem_alloc( (len
+1) * sizeof(WCHAR
) ))) return;
2385 memcpy( text
, get_req_data(), len
* sizeof(WCHAR
) );
2394 /* get the coordinates offset between two windows */
2395 DECL_HANDLER(get_windows_offset
)
2398 int mirror_from
= 0, mirror_to
= 0;
2400 reply
->x
= reply
->y
= 0;
2403 if (!(win
= get_window( req
->from
))) return;
2404 if (win
->ex_style
& WS_EX_LAYOUTRTL
)
2407 reply
->x
+= win
->client_rect
.right
- win
->client_rect
.left
;
2409 while (win
&& !is_desktop_window(win
))
2411 reply
->x
+= win
->client_rect
.left
;
2412 reply
->y
+= win
->client_rect
.top
;
2418 if (!(win
= get_window( req
->to
))) return;
2419 if (win
->ex_style
& WS_EX_LAYOUTRTL
)
2422 reply
->x
-= win
->client_rect
.right
- win
->client_rect
.left
;
2424 while (win
&& !is_desktop_window(win
))
2426 reply
->x
-= win
->client_rect
.left
;
2427 reply
->y
-= win
->client_rect
.top
;
2431 if (mirror_from
) reply
->x
= -reply
->x
;
2432 reply
->mirror
= mirror_from
^ mirror_to
;
2436 /* get the visible region of a window */
2437 DECL_HANDLER(get_visible_region
)
2439 struct region
*region
;
2440 struct window
*top
, *win
= get_window( req
->window
);
2444 top
= get_top_clipping_window( win
);
2445 if ((region
= get_visible_region( win
, req
->flags
)))
2448 map_win_region_to_screen( win
, region
);
2449 data
= get_region_data_and_free( region
, get_reply_max_size(), &reply
->total_size
);
2450 if (data
) set_reply_data_ptr( data
, reply
->total_size
);
2452 reply
->top_win
= top
->handle
;
2453 reply
->top_rect
= top
->visible_rect
;
2455 if (!is_desktop_window(win
))
2457 reply
->win_rect
= (req
->flags
& DCX_WINDOW
) ? win
->window_rect
: win
->client_rect
;
2458 client_to_screen_rect( top
->parent
, &reply
->top_rect
);
2459 client_to_screen_rect( win
->parent
, &reply
->win_rect
);
2463 reply
->win_rect
.left
= 0;
2464 reply
->win_rect
.top
= 0;
2465 reply
->win_rect
.right
= win
->client_rect
.right
- win
->client_rect
.left
;
2466 reply
->win_rect
.bottom
= win
->client_rect
.bottom
- win
->client_rect
.top
;
2468 reply
->paint_flags
= win
->paint_flags
& PAINT_CLIENT_FLAGS
;
2472 /* get the surface visible region of a window */
2473 DECL_HANDLER(get_surface_region
)
2475 struct region
*region
;
2476 struct window
*win
= get_window( req
->window
);
2478 if (!win
|| !is_visible( win
)) return;
2480 if ((region
= get_surface_region( win
)))
2483 if (win
->parent
) map_win_region_to_screen( win
->parent
, region
);
2484 data
= get_region_data_and_free( region
, get_reply_max_size(), &reply
->total_size
);
2485 if (data
) set_reply_data_ptr( data
, reply
->total_size
);
2487 reply
->visible_rect
= win
->visible_rect
;
2488 if (win
->parent
) client_to_screen_rect( win
->parent
, &reply
->visible_rect
);
2492 /* get the window region */
2493 DECL_HANDLER(get_window_region
)
2496 struct window
*win
= get_window( req
->window
);
2499 if (!win
->win_region
) return;
2501 if (win
->ex_style
& WS_EX_LAYOUTRTL
)
2503 struct region
*region
= create_empty_region();
2505 if (!region
) return;
2506 if (!copy_region( region
, win
->win_region
))
2508 free_region( region
);
2511 mirror_region( &win
->window_rect
, region
);
2512 data
= get_region_data_and_free( region
, get_reply_max_size(), &reply
->total_size
);
2514 else data
= get_region_data( win
->win_region
, get_reply_max_size(), &reply
->total_size
);
2516 if (data
) set_reply_data_ptr( data
, reply
->total_size
);
2520 /* set the window region */
2521 DECL_HANDLER(set_window_region
)
2523 struct region
*region
= NULL
;
2524 struct window
*win
= get_window( req
->window
);
2528 if (get_req_data_size()) /* no data means remove the region completely */
2530 if (!(region
= create_region_from_req_data( get_req_data(), get_req_data_size() )))
2532 if (win
->ex_style
& WS_EX_LAYOUTRTL
) mirror_region( &win
->window_rect
, region
);
2534 set_window_region( win
, region
, req
->redraw
);
2538 /* get a window update region */
2539 DECL_HANDLER(get_update_region
)
2542 unsigned int flags
= req
->flags
;
2543 struct window
*from_child
= NULL
;
2544 struct window
*win
= get_window( req
->window
);
2549 if (req
->from_child
)
2553 if (!(from_child
= get_window( req
->from_child
))) return;
2555 /* make sure from_child is a child of win */
2557 while (ptr
&& ptr
!= win
) ptr
= ptr
->parent
;
2560 set_error( STATUS_INVALID_PARAMETER
);
2565 if (flags
& UPDATE_DELAYED_ERASE
) /* this means that the previous call didn't erase */
2567 if (from_child
) from_child
->paint_flags
|= PAINT_DELAYED_ERASE
;
2568 else win
->paint_flags
|= PAINT_DELAYED_ERASE
;
2571 reply
->flags
= get_window_update_flags( win
, from_child
, flags
, &win
);
2572 reply
->child
= win
->handle
;
2574 if (flags
& UPDATE_NOREGION
) return;
2576 if (win
->update_region
)
2578 /* convert update region to screen coordinates */
2579 struct region
*region
= create_empty_region();
2581 if (!region
) return;
2582 if (!copy_region( region
, win
->update_region
))
2584 free_region( region
);
2587 map_win_region_to_screen( win
, region
);
2588 if (!(data
= get_region_data_and_free( region
, get_reply_max_size(),
2589 &reply
->total_size
))) return;
2590 set_reply_data_ptr( data
, reply
->total_size
);
2593 if (reply
->flags
& (UPDATE_PAINT
|UPDATE_INTERNALPAINT
)) /* validate everything */
2595 validate_parents( win
);
2596 validate_whole_window( win
);
2600 if (reply
->flags
& UPDATE_NONCLIENT
) validate_non_client( win
);
2601 if (reply
->flags
& UPDATE_ERASE
)
2603 win
->paint_flags
&= ~(PAINT_ERASE
| PAINT_DELAYED_ERASE
);
2604 /* desktop window only gets erased, not repainted */
2605 if (is_desktop_window(win
)) validate_whole_window( win
);
2611 /* update the z order of a window so that a given rectangle is fully visible */
2612 DECL_HANDLER(update_window_zorder
)
2614 rectangle_t tmp
, rect
= req
->rect
;
2615 struct window
*ptr
, *win
= get_window( req
->window
);
2617 if (!win
|| !win
->parent
|| !is_visible( win
)) return; /* nothing to do */
2618 if (win
->ex_style
& WS_EX_LAYOUTRTL
) mirror_rect( &win
->client_rect
, &rect
);
2619 offset_rect( &rect
, win
->client_rect
.left
, win
->client_rect
.top
);
2621 LIST_FOR_EACH_ENTRY( ptr
, &win
->parent
->children
, struct window
, entry
)
2623 if (ptr
== win
) break;
2624 if (!(ptr
->style
& WS_VISIBLE
)) continue;
2625 if (ptr
->ex_style
& WS_EX_TRANSPARENT
) continue;
2626 if (ptr
->is_layered
&& (ptr
->layered_flags
& LWA_COLORKEY
)) continue;
2627 if (!intersect_rect( &tmp
, &ptr
->visible_rect
, &rect
)) continue;
2628 if (ptr
->win_region
)
2631 offset_rect( &tmp
, -ptr
->window_rect
.left
, -ptr
->window_rect
.top
);
2632 if (!rect_in_region( ptr
->win_region
, &tmp
)) continue;
2634 /* found a window obscuring the rectangle, now move win above this one */
2635 /* making sure to not violate the topmost rule */
2636 if (!(ptr
->ex_style
& WS_EX_TOPMOST
) || (win
->ex_style
& WS_EX_TOPMOST
))
2638 list_remove( &win
->entry
);
2639 list_add_before( &ptr
->entry
, &win
->entry
);
2646 /* mark parts of a window as needing a redraw */
2647 DECL_HANDLER(redraw_window
)
2649 struct region
*region
= NULL
;
2650 struct window
*win
= get_window( req
->window
);
2653 if (!is_visible( win
)) return; /* nothing to do */
2655 if (req
->flags
& (RDW_VALIDATE
|RDW_INVALIDATE
))
2657 if (get_req_data_size()) /* no data means whole rectangle */
2659 if (!(region
= create_region_from_req_data( get_req_data(), get_req_data_size() )))
2661 if (win
->ex_style
& WS_EX_LAYOUTRTL
) mirror_region( &win
->client_rect
, region
);
2665 redraw_window( win
, region
, (req
->flags
& RDW_INVALIDATE
) && (req
->flags
& RDW_FRAME
),
2667 if (region
) free_region( region
);
2671 /* set a window property */
2672 DECL_HANDLER(set_window_property
)
2674 struct unicode_str name
= get_req_unicode_str();
2675 struct window
*win
= get_window( req
->window
);
2681 atom_t atom
= add_global_atom( NULL
, &name
);
2684 set_property( win
, atom
, req
->data
, PROP_TYPE_STRING
);
2685 release_global_atom( NULL
, atom
);
2688 else set_property( win
, req
->atom
, req
->data
, PROP_TYPE_ATOM
);
2692 /* remove a window property */
2693 DECL_HANDLER(remove_window_property
)
2695 struct unicode_str name
= get_req_unicode_str();
2696 struct window
*win
= get_window( req
->window
);
2700 atom_t atom
= name
.len
? find_global_atom( NULL
, &name
) : req
->atom
;
2701 if (atom
) reply
->data
= remove_property( win
, atom
);
2706 /* get a window property */
2707 DECL_HANDLER(get_window_property
)
2709 struct unicode_str name
= get_req_unicode_str();
2710 struct window
*win
= get_window( req
->window
);
2714 atom_t atom
= name
.len
? find_global_atom( NULL
, &name
) : req
->atom
;
2715 if (atom
) reply
->data
= get_property( win
, atom
);
2720 /* get the list of properties of a window */
2721 DECL_HANDLER(get_window_properties
)
2723 property_data_t
*data
;
2724 int i
, count
, max
= get_reply_max_size() / sizeof(*data
);
2725 struct window
*win
= get_window( req
->window
);
2730 for (i
= count
= 0; i
< win
->prop_inuse
; i
++)
2731 if (win
->properties
[i
].type
!= PROP_TYPE_FREE
) count
++;
2732 reply
->total
= count
;
2734 if (count
> max
) count
= max
;
2735 if (!count
|| !(data
= set_reply_data_size( count
* sizeof(*data
) ))) return;
2737 for (i
= 0; i
< win
->prop_inuse
&& count
; i
++)
2739 if (win
->properties
[i
].type
== PROP_TYPE_FREE
) continue;
2740 data
->atom
= win
->properties
[i
].atom
;
2741 data
->string
= (win
->properties
[i
].type
== PROP_TYPE_STRING
);
2742 data
->data
= win
->properties
[i
].data
;
2749 /* get the new window pointer for a global window, checking permissions */
2750 /* helper for set_global_windows request */
2751 static int get_new_global_window( struct window
**win
, user_handle_t handle
)
2760 set_error( STATUS_ACCESS_DENIED
);
2763 *win
= get_window( handle
);
2764 return (*win
!= NULL
);
2767 /* Set/get the global windows */
2768 DECL_HANDLER(set_global_windows
)
2770 struct window
*new_shell_window
= shell_window
;
2771 struct window
*new_shell_listview
= shell_listview
;
2772 struct window
*new_progman_window
= progman_window
;
2773 struct window
*new_taskman_window
= taskman_window
;
2775 reply
->old_shell_window
= shell_window
? shell_window
->handle
: 0;
2776 reply
->old_shell_listview
= shell_listview
? shell_listview
->handle
: 0;
2777 reply
->old_progman_window
= progman_window
? progman_window
->handle
: 0;
2778 reply
->old_taskman_window
= taskman_window
? taskman_window
->handle
: 0;
2780 if (req
->flags
& SET_GLOBAL_SHELL_WINDOWS
)
2782 if (!get_new_global_window( &new_shell_window
, req
->shell_window
)) return;
2783 if (!get_new_global_window( &new_shell_listview
, req
->shell_listview
)) return;
2785 if (req
->flags
& SET_GLOBAL_PROGMAN_WINDOW
)
2787 if (!get_new_global_window( &new_progman_window
, req
->progman_window
)) return;
2789 if (req
->flags
& SET_GLOBAL_TASKMAN_WINDOW
)
2791 if (!get_new_global_window( &new_taskman_window
, req
->taskman_window
)) return;
2793 shell_window
= new_shell_window
;
2794 shell_listview
= new_shell_listview
;
2795 progman_window
= new_progman_window
;
2796 taskman_window
= new_taskman_window
;
2799 /* retrieve layered info for a window */
2800 DECL_HANDLER(get_window_layered_info
)
2802 struct window
*win
= get_window( req
->handle
);
2806 if (win
->is_layered
)
2808 reply
->color_key
= win
->color_key
;
2809 reply
->alpha
= win
->alpha
;
2810 reply
->flags
= win
->layered_flags
;
2812 else set_win32_error( ERROR_INVALID_WINDOW_HANDLE
);
2816 /* set layered info for a window */
2817 DECL_HANDLER(set_window_layered_info
)
2819 struct window
*win
= get_window( req
->handle
);
2823 if (win
->ex_style
& WS_EX_LAYERED
)
2825 int was_layered
= win
->is_layered
;
2827 if (req
->flags
& LWA_ALPHA
) win
->alpha
= req
->alpha
;
2828 else if (!win
->is_layered
) win
->alpha
= 0; /* alpha init value is 0 */
2830 win
->color_key
= req
->color_key
;
2831 win
->layered_flags
= req
->flags
;
2832 win
->is_layered
= 1;
2833 /* repaint since we know now it's not going to use UpdateLayeredWindow */
2834 if (!was_layered
) redraw_window( win
, 0, 1, RDW_INVALIDATE
| RDW_ERASE
| RDW_FRAME
);
2836 else set_win32_error( ERROR_INVALID_WINDOW_HANDLE
);