Complete unicodification of the rebar common control.
[wine/hacks.git] / server / window.c
blobae46dc9876d61ad3058ccb83f78c50f655e9b07e
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "config.h"
22 #include "wine/port.h"
24 #include <assert.h>
25 #include <stdarg.h>
27 #include "windef.h"
28 #include "winbase.h"
29 #include "wingdi.h"
30 #include "winuser.h"
32 #include "object.h"
33 #include "request.h"
34 #include "thread.h"
35 #include "process.h"
36 #include "user.h"
37 #include "unicode.h"
39 /* a window property */
40 struct property
42 unsigned short type; /* property type (see below) */
43 atom_t atom; /* property atom */
44 obj_handle_t handle; /* property handle (user-defined storage) */
47 enum property_type
49 PROP_TYPE_FREE, /* free entry */
50 PROP_TYPE_STRING, /* atom that was originally a string */
51 PROP_TYPE_ATOM /* plain atom */
55 struct window
57 struct window *parent; /* parent window */
58 user_handle_t owner; /* owner of this window */
59 struct list children; /* list of children in Z-order */
60 struct list unlinked; /* list of children not linked in the Z-order list */
61 struct list entry; /* entry in parent's children list */
62 user_handle_t handle; /* full handle for this window */
63 struct thread *thread; /* thread owning the window */
64 struct window_class *class; /* window class */
65 atom_t atom; /* class atom */
66 user_handle_t last_active; /* last active popup */
67 rectangle_t window_rect; /* window rectangle (relative to parent client area) */
68 rectangle_t visible_rect; /* visible part of window rect (relative to parent client area) */
69 rectangle_t client_rect; /* client rectangle (relative to parent client area) */
70 struct region *win_region; /* region for shaped windows (relative to window rect) */
71 struct region *update_region; /* update region (relative to window rect) */
72 unsigned int style; /* window style */
73 unsigned int ex_style; /* window extended style */
74 unsigned int id; /* window id */
75 void* instance; /* creator instance */
76 void* user_data; /* user-specific data */
77 WCHAR *text; /* window caption text */
78 unsigned int paint_flags; /* various painting flags */
79 int prop_inuse; /* number of in-use window properties */
80 int prop_alloc; /* number of allocated window properties */
81 struct property *properties; /* window properties array */
82 int nb_extra_bytes; /* number of extra bytes */
83 char extra_bytes[1]; /* extra bytes storage */
86 #define PAINT_INTERNAL 0x01 /* internal WM_PAINT pending */
87 #define PAINT_ERASE 0x02 /* needs WM_ERASEBKGND */
88 #define PAINT_NONCLIENT 0x04 /* needs WM_NCPAINT */
90 /* growable array of user handles */
91 struct user_handle_array
93 user_handle_t *handles;
94 int count;
95 int total;
98 static struct window *top_window; /* top-level (desktop) window */
100 /* global window pointers */
101 static struct window *shell_window;
102 static struct window *shell_listview;
103 static struct window *progman_window;
104 static struct window *taskman_window;
106 /* retrieve a pointer to a window from its handle */
107 inline static struct window *get_window( user_handle_t handle )
109 struct window *ret = get_user_object( handle, USER_WINDOW );
110 if (!ret) set_error( STATUS_INVALID_HANDLE );
111 return ret;
114 /* link a window into the tree (or unlink it if the new parent is NULL) */
115 static void link_window( struct window *win, struct window *parent, struct window *previous )
117 list_remove( &win->entry ); /* unlink it from the previous location */
119 if (parent)
121 win->parent = parent;
122 if (previous) list_add_after( &previous->entry, &win->entry );
123 else list_add_head( &parent->children, &win->entry );
125 else /* move it to parent unlinked list */
127 list_add_head( &win->parent->unlinked, &win->entry );
131 /* get next window in Z-order list */
132 static inline struct window *get_next_window( struct window *win )
134 struct list *ptr = list_next( &win->parent->children, &win->entry );
135 if (ptr == &win->parent->unlinked) ptr = NULL;
136 return ptr ? LIST_ENTRY( ptr, struct window, entry ) : NULL;
139 /* get previous window in Z-order list */
140 static inline struct window *get_prev_window( struct window *win )
142 struct list *ptr = list_prev( &win->parent->children, &win->entry );
143 if (ptr == &win->parent->unlinked) ptr = NULL;
144 return ptr ? LIST_ENTRY( ptr, struct window, entry ) : NULL;
147 /* get first child in Z-order list */
148 static inline struct window *get_first_child( struct window *win )
150 struct list *ptr = list_head( &win->children );
151 return ptr ? LIST_ENTRY( ptr, struct window, entry ) : NULL;
154 /* get last child in Z-order list */
155 static inline struct window *get_last_child( struct window *win )
157 struct list *ptr = list_tail( &win->children );
158 return ptr ? LIST_ENTRY( ptr, struct window, entry ) : NULL;
161 /* append a user handle to a handle array */
162 static int add_handle_to_array( struct user_handle_array *array, user_handle_t handle )
164 if (array->count >= array->total)
166 int new_total = max( array->total * 2, 32 );
167 user_handle_t *new_array = realloc( array->handles, new_total * sizeof(*new_array) );
168 if (!new_array)
170 free( array->handles );
171 set_error( STATUS_NO_MEMORY );
172 return 0;
174 array->handles = new_array;
175 array->total = new_total;
177 array->handles[array->count++] = handle;
178 return 1;
181 /* set a window property */
182 static void set_property( struct window *win, atom_t atom, obj_handle_t handle,
183 enum property_type type )
185 int i, free = -1;
186 struct property *new_props;
188 /* check if it exists already */
189 for (i = 0; i < win->prop_inuse; i++)
191 if (win->properties[i].type == PROP_TYPE_FREE)
193 free = i;
194 continue;
196 if (win->properties[i].atom == atom)
198 win->properties[i].type = type;
199 win->properties[i].handle = handle;
200 return;
204 /* need to add an entry */
205 if (!grab_global_atom( atom )) return;
206 if (free == -1)
208 /* no free entry */
209 if (win->prop_inuse >= win->prop_alloc)
211 /* need to grow the array */
212 if (!(new_props = realloc( win->properties,
213 sizeof(*new_props) * (win->prop_alloc + 16) )))
215 set_error( STATUS_NO_MEMORY );
216 release_global_atom( atom );
217 return;
219 win->prop_alloc += 16;
220 win->properties = new_props;
222 free = win->prop_inuse++;
224 win->properties[free].atom = atom;
225 win->properties[free].type = type;
226 win->properties[free].handle = handle;
229 /* remove a window property */
230 static obj_handle_t remove_property( struct window *win, atom_t atom )
232 int i;
234 for (i = 0; i < win->prop_inuse; i++)
236 if (win->properties[i].type == PROP_TYPE_FREE) continue;
237 if (win->properties[i].atom == atom)
239 release_global_atom( atom );
240 win->properties[i].type = PROP_TYPE_FREE;
241 return win->properties[i].handle;
244 /* FIXME: last error? */
245 return 0;
248 /* find a window property */
249 static obj_handle_t get_property( struct window *win, atom_t atom )
251 int i;
253 for (i = 0; i < win->prop_inuse; i++)
255 if (win->properties[i].type == PROP_TYPE_FREE) continue;
256 if (win->properties[i].atom == atom) return win->properties[i].handle;
258 /* FIXME: last error? */
259 return 0;
262 /* destroy all properties of a window */
263 inline static void destroy_properties( struct window *win )
265 int i;
267 if (!win->properties) return;
268 for (i = 0; i < win->prop_inuse; i++)
270 if (win->properties[i].type == PROP_TYPE_FREE) continue;
271 release_global_atom( win->properties[i].atom );
273 free( win->properties );
276 /* destroy a window */
277 static void destroy_window( struct window *win )
279 assert( win != top_window );
281 /* destroy all children */
282 while (!list_empty(&win->children))
283 destroy_window( LIST_ENTRY( list_head(&win->children), struct window, entry ));
284 while (!list_empty(&win->unlinked))
285 destroy_window( LIST_ENTRY( list_head(&win->unlinked), struct window, entry ));
287 if (win->thread->queue)
289 if (win->update_region) inc_queue_paint_count( win->thread, -1 );
290 if (win->paint_flags & PAINT_INTERNAL) inc_queue_paint_count( win->thread, -1 );
291 queue_cleanup_window( win->thread, win->handle );
293 /* reset global window pointers, if the corresponding window is destroyed */
294 if (win == shell_window) shell_window = NULL;
295 if (win == shell_listview) shell_listview = NULL;
296 if (win == progman_window) progman_window = NULL;
297 if (win == taskman_window) taskman_window = NULL;
298 free_user_handle( win->handle );
299 destroy_properties( win );
300 list_remove( &win->entry );
301 if (win->win_region) free_region( win->win_region );
302 if (win->update_region) free_region( win->update_region );
303 release_class( win->class );
304 if (win->text) free( win->text );
305 memset( win, 0x55, sizeof(*win) + win->nb_extra_bytes - 1 );
306 free( win );
309 /* create a new window structure (note: the window is not linked in the window tree) */
310 static struct window *create_window( struct window *parent, struct window *owner,
311 atom_t atom, void *instance )
313 int extra_bytes;
314 struct window *win;
315 struct window_class *class = grab_class( current->process, atom, instance, &extra_bytes );
317 if (!class) return NULL;
319 win = mem_alloc( sizeof(*win) + extra_bytes - 1 );
320 if (!win)
322 release_class( class );
323 return NULL;
326 if (!(win->handle = alloc_user_handle( win, USER_WINDOW )))
328 release_class( class );
329 free( win );
330 return NULL;
332 win->parent = parent;
333 win->owner = owner ? owner->handle : 0;
334 win->thread = current;
335 win->class = class;
336 win->atom = atom;
337 win->last_active = win->handle;
338 win->win_region = NULL;
339 win->update_region = NULL;
340 win->style = 0;
341 win->ex_style = 0;
342 win->id = 0;
343 win->instance = NULL;
344 win->user_data = NULL;
345 win->text = NULL;
346 win->paint_flags = 0;
347 win->prop_inuse = 0;
348 win->prop_alloc = 0;
349 win->properties = NULL;
350 win->nb_extra_bytes = extra_bytes;
351 memset( win->extra_bytes, 0, extra_bytes );
352 list_init( &win->children );
353 list_init( &win->unlinked );
355 /* put it on parent unlinked list */
356 if (parent) list_add_head( &parent->unlinked, &win->entry );
358 /* if parent belongs to a different thread, attach the two threads */
359 if (parent && parent->thread && parent->thread != current)
360 attach_thread_input( current, parent->thread );
361 return win;
364 /* destroy all windows belonging to a given thread */
365 void destroy_thread_windows( struct thread *thread )
367 user_handle_t handle = 0;
368 struct window *win;
370 while ((win = next_user_handle( &handle, USER_WINDOW )))
372 if (win->thread != thread) continue;
373 destroy_window( win );
377 /* check whether child is a descendant of parent */
378 int is_child_window( user_handle_t parent, user_handle_t child )
380 struct window *child_ptr = get_user_object( child, USER_WINDOW );
381 struct window *parent_ptr = get_user_object( parent, USER_WINDOW );
383 if (!child_ptr || !parent_ptr) return 0;
384 while (child_ptr->parent)
386 if (child_ptr->parent == parent_ptr) return 1;
387 child_ptr = child_ptr->parent;
389 return 0;
392 /* check whether window is a top-level window */
393 int is_top_level_window( user_handle_t window )
395 struct window *win = get_user_object( window, USER_WINDOW );
396 return (win && win->parent == top_window);
399 /* make a window active if possible */
400 int make_window_active( user_handle_t window )
402 struct window *owner, *win = get_window( window );
404 if (!win) return 0;
406 /* set last active for window and its owner */
407 win->last_active = win->handle;
408 if ((owner = get_user_object( win->owner, USER_WINDOW ))) owner->last_active = win->handle;
409 return 1;
412 /* increment (or decrement) the window paint count */
413 static inline void inc_window_paint_count( struct window *win, int incr )
415 if (win->thread) inc_queue_paint_count( win->thread, incr );
418 /* check if window and all its ancestors are visible */
419 static int is_visible( const struct window *win )
421 while (win && win != top_window)
423 if (!(win->style & WS_VISIBLE)) return 0;
424 win = win->parent;
425 /* if parent is minimized children are not visible */
426 if (win && (win->style & WS_MINIMIZE)) return 0;
428 return 1;
431 /* same as is_visible but takes a window handle */
432 int is_window_visible( user_handle_t window )
434 struct window *win = get_user_object( window, USER_WINDOW );
435 if (!win) return 0;
436 return is_visible( win );
439 /* check if point is inside the window */
440 static inline int is_point_in_window( struct window *win, int x, int y )
442 if (!(win->style & WS_VISIBLE)) return 0; /* not visible */
443 if ((win->style & (WS_POPUP|WS_CHILD|WS_DISABLED)) == (WS_CHILD|WS_DISABLED))
444 return 0; /* disabled child */
445 if ((win->ex_style & (WS_EX_LAYERED|WS_EX_TRANSPARENT)) == (WS_EX_LAYERED|WS_EX_TRANSPARENT))
446 return 0; /* transparent */
447 if (x < win->visible_rect.left || x >= win->visible_rect.right ||
448 y < win->visible_rect.top || y >= win->visible_rect.bottom)
449 return 0; /* not in window */
450 if (win->win_region &&
451 !point_in_region( win->win_region, x - win->window_rect.left, y - win->window_rect.top ))
452 return 0; /* not in window region */
453 return 1;
456 /* find child of 'parent' that contains the given point (in parent-relative coords) */
457 static struct window *child_window_from_point( struct window *parent, int x, int y )
459 struct window *ptr;
461 LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
463 if (!is_point_in_window( ptr, x, y )) continue; /* skip it */
465 /* if window is minimized or disabled, return at once */
466 if (ptr->style & (WS_MINIMIZE|WS_DISABLED)) return ptr;
468 /* if point is not in client area, return at once */
469 if (x < ptr->client_rect.left || x >= ptr->client_rect.right ||
470 y < ptr->client_rect.top || y >= ptr->client_rect.bottom)
471 return ptr;
473 return child_window_from_point( ptr, x - ptr->client_rect.left, y - ptr->client_rect.top );
475 return parent; /* not found any child */
478 /* find all children of 'parent' that contain the given point */
479 static int get_window_children_from_point( struct window *parent, int x, int y,
480 struct user_handle_array *array )
482 struct window *ptr;
484 LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
486 if (!is_point_in_window( ptr, x, y )) continue; /* skip it */
488 /* if point is in client area, and window is not minimized or disabled, check children */
489 if (!(ptr->style & (WS_MINIMIZE|WS_DISABLED)) &&
490 x >= ptr->client_rect.left && x < ptr->client_rect.right &&
491 y >= ptr->client_rect.top && y < ptr->client_rect.bottom)
493 if (!get_window_children_from_point( ptr, x - ptr->client_rect.left,
494 y - ptr->client_rect.top, array ))
495 return 0;
498 /* now add window to the array */
499 if (!add_handle_to_array( array, ptr->handle )) return 0;
501 return 1;
504 /* find window containing point (in absolute coords) */
505 user_handle_t window_from_point( int x, int y )
507 struct window *ret;
509 if (!top_window) return 0;
510 ret = child_window_from_point( top_window, x, y );
511 return ret->handle;
514 /* return list of all windows containing point (in absolute coords) */
515 static int all_windows_from_point( struct window *top, int x, int y, struct user_handle_array *array )
517 struct window *ptr;
519 /* make point relative to top window */
520 for (ptr = top->parent; ptr && ptr != top_window; ptr = ptr->parent)
522 x -= ptr->client_rect.left;
523 y -= ptr->client_rect.top;
526 if (!is_point_in_window( top, x, y )) return 1;
528 /* if point is in client area, and window is not minimized or disabled, check children */
529 if (!(top->style & (WS_MINIMIZE|WS_DISABLED)) &&
530 x >= top->client_rect.left && x < top->client_rect.right &&
531 y >= top->client_rect.top && y < top->client_rect.bottom)
533 if (!get_window_children_from_point( top, x - top->client_rect.left,
534 y - top->client_rect.top, array ))
535 return 0;
537 /* now add window to the array */
538 if (!add_handle_to_array( array, top->handle )) return 0;
539 return 1;
543 /* return the thread owning a window */
544 struct thread *get_window_thread( user_handle_t handle )
546 struct window *win = get_user_object( handle, USER_WINDOW );
547 if (!win || !win->thread) return NULL;
548 return (struct thread *)grab_object( win->thread );
552 /* check if any area of a window needs repainting */
553 static inline int win_needs_repaint( struct window *win )
555 return win->update_region || (win->paint_flags & PAINT_INTERNAL);
559 /* find a child of the specified window that needs repainting */
560 static struct window *find_child_to_repaint( struct window *parent, struct thread *thread )
562 struct window *ptr, *ret = NULL;
564 LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
566 if (!(ptr->style & WS_VISIBLE)) continue;
567 if (ptr->thread == thread && win_needs_repaint( ptr ))
568 ret = ptr;
569 else if (!(ptr->style & WS_MINIMIZE)) /* explore its children */
570 ret = find_child_to_repaint( ptr, thread );
571 if (ret) break;
574 if (ret && (ret->ex_style & WS_EX_TRANSPARENT))
576 /* transparent window, check for non-transparent sibling to paint first */
577 for (ptr = get_next_window(ret); ptr; ptr = get_next_window(ptr))
579 if (!(ptr->style & WS_VISIBLE)) continue;
580 if (ptr->ex_style & WS_EX_TRANSPARENT) continue;
581 if (ptr->thread != thread) continue;
582 if (win_needs_repaint( ptr )) return ptr;
585 return ret;
589 /* find a window that needs to receive a WM_PAINT; also clear its internal paint flag */
590 user_handle_t find_window_to_repaint( user_handle_t parent, struct thread *thread )
592 struct window *ptr, *win = find_child_to_repaint( top_window, thread );
594 if (win && parent)
596 /* check that it is a child of the specified parent */
597 for (ptr = win; ptr; ptr = ptr->parent)
598 if (ptr->handle == parent) break;
599 /* otherwise don't return any window, we don't repaint a child before its parent */
600 if (!ptr) win = NULL;
602 if (!win) return 0;
603 win->paint_flags &= ~PAINT_INTERNAL;
604 return win->handle;
608 /* intersect the window region with the specified region, relative to the window parent */
609 static struct region *intersect_window_region( struct region *region, struct window *win )
611 /* make region relative to window rect */
612 offset_region( region, -win->window_rect.left, -win->window_rect.top );
613 if (!intersect_region( region, region, win->win_region )) return NULL;
614 /* make region relative to parent again */
615 offset_region( region, win->window_rect.left, win->window_rect.top );
616 return region;
620 /* clip all children of a given window out of the visible region */
621 static struct region *clip_children( struct window *parent, struct window *last,
622 struct region *region, int offset_x, int offset_y )
624 struct window *ptr;
625 struct region *tmp = create_empty_region();
627 if (!tmp) return NULL;
628 LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
630 if (ptr == last) break;
631 if (!(ptr->style & WS_VISIBLE)) continue;
632 if (ptr->ex_style & WS_EX_TRANSPARENT) continue;
633 set_region_rect( tmp, &ptr->visible_rect );
634 if (ptr->win_region && !intersect_window_region( tmp, ptr ))
636 free_region( tmp );
637 return NULL;
639 offset_region( tmp, offset_x, offset_y );
640 if (!(region = subtract_region( region, region, tmp ))) break;
641 if (is_region_empty( region )) break;
643 free_region( tmp );
644 return region;
648 /* compute the intersection of two rectangles; return 0 if the result is empty */
649 static inline int intersect_rect( rectangle_t *dst, const rectangle_t *src1, const rectangle_t *src2 )
651 dst->left = max( src1->left, src2->left );
652 dst->top = max( src1->top, src2->top );
653 dst->right = min( src1->right, src2->right );
654 dst->bottom = min( src1->bottom, src2->bottom );
655 return (dst->left < dst->right && dst->top < dst->bottom);
659 /* set the region to the client rect clipped by the window rect, in parent-relative coordinates */
660 static void set_region_client_rect( struct region *region, struct window *win )
662 rectangle_t rect;
664 intersect_rect( &rect, &win->window_rect, &win->client_rect );
665 set_region_rect( region, &rect );
669 /* get the top-level window to clip against for a given window */
670 static inline struct window *get_top_clipping_window( struct window *win )
672 while (win->parent && win->parent != top_window) win = win->parent;
673 return win;
677 /* compute the visible region of a window */
678 static struct region *get_visible_region( struct window *win, unsigned int flags )
680 struct region *tmp, *region;
681 int offset_x, offset_y;
682 struct window *top = get_top_clipping_window( win );
684 if (!(region = create_empty_region())) return NULL;
686 /* first check if all ancestors are visible */
688 if (!is_visible( win )) return region; /* empty region */
690 /* create a region relative to the window itself */
692 if ((flags & DCX_PARENTCLIP) && win != top && win->parent)
694 set_region_client_rect( region, win->parent );
695 offset_region( region, -win->parent->client_rect.left, -win->parent->client_rect.top );
696 offset_x = win->client_rect.left;
697 offset_y = win->client_rect.top;
699 else if (flags & DCX_WINDOW)
701 set_region_rect( region, &win->visible_rect );
702 if (win->win_region && !intersect_window_region( region, win )) goto error;
703 offset_x = win->window_rect.left;
704 offset_y = win->window_rect.top;
706 else
708 set_region_client_rect( region, win );
709 if (win->win_region && !intersect_window_region( region, win )) goto error;
710 offset_x = win->client_rect.left;
711 offset_y = win->client_rect.top;
713 offset_region( region, -offset_x, -offset_y );
715 /* clip children */
717 if (flags & DCX_CLIPCHILDREN)
719 if (!clip_children( win, NULL, region,
720 offset_x - win->client_rect.left,
721 offset_y - win->client_rect.top )) goto error;
724 /* clip siblings of ancestors */
726 if (top && top != win && (tmp = create_empty_region()) != NULL)
728 offset_region( region, offset_x, offset_y ); /* make it relative to parent */
729 while (win != top && win->parent)
731 if (win->style & WS_CLIPSIBLINGS)
733 if (!clip_children( win->parent, win, region, 0, 0 )) goto error;
734 if (is_region_empty( region )) break;
736 /* clip to parent client area */
737 win = win->parent;
738 offset_x += win->client_rect.left;
739 offset_y += win->client_rect.top;
740 offset_region( region, win->client_rect.left, win->client_rect.top );
741 set_region_client_rect( tmp, win );
742 if (win->win_region && !intersect_window_region( tmp, win ))
744 free_region( tmp );
745 goto error;
747 if (!intersect_region( region, region, tmp ))
749 free_region( tmp );
750 goto error;
752 if (is_region_empty( region )) break;
754 offset_region( region, -offset_x, -offset_y ); /* make it relative to target window again */
755 free_region( tmp );
757 return region;
759 error:
760 free_region( region );
761 return NULL;
765 /* get the window class of a window */
766 struct window_class* get_window_class( user_handle_t window )
768 struct window *win;
769 if (!(win = get_window( window ))) return NULL;
770 return win->class;
773 /* return a copy of the specified region cropped to the window client or frame rectangle, */
774 /* and converted from client to window coordinates. Helper for (in)validate_window. */
775 static struct region *crop_region_to_win_rect( struct window *win, struct region *region, int frame )
777 struct region *tmp = create_empty_region();
779 if (!tmp) return NULL;
781 /* get bounding rect in client coords */
782 if (frame) set_region_rect( tmp, &win->window_rect );
783 else set_region_client_rect( tmp, win );
784 offset_region( tmp, -win->client_rect.left, -win->client_rect.top );
786 /* intersect specified region with bounding rect */
787 if (region && !intersect_region( tmp, region, tmp )) goto done;
788 if (is_region_empty( tmp )) goto done;
790 /* map it to window coords */
791 offset_region( tmp, win->client_rect.left - win->window_rect.left,
792 win->client_rect.top - win->window_rect.top );
793 return tmp;
795 done:
796 free_region( tmp );
797 return NULL;
801 /* set a region as new update region for the window */
802 static void set_update_region( struct window *win, struct region *region )
804 if (region && !is_region_empty( region ))
806 if (!win->update_region) inc_window_paint_count( win, 1 );
807 else free_region( win->update_region );
808 win->update_region = region;
810 else
812 if (win->update_region) inc_window_paint_count( win, -1 );
813 win->paint_flags &= ~(PAINT_ERASE | PAINT_NONCLIENT);
814 win->update_region = NULL;
815 if (region) free_region( region );
820 /* add a region to the update region; the passed region is freed or reused */
821 static int add_update_region( struct window *win, struct region *region )
823 if (win->update_region && !union_region( region, win->update_region, region ))
825 free_region( region );
826 return 0;
828 set_update_region( win, region );
829 return 1;
833 /* validate the non client area of a window */
834 static void validate_non_client( struct window *win )
836 struct region *tmp;
837 rectangle_t rect;
839 if (!win->update_region) return; /* nothing to do */
841 /* get client rect in window coords */
842 rect.left = win->client_rect.left - win->window_rect.left;
843 rect.top = win->client_rect.top - win->window_rect.top;
844 rect.right = win->client_rect.right - win->window_rect.left;
845 rect.bottom = win->client_rect.bottom - win->window_rect.top;
847 if ((tmp = create_empty_region()))
849 set_region_rect( tmp, &rect );
850 if (intersect_region( tmp, win->update_region, tmp ))
851 set_update_region( win, tmp );
852 else
853 free_region( tmp );
855 win->paint_flags &= ~PAINT_NONCLIENT;
859 /* validate a window completely so that we don't get any further paint messages for it */
860 static void validate_whole_window( struct window *win )
862 set_update_region( win, NULL );
864 if (win->paint_flags & PAINT_INTERNAL)
866 win->paint_flags &= ~PAINT_INTERNAL;
867 inc_window_paint_count( win, -1 );
872 /* validate the update region of a window on all parents; helper for redraw_window */
873 static void validate_parents( struct window *child )
875 int offset_x = 0, offset_y = 0;
876 struct window *win = child;
877 struct region *tmp = NULL;
879 if (!child->update_region) return;
881 while (win->parent && win->parent != top_window)
883 /* map to parent client coords */
884 offset_x += win->window_rect.left;
885 offset_y += win->window_rect.top;
887 win = win->parent;
889 /* and now map to window coords */
890 offset_x += win->client_rect.left - win->window_rect.left;
891 offset_y += win->client_rect.top - win->window_rect.top;
893 if (win->update_region && !(win->style & WS_CLIPCHILDREN))
895 if (!tmp && !(tmp = create_empty_region())) return;
896 offset_region( child->update_region, offset_x, offset_y );
897 if (subtract_region( tmp, win->update_region, child->update_region ))
899 set_update_region( win, tmp );
900 tmp = NULL;
902 /* restore child coords */
903 offset_region( child->update_region, -offset_x, -offset_y );
906 if (tmp) free_region( tmp );
910 /* add/subtract a region (in client coordinates) to the update region of the window */
911 static void redraw_window( struct window *win, struct region *region, int frame, unsigned int flags )
913 struct region *tmp;
914 struct window *child;
916 if (flags & RDW_INVALIDATE)
918 if (!(tmp = crop_region_to_win_rect( win, region, frame ))) return;
920 if (!add_update_region( win, tmp )) return;
922 if (flags & RDW_FRAME) win->paint_flags |= PAINT_NONCLIENT;
923 if (flags & RDW_ERASE) win->paint_flags |= PAINT_ERASE;
925 else if (flags & RDW_VALIDATE)
927 if (!region && (flags & RDW_NOFRAME)) /* shortcut: validate everything */
929 set_update_region( win, NULL );
931 else if (win->update_region)
933 if ((tmp = crop_region_to_win_rect( win, region, frame )))
935 if (!subtract_region( tmp, win->update_region, tmp ))
937 free_region( tmp );
938 return;
940 set_update_region( win, tmp );
942 if (flags & RDW_NOFRAME) validate_non_client( win );
943 if (flags & RDW_NOERASE) win->paint_flags &= ~PAINT_ERASE;
947 if ((flags & RDW_INTERNALPAINT) && !(win->paint_flags & PAINT_INTERNAL))
949 win->paint_flags |= PAINT_INTERNAL;
950 inc_window_paint_count( win, 1 );
952 else if ((flags & RDW_NOINTERNALPAINT) && (win->paint_flags & PAINT_INTERNAL))
954 win->paint_flags &= ~PAINT_INTERNAL;
955 inc_window_paint_count( win, -1 );
958 if (flags & RDW_UPDATENOW)
960 validate_parents( win );
961 flags &= ~RDW_UPDATENOW;
964 /* now process children recursively */
966 if (flags & RDW_NOCHILDREN) return;
967 if (win->style & WS_MINIMIZE) return;
968 if ((win->style & WS_CLIPCHILDREN) && !(flags & RDW_ALLCHILDREN)) return;
970 if (!(tmp = crop_region_to_win_rect( win, region, 0 ))) return;
972 /* map to client coordinates */
973 offset_region( tmp, win->window_rect.left - win->client_rect.left,
974 win->window_rect.top - win->client_rect.top );
976 if (flags & RDW_INVALIDATE) flags |= RDW_FRAME | RDW_ERASE;
978 LIST_FOR_EACH_ENTRY( child, &win->children, struct window, entry )
980 if (!(child->style & WS_VISIBLE)) continue;
981 if (!rect_in_region( tmp, &child->window_rect )) continue;
982 offset_region( tmp, -child->client_rect.left, -child->client_rect.top );
983 redraw_window( child, tmp, 1, flags );
984 offset_region( tmp, child->client_rect.left, child->client_rect.top );
986 free_region( tmp );
990 /* retrieve the update flags for a window depending on the state of the update region */
991 static unsigned int get_update_flags( struct window *win, unsigned int flags )
993 unsigned int ret = 0;
995 if (flags & UPDATE_NONCLIENT)
997 if ((win->paint_flags & PAINT_NONCLIENT) && win->update_region) ret |= UPDATE_NONCLIENT;
999 if (flags & UPDATE_ERASE)
1001 if ((win->paint_flags & PAINT_ERASE) && win->update_region) ret |= UPDATE_ERASE;
1003 if (flags & UPDATE_PAINT)
1005 if (win->update_region) ret |= UPDATE_PAINT;
1007 if (flags & UPDATE_INTERNALPAINT)
1009 if (win->paint_flags & PAINT_INTERNAL) ret |= UPDATE_INTERNALPAINT;
1011 return ret;
1015 /* iterate through the children of the given window until we find one with some update flags */
1016 static unsigned int get_child_update_flags( struct window *win, unsigned int flags,
1017 struct window **child )
1019 struct window *ptr;
1020 unsigned int ret = 0;
1022 LIST_FOR_EACH_ENTRY( ptr, &win->children, struct window, entry )
1024 if (!(ptr->style & WS_VISIBLE)) continue;
1025 if ((ret = get_update_flags( ptr, flags )) != 0)
1027 *child = ptr;
1028 break;
1030 if (ptr->style & WS_MINIMIZE) continue;
1032 /* Note: the WS_CLIPCHILDREN test is the opposite of the invalidation case,
1033 * here we only want to repaint children of windows that clip them, others
1034 * need to wait for WM_PAINT to be done in the parent first.
1036 if (!(flags & UPDATE_NOCHILDREN) &&
1037 ((flags & UPDATE_ALLCHILDREN) || (ptr->style & WS_CLIPCHILDREN)))
1039 if ((ret = get_child_update_flags( ptr, flags, child ))) break;
1042 return ret;
1046 /* expose a region of a window, looking for the top most parent that needs to be exposed */
1047 /* the region is in window coordinates */
1048 static void expose_window( struct window *win, struct region *region )
1050 struct window *parent, *ptr;
1051 int offset_x, offset_y;
1052 struct window *top = get_top_clipping_window( win );
1054 /* find the top most parent that doesn't clip either siblings or children */
1055 for (parent = ptr = win; ptr != top; ptr = ptr->parent)
1057 if (!(ptr->style & WS_CLIPCHILDREN)) parent = ptr;
1058 if (!(ptr->style & WS_CLIPSIBLINGS)) parent = ptr->parent;
1060 if (parent == win && parent != top && win->parent)
1061 parent = win->parent; /* always go up at least one level if possible */
1063 offset_x = win->window_rect.left - win->client_rect.left;
1064 offset_y = win->window_rect.top - win->client_rect.top;
1065 for (ptr = win; ptr != parent; ptr = ptr->parent)
1067 offset_x += ptr->client_rect.left;
1068 offset_y += ptr->client_rect.top;
1070 offset_region( region, offset_x, offset_y );
1071 redraw_window( parent, region, 0, RDW_INVALIDATE | RDW_ERASE | RDW_ALLCHILDREN );
1072 offset_region( region, -offset_x, -offset_y );
1076 /* set the window and client rectangles, updating the update region if necessary */
1077 static void set_window_pos( struct window *win, struct window *previous,
1078 unsigned int swp_flags, const rectangle_t *window_rect,
1079 const rectangle_t *client_rect, const rectangle_t *visible_rect,
1080 const rectangle_t *valid_rects )
1082 struct region *old_vis_rgn = NULL, *new_vis_rgn;
1083 const rectangle_t old_window_rect = win->window_rect;
1084 const rectangle_t old_visible_rect = win->visible_rect;
1085 const rectangle_t old_client_rect = win->client_rect;
1086 int visible = (win->style & WS_VISIBLE) || (swp_flags & SWP_SHOWWINDOW);
1088 if (win->parent && !is_visible( win->parent )) visible = 0;
1090 if (visible && !(old_vis_rgn = get_visible_region( win, DCX_WINDOW ))) return;
1092 /* set the new window info before invalidating anything */
1094 win->window_rect = *window_rect;
1095 win->visible_rect = *visible_rect;
1096 win->client_rect = *client_rect;
1097 if (!(swp_flags & SWP_NOZORDER)) link_window( win, win->parent, previous );
1098 if (swp_flags & SWP_SHOWWINDOW) win->style |= WS_VISIBLE;
1099 else if (swp_flags & SWP_HIDEWINDOW) win->style &= ~WS_VISIBLE;
1101 /* if the window is not visible, everything is easy */
1102 if (!visible) return;
1104 if (!(new_vis_rgn = get_visible_region( win, DCX_WINDOW )))
1106 free_region( old_vis_rgn );
1107 clear_error(); /* ignore error since the window info has been modified already */
1108 return;
1111 /* expose anything revealed by the change */
1113 if (!(swp_flags & SWP_NOREDRAW))
1115 offset_region( old_vis_rgn, old_window_rect.left - window_rect->left,
1116 old_window_rect.top - window_rect->top );
1117 if (xor_region( new_vis_rgn, old_vis_rgn, new_vis_rgn ))
1118 expose_window( win, new_vis_rgn );
1120 free_region( old_vis_rgn );
1122 if (!(win->style & WS_VISIBLE))
1124 /* clear the update region since the window is no longer visible */
1125 validate_whole_window( win );
1126 goto done;
1129 if (swp_flags & SWP_NOREDRAW) goto done; /* do not repaint anything */
1131 /* expose the whole non-client area if it changed in any way */
1133 if ((swp_flags & SWP_FRAMECHANGED) ||
1134 memcmp( window_rect, &old_window_rect, sizeof(old_window_rect) ) ||
1135 memcmp( visible_rect, &old_visible_rect, sizeof(old_visible_rect) ) ||
1136 memcmp( client_rect, &old_client_rect, sizeof(old_client_rect) ))
1138 struct region *tmp = create_empty_region();
1140 if (tmp)
1142 /* subtract the valid portion of client rect from the total region */
1143 if (!memcmp( client_rect, &old_client_rect, sizeof(old_client_rect) ))
1144 set_region_rect( tmp, client_rect );
1145 else if (valid_rects)
1146 set_region_rect( tmp, &valid_rects[0] );
1148 set_region_rect( new_vis_rgn, window_rect );
1149 if (subtract_region( tmp, new_vis_rgn, tmp ))
1151 offset_region( tmp, -client_rect->left, -client_rect->top );
1152 redraw_window( win, tmp, 1, RDW_INVALIDATE | RDW_ERASE | RDW_FRAME | RDW_ALLCHILDREN );
1154 free_region( tmp );
1158 done:
1159 free_region( new_vis_rgn );
1160 clear_error(); /* we ignore out of memory errors once the new rects have been set */
1164 /* create a window */
1165 DECL_HANDLER(create_window)
1167 struct window *win;
1169 reply->handle = 0;
1170 if (!req->parent) /* return desktop window */
1172 if (!top_window)
1174 if (!(top_window = create_window( NULL, NULL, req->atom, req->instance ))) return;
1175 top_window->thread = NULL; /* no thread owns the desktop */
1176 top_window->style = WS_POPUP | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN;
1178 win = top_window;
1180 else
1182 struct window *parent, *owner = NULL;
1184 if (!(parent = get_window( req->parent ))) return;
1185 if (req->owner && !(owner = get_window( req->owner ))) return;
1186 if (owner == top_window) owner = NULL;
1187 else if (owner && parent != top_window)
1189 /* an owned window must be created as top-level */
1190 set_error( STATUS_ACCESS_DENIED );
1191 return;
1193 if (!(win = create_window( parent, owner, req->atom, req->instance ))) return;
1195 reply->handle = win->handle;
1196 reply->extra = win->nb_extra_bytes;
1197 reply->class_ptr = get_class_client_ptr( win->class );
1201 /* link a window into the tree */
1202 DECL_HANDLER(link_window)
1204 struct window *win, *parent = NULL, *previous = NULL;
1206 if (!(win = get_window( req->handle ))) return;
1207 if (req->parent && !(parent = get_window( req->parent ))) return;
1209 if (win == top_window)
1211 set_error( STATUS_INVALID_PARAMETER );
1212 return;
1214 reply->full_parent = parent ? parent->handle : 0;
1215 if (parent && req->previous)
1217 if (req->previous == (user_handle_t)1) /* special case: HWND_BOTTOM */
1219 previous = get_last_child( parent );
1220 if (previous == win) return; /* nothing to do */
1222 else
1224 if (!(previous = get_window( req->previous ))) return;
1225 /* previous must be a child of parent, and not win itself */
1226 if (previous->parent != parent || previous == win)
1228 set_error( STATUS_INVALID_PARAMETER );
1229 return;
1233 link_window( win, parent, previous );
1237 /* destroy a window */
1238 DECL_HANDLER(destroy_window)
1240 struct window *win = get_window( req->handle );
1241 if (win)
1243 if (win != top_window) destroy_window( win );
1244 else set_error( STATUS_ACCESS_DENIED );
1249 /* set a window owner */
1250 DECL_HANDLER(set_window_owner)
1252 struct window *win = get_window( req->handle );
1253 struct window *owner = NULL;
1255 if (!win) return;
1256 if (req->owner && !(owner = get_window( req->owner ))) return;
1257 if (win == top_window)
1259 set_error( STATUS_ACCESS_DENIED );
1260 return;
1262 reply->prev_owner = win->owner;
1263 reply->full_owner = win->owner = owner ? owner->handle : 0;
1267 /* get information from a window handle */
1268 DECL_HANDLER(get_window_info)
1270 struct window *win = get_window( req->handle );
1272 reply->full_handle = 0;
1273 reply->tid = reply->pid = 0;
1274 if (win)
1276 reply->full_handle = win->handle;
1277 reply->last_active = win->handle;
1278 if (get_user_object( win->last_active, USER_WINDOW )) reply->last_active = win->last_active;
1279 if (win->thread)
1281 reply->tid = get_thread_id( win->thread );
1282 reply->pid = get_process_id( win->thread->process );
1283 reply->atom = get_class_atom( win->class );
1289 /* set some information in a window */
1290 DECL_HANDLER(set_window_info)
1292 struct window *win = get_window( req->handle );
1294 if (!win) return;
1295 if (req->flags && win == top_window)
1297 set_error( STATUS_ACCESS_DENIED );
1298 return;
1300 if (req->extra_size > sizeof(req->extra_value) ||
1301 req->extra_offset < -1 ||
1302 req->extra_offset > win->nb_extra_bytes - (int)req->extra_size)
1304 set_win32_error( ERROR_INVALID_INDEX );
1305 return;
1307 if (req->extra_offset != -1)
1309 memcpy( &reply->old_extra_value, win->extra_bytes + req->extra_offset, req->extra_size );
1311 else if (req->flags & SET_WIN_EXTRA)
1313 set_win32_error( ERROR_INVALID_INDEX );
1314 return;
1316 reply->old_style = win->style;
1317 reply->old_ex_style = win->ex_style;
1318 reply->old_id = win->id;
1319 reply->old_instance = win->instance;
1320 reply->old_user_data = win->user_data;
1321 if (req->flags & SET_WIN_STYLE) win->style = req->style;
1322 if (req->flags & SET_WIN_EXSTYLE) win->ex_style = req->ex_style;
1323 if (req->flags & SET_WIN_ID) win->id = req->id;
1324 if (req->flags & SET_WIN_INSTANCE) win->instance = req->instance;
1325 if (req->flags & SET_WIN_USERDATA) win->user_data = req->user_data;
1326 if (req->flags & SET_WIN_EXTRA) memcpy( win->extra_bytes + req->extra_offset,
1327 &req->extra_value, req->extra_size );
1329 /* changing window style triggers a non-client paint */
1330 if (req->flags & SET_WIN_STYLE) win->paint_flags |= PAINT_NONCLIENT;
1334 /* get a list of the window parents, up to the root of the tree */
1335 DECL_HANDLER(get_window_parents)
1337 struct window *ptr, *win = get_window( req->handle );
1338 int total = 0;
1339 user_handle_t *data;
1340 size_t len;
1342 if (win) for (ptr = win->parent; ptr; ptr = ptr->parent) total++;
1344 reply->count = total;
1345 len = min( get_reply_max_size(), total * sizeof(user_handle_t) );
1346 if (len && ((data = set_reply_data_size( len ))))
1348 for (ptr = win->parent; ptr && len; ptr = ptr->parent, len -= sizeof(*data))
1349 *data++ = ptr->handle;
1354 /* get a list of the window children */
1355 DECL_HANDLER(get_window_children)
1357 struct window *ptr, *parent = get_window( req->parent );
1358 int total = 0;
1359 user_handle_t *data;
1360 size_t len;
1362 if (parent)
1364 LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
1366 if (req->atom && get_class_atom(ptr->class) != req->atom) continue;
1367 if (req->tid && get_thread_id(ptr->thread) != req->tid) continue;
1368 total++;
1371 reply->count = total;
1372 len = min( get_reply_max_size(), total * sizeof(user_handle_t) );
1373 if (len && ((data = set_reply_data_size( len ))))
1375 LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
1377 if (len < sizeof(*data)) break;
1378 if (req->atom && get_class_atom(ptr->class) != req->atom) continue;
1379 if (req->tid && get_thread_id(ptr->thread) != req->tid) continue;
1380 *data++ = ptr->handle;
1381 len -= sizeof(*data);
1387 /* get a list of the window children that contain a given point */
1388 DECL_HANDLER(get_window_children_from_point)
1390 struct user_handle_array array;
1391 struct window *parent = get_window( req->parent );
1392 size_t len;
1394 if (!parent) return;
1396 array.handles = NULL;
1397 array.count = 0;
1398 array.total = 0;
1399 if (!all_windows_from_point( parent, req->x, req->y, &array )) return;
1401 reply->count = array.count;
1402 len = min( get_reply_max_size(), array.count * sizeof(user_handle_t) );
1403 if (len) set_reply_data_ptr( array.handles, len );
1404 else free( array.handles );
1408 /* get window tree information from a window handle */
1409 DECL_HANDLER(get_window_tree)
1411 struct window *ptr, *win = get_window( req->handle );
1413 if (!win) return;
1415 reply->parent = 0;
1416 reply->owner = 0;
1417 reply->next_sibling = 0;
1418 reply->prev_sibling = 0;
1419 reply->first_sibling = 0;
1420 reply->last_sibling = 0;
1421 reply->first_child = 0;
1422 reply->last_child = 0;
1424 if (win->parent)
1426 struct window *parent = win->parent;
1427 reply->parent = parent->handle;
1428 reply->owner = win->owner;
1429 if ((ptr = get_next_window( win ))) reply->next_sibling = ptr->handle;
1430 if ((ptr = get_prev_window( win ))) reply->prev_sibling = ptr->handle;
1431 if ((ptr = get_first_child( parent ))) reply->first_sibling = ptr->handle;
1432 if ((ptr = get_last_child( parent ))) reply->last_sibling = ptr->handle;
1434 if ((ptr = get_first_child( win ))) reply->first_child = ptr->handle;
1435 if ((ptr = get_last_child( win ))) reply->last_child = ptr->handle;
1439 /* set the position and Z order of a window */
1440 DECL_HANDLER(set_window_pos)
1442 const rectangle_t *visible_rect = NULL, *valid_rects = NULL;
1443 struct window *previous = NULL;
1444 struct window *win = get_window( req->handle );
1445 unsigned int flags = req->flags;
1447 if (!win) return;
1448 if (!win->parent) flags |= SWP_NOZORDER; /* no Z order for the desktop */
1450 if (!(flags & SWP_NOZORDER))
1452 if (!req->previous) /* special case: HWND_TOP */
1454 if (get_first_child(win->parent) == win) flags |= SWP_NOZORDER;
1456 else if (req->previous == (user_handle_t)1) /* special case: HWND_BOTTOM */
1458 previous = get_last_child( win->parent );
1460 else
1462 if (!(previous = get_window( req->previous ))) return;
1463 /* previous must be a sibling */
1464 if (previous->parent != win->parent)
1466 set_error( STATUS_INVALID_PARAMETER );
1467 return;
1470 if (previous == win) flags |= SWP_NOZORDER; /* nothing to do */
1473 /* window rectangle must be ordered properly */
1474 if (req->window.right < req->window.left || req->window.bottom < req->window.top)
1476 set_error( STATUS_INVALID_PARAMETER );
1477 return;
1480 if (get_req_data_size() >= sizeof(rectangle_t)) visible_rect = get_req_data();
1481 if (get_req_data_size() >= 3 * sizeof(rectangle_t)) valid_rects = visible_rect + 1;
1483 if (!visible_rect) visible_rect = &req->window;
1484 set_window_pos( win, previous, flags, &req->window, &req->client, visible_rect, valid_rects );
1485 reply->new_style = win->style;
1489 /* get the window and client rectangles of a window */
1490 DECL_HANDLER(get_window_rectangles)
1492 struct window *win = get_window( req->handle );
1494 if (win)
1496 reply->window = win->window_rect;
1497 reply->visible = win->visible_rect;
1498 reply->client = win->client_rect;
1503 /* get the window text */
1504 DECL_HANDLER(get_window_text)
1506 struct window *win = get_window( req->handle );
1508 if (win && win->text)
1510 size_t len = strlenW( win->text ) * sizeof(WCHAR);
1511 if (len > get_reply_max_size()) len = get_reply_max_size();
1512 set_reply_data( win->text, len );
1517 /* set the window text */
1518 DECL_HANDLER(set_window_text)
1520 struct window *win = get_window( req->handle );
1522 if (win)
1524 WCHAR *text = NULL;
1525 size_t len = get_req_data_size() / sizeof(WCHAR);
1526 if (len)
1528 if (!(text = mem_alloc( (len+1) * sizeof(WCHAR) ))) return;
1529 memcpy( text, get_req_data(), len * sizeof(WCHAR) );
1530 text[len] = 0;
1532 if (win->text) free( win->text );
1533 win->text = text;
1538 /* get the coordinates offset between two windows */
1539 DECL_HANDLER(get_windows_offset)
1541 struct window *win;
1543 reply->x = reply->y = 0;
1544 if (req->from)
1546 if (!(win = get_window( req->from ))) return;
1547 while (win)
1549 reply->x += win->client_rect.left;
1550 reply->y += win->client_rect.top;
1551 win = win->parent;
1554 if (req->to)
1556 if (!(win = get_window( req->to ))) return;
1557 while (win)
1559 reply->x -= win->client_rect.left;
1560 reply->y -= win->client_rect.top;
1561 win = win->parent;
1567 /* get the visible region of a window */
1568 DECL_HANDLER(get_visible_region)
1570 struct region *region;
1571 struct window *win = get_window( req->window );
1573 if (!win) return;
1575 if ((region = get_visible_region( win, req->flags )))
1577 rectangle_t *data = get_region_data_and_free( region, get_reply_max_size(), &reply->total_size );
1578 if (data) set_reply_data_ptr( data, reply->total_size );
1583 /* get the window region */
1584 DECL_HANDLER(get_window_region)
1586 struct window *win = get_window( req->window );
1588 if (!win) return;
1590 if (win->win_region)
1592 rectangle_t *data = get_region_data( win->win_region, get_reply_max_size(), &reply->total_size );
1593 if (data) set_reply_data_ptr( data, reply->total_size );
1598 /* set the window region */
1599 DECL_HANDLER(set_window_region)
1601 struct region *region = NULL;
1602 struct window *win = get_window( req->window );
1604 if (!win) return;
1606 if (get_req_data_size()) /* no data means remove the region completely */
1608 if (!(region = create_region_from_req_data( get_req_data(), get_req_data_size() )))
1609 return;
1611 if (win->win_region) free_region( win->win_region );
1612 win->win_region = region;
1616 /* get a window update region */
1617 DECL_HANDLER(get_update_region)
1619 rectangle_t *data;
1620 unsigned int flags = req->flags;
1621 struct window *win = get_window( req->window );
1623 reply->flags = 0;
1624 if (!win || !is_visible( win )) return;
1626 if ((flags & UPDATE_NONCLIENT) && !(flags & (UPDATE_PAINT|UPDATE_INTERNALPAINT)))
1628 /* non-client painting must be delayed if one of the parents is going to
1629 * be repainted and doesn't clip children */
1630 struct window *ptr;
1632 for (ptr = win->parent; ptr && ptr != top_window; ptr = ptr->parent)
1634 if (!(ptr->style & WS_CLIPCHILDREN) && win_needs_repaint( ptr ))
1635 return;
1639 if (!(reply->flags = get_update_flags( win, flags )))
1641 /* if window doesn't need any repaint, check the children */
1642 if (!(flags & UPDATE_NOCHILDREN) &&
1643 ((flags & UPDATE_ALLCHILDREN) || (win->style & WS_CLIPCHILDREN)) &&
1644 !(win->style & WS_MINIMIZE))
1646 reply->flags = get_child_update_flags( win, flags, &win );
1650 reply->child = win->handle;
1652 if (flags & UPDATE_NOREGION) return;
1654 if (win->update_region)
1656 if (!(data = get_region_data( win->update_region, get_reply_max_size(),
1657 &reply->total_size ))) return;
1658 set_reply_data_ptr( data, reply->total_size );
1661 if (reply->flags & (UPDATE_PAINT|UPDATE_INTERNALPAINT)) /* validate everything */
1663 validate_whole_window( win );
1665 else
1667 if (reply->flags & UPDATE_NONCLIENT) validate_non_client( win );
1668 if (reply->flags & UPDATE_ERASE)
1670 win->paint_flags &= ~PAINT_ERASE;
1671 /* desktop window only gets erased, not repainted */
1672 if (win == top_window) validate_whole_window( win );
1678 /* update the z order of a window so that a given rectangle is fully visible */
1679 DECL_HANDLER(update_window_zorder)
1681 rectangle_t tmp;
1682 struct window *ptr, *win = get_window( req->window );
1684 if (!win || !win->parent || !is_visible( win )) return; /* nothing to do */
1686 LIST_FOR_EACH_ENTRY( ptr, &win->parent->children, struct window, entry )
1688 if (ptr == win) break;
1689 if (!(ptr->style & WS_VISIBLE)) continue;
1690 if (ptr->ex_style & WS_EX_TRANSPARENT) continue;
1691 if (!intersect_rect( &tmp, &ptr->visible_rect, &req->rect )) continue;
1692 if (ptr->win_region && !rect_in_region( ptr->win_region, &req->rect )) continue;
1693 /* found a window obscuring the rectangle, now move win above this one */
1694 list_remove( &win->entry );
1695 list_add_before( &ptr->entry, &win->entry );
1696 break;
1701 /* mark parts of a window as needing a redraw */
1702 DECL_HANDLER(redraw_window)
1704 struct region *region = NULL;
1705 struct window *win = get_window( req->window );
1707 if (!win) return;
1708 if (!is_visible( win )) return; /* nothing to do */
1710 if (req->flags & (RDW_VALIDATE|RDW_INVALIDATE))
1712 if (get_req_data_size()) /* no data means whole rectangle */
1714 if (!(region = create_region_from_req_data( get_req_data(), get_req_data_size() )))
1715 return;
1719 redraw_window( win, region, (req->flags & RDW_INVALIDATE) && (req->flags & RDW_FRAME),
1720 req->flags );
1721 if (region) free_region( region );
1725 /* set a window property */
1726 DECL_HANDLER(set_window_property)
1728 struct window *win = get_window( req->window );
1730 if (win) set_property( win, req->atom, req->handle,
1731 req->string ? PROP_TYPE_STRING : PROP_TYPE_ATOM );
1735 /* remove a window property */
1736 DECL_HANDLER(remove_window_property)
1738 struct window *win = get_window( req->window );
1739 reply->handle = 0;
1740 if (win) reply->handle = remove_property( win, req->atom );
1744 /* get a window property */
1745 DECL_HANDLER(get_window_property)
1747 struct window *win = get_window( req->window );
1748 reply->handle = 0;
1749 if (win) reply->handle = get_property( win, req->atom );
1753 /* get the list of properties of a window */
1754 DECL_HANDLER(get_window_properties)
1756 property_data_t *data;
1757 int i, count, max = get_reply_max_size() / sizeof(*data);
1758 struct window *win = get_window( req->window );
1760 reply->total = 0;
1761 if (!win) return;
1763 for (i = count = 0; i < win->prop_inuse; i++)
1764 if (win->properties[i].type != PROP_TYPE_FREE) count++;
1765 reply->total = count;
1767 if (count > max) count = max;
1768 if (!count || !(data = set_reply_data_size( count * sizeof(*data) ))) return;
1770 for (i = 0; i < win->prop_inuse && count; i++)
1772 if (win->properties[i].type == PROP_TYPE_FREE) continue;
1773 data->atom = win->properties[i].atom;
1774 data->string = (win->properties[i].type == PROP_TYPE_STRING);
1775 data->handle = win->properties[i].handle;
1776 data++;
1777 count--;
1782 /* get the new window pointer for a global window, checking permissions */
1783 /* helper for set_global_windows request */
1784 static int get_new_global_window( struct window **win, user_handle_t handle )
1786 if (!handle)
1788 *win = NULL;
1789 return 1;
1791 else if (*win)
1793 set_error( STATUS_ACCESS_DENIED );
1794 return 0;
1796 *win = get_window( handle );
1797 return (*win != NULL);
1800 /* Set/get the global windows */
1801 DECL_HANDLER(set_global_windows)
1803 struct window *new_shell_window = shell_window;
1804 struct window *new_shell_listview = shell_listview;
1805 struct window *new_progman_window = progman_window;
1806 struct window *new_taskman_window = taskman_window;
1808 reply->old_shell_window = shell_window ? shell_window->handle : 0;
1809 reply->old_shell_listview = shell_listview ? shell_listview->handle : 0;
1810 reply->old_progman_window = progman_window ? progman_window->handle : 0;
1811 reply->old_taskman_window = taskman_window ? taskman_window->handle : 0;
1813 if (req->flags & SET_GLOBAL_SHELL_WINDOWS)
1815 if (!get_new_global_window( &new_shell_window, req->shell_window )) return;
1816 if (!get_new_global_window( &new_shell_listview, req->shell_listview )) return;
1818 if (req->flags & SET_GLOBAL_PROGMAN_WINDOW)
1820 if (!get_new_global_window( &new_progman_window, req->progman_window )) return;
1822 if (req->flags & SET_GLOBAL_TASKMAN_WINDOW)
1824 if (!get_new_global_window( &new_taskman_window, req->taskman_window )) return;
1826 shell_window = new_shell_window;
1827 shell_listview = new_shell_listview;
1828 progman_window = new_progman_window;
1829 taskman_window = new_taskman_window;