blob: a0e0788cc36f7077b4265aa23c1ee28380403b40 [file] [log] [blame]
Alexandre Julliard1a66d222001-08-28 18:44:52 +00001/*
2 * Server-side window handling
3 *
4 * Copyright (C) 2001 Alexandre Julliard
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00005 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
Jonathan Ernst360a3f92006-05-18 14:49:52 +020018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard1a66d222001-08-28 18:44:52 +000019 */
20
Alexandre Julliard5769d1d2002-04-26 19:05:15 +000021#include "config.h"
22#include "wine/port.h"
23
Alexandre Julliard1a66d222001-08-28 18:44:52 +000024#include <assert.h>
Alexandre Julliarde37c6e12003-09-05 23:08:26 +000025#include <stdarg.h>
Alexandre Julliard1a66d222001-08-28 18:44:52 +000026
Ge van Geldorp1a1583a2005-11-28 17:32:54 +010027#include "ntstatus.h"
28#define WIN32_NO_STATUS
Alexandre Julliarde37c6e12003-09-05 23:08:26 +000029#include "windef.h"
Alexandre Julliard47f98212001-11-14 21:28:36 +000030#include "winbase.h"
31#include "wingdi.h"
32#include "winuser.h"
Ge van Geldorp1a1583a2005-11-28 17:32:54 +010033#include "winternl.h"
Alexandre Julliard47f98212001-11-14 21:28:36 +000034
Alexandre Julliard1a66d222001-08-28 18:44:52 +000035#include "object.h"
36#include "request.h"
37#include "thread.h"
38#include "process.h"
39#include "user.h"
Alexandre Julliard805bdc52001-11-13 22:23:48 +000040#include "unicode.h"
Alexandre Julliard1a66d222001-08-28 18:44:52 +000041
Alexandre Julliard7a2017d2001-10-12 19:10:26 +000042/* a window property */
43struct property
44{
45 unsigned short type; /* property type (see below) */
46 atom_t atom; /* property atom */
Alexandre Julliard517b2f62008-12-10 16:21:32 +010047 lparam_t data; /* property data (user-defined storage) */
Alexandre Julliard7a2017d2001-10-12 19:10:26 +000048};
49
50enum property_type
51{
52 PROP_TYPE_FREE, /* free entry */
53 PROP_TYPE_STRING, /* atom that was originally a string */
54 PROP_TYPE_ATOM /* plain atom */
55};
56
57
Alexandre Julliard1a66d222001-08-28 18:44:52 +000058struct window
59{
Alexandre Julliard844ceb92001-10-09 23:26:40 +000060 struct window *parent; /* parent window */
Alexandre Julliard7dafa612002-09-25 00:21:56 +000061 user_handle_t owner; /* owner of this window */
Alexandre Julliard705909a2005-03-16 19:54:33 +000062 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 */
Alexandre Julliard844ceb92001-10-09 23:26:40 +000065 user_handle_t handle; /* full handle for this window */
66 struct thread *thread; /* thread owning the window */
Alexandre Julliard5ad90c02005-07-11 13:30:23 +000067 struct desktop *desktop; /* desktop that the window belongs to */
Alexandre Julliardbfce1512003-12-10 04:08:06 +000068 struct window_class *class; /* window class */
Alexandre Julliard7a2017d2001-10-12 19:10:26 +000069 atom_t atom; /* class atom */
Alexandre Julliard5030bda2002-10-11 23:41:06 +000070 user_handle_t last_active; /* last active popup */
Alexandre Julliard4616dcb2004-07-20 22:17:38 +000071 rectangle_t window_rect; /* window rectangle (relative to parent client area) */
Alexandre Julliardf7560902005-03-17 19:10:41 +000072 rectangle_t visible_rect; /* visible part of window rect (relative to parent client area) */
Alexandre Julliard4616dcb2004-07-20 22:17:38 +000073 rectangle_t client_rect; /* client rectangle (relative to parent client area) */
74 struct region *win_region; /* region for shaped windows (relative to window rect) */
Alexandre Julliard5defa492004-12-07 17:31:53 +000075 struct region *update_region; /* update region (relative to window rect) */
Alexandre Julliardddc33172001-10-22 19:08:33 +000076 unsigned int style; /* window style */
77 unsigned int ex_style; /* window extended style */
78 unsigned int id; /* window id */
Alexandre Julliardcb2788e2008-12-29 16:41:44 +010079 mod_handle_t instance; /* creator instance */
Alexandre Julliardb8435342007-10-31 18:08:19 +010080 unsigned int is_unicode : 1; /* ANSI or unicode */
81 unsigned int is_linked : 1; /* is it linked into the parent z-order list? */
Alexandre Julliard05b41812008-09-12 15:30:47 +020082 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 */
Alexandre Julliard31282b32008-12-10 16:01:50 +010086 lparam_t user_data; /* user-specific data */
Alexandre Julliard805bdc52001-11-13 22:23:48 +000087 WCHAR *text; /* window caption text */
Alexandre Julliard5defa492004-12-07 17:31:53 +000088 unsigned int paint_flags; /* various painting flags */
Alexandre Julliard7a2017d2001-10-12 19:10:26 +000089 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 */
Alexandre Julliard97903d22003-11-26 22:15:41 +000092 int nb_extra_bytes; /* number of extra bytes */
93 char extra_bytes[1]; /* extra bytes storage */
Alexandre Julliard1a66d222001-08-28 18:44:52 +000094};
95
Alexandre Julliarddf13cee2007-08-27 16:41:08 +020096#define PAINT_INTERNAL 0x01 /* internal WM_PAINT pending */
97#define PAINT_ERASE 0x02 /* needs WM_ERASEBKGND */
98#define PAINT_NONCLIENT 0x04 /* needs WM_NCPAINT */
99#define PAINT_DELAYED_ERASE 0x08 /* still needs erase after WM_ERASEBKGND */
Alexandre Julliard5defa492004-12-07 17:31:53 +0000100
Alexandre Julliard4616dcb2004-07-20 22:17:38 +0000101/* growable array of user handles */
102struct user_handle_array
103{
104 user_handle_t *handles;
105 int count;
106 int total;
107};
108
Alexandre Julliard8d174d32003-10-07 03:40:23 +0000109/* global window pointers */
110static struct window *shell_window;
111static struct window *shell_listview;
112static struct window *progman_window;
113static struct window *taskman_window;
Alexandre Julliarda09da0c2001-09-21 21:08:40 +0000114
Alexandre Julliardc183a9e2007-10-31 18:12:56 +0100115/* magic HWND_TOP etc. pointers */
116#define WINPTR_TOP ((struct window *)1L)
117#define WINPTR_BOTTOM ((struct window *)2L)
118#define WINPTR_TOPMOST ((struct window *)3L)
119#define WINPTR_NOTOPMOST ((struct window *)4L)
120
Alexandre Julliarda09da0c2001-09-21 21:08:40 +0000121/* retrieve a pointer to a window from its handle */
Andrew Talbotb1788c82007-03-17 10:52:14 +0000122static inline struct window *get_window( user_handle_t handle )
Alexandre Julliarda09da0c2001-09-21 21:08:40 +0000123{
124 struct window *ret = get_user_object( handle, USER_WINDOW );
Dmitry Timoshkov19e7fab2006-07-07 23:01:51 +0900125 if (!ret) set_win32_error( ERROR_INVALID_WINDOW_HANDLE );
Alexandre Julliarda09da0c2001-09-21 21:08:40 +0000126 return ret;
127}
128
Robert Shearman38e74b32006-06-07 20:12:16 +0100129/* check if window is the desktop */
130static inline int is_desktop_window( const struct window *win )
131{
132 return !win->parent; /* only desktop windows have no parent */
133}
134
Alexandre Julliard705909a2005-03-16 19:54:33 +0000135/* get next window in Z-order list */
136static inline struct window *get_next_window( struct window *win )
137{
138 struct list *ptr = list_next( &win->parent->children, &win->entry );
Alexandre Julliard705909a2005-03-16 19:54:33 +0000139 return ptr ? LIST_ENTRY( ptr, struct window, entry ) : NULL;
140}
141
142/* get previous window in Z-order list */
143static inline struct window *get_prev_window( struct window *win )
144{
145 struct list *ptr = list_prev( &win->parent->children, &win->entry );
Alexandre Julliard705909a2005-03-16 19:54:33 +0000146 return ptr ? LIST_ENTRY( ptr, struct window, entry ) : NULL;
147}
148
149/* get first child in Z-order list */
150static inline struct window *get_first_child( struct window *win )
151{
152 struct list *ptr = list_head( &win->children );
153 return ptr ? LIST_ENTRY( ptr, struct window, entry ) : NULL;
154}
155
156/* get last child in Z-order list */
157static inline struct window *get_last_child( struct window *win )
158{
159 struct list *ptr = list_tail( &win->children );
160 return ptr ? LIST_ENTRY( ptr, struct window, entry ) : NULL;
161}
162
Alexandre Julliardc183a9e2007-10-31 18:12:56 +0100163/* link a window at the right place in the siblings list */
164static void link_window( struct window *win, struct window *previous )
165{
166 if (previous == WINPTR_NOTOPMOST)
167 {
168 if (!(win->ex_style & WS_EX_TOPMOST) && win->is_linked) return; /* nothing to do */
169 win->ex_style &= ~WS_EX_TOPMOST;
170 previous = WINPTR_TOP; /* fallback to the HWND_TOP case */
171 }
172
173 list_remove( &win->entry ); /* unlink it from the previous location */
174
175 if (previous == WINPTR_BOTTOM)
176 {
177 list_add_tail( &win->parent->children, &win->entry );
178 win->ex_style &= ~WS_EX_TOPMOST;
179 }
180 else if (previous == WINPTR_TOPMOST)
181 {
182 list_add_head( &win->parent->children, &win->entry );
183 win->ex_style |= WS_EX_TOPMOST;
184 }
185 else if (previous == WINPTR_TOP)
186 {
187 struct list *entry = win->parent->children.next;
188 if (!(win->ex_style & WS_EX_TOPMOST)) /* put it above the first non-topmost window */
189 {
190 while (entry != &win->parent->children &&
191 LIST_ENTRY( entry, struct window, entry )->ex_style & WS_EX_TOPMOST)
192 entry = entry->next;
193 }
194 list_add_before( entry, &win->entry );
195 }
196 else
197 {
198 list_add_after( &previous->entry, &win->entry );
199 if (!(previous->ex_style & WS_EX_TOPMOST)) win->ex_style &= ~WS_EX_TOPMOST;
200 else
201 {
202 struct window *next = get_next_window( win );
203 if (next && (next->ex_style & WS_EX_TOPMOST)) win->ex_style |= WS_EX_TOPMOST;
204 }
205 }
206
207 win->is_linked = 1;
208}
209
210/* change the parent of a window (or unlink the window if the new parent is NULL) */
211static int set_parent_window( struct window *win, struct window *parent )
212{
213 struct window *ptr;
214
215 /* make sure parent is not a child of window */
216 for (ptr = parent; ptr; ptr = ptr->parent)
217 {
218 if (ptr == win)
219 {
220 set_error( STATUS_INVALID_PARAMETER );
221 return 0;
222 }
223 }
224
225 if (parent)
226 {
227 win->parent = parent;
228 link_window( win, WINPTR_TOP );
229
230 /* if parent belongs to a different thread and the window isn't */
231 /* top-level, attach the two threads */
232 if (parent->thread && parent->thread != win->thread && !is_desktop_window(parent))
233 attach_thread_input( win->thread, parent->thread );
234 }
235 else /* move it to parent unlinked list */
236 {
237 list_remove( &win->entry ); /* unlink it from the previous location */
238 list_add_head( &win->parent->unlinked, &win->entry );
239 win->is_linked = 0;
240 }
241 return 1;
242}
243
Alexandre Julliard4616dcb2004-07-20 22:17:38 +0000244/* append a user handle to a handle array */
245static int add_handle_to_array( struct user_handle_array *array, user_handle_t handle )
246{
247 if (array->count >= array->total)
248 {
249 int new_total = max( array->total * 2, 32 );
250 user_handle_t *new_array = realloc( array->handles, new_total * sizeof(*new_array) );
251 if (!new_array)
252 {
253 free( array->handles );
254 set_error( STATUS_NO_MEMORY );
255 return 0;
256 }
257 array->handles = new_array;
258 array->total = new_total;
259 }
260 array->handles[array->count++] = handle;
261 return 1;
262}
263
Alexandre Julliard7a2017d2001-10-12 19:10:26 +0000264/* set a window property */
Alexandre Julliard517b2f62008-12-10 16:21:32 +0100265static void set_property( struct window *win, atom_t atom, lparam_t data, enum property_type type )
Alexandre Julliard7a2017d2001-10-12 19:10:26 +0000266{
267 int i, free = -1;
268 struct property *new_props;
269
270 /* check if it exists already */
271 for (i = 0; i < win->prop_inuse; i++)
272 {
273 if (win->properties[i].type == PROP_TYPE_FREE)
274 {
275 free = i;
276 continue;
277 }
278 if (win->properties[i].atom == atom)
279 {
280 win->properties[i].type = type;
Alexandre Julliard517b2f62008-12-10 16:21:32 +0100281 win->properties[i].data = data;
Alexandre Julliard7a2017d2001-10-12 19:10:26 +0000282 return;
283 }
284 }
285
286 /* need to add an entry */
Alexandre Julliard641e9e32006-03-27 12:50:26 +0200287 if (!grab_global_atom( NULL, atom )) return;
Alexandre Julliard7a2017d2001-10-12 19:10:26 +0000288 if (free == -1)
289 {
290 /* no free entry */
291 if (win->prop_inuse >= win->prop_alloc)
292 {
293 /* need to grow the array */
294 if (!(new_props = realloc( win->properties,
295 sizeof(*new_props) * (win->prop_alloc + 16) )))
296 {
297 set_error( STATUS_NO_MEMORY );
Alexandre Julliard641e9e32006-03-27 12:50:26 +0200298 release_global_atom( NULL, atom );
Alexandre Julliard7a2017d2001-10-12 19:10:26 +0000299 return;
300 }
301 win->prop_alloc += 16;
302 win->properties = new_props;
303 }
304 free = win->prop_inuse++;
305 }
Alexandre Julliard517b2f62008-12-10 16:21:32 +0100306 win->properties[free].atom = atom;
307 win->properties[free].type = type;
308 win->properties[free].data = data;
Alexandre Julliard7a2017d2001-10-12 19:10:26 +0000309}
310
311/* remove a window property */
Alexandre Julliard517b2f62008-12-10 16:21:32 +0100312static lparam_t remove_property( struct window *win, atom_t atom )
Alexandre Julliard7a2017d2001-10-12 19:10:26 +0000313{
314 int i;
315
316 for (i = 0; i < win->prop_inuse; i++)
317 {
318 if (win->properties[i].type == PROP_TYPE_FREE) continue;
319 if (win->properties[i].atom == atom)
320 {
Alexandre Julliard641e9e32006-03-27 12:50:26 +0200321 release_global_atom( NULL, atom );
Alexandre Julliard7a2017d2001-10-12 19:10:26 +0000322 win->properties[i].type = PROP_TYPE_FREE;
Alexandre Julliard517b2f62008-12-10 16:21:32 +0100323 return win->properties[i].data;
Alexandre Julliard7a2017d2001-10-12 19:10:26 +0000324 }
325 }
326 /* FIXME: last error? */
327 return 0;
328}
329
330/* find a window property */
Alexandre Julliard517b2f62008-12-10 16:21:32 +0100331static lparam_t get_property( struct window *win, atom_t atom )
Alexandre Julliard7a2017d2001-10-12 19:10:26 +0000332{
333 int i;
334
335 for (i = 0; i < win->prop_inuse; i++)
336 {
337 if (win->properties[i].type == PROP_TYPE_FREE) continue;
Alexandre Julliard517b2f62008-12-10 16:21:32 +0100338 if (win->properties[i].atom == atom) return win->properties[i].data;
Alexandre Julliard7a2017d2001-10-12 19:10:26 +0000339 }
340 /* FIXME: last error? */
341 return 0;
342}
343
344/* destroy all properties of a window */
Andrew Talbotb1788c82007-03-17 10:52:14 +0000345static inline void destroy_properties( struct window *win )
Alexandre Julliard7a2017d2001-10-12 19:10:26 +0000346{
347 int i;
348
349 if (!win->properties) return;
350 for (i = 0; i < win->prop_inuse; i++)
351 {
352 if (win->properties[i].type == PROP_TYPE_FREE) continue;
Alexandre Julliard641e9e32006-03-27 12:50:26 +0200353 release_global_atom( NULL, win->properties[i].atom );
Alexandre Julliard7a2017d2001-10-12 19:10:26 +0000354 }
355 free( win->properties );
356}
357
Alexandre Julliard251be542006-03-06 20:37:52 +0100358/* detach a window from its owner thread but keep the window around */
359static void detach_window_thread( struct window *win )
Alexandre Julliard1a66d222001-08-28 18:44:52 +0000360{
Alexandre Julliard5ad90c02005-07-11 13:30:23 +0000361 struct thread *thread = win->thread;
362
Alexandre Julliard251be542006-03-06 20:37:52 +0100363 if (!thread) return;
364 if (thread->queue)
Alexandre Julliarde806c972001-11-24 03:44:47 +0000365 {
Alexandre Julliard5ad90c02005-07-11 13:30:23 +0000366 if (win->update_region) inc_queue_paint_count( thread, -1 );
367 if (win->paint_flags & PAINT_INTERNAL) inc_queue_paint_count( thread, -1 );
368 queue_cleanup_window( thread, win->handle );
Alexandre Julliarde806c972001-11-24 03:44:47 +0000369 }
Alexandre Julliard251be542006-03-06 20:37:52 +0100370 assert( thread->desktop_users > 0 );
371 thread->desktop_users--;
372 release_class( win->class );
373 win->class = NULL;
374
375 /* don't hold a reference to the desktop so that the desktop window can be */
376 /* destroyed when the desktop ref count reaches zero */
377 release_object( win->desktop );
378 win->thread = NULL;
379}
380
Alexandre Julliardf978f612006-03-06 21:02:24 +0100381/* get the process owning the top window of a given desktop */
382struct process *get_top_window_owner( struct desktop *desktop )
383{
384 struct window *win = desktop->top_window;
385 if (!win || !win->thread) return NULL;
386 return win->thread->process;
387}
388
389/* attempt to close the desktop window when the last process using it is gone */
390void close_desktop_window( struct desktop *desktop )
391{
392 struct window *win = desktop->top_window;
Alexandre Julliard2eb46bb2006-04-07 20:26:47 +0200393 if (win && win->thread) post_message( win->handle, WM_CLOSE, 0, 0 );
Alexandre Julliardf978f612006-03-06 21:02:24 +0100394}
395
Alexandre Julliarda09da0c2001-09-21 21:08:40 +0000396/* create a new window structure (note: the window is not linked in the window tree) */
Alexandre Julliardbd13ab82003-12-11 05:34:53 +0000397static struct window *create_window( struct window *parent, struct window *owner,
Alexandre Julliardcb2788e2008-12-29 16:41:44 +0100398 atom_t atom, mod_handle_t instance )
Alexandre Julliard1a66d222001-08-28 18:44:52 +0000399{
Alexandre Julliard30d84fc2008-01-22 10:15:38 +0100400 static const rectangle_t empty_rect;
Alexandre Julliardbd13ab82003-12-11 05:34:53 +0000401 int extra_bytes;
Alexandre Julliard81e6edb2008-06-25 14:43:39 +0200402 struct window *win = NULL;
Alexandre Julliard5ad90c02005-07-11 13:30:23 +0000403 struct desktop *desktop;
404 struct window_class *class;
Alexandre Julliardbfce1512003-12-10 04:08:06 +0000405
Alexandre Julliard5ad90c02005-07-11 13:30:23 +0000406 if (!(desktop = get_thread_desktop( current, DESKTOP_CREATEWINDOW ))) return NULL;
407
408 if (!(class = grab_class( current->process, atom, instance, &extra_bytes )))
409 {
410 release_object( desktop );
411 return NULL;
412 }
Alexandre Julliardbfce1512003-12-10 04:08:06 +0000413
Alexandre Julliard81e6edb2008-06-25 14:43:39 +0200414 if (!parent) /* null parent is only allowed for desktop or HWND_MESSAGE top window */
415 {
416 if (is_desktop_class( class ))
417 parent = desktop->top_window; /* use existing desktop if any */
418 else if (is_hwnd_message_class( class ))
419 /* use desktop window if message window is already created */
420 parent = desktop->msg_window ? desktop->top_window : NULL;
421 else if (!(parent = desktop->top_window)) /* must already have a desktop then */
422 {
423 set_error( STATUS_ACCESS_DENIED );
424 goto failed;
425 }
426 }
427
428 /* parent must be on the same desktop */
429 if (parent && parent->desktop != desktop)
430 {
431 set_error( STATUS_ACCESS_DENIED );
432 goto failed;
433 }
434
Alexandre Julliard251be542006-03-06 20:37:52 +0100435 if (!(win = mem_alloc( sizeof(*win) + extra_bytes - 1 ))) goto failed;
Alexandre Julliardd70a2532005-04-26 14:31:33 +0000436 if (!(win->handle = alloc_user_handle( win, USER_WINDOW ))) goto failed;
Alexandre Julliard1a66d222001-08-28 18:44:52 +0000437
Alexandre Julliard844ceb92001-10-09 23:26:40 +0000438 win->parent = parent;
Alexandre Julliard7dafa612002-09-25 00:21:56 +0000439 win->owner = owner ? owner->handle : 0;
Alexandre Julliard844ceb92001-10-09 23:26:40 +0000440 win->thread = current;
Alexandre Julliard5ad90c02005-07-11 13:30:23 +0000441 win->desktop = desktop;
Alexandre Julliardbfce1512003-12-10 04:08:06 +0000442 win->class = class;
Alexandre Julliard844ceb92001-10-09 23:26:40 +0000443 win->atom = atom;
Alexandre Julliard5030bda2002-10-11 23:41:06 +0000444 win->last_active = win->handle;
Alexandre Julliard618a7e52004-06-29 03:53:25 +0000445 win->win_region = NULL;
Alexandre Julliard5defa492004-12-07 17:31:53 +0000446 win->update_region = NULL;
Alexandre Julliardddc33172001-10-22 19:08:33 +0000447 win->style = 0;
448 win->ex_style = 0;
449 win->id = 0;
Alexandre Julliardf2c4e092008-12-29 16:47:51 +0100450 win->instance = 0;
Dmitry Timoshkov86af38c2005-07-07 12:02:31 +0000451 win->is_unicode = 1;
Alexandre Julliardb8435342007-10-31 18:08:19 +0100452 win->is_linked = 0;
Alexandre Julliard05b41812008-09-12 15:30:47 +0200453 win->is_layered = 0;
Alexandre Julliard81c14722006-10-04 21:49:11 +0200454 win->user_data = 0;
Alexandre Julliard805bdc52001-11-13 22:23:48 +0000455 win->text = NULL;
Alexandre Julliard5defa492004-12-07 17:31:53 +0000456 win->paint_flags = 0;
Alexandre Julliard7a2017d2001-10-12 19:10:26 +0000457 win->prop_inuse = 0;
458 win->prop_alloc = 0;
459 win->properties = NULL;
Alexandre Julliard97903d22003-11-26 22:15:41 +0000460 win->nb_extra_bytes = extra_bytes;
Alexandre Julliard30d84fc2008-01-22 10:15:38 +0100461 win->window_rect = win->visible_rect = win->client_rect = empty_rect;
Alexandre Julliard97903d22003-11-26 22:15:41 +0000462 memset( win->extra_bytes, 0, extra_bytes );
Alexandre Julliard705909a2005-03-16 19:54:33 +0000463 list_init( &win->children );
464 list_init( &win->unlinked );
Alexandre Julliard844ceb92001-10-09 23:26:40 +0000465
Robert Shearman38e74b32006-06-07 20:12:16 +0100466 /* if parent belongs to a different thread and the window isn't */
467 /* top-level, attach the two threads */
Alexandre Julliard0fab85a2006-04-12 11:19:20 +0200468 if (parent && parent->thread && parent->thread != current && !is_desktop_window(parent))
Alexandre Julliardd70a2532005-04-26 14:31:33 +0000469 {
470 if (!attach_thread_input( current, parent->thread )) goto failed;
471 }
472 else /* otherwise just make sure that the thread has a message queue */
473 {
474 if (!current->queue && !init_thread_queue( current )) goto failed;
475 }
476
Alexandre Julliard705909a2005-03-16 19:54:33 +0000477 /* put it on parent unlinked list */
478 if (parent) list_add_head( &parent->unlinked, &win->entry );
Alexandre Julliard251be542006-03-06 20:37:52 +0100479 else
480 {
481 list_init( &win->entry );
Alexandre Julliard81e6edb2008-06-25 14:43:39 +0200482 if (is_desktop_class( class ))
483 {
484 assert( !desktop->top_window );
485 desktop->top_window = win;
486 set_process_default_desktop( current->process, desktop, current->desktop );
487 }
488 else
489 {
490 assert( !desktop->msg_window );
491 desktop->msg_window = win;
492 }
Alexandre Julliard251be542006-03-06 20:37:52 +0100493 }
Alexandre Julliard844ceb92001-10-09 23:26:40 +0000494
Alexandre Julliard92fec7b2005-06-28 19:37:52 +0000495 current->desktop_users++;
Alexandre Julliard1a66d222001-08-28 18:44:52 +0000496 return win;
Alexandre Julliardd70a2532005-04-26 14:31:33 +0000497
498failed:
Alexandre Julliard251be542006-03-06 20:37:52 +0100499 if (win)
500 {
501 if (win->handle) free_user_handle( win->handle );
502 free( win );
503 }
Alexandre Julliard5ad90c02005-07-11 13:30:23 +0000504 release_object( desktop );
Alexandre Julliardd70a2532005-04-26 14:31:33 +0000505 release_class( class );
Alexandre Julliardd70a2532005-04-26 14:31:33 +0000506 return NULL;
Alexandre Julliard1a66d222001-08-28 18:44:52 +0000507}
508
509/* destroy all windows belonging to a given thread */
510void destroy_thread_windows( struct thread *thread )
511{
512 user_handle_t handle = 0;
513 struct window *win;
514
515 while ((win = next_user_handle( &handle, USER_WINDOW )))
516 {
517 if (win->thread != thread) continue;
Alexandre Julliard251be542006-03-06 20:37:52 +0100518 if (is_desktop_window( win )) detach_window_thread( win );
519 else destroy_window( win );
Alexandre Julliard1a66d222001-08-28 18:44:52 +0000520 }
521}
522
Alexandre Julliard8c518802005-07-08 11:37:40 +0000523/* get the desktop window */
Alexandre Julliard6b36e212008-06-25 14:26:14 +0200524static struct window *get_desktop_window( struct thread *thread )
Alexandre Julliard8c518802005-07-08 11:37:40 +0000525{
Alexandre Julliard5ad90c02005-07-11 13:30:23 +0000526 struct window *top_window;
527 struct desktop *desktop = get_thread_desktop( thread, 0 );
Alexandre Julliard8c518802005-07-08 11:37:40 +0000528
Alexandre Julliard5ad90c02005-07-11 13:30:23 +0000529 if (!desktop) return NULL;
Alexandre Julliard6b36e212008-06-25 14:26:14 +0200530 top_window = desktop->top_window;
Alexandre Julliard5ad90c02005-07-11 13:30:23 +0000531 release_object( desktop );
Alexandre Julliard8c518802005-07-08 11:37:40 +0000532 return top_window;
533}
534
Alexandre Julliarda09da0c2001-09-21 21:08:40 +0000535/* check whether child is a descendant of parent */
536int is_child_window( user_handle_t parent, user_handle_t child )
537{
538 struct window *child_ptr = get_user_object( child, USER_WINDOW );
539 struct window *parent_ptr = get_user_object( parent, USER_WINDOW );
540
541 if (!child_ptr || !parent_ptr) return 0;
542 while (child_ptr->parent)
543 {
544 if (child_ptr->parent == parent_ptr) return 1;
545 child_ptr = child_ptr->parent;
546 }
547 return 0;
548}
549
Alexandre Julliard5030bda2002-10-11 23:41:06 +0000550/* check whether window is a top-level window */
551int is_top_level_window( user_handle_t window )
552{
553 struct window *win = get_user_object( window, USER_WINDOW );
Vitaliy Margolendcdf7c52007-07-20 07:15:39 -0600554 return (win && (is_desktop_window(win) || is_desktop_window(win->parent)));
Alexandre Julliard5030bda2002-10-11 23:41:06 +0000555}
556
557/* make a window active if possible */
558int make_window_active( user_handle_t window )
559{
560 struct window *owner, *win = get_window( window );
561
562 if (!win) return 0;
563
564 /* set last active for window and its owner */
565 win->last_active = win->handle;
566 if ((owner = get_user_object( win->owner, USER_WINDOW ))) owner->last_active = win->handle;
567 return 1;
568}
569
Alexandre Julliard5defa492004-12-07 17:31:53 +0000570/* increment (or decrement) the window paint count */
571static inline void inc_window_paint_count( struct window *win, int incr )
572{
573 if (win->thread) inc_queue_paint_count( win->thread, incr );
574}
575
Alexandre Julliard085ef062004-10-27 21:54:41 +0000576/* check if window and all its ancestors are visible */
577static int is_visible( const struct window *win )
578{
Alexandre Julliard65368682008-06-25 15:49:44 +0200579 while (win)
Alexandre Julliard085ef062004-10-27 21:54:41 +0000580 {
581 if (!(win->style & WS_VISIBLE)) return 0;
582 win = win->parent;
583 /* if parent is minimized children are not visible */
584 if (win && (win->style & WS_MINIMIZE)) return 0;
585 }
586 return 1;
587}
588
589/* same as is_visible but takes a window handle */
590int is_window_visible( user_handle_t window )
591{
592 struct window *win = get_user_object( window, USER_WINDOW );
593 if (!win) return 0;
594 return is_visible( win );
595}
596
Alexandre Julliard4616dcb2004-07-20 22:17:38 +0000597/* check if point is inside the window */
598static inline int is_point_in_window( struct window *win, int x, int y )
599{
600 if (!(win->style & WS_VISIBLE)) return 0; /* not visible */
601 if ((win->style & (WS_POPUP|WS_CHILD|WS_DISABLED)) == (WS_CHILD|WS_DISABLED))
602 return 0; /* disabled child */
603 if ((win->ex_style & (WS_EX_LAYERED|WS_EX_TRANSPARENT)) == (WS_EX_LAYERED|WS_EX_TRANSPARENT))
604 return 0; /* transparent */
Alexandre Julliardf7560902005-03-17 19:10:41 +0000605 if (x < win->visible_rect.left || x >= win->visible_rect.right ||
606 y < win->visible_rect.top || y >= win->visible_rect.bottom)
Alexandre Julliard4616dcb2004-07-20 22:17:38 +0000607 return 0; /* not in window */
608 if (win->win_region &&
609 !point_in_region( win->win_region, x - win->window_rect.left, y - win->window_rect.top ))
610 return 0; /* not in window region */
611 return 1;
612}
613
Alexandre Julliard612c0102008-06-25 15:30:22 +0200614/* fill an array with the handles of the children of a specified window */
615static unsigned int get_children_windows( struct window *parent, atom_t atom, thread_id_t tid,
616 user_handle_t *handles, unsigned int max_count )
617{
618 struct window *ptr;
619 unsigned int count = 0;
620
621 if (!parent) return 0;
622
623 LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
624 {
625 if (atom && get_class_atom(ptr->class) != atom) continue;
626 if (tid && get_thread_id(ptr->thread) != tid) continue;
627 if (handles)
628 {
629 if (count >= max_count) break;
630 handles[count] = ptr->handle;
631 }
632 count++;
633 }
634 return count;
635}
636
Alexandre Julliard242e3952003-01-08 00:27:58 +0000637/* find child of 'parent' that contains the given point (in parent-relative coords) */
638static struct window *child_window_from_point( struct window *parent, int x, int y )
639{
Alexandre Julliard3783e492003-01-08 19:55:08 +0000640 struct window *ptr;
Alexandre Julliard242e3952003-01-08 00:27:58 +0000641
Alexandre Julliard705909a2005-03-16 19:54:33 +0000642 LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
Alexandre Julliard242e3952003-01-08 00:27:58 +0000643 {
Alexandre Julliard4616dcb2004-07-20 22:17:38 +0000644 if (!is_point_in_window( ptr, x, y )) continue; /* skip it */
Alexandre Julliard242e3952003-01-08 00:27:58 +0000645
646 /* if window is minimized or disabled, return at once */
647 if (ptr->style & (WS_MINIMIZE|WS_DISABLED)) return ptr;
648
649 /* if point is not in client area, return at once */
650 if (x < ptr->client_rect.left || x >= ptr->client_rect.right ||
651 y < ptr->client_rect.top || y >= ptr->client_rect.bottom)
652 return ptr;
653
654 return child_window_from_point( ptr, x - ptr->client_rect.left, y - ptr->client_rect.top );
655 }
656 return parent; /* not found any child */
657}
658
Alexandre Julliard4616dcb2004-07-20 22:17:38 +0000659/* find all children of 'parent' that contain the given point */
660static int get_window_children_from_point( struct window *parent, int x, int y,
661 struct user_handle_array *array )
662{
663 struct window *ptr;
664
Alexandre Julliard705909a2005-03-16 19:54:33 +0000665 LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
Alexandre Julliard4616dcb2004-07-20 22:17:38 +0000666 {
667 if (!is_point_in_window( ptr, x, y )) continue; /* skip it */
668
669 /* if point is in client area, and window is not minimized or disabled, check children */
670 if (!(ptr->style & (WS_MINIMIZE|WS_DISABLED)) &&
671 x >= ptr->client_rect.left && x < ptr->client_rect.right &&
672 y >= ptr->client_rect.top && y < ptr->client_rect.bottom)
673 {
674 if (!get_window_children_from_point( ptr, x - ptr->client_rect.left,
675 y - ptr->client_rect.top, array ))
676 return 0;
677 }
678
679 /* now add window to the array */
680 if (!add_handle_to_array( array, ptr->handle )) return 0;
681 }
682 return 1;
683}
684
Alexandre Julliard242e3952003-01-08 00:27:58 +0000685/* find window containing point (in absolute coords) */
Alexandre Julliard5ad90c02005-07-11 13:30:23 +0000686user_handle_t window_from_point( struct desktop *desktop, int x, int y )
Alexandre Julliard242e3952003-01-08 00:27:58 +0000687{
Alexandre Julliard5ad90c02005-07-11 13:30:23 +0000688 struct window *ret;
Alexandre Julliard242e3952003-01-08 00:27:58 +0000689
Alexandre Julliard5ad90c02005-07-11 13:30:23 +0000690 if (!desktop->top_window) return 0;
691 ret = child_window_from_point( desktop->top_window, x, y );
Alexandre Julliard242e3952003-01-08 00:27:58 +0000692 return ret->handle;
693}
Alexandre Julliard5030bda2002-10-11 23:41:06 +0000694
Alexandre Julliard4616dcb2004-07-20 22:17:38 +0000695/* return list of all windows containing point (in absolute coords) */
696static int all_windows_from_point( struct window *top, int x, int y, struct user_handle_array *array )
697{
698 struct window *ptr;
699
700 /* make point relative to top window */
Alexandre Julliard844374a2006-10-26 12:51:54 +0200701 for (ptr = top->parent; ptr && !is_desktop_window(ptr); ptr = ptr->parent)
Alexandre Julliard4616dcb2004-07-20 22:17:38 +0000702 {
703 x -= ptr->client_rect.left;
704 y -= ptr->client_rect.top;
705 }
706
707 if (!is_point_in_window( top, x, y )) return 1;
708
709 /* if point is in client area, and window is not minimized or disabled, check children */
710 if (!(top->style & (WS_MINIMIZE|WS_DISABLED)) &&
711 x >= top->client_rect.left && x < top->client_rect.right &&
712 y >= top->client_rect.top && y < top->client_rect.bottom)
713 {
Alexandre Julliard844374a2006-10-26 12:51:54 +0200714 if (!is_desktop_window(top))
715 {
716 x -= top->client_rect.left;
717 y -= top->client_rect.top;
718 }
719 if (!get_window_children_from_point( top, x, y, array )) return 0;
Alexandre Julliard4616dcb2004-07-20 22:17:38 +0000720 }
721 /* now add window to the array */
722 if (!add_handle_to_array( array, top->handle )) return 0;
723 return 1;
724}
725
726
Alexandre Julliard81f2a732002-03-23 20:43:52 +0000727/* return the thread owning a window */
728struct thread *get_window_thread( user_handle_t handle )
729{
730 struct window *win = get_user_object( handle, USER_WINDOW );
731 if (!win || !win->thread) return NULL;
732 return (struct thread *)grab_object( win->thread );
733}
Alexandre Julliard47f98212001-11-14 21:28:36 +0000734
Alexandre Julliard5defa492004-12-07 17:31:53 +0000735
736/* check if any area of a window needs repainting */
737static inline int win_needs_repaint( struct window *win )
738{
739 return win->update_region || (win->paint_flags & PAINT_INTERNAL);
740}
741
742
Alexandre Julliard47f98212001-11-14 21:28:36 +0000743/* find a child of the specified window that needs repainting */
744static struct window *find_child_to_repaint( struct window *parent, struct thread *thread )
745{
746 struct window *ptr, *ret = NULL;
747
Alexandre Julliard705909a2005-03-16 19:54:33 +0000748 LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
Alexandre Julliard47f98212001-11-14 21:28:36 +0000749 {
750 if (!(ptr->style & WS_VISIBLE)) continue;
Alexandre Julliard5defa492004-12-07 17:31:53 +0000751 if (ptr->thread == thread && win_needs_repaint( ptr ))
Alexandre Julliard47f98212001-11-14 21:28:36 +0000752 ret = ptr;
Alexandre Julliard5defa492004-12-07 17:31:53 +0000753 else if (!(ptr->style & WS_MINIMIZE)) /* explore its children */
Alexandre Julliard47f98212001-11-14 21:28:36 +0000754 ret = find_child_to_repaint( ptr, thread );
Alexandre Julliard705909a2005-03-16 19:54:33 +0000755 if (ret) break;
Alexandre Julliard47f98212001-11-14 21:28:36 +0000756 }
757
758 if (ret && (ret->ex_style & WS_EX_TRANSPARENT))
759 {
760 /* transparent window, check for non-transparent sibling to paint first */
Alexandre Julliard705909a2005-03-16 19:54:33 +0000761 for (ptr = get_next_window(ret); ptr; ptr = get_next_window(ptr))
Alexandre Julliard47f98212001-11-14 21:28:36 +0000762 {
763 if (!(ptr->style & WS_VISIBLE)) continue;
764 if (ptr->ex_style & WS_EX_TRANSPARENT) continue;
Alexandre Julliard5defa492004-12-07 17:31:53 +0000765 if (ptr->thread != thread) continue;
766 if (win_needs_repaint( ptr )) return ptr;
Alexandre Julliard47f98212001-11-14 21:28:36 +0000767 }
768 }
769 return ret;
770}
771
772
Alexandre Julliardb9a9de62005-03-10 17:19:33 +0000773/* find a window that needs to receive a WM_PAINT; also clear its internal paint flag */
Alexandre Julliard47f98212001-11-14 21:28:36 +0000774user_handle_t find_window_to_repaint( user_handle_t parent, struct thread *thread )
775{
Alexandre Julliard6b36e212008-06-25 14:26:14 +0200776 struct window *ptr, *win, *top_window = get_desktop_window( thread );
Alexandre Julliard47f98212001-11-14 21:28:36 +0000777
Alexandre Julliard8c518802005-07-08 11:37:40 +0000778 if (!top_window) return 0;
779
Alexandre Julliard251be542006-03-06 20:37:52 +0100780 if (top_window->thread == thread && win_needs_repaint( top_window )) win = top_window;
781 else win = find_child_to_repaint( top_window, thread );
782
Alexandre Julliardb9a9de62005-03-10 17:19:33 +0000783 if (win && parent)
Alexandre Julliard5defa492004-12-07 17:31:53 +0000784 {
Alexandre Julliard5defa492004-12-07 17:31:53 +0000785 /* check that it is a child of the specified parent */
786 for (ptr = win; ptr; ptr = ptr->parent)
Alexandre Julliardb9a9de62005-03-10 17:19:33 +0000787 if (ptr->handle == parent) break;
Alexandre Julliard5defa492004-12-07 17:31:53 +0000788 /* otherwise don't return any window, we don't repaint a child before its parent */
Alexandre Julliardb9a9de62005-03-10 17:19:33 +0000789 if (!ptr) win = NULL;
Alexandre Julliard5defa492004-12-07 17:31:53 +0000790 }
Alexandre Julliardb9a9de62005-03-10 17:19:33 +0000791 if (!win) return 0;
792 win->paint_flags &= ~PAINT_INTERNAL;
793 return win->handle;
Alexandre Julliard47f98212001-11-14 21:28:36 +0000794}
795
796
Alexandre Julliard618a7e52004-06-29 03:53:25 +0000797/* intersect the window region with the specified region, relative to the window parent */
798static struct region *intersect_window_region( struct region *region, struct window *win )
799{
800 /* make region relative to window rect */
801 offset_region( region, -win->window_rect.left, -win->window_rect.top );
802 if (!intersect_region( region, region, win->win_region )) return NULL;
803 /* make region relative to parent again */
804 offset_region( region, win->window_rect.left, win->window_rect.top );
805 return region;
806}
807
808
Alexandre Julliardbc75f2f2005-03-31 15:36:57 +0000809/* convert coordinates from client to screen coords */
810static inline void client_to_screen( struct window *win, int *x, int *y )
811{
Alexandre Julliard844374a2006-10-26 12:51:54 +0200812 for ( ; win && !is_desktop_window(win); win = win->parent)
Alexandre Julliardbc75f2f2005-03-31 15:36:57 +0000813 {
814 *x += win->client_rect.left;
815 *y += win->client_rect.top;
816 }
817}
818
Ulrich Czekalla4bdf4342006-12-07 10:43:59 -0500819/* convert coordinates from client to screen coords */
820static inline void client_to_screen_rect( struct window *win, rectangle_t *rect )
821{
822 for ( ; win && !is_desktop_window(win); win = win->parent)
823 {
824 rect->left += win->client_rect.left;
825 rect->right += win->client_rect.left;
826 rect->top += win->client_rect.top;
827 rect->bottom += win->client_rect.top;
828 }
829}
830
Alexandre Julliardeea70692005-03-30 17:11:46 +0000831/* map the region from window to screen coordinates */
832static inline void map_win_region_to_screen( struct window *win, struct region *region )
833{
Alexandre Julliard844374a2006-10-26 12:51:54 +0200834 if (!is_desktop_window(win))
835 {
836 int x = win->window_rect.left;
837 int y = win->window_rect.top;
838 client_to_screen( win->parent, &x, &y );
839 offset_region( region, x, y );
840 }
Alexandre Julliardeea70692005-03-30 17:11:46 +0000841}
842
843
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000844/* clip all children of a given window out of the visible region */
845static struct region *clip_children( struct window *parent, struct window *last,
846 struct region *region, int offset_x, int offset_y )
847{
848 struct window *ptr;
849 struct region *tmp = create_empty_region();
850
851 if (!tmp) return NULL;
Alexandre Julliard705909a2005-03-16 19:54:33 +0000852 LIST_FOR_EACH_ENTRY( ptr, &parent->children, struct window, entry )
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000853 {
Alexandre Julliard705909a2005-03-16 19:54:33 +0000854 if (ptr == last) break;
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000855 if (!(ptr->style & WS_VISIBLE)) continue;
856 if (ptr->ex_style & WS_EX_TRANSPARENT) continue;
Alexandre Julliardf7560902005-03-17 19:10:41 +0000857 set_region_rect( tmp, &ptr->visible_rect );
Alexandre Julliard618a7e52004-06-29 03:53:25 +0000858 if (ptr->win_region && !intersect_window_region( tmp, ptr ))
859 {
860 free_region( tmp );
861 return NULL;
862 }
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000863 offset_region( tmp, offset_x, offset_y );
864 if (!(region = subtract_region( region, region, tmp ))) break;
865 if (is_region_empty( region )) break;
866 }
867 free_region( tmp );
868 return region;
869}
870
871
Alexandre Julliard5054c792005-03-21 12:37:00 +0000872/* compute the intersection of two rectangles; return 0 if the result is empty */
873static inline int intersect_rect( rectangle_t *dst, const rectangle_t *src1, const rectangle_t *src2 )
874{
875 dst->left = max( src1->left, src2->left );
876 dst->top = max( src1->top, src2->top );
877 dst->right = min( src1->right, src2->right );
878 dst->bottom = min( src1->bottom, src2->bottom );
879 return (dst->left < dst->right && dst->top < dst->bottom);
880}
881
882
Alexandre Julliarde02969d2008-05-12 12:26:26 +0200883/* offset the coordinates of a rectangle */
884static inline void offset_rect( rectangle_t *rect, int offset_x, int offset_y )
885{
886 rect->left += offset_x;
887 rect->top += offset_y;
888 rect->right += offset_x;
889 rect->bottom += offset_y;
890}
891
892
Alexandre Julliard548c9732005-02-22 19:41:43 +0000893/* set the region to the client rect clipped by the window rect, in parent-relative coordinates */
894static void set_region_client_rect( struct region *region, struct window *win )
895{
896 rectangle_t rect;
897
Alexandre Julliard5054c792005-03-21 12:37:00 +0000898 intersect_rect( &rect, &win->window_rect, &win->client_rect );
Alexandre Julliard548c9732005-02-22 19:41:43 +0000899 set_region_rect( region, &rect );
900}
901
902
Alexandre Julliard4e47afb2005-03-17 14:02:06 +0000903/* get the top-level window to clip against for a given window */
904static inline struct window *get_top_clipping_window( struct window *win )
905{
Alexandre Julliard8c518802005-07-08 11:37:40 +0000906 while (win->parent && !is_desktop_window(win->parent)) win = win->parent;
Alexandre Julliard4e47afb2005-03-17 14:02:06 +0000907 return win;
908}
909
910
Alexandre Julliardeea70692005-03-30 17:11:46 +0000911/* compute the visible region of a window, in window coordinates */
Alexandre Julliard5874b852007-09-20 19:38:50 +0200912static struct region *get_visible_region( struct window *win, unsigned int flags )
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000913{
Raphael Junqueira962a5e72005-04-11 12:54:53 +0000914 struct region *tmp = NULL, *region;
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000915 int offset_x, offset_y;
916
917 if (!(region = create_empty_region())) return NULL;
918
919 /* first check if all ancestors are visible */
920
Alexandre Julliard085ef062004-10-27 21:54:41 +0000921 if (!is_visible( win )) return region; /* empty region */
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000922
Alexandre Julliard618a7e52004-06-29 03:53:25 +0000923 /* create a region relative to the window itself */
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000924
Alexandre Julliard5874b852007-09-20 19:38:50 +0200925 if ((flags & DCX_PARENTCLIP) && win->parent && !is_desktop_window(win->parent))
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000926 {
Alexandre Julliard548c9732005-02-22 19:41:43 +0000927 set_region_client_rect( region, win->parent );
928 offset_region( region, -win->parent->client_rect.left, -win->parent->client_rect.top );
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000929 }
930 else if (flags & DCX_WINDOW)
931 {
Alexandre Julliardf7560902005-03-17 19:10:41 +0000932 set_region_rect( region, &win->visible_rect );
Alexandre Julliard618a7e52004-06-29 03:53:25 +0000933 if (win->win_region && !intersect_window_region( region, win )) goto error;
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000934 }
935 else
936 {
Alexandre Julliard548c9732005-02-22 19:41:43 +0000937 set_region_client_rect( region, win );
Alexandre Julliard618a7e52004-06-29 03:53:25 +0000938 if (win->win_region && !intersect_window_region( region, win )) goto error;
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000939 }
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000940
941 /* clip children */
942
943 if (flags & DCX_CLIPCHILDREN)
944 {
Alexandre Julliard844374a2006-10-26 12:51:54 +0200945 if (is_desktop_window(win)) offset_x = offset_y = 0;
946 else
947 {
948 offset_x = win->client_rect.left;
949 offset_y = win->client_rect.top;
950 }
951 if (!clip_children( win, NULL, region, offset_x, offset_y )) goto error;
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000952 }
953
954 /* clip siblings of ancestors */
955
Alexandre Julliard844374a2006-10-26 12:51:54 +0200956 if (is_desktop_window(win)) offset_x = offset_y = 0;
957 else
958 {
959 offset_x = win->window_rect.left;
960 offset_y = win->window_rect.top;
961 }
962
Alexandre Julliard5874b852007-09-20 19:38:50 +0200963 if ((tmp = create_empty_region()) != NULL)
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000964 {
Alexandre Julliard5874b852007-09-20 19:38:50 +0200965 while (win->parent)
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000966 {
Alexandre Julliard5874b852007-09-20 19:38:50 +0200967 /* we don't clip out top-level siblings as that's up to the native windowing system */
968 if ((win->style & WS_CLIPSIBLINGS) && !is_desktop_window( win->parent ))
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000969 {
970 if (!clip_children( win->parent, win, region, 0, 0 )) goto error;
971 if (is_region_empty( region )) break;
972 }
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000973 /* clip to parent client area */
974 win = win->parent;
Alexandre Julliard844374a2006-10-26 12:51:54 +0200975 if (!is_desktop_window(win))
976 {
977 offset_x += win->client_rect.left;
978 offset_y += win->client_rect.top;
979 offset_region( region, win->client_rect.left, win->client_rect.top );
980 }
Alexandre Julliard548c9732005-02-22 19:41:43 +0000981 set_region_client_rect( tmp, win );
Raphael Junqueira962a5e72005-04-11 12:54:53 +0000982 if (win->win_region && !intersect_window_region( tmp, win )) goto error;
983 if (!intersect_region( region, region, tmp )) goto error;
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000984 if (is_region_empty( region )) break;
985 }
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000986 free_region( tmp );
987 }
Alexandre Julliardeea70692005-03-30 17:11:46 +0000988 offset_region( region, -offset_x, -offset_y ); /* make it relative to target window */
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000989 return region;
990
991error:
Raphael Junqueira962a5e72005-04-11 12:54:53 +0000992 if (tmp) free_region( tmp );
Alexandre Julliarde8d86b72004-06-23 20:44:58 +0000993 free_region( region );
994 return NULL;
995}
996
997
Alexandre Julliardbfce1512003-12-10 04:08:06 +0000998/* get the window class of a window */
999struct window_class* get_window_class( user_handle_t window )
1000{
1001 struct window *win;
1002 if (!(win = get_window( window ))) return NULL;
Alexandre Julliard251be542006-03-06 20:37:52 +01001003 if (!win->class) set_error( STATUS_ACCESS_DENIED );
Alexandre Julliardbfce1512003-12-10 04:08:06 +00001004 return win->class;
1005}
1006
Alexandre Julliarde02969d2008-05-12 12:26:26 +02001007/* determine the window visible rectangle, i.e. window or client rect cropped by parent rects */
1008/* the returned rectangle is in window coordinates; return 0 if rectangle is empty */
1009static int get_window_visible_rect( struct window *win, rectangle_t *rect, int frame )
1010{
1011 int offset_x = 0, offset_y = 0;
1012
1013 if (!(win->style & WS_VISIBLE)) return 0;
1014
1015 *rect = frame ? win->window_rect : win->client_rect;
1016 if (!is_desktop_window(win))
1017 {
1018 offset_x = win->window_rect.left;
1019 offset_y = win->window_rect.top;
1020 }
1021
1022 while (win->parent)
1023 {
1024 win = win->parent;
1025 if (!(win->style & WS_VISIBLE) || win->style & WS_MINIMIZE) return 0;
1026 if (!is_desktop_window(win))
1027 {
1028 offset_x += win->client_rect.left;
1029 offset_y += win->client_rect.top;
1030 offset_rect( rect, win->client_rect.left, win->client_rect.top );
1031 }
1032 if (!intersect_rect( rect, rect, &win->client_rect )) return 0;
1033 if (!intersect_rect( rect, rect, &win->window_rect )) return 0;
1034 }
1035 offset_rect( rect, -offset_x, -offset_y );
1036 return 1;
1037}
1038
Alexandre Julliard5defa492004-12-07 17:31:53 +00001039/* return a copy of the specified region cropped to the window client or frame rectangle, */
1040/* and converted from client to window coordinates. Helper for (in)validate_window. */
1041static struct region *crop_region_to_win_rect( struct window *win, struct region *region, int frame )
1042{
Alexandre Julliard30c06392008-05-12 12:29:56 +02001043 rectangle_t rect;
1044 struct region *tmp;
Alexandre Julliard5defa492004-12-07 17:31:53 +00001045
Alexandre Julliard30c06392008-05-12 12:29:56 +02001046 if (!get_window_visible_rect( win, &rect, frame )) return NULL;
1047 if (!(tmp = create_empty_region())) return NULL;
1048 set_region_rect( tmp, &rect );
Alexandre Julliard5defa492004-12-07 17:31:53 +00001049
Alexandre Julliard30c06392008-05-12 12:29:56 +02001050 if (region)
1051 {
1052 /* map it to client coords */
1053 offset_region( tmp, win->window_rect.left - win->client_rect.left,
1054 win->window_rect.top - win->client_rect.top );
Alexandre Julliard5defa492004-12-07 17:31:53 +00001055
Alexandre Julliard30c06392008-05-12 12:29:56 +02001056 /* intersect specified region with bounding rect */
1057 if (!intersect_region( tmp, region, tmp )) goto done;
1058 if (is_region_empty( tmp )) goto done;
Alexandre Julliard5defa492004-12-07 17:31:53 +00001059
Alexandre Julliard30c06392008-05-12 12:29:56 +02001060 /* map it back to window coords */
1061 offset_region( tmp, win->client_rect.left - win->window_rect.left,
1062 win->client_rect.top - win->window_rect.top );
1063 }
Alexandre Julliard5defa492004-12-07 17:31:53 +00001064 return tmp;
1065
1066done:
1067 free_region( tmp );
1068 return NULL;
1069}
1070
1071
1072/* set a region as new update region for the window */
1073static void set_update_region( struct window *win, struct region *region )
1074{
1075 if (region && !is_region_empty( region ))
1076 {
1077 if (!win->update_region) inc_window_paint_count( win, 1 );
1078 else free_region( win->update_region );
1079 win->update_region = region;
1080 }
1081 else
1082 {
Rob Shearmanb4b7f052005-05-23 09:53:06 +00001083 if (win->update_region)
1084 {
1085 inc_window_paint_count( win, -1 );
1086 free_region( win->update_region );
1087 }
Alexandre Julliarddf13cee2007-08-27 16:41:08 +02001088 win->paint_flags &= ~(PAINT_ERASE | PAINT_DELAYED_ERASE | PAINT_NONCLIENT);
Alexandre Julliard5defa492004-12-07 17:31:53 +00001089 win->update_region = NULL;
1090 if (region) free_region( region );
1091 }
1092}
1093
1094
1095/* add a region to the update region; the passed region is freed or reused */
1096static int add_update_region( struct window *win, struct region *region )
1097{
1098 if (win->update_region && !union_region( region, win->update_region, region ))
1099 {
1100 free_region( region );
1101 return 0;
1102 }
1103 set_update_region( win, region );
1104 return 1;
1105}
1106
1107
Alexandre Julliardbc251192008-05-12 12:28:57 +02001108/* crop the update region of children to the specified rectangle, in client coords */
1109static void crop_children_update_region( struct window *win, rectangle_t *rect )
1110{
1111 struct window *child;
Marcus Meissnera82455e2008-05-14 14:44:43 +02001112 struct region *tmp;
Alexandre Julliardbc251192008-05-12 12:28:57 +02001113 rectangle_t child_rect;
1114
1115 LIST_FOR_EACH_ENTRY( child, &win->children, struct window, entry )
1116 {
1117 if (!(child->style & WS_VISIBLE)) continue;
1118 if (!rect) /* crop everything out */
1119 {
1120 crop_children_update_region( child, NULL );
1121 set_update_region( child, NULL );
1122 continue;
1123 }
1124
1125 /* nothing to do if child is completely inside rect */
1126 if (child->window_rect.left >= rect->left &&
1127 child->window_rect.top >= rect->top &&
1128 child->window_rect.right <= rect->right &&
1129 child->window_rect.bottom <= rect->bottom) continue;
1130
1131 /* map to child client coords and crop grand-children */
1132 child_rect = *rect;
1133 offset_rect( &child_rect, -child->client_rect.left, -child->client_rect.top );
1134 crop_children_update_region( child, &child_rect );
1135
1136 /* now crop the child itself */
1137 if (!child->update_region) continue;
1138 if (!(tmp = create_empty_region())) continue;
1139 set_region_rect( tmp, rect );
1140 offset_region( tmp, -child->window_rect.left, -child->window_rect.top );
1141 if (intersect_region( tmp, child->update_region, tmp )) set_update_region( child, tmp );
1142 else free_region( tmp );
1143 }
1144}
1145
1146
Alexandre Julliard5defa492004-12-07 17:31:53 +00001147/* validate the non client area of a window */
1148static void validate_non_client( struct window *win )
1149{
1150 struct region *tmp;
1151 rectangle_t rect;
1152
1153 if (!win->update_region) return; /* nothing to do */
1154
1155 /* get client rect in window coords */
1156 rect.left = win->client_rect.left - win->window_rect.left;
1157 rect.top = win->client_rect.top - win->window_rect.top;
1158 rect.right = win->client_rect.right - win->window_rect.left;
1159 rect.bottom = win->client_rect.bottom - win->window_rect.top;
1160
Alexandre Julliard548c9732005-02-22 19:41:43 +00001161 if ((tmp = create_empty_region()))
Alexandre Julliard5defa492004-12-07 17:31:53 +00001162 {
Alexandre Julliard548c9732005-02-22 19:41:43 +00001163 set_region_rect( tmp, &rect );
Alexandre Julliard5defa492004-12-07 17:31:53 +00001164 if (intersect_region( tmp, win->update_region, tmp ))
1165 set_update_region( win, tmp );
1166 else
1167 free_region( tmp );
1168 }
1169 win->paint_flags &= ~PAINT_NONCLIENT;
1170}
1171
1172
1173/* validate a window completely so that we don't get any further paint messages for it */
1174static void validate_whole_window( struct window *win )
1175{
1176 set_update_region( win, NULL );
1177
1178 if (win->paint_flags & PAINT_INTERNAL)
1179 {
1180 win->paint_flags &= ~PAINT_INTERNAL;
1181 inc_window_paint_count( win, -1 );
1182 }
1183}
1184
1185
Ulrich Czekallacae37b12007-01-25 08:57:14 -05001186/* validate a window's children so that we don't get any further paint messages for it */
1187static void validate_children( struct window *win )
1188{
1189 struct window *child;
1190
1191 LIST_FOR_EACH_ENTRY( child, &win->children, struct window, entry )
1192 {
1193 if (!(child->style & WS_VISIBLE)) continue;
1194 validate_children(child);
1195 validate_whole_window(child);
1196 }
1197}
1198
1199
Alexandre Julliard149cbb12007-08-23 20:22:30 +02001200/* validate the update region of a window on all parents; helper for get_update_region */
Alexandre Julliard5defa492004-12-07 17:31:53 +00001201static void validate_parents( struct window *child )
1202{
1203 int offset_x = 0, offset_y = 0;
1204 struct window *win = child;
1205 struct region *tmp = NULL;
1206
1207 if (!child->update_region) return;
1208
Alexandre Julliard8c518802005-07-08 11:37:40 +00001209 while (win->parent)
Alexandre Julliard5defa492004-12-07 17:31:53 +00001210 {
1211 /* map to parent client coords */
1212 offset_x += win->window_rect.left;
1213 offset_y += win->window_rect.top;
1214
1215 win = win->parent;
1216
1217 /* and now map to window coords */
1218 offset_x += win->client_rect.left - win->window_rect.left;
1219 offset_y += win->client_rect.top - win->window_rect.top;
1220
1221 if (win->update_region && !(win->style & WS_CLIPCHILDREN))
1222 {
1223 if (!tmp && !(tmp = create_empty_region())) return;
1224 offset_region( child->update_region, offset_x, offset_y );
1225 if (subtract_region( tmp, win->update_region, child->update_region ))
1226 {
1227 set_update_region( win, tmp );
1228 tmp = NULL;
1229 }
1230 /* restore child coords */
1231 offset_region( child->update_region, -offset_x, -offset_y );
1232 }
1233 }
1234 if (tmp) free_region( tmp );
1235}
1236
1237
1238/* add/subtract a region (in client coordinates) to the update region of the window */
1239static void redraw_window( struct window *win, struct region *region, int frame, unsigned int flags )
1240{
1241 struct region *tmp;
1242 struct window *child;
1243
1244 if (flags & RDW_INVALIDATE)
1245 {
1246 if (!(tmp = crop_region_to_win_rect( win, region, frame ))) return;
1247
1248 if (!add_update_region( win, tmp )) return;
1249
1250 if (flags & RDW_FRAME) win->paint_flags |= PAINT_NONCLIENT;
1251 if (flags & RDW_ERASE) win->paint_flags |= PAINT_ERASE;
1252 }
1253 else if (flags & RDW_VALIDATE)
1254 {
1255 if (!region && (flags & RDW_NOFRAME)) /* shortcut: validate everything */
1256 {
1257 set_update_region( win, NULL );
1258 }
1259 else if (win->update_region)
1260 {
1261 if ((tmp = crop_region_to_win_rect( win, region, frame )))
1262 {
1263 if (!subtract_region( tmp, win->update_region, tmp ))
1264 {
1265 free_region( tmp );
1266 return;
1267 }
1268 set_update_region( win, tmp );
1269 }
1270 if (flags & RDW_NOFRAME) validate_non_client( win );
Alexandre Julliarddf13cee2007-08-27 16:41:08 +02001271 if (flags & RDW_NOERASE) win->paint_flags &= ~(PAINT_ERASE | PAINT_DELAYED_ERASE);
Alexandre Julliard5defa492004-12-07 17:31:53 +00001272 }
1273 }
1274
1275 if ((flags & RDW_INTERNALPAINT) && !(win->paint_flags & PAINT_INTERNAL))
1276 {
1277 win->paint_flags |= PAINT_INTERNAL;
1278 inc_window_paint_count( win, 1 );
1279 }
1280 else if ((flags & RDW_NOINTERNALPAINT) && (win->paint_flags & PAINT_INTERNAL))
1281 {
1282 win->paint_flags &= ~PAINT_INTERNAL;
1283 inc_window_paint_count( win, -1 );
1284 }
1285
Alexandre Julliard5defa492004-12-07 17:31:53 +00001286 /* now process children recursively */
1287
1288 if (flags & RDW_NOCHILDREN) return;
1289 if (win->style & WS_MINIMIZE) return;
1290 if ((win->style & WS_CLIPCHILDREN) && !(flags & RDW_ALLCHILDREN)) return;
1291
1292 if (!(tmp = crop_region_to_win_rect( win, region, 0 ))) return;
1293
1294 /* map to client coordinates */
1295 offset_region( tmp, win->window_rect.left - win->client_rect.left,
1296 win->window_rect.top - win->client_rect.top );
1297
1298 if (flags & RDW_INVALIDATE) flags |= RDW_FRAME | RDW_ERASE;
1299
Alexandre Julliard705909a2005-03-16 19:54:33 +00001300 LIST_FOR_EACH_ENTRY( child, &win->children, struct window, entry )
Alexandre Julliard5defa492004-12-07 17:31:53 +00001301 {
1302 if (!(child->style & WS_VISIBLE)) continue;
1303 if (!rect_in_region( tmp, &child->window_rect )) continue;
1304 offset_region( tmp, -child->client_rect.left, -child->client_rect.top );
1305 redraw_window( child, tmp, 1, flags );
1306 offset_region( tmp, child->client_rect.left, child->client_rect.top );
1307 }
1308 free_region( tmp );
1309}
1310
1311
1312/* retrieve the update flags for a window depending on the state of the update region */
1313static unsigned int get_update_flags( struct window *win, unsigned int flags )
1314{
1315 unsigned int ret = 0;
1316
1317 if (flags & UPDATE_NONCLIENT)
1318 {
1319 if ((win->paint_flags & PAINT_NONCLIENT) && win->update_region) ret |= UPDATE_NONCLIENT;
1320 }
1321 if (flags & UPDATE_ERASE)
1322 {
1323 if ((win->paint_flags & PAINT_ERASE) && win->update_region) ret |= UPDATE_ERASE;
1324 }
1325 if (flags & UPDATE_PAINT)
1326 {
Alexandre Julliarddf13cee2007-08-27 16:41:08 +02001327 if (win->update_region)
1328 {
1329 if (win->paint_flags & PAINT_DELAYED_ERASE) ret |= UPDATE_DELAYED_ERASE;
1330 ret |= UPDATE_PAINT;
1331 }
Alexandre Julliard5defa492004-12-07 17:31:53 +00001332 }
1333 if (flags & UPDATE_INTERNALPAINT)
1334 {
Alexandre Julliarddf13cee2007-08-27 16:41:08 +02001335 if (win->paint_flags & PAINT_INTERNAL)
1336 {
1337 ret |= UPDATE_INTERNALPAINT;
1338 if (win->paint_flags & PAINT_DELAYED_ERASE) ret |= UPDATE_DELAYED_ERASE;
1339 }
Alexandre Julliard5defa492004-12-07 17:31:53 +00001340 }
1341 return ret;
1342}
1343
1344
1345/* iterate through the children of the given window until we find one with some update flags */
Alexandre Julliarddb412aa2005-05-31 13:37:16 +00001346static unsigned int get_child_update_flags( struct window *win, struct window *from_child,
1347 unsigned int flags, struct window **child )
Alexandre Julliard5defa492004-12-07 17:31:53 +00001348{
1349 struct window *ptr;
1350 unsigned int ret = 0;
1351
Alexandre Julliarddb412aa2005-05-31 13:37:16 +00001352 /* first make sure we want to iterate children at all */
1353
1354 if (win->style & WS_MINIMIZE) return 0;
1355
1356 /* note: the WS_CLIPCHILDREN test is the opposite of the invalidation case,
1357 * here we only want to repaint children of windows that clip them, others
1358 * need to wait for WM_PAINT to be done in the parent first.
1359 */
1360 if (!(flags & UPDATE_ALLCHILDREN) && !(win->style & WS_CLIPCHILDREN)) return 0;
1361
Alexandre Julliard705909a2005-03-16 19:54:33 +00001362 LIST_FOR_EACH_ENTRY( ptr, &win->children, struct window, entry )
Alexandre Julliard5defa492004-12-07 17:31:53 +00001363 {
Alexandre Julliarddb412aa2005-05-31 13:37:16 +00001364 if (from_child) /* skip all children until from_child is found */
1365 {
1366 if (ptr == from_child) from_child = NULL;
1367 continue;
1368 }
Alexandre Julliard5defa492004-12-07 17:31:53 +00001369 if (!(ptr->style & WS_VISIBLE)) continue;
1370 if ((ret = get_update_flags( ptr, flags )) != 0)
1371 {
1372 *child = ptr;
1373 break;
1374 }
Alexandre Julliarddb412aa2005-05-31 13:37:16 +00001375 if ((ret = get_child_update_flags( ptr, NULL, flags, child ))) break;
Alexandre Julliard5defa492004-12-07 17:31:53 +00001376 }
1377 return ret;
1378}
1379
Alexandre Julliarddb412aa2005-05-31 13:37:16 +00001380/* iterate through children and siblings of the given window until we find one with some update flags */
1381static unsigned int get_window_update_flags( struct window *win, struct window *from_child,
1382 unsigned int flags, struct window **child )
1383{
1384 unsigned int ret;
1385 struct window *ptr, *from_sibling = NULL;
1386
1387 /* if some parent is not visible start from the next sibling */
1388
1389 if (!is_visible( win )) return 0;
Alexandre Julliard8c518802005-07-08 11:37:40 +00001390 for (ptr = from_child; ptr; ptr = ptr->parent)
Alexandre Julliarddb412aa2005-05-31 13:37:16 +00001391 {
1392 if (!(ptr->style & WS_VISIBLE) || (ptr->style & WS_MINIMIZE)) from_sibling = ptr;
1393 if (ptr == win) break;
1394 }
1395
1396 /* non-client painting must be delayed if one of the parents is going to
1397 * be repainted and doesn't clip children */
1398
1399 if ((flags & UPDATE_NONCLIENT) && !(flags & (UPDATE_PAINT|UPDATE_INTERNALPAINT)))
1400 {
Alexandre Julliard8c518802005-07-08 11:37:40 +00001401 for (ptr = win->parent; ptr; ptr = ptr->parent)
Alexandre Julliarddb412aa2005-05-31 13:37:16 +00001402 {
1403 if (!(ptr->style & WS_CLIPCHILDREN) && win_needs_repaint( ptr ))
1404 return 0;
1405 }
1406 if (from_child && !(flags & UPDATE_ALLCHILDREN))
1407 {
Alexandre Julliard8c518802005-07-08 11:37:40 +00001408 for (ptr = from_sibling ? from_sibling : from_child; ptr; ptr = ptr->parent)
Alexandre Julliarddb412aa2005-05-31 13:37:16 +00001409 {
1410 if (!(ptr->style & WS_CLIPCHILDREN) && win_needs_repaint( ptr )) from_sibling = ptr;
1411 if (ptr == win) break;
1412 }
1413 }
1414 }
1415
1416
1417 /* check window itself (only if not restarting from a child) */
1418
1419 if (!from_child)
1420 {
1421 if ((ret = get_update_flags( win, flags )))
1422 {
1423 *child = win;
1424 return ret;
1425 }
1426 from_child = win;
1427 }
1428
1429 /* now check children */
1430
1431 if (flags & UPDATE_NOCHILDREN) return 0;
1432 if (!from_sibling)
1433 {
1434 if ((ret = get_child_update_flags( from_child, NULL, flags, child ))) return ret;
1435 from_sibling = from_child;
1436 }
1437
1438 /* then check siblings and parent siblings */
1439
1440 while (from_sibling->parent && from_sibling != win)
1441 {
1442 if ((ret = get_child_update_flags( from_sibling->parent, from_sibling, flags, child )))
1443 return ret;
1444 from_sibling = from_sibling->parent;
1445 }
1446 return 0;
1447}
1448
Alexandre Julliard5defa492004-12-07 17:31:53 +00001449
Alexandre Julliarda771c532007-10-17 17:43:06 +02001450/* expose the areas revealed by a vis region change on the window parent */
1451/* returns the region exposed on the window itself (in client coordinates) */
1452static struct region *expose_window( struct window *win, const rectangle_t *old_window_rect,
1453 struct region *old_vis_rgn )
Alexandre Julliard5defa492004-12-07 17:31:53 +00001454{
Alexandre Julliarda771c532007-10-17 17:43:06 +02001455 struct region *new_vis_rgn, *exposed_rgn;
Alexandre Julliard5defa492004-12-07 17:31:53 +00001456
Alexandre Julliarda771c532007-10-17 17:43:06 +02001457 if (!(new_vis_rgn = get_visible_region( win, DCX_WINDOW ))) return NULL;
1458
1459 if ((exposed_rgn = create_empty_region()))
Alexandre Julliard5defa492004-12-07 17:31:53 +00001460 {
Alexandre Julliarda771c532007-10-17 17:43:06 +02001461 if (subtract_region( exposed_rgn, new_vis_rgn, old_vis_rgn ) && !is_region_empty( exposed_rgn ))
1462 {
1463 /* make it relative to the new client area */
1464 offset_region( exposed_rgn, win->window_rect.left - win->client_rect.left,
1465 win->window_rect.top - win->client_rect.top );
1466 }
1467 else
1468 {
1469 free_region( exposed_rgn );
1470 exposed_rgn = NULL;
1471 }
Alexandre Julliard5defa492004-12-07 17:31:53 +00001472 }
Alexandre Julliarda771c532007-10-17 17:43:06 +02001473
Alexandre Julliarde42eaaa2008-03-03 17:52:18 +01001474 if (win->parent)
Alexandre Julliarda771c532007-10-17 17:43:06 +02001475 {
Alexandre Julliarde42eaaa2008-03-03 17:52:18 +01001476 /* make it relative to the old window pos for subtracting */
1477 offset_region( new_vis_rgn, win->window_rect.left - old_window_rect->left,
1478 win->window_rect.top - old_window_rect->top );
1479
1480 if ((win->parent->style & WS_CLIPCHILDREN) ?
1481 subtract_region( new_vis_rgn, old_vis_rgn, new_vis_rgn ) :
1482 xor_region( new_vis_rgn, old_vis_rgn, new_vis_rgn ))
1483 {
1484 if (!is_region_empty( new_vis_rgn ))
1485 {
Alexandre Julliardb2ea5722008-03-18 12:22:53 +01001486 /* make it relative to parent */
1487 offset_region( new_vis_rgn, old_window_rect->left, old_window_rect->top );
Alexandre Julliarde42eaaa2008-03-03 17:52:18 +01001488 redraw_window( win->parent, new_vis_rgn, 0, RDW_INVALIDATE | RDW_ERASE | RDW_ALLCHILDREN );
1489 }
1490 }
Alexandre Julliarda771c532007-10-17 17:43:06 +02001491 }
1492 free_region( new_vis_rgn );
1493 return exposed_rgn;
Alexandre Julliard5defa492004-12-07 17:31:53 +00001494}
1495
1496
Alexandre Julliard5defa492004-12-07 17:31:53 +00001497/* set the window and client rectangles, updating the update region if necessary */
Alexandre Julliard4e47afb2005-03-17 14:02:06 +00001498static void set_window_pos( struct window *win, struct window *previous,
Alexandre Julliardae661da2005-02-03 13:40:12 +00001499 unsigned int swp_flags, const rectangle_t *window_rect,
Alexandre Julliard0f9484a2008-07-03 20:33:12 +02001500 const rectangle_t *client_rect, const rectangle_t *visible_rect,
1501 const rectangle_t *valid_rects )
Alexandre Julliard5defa492004-12-07 17:31:53 +00001502{
Alexandre Julliarda771c532007-10-17 17:43:06 +02001503 struct region *old_vis_rgn = NULL, *exposed_rgn = NULL;
Alexandre Julliard5defa492004-12-07 17:31:53 +00001504 const rectangle_t old_window_rect = win->window_rect;
Alexandre Julliard0f9484a2008-07-03 20:33:12 +02001505 const rectangle_t old_visible_rect = win->visible_rect;
Alexandre Julliard5defa492004-12-07 17:31:53 +00001506 const rectangle_t old_client_rect = win->client_rect;
Alexandre Julliarde02969d2008-05-12 12:26:26 +02001507 rectangle_t rect;
Alexandre Julliard952c82c2007-10-17 17:28:04 +02001508 int client_changed, frame_changed;
Alexandre Julliard4e47afb2005-03-17 14:02:06 +00001509 int visible = (win->style & WS_VISIBLE) || (swp_flags & SWP_SHOWWINDOW);
Alexandre Julliard5defa492004-12-07 17:31:53 +00001510
Alexandre Julliard4e47afb2005-03-17 14:02:06 +00001511 if (win->parent && !is_visible( win->parent )) visible = 0;
Alexandre Julliard5defa492004-12-07 17:31:53 +00001512
Alexandre Julliard5874b852007-09-20 19:38:50 +02001513 if (visible && !(old_vis_rgn = get_visible_region( win, DCX_WINDOW ))) return;
Alexandre Julliard5defa492004-12-07 17:31:53 +00001514
1515 /* set the new window info before invalidating anything */
1516
Alexandre Julliardf7560902005-03-17 19:10:41 +00001517 win->window_rect = *window_rect;
Alexandre Julliard0f9484a2008-07-03 20:33:12 +02001518 win->visible_rect = *visible_rect;
Alexandre Julliardf7560902005-03-17 19:10:41 +00001519 win->client_rect = *client_rect;
Alexandre Julliardc183a9e2007-10-31 18:12:56 +01001520 if (!(swp_flags & SWP_NOZORDER) && win->parent) link_window( win, previous );
Alexandre Julliard5defa492004-12-07 17:31:53 +00001521 if (swp_flags & SWP_SHOWWINDOW) win->style |= WS_VISIBLE;
1522 else if (swp_flags & SWP_HIDEWINDOW) win->style &= ~WS_VISIBLE;
1523
Alexandre Julliard4e47afb2005-03-17 14:02:06 +00001524 /* if the window is not visible, everything is easy */
1525 if (!visible) return;
1526
Alexandre Julliard5defa492004-12-07 17:31:53 +00001527 /* expose anything revealed by the change */
1528
Alexandre Julliardae661da2005-02-03 13:40:12 +00001529 if (!(swp_flags & SWP_NOREDRAW))
Alexandre Julliarda771c532007-10-17 17:43:06 +02001530 exposed_rgn = expose_window( win, &old_window_rect, old_vis_rgn );
Alexandre Julliard5defa492004-12-07 17:31:53 +00001531
1532 if (!(win->style & WS_VISIBLE))
1533 {
1534 /* clear the update region since the window is no longer visible */
1535 validate_whole_window( win );
Ulrich Czekallacae37b12007-01-25 08:57:14 -05001536 validate_children( win );
Alexandre Julliard5defa492004-12-07 17:31:53 +00001537 goto done;
1538 }
1539
Alexandre Julliard50dc5a32005-05-26 12:28:07 +00001540 /* crop update region to the new window rect */
1541
Alexandre Julliarde02969d2008-05-12 12:26:26 +02001542 if (win->update_region)
Alexandre Julliard50dc5a32005-05-26 12:28:07 +00001543 {
Alexandre Julliarde02969d2008-05-12 12:26:26 +02001544 if (get_window_visible_rect( win, &rect, 1 ))
Alexandre Julliard50dc5a32005-05-26 12:28:07 +00001545 {
Alexandre Julliarde02969d2008-05-12 12:26:26 +02001546 struct region *tmp = create_empty_region();
1547 if (tmp)
1548 {
1549 set_region_rect( tmp, &rect );
1550 if (intersect_region( tmp, win->update_region, tmp ))
1551 set_update_region( win, tmp );
1552 else
1553 free_region( tmp );
1554 }
Alexandre Julliard50dc5a32005-05-26 12:28:07 +00001555 }
Alexandre Julliarde02969d2008-05-12 12:26:26 +02001556 else set_update_region( win, NULL ); /* visible rect is empty */
Alexandre Julliard50dc5a32005-05-26 12:28:07 +00001557 }
1558
Alexandre Julliardbc251192008-05-12 12:28:57 +02001559 /* crop children regions to the new window rect */
1560
1561 if (get_window_visible_rect( win, &rect, 0 ))
1562 {
1563 /* map to client coords */
1564 offset_rect( &rect, win->window_rect.left - win->client_rect.left,
1565 win->window_rect.top - win->client_rect.top );
1566 crop_children_update_region( win, &rect );
1567 }
1568 else crop_children_update_region( win, NULL );
1569
Alexandre Julliardae661da2005-02-03 13:40:12 +00001570 if (swp_flags & SWP_NOREDRAW) goto done; /* do not repaint anything */
1571
Alexandre Julliard5defa492004-12-07 17:31:53 +00001572 /* expose the whole non-client area if it changed in any way */
1573
Alexandre Julliard952c82c2007-10-17 17:28:04 +02001574 if (swp_flags & SWP_NOCOPYBITS)
1575 {
1576 frame_changed = ((swp_flags & SWP_FRAMECHANGED) ||
Alexandre Julliard0f9484a2008-07-03 20:33:12 +02001577 memcmp( window_rect, &old_window_rect, sizeof(old_window_rect) ) ||
1578 memcmp( visible_rect, &old_visible_rect, sizeof(old_visible_rect) ));
Alexandre Julliard952c82c2007-10-17 17:28:04 +02001579 client_changed = memcmp( client_rect, &old_client_rect, sizeof(old_client_rect) );
1580 }
1581 else
1582 {
1583 /* assume the bits have been moved to follow the window rect */
1584 int x_offset = window_rect->left - old_window_rect.left;
1585 int y_offset = window_rect->top - old_window_rect.top;
1586 frame_changed = ((swp_flags & SWP_FRAMECHANGED) ||
1587 window_rect->right - old_window_rect.right != x_offset ||
Alexandre Julliard0f9484a2008-07-03 20:33:12 +02001588 window_rect->bottom - old_window_rect.bottom != y_offset ||
1589 visible_rect->left - old_visible_rect.left != x_offset ||
1590 visible_rect->right - old_visible_rect.right != x_offset ||
1591 visible_rect->top - old_visible_rect.top != y_offset ||
1592 visible_rect->bottom - old_visible_rect.bottom != y_offset);
Alexandre Julliard952c82c2007-10-17 17:28:04 +02001593 client_changed = (client_rect->left - old_client_rect.left != x_offset ||
1594 client_rect->right - old_client_rect.right != x_offset ||
1595 client_rect->top - old_client_rect.top != y_offset ||
Alexandre Julliard2921f5c2008-01-22 20:06:35 +01001596 client_rect->bottom - old_client_rect.bottom != y_offset ||
1597 !valid_rects ||
1598 memcmp( &valid_rects[0], client_rect, sizeof(*client_rect) ));
Alexandre Julliard952c82c2007-10-17 17:28:04 +02001599 }
1600
1601 if (frame_changed || client_changed)
Alexandre Julliard5defa492004-12-07 17:31:53 +00001602 {
Alexandre Julliard2921f5c2008-01-22 20:06:35 +01001603 struct region *win_rgn = old_vis_rgn; /* reuse previous region */
Alexandre Julliard5defa492004-12-07 17:31:53 +00001604
Alexandre Julliard2921f5c2008-01-22 20:06:35 +01001605 set_region_rect( win_rgn, window_rect );
1606 if (valid_rects)
Alexandre Julliard5defa492004-12-07 17:31:53 +00001607 {
Alexandre Julliard548c9732005-02-22 19:41:43 +00001608 /* subtract the valid portion of client rect from the total region */
Alexandre Julliard2921f5c2008-01-22 20:06:35 +01001609 struct region *tmp = create_empty_region();
1610 if (tmp)
Alexandre Julliard5defa492004-12-07 17:31:53 +00001611 {
Alexandre Julliard2921f5c2008-01-22 20:06:35 +01001612 set_region_rect( tmp, &valid_rects[0] );
1613 if (subtract_region( tmp, win_rgn, tmp )) win_rgn = tmp;
1614 else free_region( tmp );
Alexandre Julliard5defa492004-12-07 17:31:53 +00001615 }
Alexandre Julliard5defa492004-12-07 17:31:53 +00001616 }
Alexandre Julliard2921f5c2008-01-22 20:06:35 +01001617 if (!is_desktop_window(win))
1618 offset_region( win_rgn, -client_rect->left, -client_rect->top );
1619 if (exposed_rgn)
1620 {
1621 union_region( exposed_rgn, exposed_rgn, win_rgn );
1622 if (win_rgn != old_vis_rgn) free_region( win_rgn );
1623 }
1624 else
1625 {
1626 exposed_rgn = win_rgn;
1627 if (win_rgn == old_vis_rgn) old_vis_rgn = NULL;
1628 }
Alexandre Julliard5defa492004-12-07 17:31:53 +00001629 }
1630
Alexandre Julliarda771c532007-10-17 17:43:06 +02001631 if (exposed_rgn)
1632 redraw_window( win, exposed_rgn, 1, RDW_INVALIDATE | RDW_ERASE | RDW_FRAME | RDW_ALLCHILDREN );
1633
Alexandre Julliard5defa492004-12-07 17:31:53 +00001634done:
Alexandre Julliard2921f5c2008-01-22 20:06:35 +01001635 if (old_vis_rgn) free_region( old_vis_rgn );
Alexandre Julliarda771c532007-10-17 17:43:06 +02001636 if (exposed_rgn) free_region( exposed_rgn );
Alexandre Julliard5defa492004-12-07 17:31:53 +00001637 clear_error(); /* we ignore out of memory errors once the new rects have been set */
1638}
1639
Alexandre Julliardbfce1512003-12-10 04:08:06 +00001640
Alexandre Julliard1767b452007-03-05 16:43:09 +01001641/* set the window region, updating the update region if necessary */
1642static void set_window_region( struct window *win, struct region *region, int redraw )
1643{
Alexandre Julliarda771c532007-10-17 17:43:06 +02001644 struct region *old_vis_rgn = NULL, *exposed_rgn;
Alexandre Julliard1767b452007-03-05 16:43:09 +01001645
1646 /* no need to redraw if window is not visible */
1647 if (redraw && !is_visible( win )) redraw = 0;
1648
Alexandre Julliard5874b852007-09-20 19:38:50 +02001649 if (redraw) old_vis_rgn = get_visible_region( win, DCX_WINDOW );
Alexandre Julliard1767b452007-03-05 16:43:09 +01001650
1651 if (win->win_region) free_region( win->win_region );
1652 win->win_region = region;
1653
Alexandre Julliarda771c532007-10-17 17:43:06 +02001654 /* expose anything revealed by the change */
1655 if (old_vis_rgn && ((exposed_rgn = expose_window( win, &win->window_rect, old_vis_rgn ))))
Alexandre Julliard1767b452007-03-05 16:43:09 +01001656 {
Alexandre Julliarda771c532007-10-17 17:43:06 +02001657 redraw_window( win, exposed_rgn, 1, RDW_INVALIDATE | RDW_ERASE | RDW_FRAME | RDW_ALLCHILDREN );
1658 free_region( exposed_rgn );
Alexandre Julliard1767b452007-03-05 16:43:09 +01001659 }
1660
1661 if (old_vis_rgn) free_region( old_vis_rgn );
1662 clear_error(); /* we ignore out of memory errors since the region has been set */
1663}
1664
1665
Alexandre Julliard5dcf1572009-06-03 11:29:15 +02001666/* destroy a window */
1667void destroy_window( struct window *win )
1668{
1669 /* hide the window */
1670 if (is_visible(win))
1671 {
1672 struct region *vis_rgn = get_visible_region( win, DCX_WINDOW );
1673 win->style &= ~WS_VISIBLE;
1674 if (vis_rgn)
1675 {
1676 struct region *exposed_rgn = expose_window( win, &win->window_rect, vis_rgn );
1677 if (exposed_rgn) free_region( exposed_rgn );
1678 free_region( vis_rgn );
1679 }
1680 validate_whole_window( win );
1681 validate_children( win );
1682 }
1683
1684 /* destroy all children */
1685 while (!list_empty(&win->children))
1686 destroy_window( LIST_ENTRY( list_head(&win->children), struct window, entry ));
1687 while (!list_empty(&win->unlinked))
1688 destroy_window( LIST_ENTRY( list_head(&win->unlinked), struct window, entry ));
1689
1690 /* reset global window pointers, if the corresponding window is destroyed */
1691 if (win == shell_window) shell_window = NULL;
1692 if (win == shell_listview) shell_listview = NULL;
1693 if (win == progman_window) progman_window = NULL;
1694 if (win == taskman_window) taskman_window = NULL;
1695 free_user_handle( win->handle );
1696 destroy_properties( win );
1697 list_remove( &win->entry );
1698 if (is_desktop_window(win))
1699 {
1700 struct desktop *desktop = win->desktop;
1701 assert( desktop->top_window == win || desktop->msg_window == win );
1702 if (desktop->top_window == win) desktop->top_window = NULL;
1703 else desktop->msg_window = NULL;
1704 }
1705 detach_window_thread( win );
1706 if (win->win_region) free_region( win->win_region );
1707 if (win->update_region) free_region( win->update_region );
1708 if (win->class) release_class( win->class );
1709 free( win->text );
1710 memset( win, 0x55, sizeof(*win) + win->nb_extra_bytes - 1 );
1711 free( win );
1712}
1713
1714
Alexandre Julliard1a66d222001-08-28 18:44:52 +00001715/* create a window */
1716DECL_HANDLER(create_window)
1717{
Alexandre Julliard81e6edb2008-06-25 14:43:39 +02001718 struct window *win, *parent = NULL, *owner = NULL;
Alexandre Julliard25e070c2008-06-25 14:03:08 +02001719 struct unicode_str cls_name;
Alexandre Julliard1fc461f2007-11-02 15:16:25 +01001720 atom_t atom;
Alexandre Julliardbd13ab82003-12-11 05:34:53 +00001721
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001722 reply->handle = 0;
Alexandre Julliard81e6edb2008-06-25 14:43:39 +02001723 if (req->parent && !(parent = get_window( req->parent ))) return;
Alexandre Julliard251be542006-03-06 20:37:52 +01001724
Alexandre Julliard8c518802005-07-08 11:37:40 +00001725 if (req->owner)
1726 {
1727 if (!(owner = get_window( req->owner ))) return;
1728 if (is_desktop_window(owner)) owner = NULL;
Alexandre Julliard81e6edb2008-06-25 14:43:39 +02001729 else if (parent && !is_desktop_window(parent))
Alexandre Julliardddc33172001-10-22 19:08:33 +00001730 {
Alexandre Julliard7dafa612002-09-25 00:21:56 +00001731 /* an owned window must be created as top-level */
Alexandre Julliardddc33172001-10-22 19:08:33 +00001732 set_error( STATUS_ACCESS_DENIED );
1733 return;
1734 }
Alexandre Julliard4be3d4c2006-03-06 15:00:37 +01001735 else /* owner must be a top-level window */
1736 while (!is_desktop_window(owner->parent)) owner = owner->parent;
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00001737 }
Alexandre Julliard1fc461f2007-11-02 15:16:25 +01001738
Alexandre Julliard25e070c2008-06-25 14:03:08 +02001739 get_req_unicode_str( &cls_name );
1740 atom = cls_name.len ? find_global_atom( NULL, &cls_name ) : req->atom;
Alexandre Julliard1fc461f2007-11-02 15:16:25 +01001741
1742 if (!(win = create_window( parent, owner, atom, req->instance ))) return;
Alexandre Julliard8c518802005-07-08 11:37:40 +00001743
Alexandre Julliardbd13ab82003-12-11 05:34:53 +00001744 reply->handle = win->handle;
Alexandre Julliard4be3d4c2006-03-06 15:00:37 +01001745 reply->parent = win->parent ? win->parent->handle : 0;
1746 reply->owner = win->owner;
Alexandre Julliardbd13ab82003-12-11 05:34:53 +00001747 reply->extra = win->nb_extra_bytes;
1748 reply->class_ptr = get_class_client_ptr( win->class );
Alexandre Julliard1a66d222001-08-28 18:44:52 +00001749}
1750
1751
Alexandre Julliard4d32a472005-03-25 10:38:56 +00001752/* set the parent of a window */
1753DECL_HANDLER(set_parent)
Alexandre Julliard1a66d222001-08-28 18:44:52 +00001754{
Alexandre Julliard4d32a472005-03-25 10:38:56 +00001755 struct window *win, *parent = NULL;
Alexandre Julliard1a66d222001-08-28 18:44:52 +00001756
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00001757 if (!(win = get_window( req->handle ))) return;
1758 if (req->parent && !(parent = get_window( req->parent ))) return;
Alexandre Julliard844ceb92001-10-09 23:26:40 +00001759
Alexandre Julliard8c518802005-07-08 11:37:40 +00001760 if (is_desktop_window(win))
Alexandre Julliard844ceb92001-10-09 23:26:40 +00001761 {
1762 set_error( STATUS_INVALID_PARAMETER );
1763 return;
1764 }
Alexandre Julliard4d32a472005-03-25 10:38:56 +00001765 reply->old_parent = win->parent->handle;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001766 reply->full_parent = parent ? parent->handle : 0;
Alexandre Julliard4d32a472005-03-25 10:38:56 +00001767 set_parent_window( win, parent );
Alexandre Julliard1a66d222001-08-28 18:44:52 +00001768}
1769
1770
1771/* destroy a window */
1772DECL_HANDLER(destroy_window)
1773{
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00001774 struct window *win = get_window( req->handle );
Alexandre Julliard1a66d222001-08-28 18:44:52 +00001775 if (win)
1776 {
Alexandre Julliard8c518802005-07-08 11:37:40 +00001777 if (!is_desktop_window(win)) destroy_window( win );
Alexandre Julliard251be542006-03-06 20:37:52 +01001778 else if (win->thread == current) detach_window_thread( win );
Alexandre Julliard1a66d222001-08-28 18:44:52 +00001779 else set_error( STATUS_ACCESS_DENIED );
1780 }
1781}
1782
1783
Alexandre Julliard8c518802005-07-08 11:37:40 +00001784/* retrieve the desktop window for the current thread */
1785DECL_HANDLER(get_desktop_window)
1786{
Alexandre Julliard6b36e212008-06-25 14:26:14 +02001787 struct desktop *desktop = get_thread_desktop( current, 0 );
Alexandre Julliard8c518802005-07-08 11:37:40 +00001788
Alexandre Julliard6b36e212008-06-25 14:26:14 +02001789 if (!desktop) return;
1790
1791 if (!desktop->top_window && req->force) /* create it */
1792 {
1793 if ((desktop->top_window = create_window( NULL, NULL, DESKTOP_ATOM, 0 )))
1794 {
1795 detach_window_thread( desktop->top_window );
1796 desktop->top_window->style = WS_POPUP | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CLIPCHILDREN;
1797 }
1798 }
1799
1800 if (!desktop->msg_window && req->force) /* create it */
1801 {
1802 static const WCHAR messageW[] = {'M','e','s','s','a','g','e'};
1803 static const struct unicode_str name = { messageW, sizeof(messageW) };
1804 atom_t atom = add_global_atom( NULL, &name );
1805 if (atom && (desktop->msg_window = create_window( NULL, NULL, atom, 0 )))
1806 {
1807 detach_window_thread( desktop->msg_window );
1808 desktop->msg_window->style = WS_POPUP | WS_CLIPSIBLINGS | WS_CLIPCHILDREN;
1809 }
1810 }
1811
1812 reply->top_window = desktop->top_window ? desktop->top_window->handle : 0;
1813 reply->msg_window = desktop->msg_window ? desktop->msg_window->handle : 0;
1814 release_object( desktop );
Alexandre Julliard8c518802005-07-08 11:37:40 +00001815}
1816
1817
Alexandre Julliardddc33172001-10-22 19:08:33 +00001818/* set a window owner */
1819DECL_HANDLER(set_window_owner)
1820{
1821 struct window *win = get_window( req->handle );
Alexandre Julliard7dafa612002-09-25 00:21:56 +00001822 struct window *owner = NULL;
Alexandre Julliardddc33172001-10-22 19:08:33 +00001823
Alexandre Julliard7dafa612002-09-25 00:21:56 +00001824 if (!win) return;
1825 if (req->owner && !(owner = get_window( req->owner ))) return;
Alexandre Julliard8c518802005-07-08 11:37:40 +00001826 if (is_desktop_window(win))
Alexandre Julliardddc33172001-10-22 19:08:33 +00001827 {
Alexandre Julliardddc33172001-10-22 19:08:33 +00001828 set_error( STATUS_ACCESS_DENIED );
1829 return;
1830 }
Alexandre Julliard7dafa612002-09-25 00:21:56 +00001831 reply->prev_owner = win->owner;
1832 reply->full_owner = win->owner = owner ? owner->handle : 0;
Alexandre Julliardddc33172001-10-22 19:08:33 +00001833}
1834
1835
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00001836/* get information from a window handle */
Alexandre Julliard1a66d222001-08-28 18:44:52 +00001837DECL_HANDLER(get_window_info)
1838{
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00001839 struct window *win = get_window( req->handle );
Alexandre Julliard1a66d222001-08-28 18:44:52 +00001840
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001841 reply->full_handle = 0;
1842 reply->tid = reply->pid = 0;
Alexandre Julliard1a66d222001-08-28 18:44:52 +00001843 if (win)
1844 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001845 reply->full_handle = win->handle;
Alexandre Julliard5030bda2002-10-11 23:41:06 +00001846 reply->last_active = win->handle;
Dmitry Timoshkov86af38c2005-07-07 12:02:31 +00001847 reply->is_unicode = win->is_unicode;
Alexandre Julliard5030bda2002-10-11 23:41:06 +00001848 if (get_user_object( win->last_active, USER_WINDOW )) reply->last_active = win->last_active;
Alexandre Julliard1a66d222001-08-28 18:44:52 +00001849 if (win->thread)
1850 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001851 reply->tid = get_thread_id( win->thread );
1852 reply->pid = get_process_id( win->thread->process );
Alexandre Julliard251be542006-03-06 20:37:52 +01001853 reply->atom = win->class ? get_class_atom( win->class ) : DESKTOP_ATOM;
Alexandre Julliard1a66d222001-08-28 18:44:52 +00001854 }
1855 }
1856}
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00001857
1858
Alexandre Julliardddc33172001-10-22 19:08:33 +00001859/* set some information in a window */
1860DECL_HANDLER(set_window_info)
1861{
1862 struct window *win = get_window( req->handle );
Alexandre Julliard7dafa612002-09-25 00:21:56 +00001863
Alexandre Julliardddc33172001-10-22 19:08:33 +00001864 if (!win) return;
Alexandre Julliard251be542006-03-06 20:37:52 +01001865 if (req->flags && is_desktop_window(win) && win->thread != current)
Alexandre Julliard7dafa612002-09-25 00:21:56 +00001866 {
1867 set_error( STATUS_ACCESS_DENIED );
1868 return;
1869 }
Alexandre Julliardebf12432003-12-10 01:34:51 +00001870 if (req->extra_size > sizeof(req->extra_value) ||
1871 req->extra_offset < -1 ||
1872 req->extra_offset > win->nb_extra_bytes - (int)req->extra_size)
Alexandre Julliard97903d22003-11-26 22:15:41 +00001873 {
Alexandre Julliardebf12432003-12-10 01:34:51 +00001874 set_win32_error( ERROR_INVALID_INDEX );
Alexandre Julliard97903d22003-11-26 22:15:41 +00001875 return;
1876 }
1877 if (req->extra_offset != -1)
1878 {
Alexandre Julliardebf12432003-12-10 01:34:51 +00001879 memcpy( &reply->old_extra_value, win->extra_bytes + req->extra_offset, req->extra_size );
Alexandre Julliard97903d22003-11-26 22:15:41 +00001880 }
Alexandre Julliardebf12432003-12-10 01:34:51 +00001881 else if (req->flags & SET_WIN_EXTRA)
Alexandre Julliard97903d22003-11-26 22:15:41 +00001882 {
Alexandre Julliardebf12432003-12-10 01:34:51 +00001883 set_win32_error( ERROR_INVALID_INDEX );
Alexandre Julliard97903d22003-11-26 22:15:41 +00001884 return;
1885 }
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001886 reply->old_style = win->style;
1887 reply->old_ex_style = win->ex_style;
1888 reply->old_id = win->id;
1889 reply->old_instance = win->instance;
1890 reply->old_user_data = win->user_data;
Alexandre Julliardddc33172001-10-22 19:08:33 +00001891 if (req->flags & SET_WIN_STYLE) win->style = req->style;
Alexandre Julliardc183a9e2007-10-31 18:12:56 +01001892 if (req->flags & SET_WIN_EXSTYLE)
1893 {
1894 /* WS_EX_TOPMOST can only be changed for unlinked windows */
1895 if (!win->is_linked) win->ex_style = req->ex_style;
1896 else win->ex_style = (req->ex_style & ~WS_EX_TOPMOST) | (win->ex_style & WS_EX_TOPMOST);
Alexandre Julliard05b41812008-09-12 15:30:47 +02001897 if (!(win->ex_style & WS_EX_LAYERED)) win->is_layered = 0;
Alexandre Julliardc183a9e2007-10-31 18:12:56 +01001898 }
Alexandre Julliardddc33172001-10-22 19:08:33 +00001899 if (req->flags & SET_WIN_ID) win->id = req->id;
1900 if (req->flags & SET_WIN_INSTANCE) win->instance = req->instance;
Dmitry Timoshkov86af38c2005-07-07 12:02:31 +00001901 if (req->flags & SET_WIN_UNICODE) win->is_unicode = req->is_unicode;
Alexandre Julliardddc33172001-10-22 19:08:33 +00001902 if (req->flags & SET_WIN_USERDATA) win->user_data = req->user_data;
Alexandre Julliardebf12432003-12-10 01:34:51 +00001903 if (req->flags & SET_WIN_EXTRA) memcpy( win->extra_bytes + req->extra_offset,
1904 &req->extra_value, req->extra_size );
Alexandre Julliard5defa492004-12-07 17:31:53 +00001905
1906 /* changing window style triggers a non-client paint */
1907 if (req->flags & SET_WIN_STYLE) win->paint_flags |= PAINT_NONCLIENT;
Alexandre Julliardddc33172001-10-22 19:08:33 +00001908}
1909
1910
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00001911/* get a list of the window parents, up to the root of the tree */
1912DECL_HANDLER(get_window_parents)
1913{
1914 struct window *ptr, *win = get_window( req->handle );
1915 int total = 0;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001916 user_handle_t *data;
Alexandre Julliard0f273c12006-07-26 10:43:25 +02001917 data_size_t len;
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00001918
1919 if (win) for (ptr = win->parent; ptr; ptr = ptr->parent) total++;
1920
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001921 reply->count = total;
1922 len = min( get_reply_max_size(), total * sizeof(user_handle_t) );
1923 if (len && ((data = set_reply_data_size( len ))))
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00001924 {
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00001925 for (ptr = win->parent; ptr && len; ptr = ptr->parent, len -= sizeof(*data))
1926 *data++ = ptr->handle;
1927 }
1928}
1929
1930
1931/* get a list of the window children */
1932DECL_HANDLER(get_window_children)
1933{
Alexandre Julliard612c0102008-06-25 15:30:22 +02001934 struct window *parent = NULL;
1935 unsigned int total;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001936 user_handle_t *data;
Alexandre Julliard0f273c12006-07-26 10:43:25 +02001937 data_size_t len;
Alexandre Julliard25e070c2008-06-25 14:03:08 +02001938 struct unicode_str cls_name;
Alexandre Julliarda54a9902007-11-02 15:26:49 +01001939 atom_t atom = req->atom;
Alexandre Julliard612c0102008-06-25 15:30:22 +02001940 struct desktop *desktop = NULL;
Alexandre Julliarda54a9902007-11-02 15:26:49 +01001941
Alexandre Julliard42e2c992008-06-26 16:49:23 +02001942 get_req_unicode_str( &cls_name );
1943 if (cls_name.len && !(atom = find_global_atom( NULL, &cls_name ))) return;
1944
Alexandre Julliard34fe91b2008-03-18 15:17:40 +01001945 if (req->desktop)
1946 {
Alexandre Julliard612c0102008-06-25 15:30:22 +02001947 if (!(desktop = get_desktop_obj( current->process, req->desktop, DESKTOP_ENUMERATE ))) return;
Alexandre Julliard34fe91b2008-03-18 15:17:40 +01001948 parent = desktop->top_window;
Alexandre Julliard34fe91b2008-03-18 15:17:40 +01001949 }
Alexandre Julliard612c0102008-06-25 15:30:22 +02001950 else
1951 {
1952 if (req->parent && !(parent = get_window( req->parent ))) return;
1953 if (!parent && !(desktop = get_thread_desktop( current, 0 ))) return;
1954 }
Alexandre Julliard34fe91b2008-03-18 15:17:40 +01001955
Alexandre Julliard612c0102008-06-25 15:30:22 +02001956 if (parent)
1957 total = get_children_windows( parent, atom, req->tid, NULL, 0 );
1958 else
1959 total = get_children_windows( desktop->top_window, atom, req->tid, NULL, 0 ) +
1960 get_children_windows( desktop->msg_window, atom, req->tid, NULL, 0 );
1961
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001962 reply->count = total;
1963 len = min( get_reply_max_size(), total * sizeof(user_handle_t) );
1964 if (len && ((data = set_reply_data_size( len ))))
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00001965 {
Alexandre Julliard612c0102008-06-25 15:30:22 +02001966 if (parent) get_children_windows( parent, atom, req->tid, data, len / sizeof(user_handle_t) );
1967 else
Alexandre Julliard844ceb92001-10-09 23:26:40 +00001968 {
Alexandre Julliard612c0102008-06-25 15:30:22 +02001969 total = get_children_windows( desktop->top_window, atom, req->tid,
1970 data, len / sizeof(user_handle_t) );
1971 data += total;
1972 len -= total * sizeof(user_handle_t);
1973 if (len >= sizeof(user_handle_t))
1974 get_children_windows( desktop->msg_window, atom, req->tid,
1975 data, len / sizeof(user_handle_t) );
Alexandre Julliard844ceb92001-10-09 23:26:40 +00001976 }
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00001977 }
Alexandre Julliard612c0102008-06-25 15:30:22 +02001978 if (desktop) release_object( desktop );
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00001979}
1980
1981
Alexandre Julliard4616dcb2004-07-20 22:17:38 +00001982/* get a list of the window children that contain a given point */
1983DECL_HANDLER(get_window_children_from_point)
1984{
1985 struct user_handle_array array;
1986 struct window *parent = get_window( req->parent );
Alexandre Julliard0f273c12006-07-26 10:43:25 +02001987 data_size_t len;
Alexandre Julliard4616dcb2004-07-20 22:17:38 +00001988
1989 if (!parent) return;
1990
1991 array.handles = NULL;
1992 array.count = 0;
1993 array.total = 0;
1994 if (!all_windows_from_point( parent, req->x, req->y, &array )) return;
1995
1996 reply->count = array.count;
1997 len = min( get_reply_max_size(), array.count * sizeof(user_handle_t) );
1998 if (len) set_reply_data_ptr( array.handles, len );
1999 else free( array.handles );
2000}
2001
2002
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00002003/* get window tree information from a window handle */
2004DECL_HANDLER(get_window_tree)
2005{
Alexandre Julliard705909a2005-03-16 19:54:33 +00002006 struct window *ptr, *win = get_window( req->handle );
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00002007
2008 if (!win) return;
2009
Alexandre Julliard705909a2005-03-16 19:54:33 +00002010 reply->parent = 0;
2011 reply->owner = 0;
2012 reply->next_sibling = 0;
2013 reply->prev_sibling = 0;
2014 reply->first_sibling = 0;
2015 reply->last_sibling = 0;
2016 reply->first_child = 0;
2017 reply->last_child = 0;
2018
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00002019 if (win->parent)
2020 {
2021 struct window *parent = win->parent;
Alexandre Julliard705909a2005-03-16 19:54:33 +00002022 reply->parent = parent->handle;
2023 reply->owner = win->owner;
Alexandre Julliardb8435342007-10-31 18:08:19 +01002024 if (win->is_linked)
2025 {
2026 if ((ptr = get_next_window( win ))) reply->next_sibling = ptr->handle;
2027 if ((ptr = get_prev_window( win ))) reply->prev_sibling = ptr->handle;
2028 }
Alexandre Julliard705909a2005-03-16 19:54:33 +00002029 if ((ptr = get_first_child( parent ))) reply->first_sibling = ptr->handle;
2030 if ((ptr = get_last_child( parent ))) reply->last_sibling = ptr->handle;
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00002031 }
Alexandre Julliard705909a2005-03-16 19:54:33 +00002032 if ((ptr = get_first_child( win ))) reply->first_child = ptr->handle;
2033 if ((ptr = get_last_child( win ))) reply->last_child = ptr->handle;
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00002034}
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002035
2036
Alexandre Julliard5defa492004-12-07 17:31:53 +00002037/* set the position and Z order of a window */
2038DECL_HANDLER(set_window_pos)
Alexandre Julliard0d509652001-10-16 21:55:37 +00002039{
Alexandre Julliard0f9484a2008-07-03 20:33:12 +02002040 const rectangle_t *visible_rect = NULL, *valid_rects = NULL;
Alexandre Julliard5defa492004-12-07 17:31:53 +00002041 struct window *previous = NULL;
Alexandre Julliard0d509652001-10-16 21:55:37 +00002042 struct window *win = get_window( req->handle );
Alexandre Julliard5defa492004-12-07 17:31:53 +00002043 unsigned int flags = req->flags;
Alexandre Julliard0d509652001-10-16 21:55:37 +00002044
Alexandre Julliard5defa492004-12-07 17:31:53 +00002045 if (!win) return;
2046 if (!win->parent) flags |= SWP_NOZORDER; /* no Z order for the desktop */
2047
Alexandre Julliard5defa492004-12-07 17:31:53 +00002048 if (!(flags & SWP_NOZORDER))
2049 {
Alexandre Julliardd7641072008-12-08 16:57:38 +01002050 switch ((int)req->previous)
Alexandre Julliard5defa492004-12-07 17:31:53 +00002051 {
Alexandre Julliardc183a9e2007-10-31 18:12:56 +01002052 case 0: /* HWND_TOP */
2053 previous = WINPTR_TOP;
2054 break;
2055 case 1: /* HWND_BOTTOM */
2056 previous = WINPTR_BOTTOM;
2057 break;
2058 case -1: /* HWND_TOPMOST */
2059 previous = WINPTR_TOPMOST;
2060 break;
2061 case -2: /* HWND_NOTOPMOST */
2062 previous = WINPTR_NOTOPMOST;
2063 break;
2064 default:
Alexandre Julliard5defa492004-12-07 17:31:53 +00002065 if (!(previous = get_window( req->previous ))) return;
2066 /* previous must be a sibling */
2067 if (previous->parent != win->parent)
2068 {
2069 set_error( STATUS_INVALID_PARAMETER );
2070 return;
2071 }
Alexandre Julliardc183a9e2007-10-31 18:12:56 +01002072 break;
Alexandre Julliard5defa492004-12-07 17:31:53 +00002073 }
2074 if (previous == win) flags |= SWP_NOZORDER; /* nothing to do */
2075 }
2076
Alexandre Julliard548c9732005-02-22 19:41:43 +00002077 /* window rectangle must be ordered properly */
2078 if (req->window.right < req->window.left || req->window.bottom < req->window.top)
Alexandre Julliard5defa492004-12-07 17:31:53 +00002079 {
2080 set_error( STATUS_INVALID_PARAMETER );
2081 return;
2082 }
2083
Alexandre Julliard0f9484a2008-07-03 20:33:12 +02002084 if (get_req_data_size() >= sizeof(rectangle_t)) visible_rect = get_req_data();
2085 if (get_req_data_size() >= 3 * sizeof(rectangle_t)) valid_rects = visible_rect + 1;
2086
2087 if (!visible_rect) visible_rect = &req->window;
2088 set_window_pos( win, previous, flags, &req->window, &req->client, visible_rect, valid_rects );
Alexandre Julliard5defa492004-12-07 17:31:53 +00002089 reply->new_style = win->style;
Alexandre Julliard917f2882007-10-31 17:51:05 +01002090 reply->new_ex_style = win->ex_style;
Alexandre Julliard0d509652001-10-16 21:55:37 +00002091}
2092
2093
2094/* get the window and client rectangles of a window */
2095DECL_HANDLER(get_window_rectangles)
2096{
2097 struct window *win = get_window( req->handle );
2098
2099 if (win)
2100 {
Alexandre Julliardf7560902005-03-17 19:10:41 +00002101 reply->window = win->window_rect;
2102 reply->visible = win->visible_rect;
2103 reply->client = win->client_rect;
Alexandre Julliard0d509652001-10-16 21:55:37 +00002104 }
2105}
2106
2107
Alexandre Julliard805bdc52001-11-13 22:23:48 +00002108/* get the window text */
2109DECL_HANDLER(get_window_text)
2110{
2111 struct window *win = get_window( req->handle );
Alexandre Julliard805bdc52001-11-13 22:23:48 +00002112
2113 if (win && win->text)
2114 {
Alexandre Julliard0f273c12006-07-26 10:43:25 +02002115 data_size_t len = strlenW( win->text ) * sizeof(WCHAR);
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00002116 if (len > get_reply_max_size()) len = get_reply_max_size();
2117 set_reply_data( win->text, len );
Alexandre Julliard805bdc52001-11-13 22:23:48 +00002118 }
Alexandre Julliard805bdc52001-11-13 22:23:48 +00002119}
2120
2121
2122/* set the window text */
2123DECL_HANDLER(set_window_text)
2124{
2125 struct window *win = get_window( req->handle );
2126
2127 if (win)
2128 {
2129 WCHAR *text = NULL;
Alexandre Julliard0f273c12006-07-26 10:43:25 +02002130 data_size_t len = get_req_data_size() / sizeof(WCHAR);
Alexandre Julliard805bdc52001-11-13 22:23:48 +00002131 if (len)
2132 {
2133 if (!(text = mem_alloc( (len+1) * sizeof(WCHAR) ))) return;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00002134 memcpy( text, get_req_data(), len * sizeof(WCHAR) );
Alexandre Julliard805bdc52001-11-13 22:23:48 +00002135 text[len] = 0;
2136 }
Michael Stefaniuc5ceccec2006-10-09 23:34:36 +02002137 free( win->text );
Alexandre Julliard805bdc52001-11-13 22:23:48 +00002138 win->text = text;
2139 }
2140}
2141
2142
Alexandre Julliard0d509652001-10-16 21:55:37 +00002143/* get the coordinates offset between two windows */
2144DECL_HANDLER(get_windows_offset)
2145{
2146 struct window *win;
2147
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00002148 reply->x = reply->y = 0;
Alexandre Julliard0d509652001-10-16 21:55:37 +00002149 if (req->from)
2150 {
2151 if (!(win = get_window( req->from ))) return;
Alexandre Julliard844374a2006-10-26 12:51:54 +02002152 while (win && !is_desktop_window(win))
Alexandre Julliard0d509652001-10-16 21:55:37 +00002153 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00002154 reply->x += win->client_rect.left;
2155 reply->y += win->client_rect.top;
Alexandre Julliard0d509652001-10-16 21:55:37 +00002156 win = win->parent;
2157 }
2158 }
2159 if (req->to)
2160 {
2161 if (!(win = get_window( req->to ))) return;
Alexandre Julliard844374a2006-10-26 12:51:54 +02002162 while (win && !is_desktop_window(win))
Alexandre Julliard0d509652001-10-16 21:55:37 +00002163 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00002164 reply->x -= win->client_rect.left;
2165 reply->y -= win->client_rect.top;
Alexandre Julliard0d509652001-10-16 21:55:37 +00002166 win = win->parent;
2167 }
2168 }
2169}
2170
2171
Alexandre Julliarde8d86b72004-06-23 20:44:58 +00002172/* get the visible region of a window */
2173DECL_HANDLER(get_visible_region)
2174{
2175 struct region *region;
Alexandre Julliardbc75f2f2005-03-31 15:36:57 +00002176 struct window *top, *win = get_window( req->window );
Alexandre Julliarde8d86b72004-06-23 20:44:58 +00002177
2178 if (!win) return;
Alexandre Julliarde8d86b72004-06-23 20:44:58 +00002179
Alexandre Julliardbc75f2f2005-03-31 15:36:57 +00002180 top = get_top_clipping_window( win );
Alexandre Julliard5874b852007-09-20 19:38:50 +02002181 if ((region = get_visible_region( win, req->flags )))
Alexandre Julliarde8d86b72004-06-23 20:44:58 +00002182 {
Alexandre Julliardeea70692005-03-30 17:11:46 +00002183 rectangle_t *data;
2184 map_win_region_to_screen( win, region );
2185 data = get_region_data_and_free( region, get_reply_max_size(), &reply->total_size );
Alexandre Julliard807fe072004-09-17 18:20:11 +00002186 if (data) set_reply_data_ptr( data, reply->total_size );
Alexandre Julliarde8d86b72004-06-23 20:44:58 +00002187 }
Ulrich Czekalla4bdf4342006-12-07 10:43:59 -05002188 reply->top_win = top->handle;
Alexandre Julliard8ee07d42008-02-21 12:29:36 +01002189 reply->top_rect = (top == win && (req->flags & DCX_WINDOW)) ? top->visible_rect : top->client_rect;
Alexandre Julliard844374a2006-10-26 12:51:54 +02002190
Ulrich Czekalla4bdf4342006-12-07 10:43:59 -05002191 if (!is_desktop_window(win))
Alexandre Julliard844374a2006-10-26 12:51:54 +02002192 {
Ulrich Czekalla4bdf4342006-12-07 10:43:59 -05002193 reply->win_rect = (req->flags & DCX_WINDOW) ? win->window_rect : win->client_rect;
2194 client_to_screen_rect( top->parent, &reply->top_rect );
2195 client_to_screen_rect( win->parent, &reply->win_rect );
Alexandre Julliard844374a2006-10-26 12:51:54 +02002196 }
Ulrich Czekalla4bdf4342006-12-07 10:43:59 -05002197 else
2198 {
2199 reply->win_rect.left = 0;
2200 reply->win_rect.top = 0;
2201 reply->win_rect.right = win->client_rect.right - win->client_rect.left;
2202 reply->win_rect.bottom = win->client_rect.bottom - win->client_rect.top;
2203 }
Alexandre Julliarde8d86b72004-06-23 20:44:58 +00002204}
2205
2206
Alexandre Julliard618a7e52004-06-29 03:53:25 +00002207/* get the window region */
2208DECL_HANDLER(get_window_region)
2209{
2210 struct window *win = get_window( req->window );
2211
2212 if (!win) return;
2213
Alexandre Julliard618a7e52004-06-29 03:53:25 +00002214 if (win->win_region)
2215 {
Alexandre Julliard807fe072004-09-17 18:20:11 +00002216 rectangle_t *data = get_region_data( win->win_region, get_reply_max_size(), &reply->total_size );
2217 if (data) set_reply_data_ptr( data, reply->total_size );
Alexandre Julliard618a7e52004-06-29 03:53:25 +00002218 }
2219}
2220
2221
2222/* set the window region */
2223DECL_HANDLER(set_window_region)
2224{
2225 struct region *region = NULL;
2226 struct window *win = get_window( req->window );
2227
2228 if (!win) return;
2229
2230 if (get_req_data_size()) /* no data means remove the region completely */
2231 {
2232 if (!(region = create_region_from_req_data( get_req_data(), get_req_data_size() )))
2233 return;
2234 }
Alexandre Julliard1767b452007-03-05 16:43:09 +01002235 set_window_region( win, region, req->redraw );
Alexandre Julliard618a7e52004-06-29 03:53:25 +00002236}
2237
2238
Alexandre Julliard5defa492004-12-07 17:31:53 +00002239/* get a window update region */
2240DECL_HANDLER(get_update_region)
2241{
2242 rectangle_t *data;
2243 unsigned int flags = req->flags;
Alexandre Julliarddb412aa2005-05-31 13:37:16 +00002244 struct window *from_child = NULL;
Alexandre Julliard5defa492004-12-07 17:31:53 +00002245 struct window *win = get_window( req->window );
2246
2247 reply->flags = 0;
Alexandre Julliarddb412aa2005-05-31 13:37:16 +00002248 if (!win) return;
Alexandre Julliard5defa492004-12-07 17:31:53 +00002249
Alexandre Julliarddb412aa2005-05-31 13:37:16 +00002250 if (req->from_child)
Alexandre Julliard5defa492004-12-07 17:31:53 +00002251 {
Alexandre Julliard5defa492004-12-07 17:31:53 +00002252 struct window *ptr;
2253
Alexandre Julliarddb412aa2005-05-31 13:37:16 +00002254 if (!(from_child = get_window( req->from_child ))) return;
2255
2256 /* make sure from_child is a child of win */
2257 ptr = from_child;
2258 while (ptr && ptr != win) ptr = ptr->parent;
2259 if (!ptr)
Alexandre Julliard5defa492004-12-07 17:31:53 +00002260 {
Alexandre Julliarddb412aa2005-05-31 13:37:16 +00002261 set_error( STATUS_INVALID_PARAMETER );
2262 return;
Alexandre Julliard5defa492004-12-07 17:31:53 +00002263 }
2264 }
2265
Alexandre Julliarddf13cee2007-08-27 16:41:08 +02002266 if (flags & UPDATE_DELAYED_ERASE) /* this means that the previous call didn't erase */
2267 {
2268 if (from_child) from_child->paint_flags |= PAINT_DELAYED_ERASE;
2269 else win->paint_flags |= PAINT_DELAYED_ERASE;
2270 }
2271
Alexandre Julliarddb412aa2005-05-31 13:37:16 +00002272 reply->flags = get_window_update_flags( win, from_child, flags, &win );
Alexandre Julliard5defa492004-12-07 17:31:53 +00002273 reply->child = win->handle;
2274
2275 if (flags & UPDATE_NOREGION) return;
2276
2277 if (win->update_region)
2278 {
Alexandre Julliardeea70692005-03-30 17:11:46 +00002279 /* convert update region to screen coordinates */
2280 struct region *region = create_empty_region();
2281
2282 if (!region) return;
2283 if (!copy_region( region, win->update_region ))
2284 {
2285 free_region( region );
2286 return;
2287 }
2288 map_win_region_to_screen( win, region );
2289 if (!(data = get_region_data_and_free( region, get_reply_max_size(),
2290 &reply->total_size ))) return;
Alexandre Julliard5defa492004-12-07 17:31:53 +00002291 set_reply_data_ptr( data, reply->total_size );
2292 }
2293
2294 if (reply->flags & (UPDATE_PAINT|UPDATE_INTERNALPAINT)) /* validate everything */
2295 {
Alexandre Julliard149cbb12007-08-23 20:22:30 +02002296 validate_parents( win );
Alexandre Julliard5defa492004-12-07 17:31:53 +00002297 validate_whole_window( win );
2298 }
2299 else
2300 {
2301 if (reply->flags & UPDATE_NONCLIENT) validate_non_client( win );
Alexandre Julliard56206372005-01-11 15:15:11 +00002302 if (reply->flags & UPDATE_ERASE)
2303 {
Alexandre Julliarddf13cee2007-08-27 16:41:08 +02002304 win->paint_flags &= ~(PAINT_ERASE | PAINT_DELAYED_ERASE);
Alexandre Julliard56206372005-01-11 15:15:11 +00002305 /* desktop window only gets erased, not repainted */
Alexandre Julliard8c518802005-07-08 11:37:40 +00002306 if (is_desktop_window(win)) validate_whole_window( win );
Alexandre Julliard56206372005-01-11 15:15:11 +00002307 }
Alexandre Julliard5defa492004-12-07 17:31:53 +00002308 }
2309}
2310
2311
Alexandre Julliard5054c792005-03-21 12:37:00 +00002312/* update the z order of a window so that a given rectangle is fully visible */
2313DECL_HANDLER(update_window_zorder)
2314{
2315 rectangle_t tmp;
2316 struct window *ptr, *win = get_window( req->window );
2317
2318 if (!win || !win->parent || !is_visible( win )) return; /* nothing to do */
2319
2320 LIST_FOR_EACH_ENTRY( ptr, &win->parent->children, struct window, entry )
2321 {
2322 if (ptr == win) break;
2323 if (!(ptr->style & WS_VISIBLE)) continue;
2324 if (ptr->ex_style & WS_EX_TRANSPARENT) continue;
2325 if (!intersect_rect( &tmp, &ptr->visible_rect, &req->rect )) continue;
2326 if (ptr->win_region && !rect_in_region( ptr->win_region, &req->rect )) continue;
2327 /* found a window obscuring the rectangle, now move win above this one */
Alexandre Julliardc183a9e2007-10-31 18:12:56 +01002328 /* making sure to not violate the topmost rule */
2329 if (!(ptr->ex_style & WS_EX_TOPMOST) || (win->ex_style & WS_EX_TOPMOST))
2330 {
2331 list_remove( &win->entry );
2332 list_add_before( &ptr->entry, &win->entry );
2333 }
Alexandre Julliard5054c792005-03-21 12:37:00 +00002334 break;
2335 }
2336}
2337
2338
Alexandre Julliard5defa492004-12-07 17:31:53 +00002339/* mark parts of a window as needing a redraw */
2340DECL_HANDLER(redraw_window)
2341{
2342 struct region *region = NULL;
2343 struct window *win = get_window( req->window );
2344
2345 if (!win) return;
2346 if (!is_visible( win )) return; /* nothing to do */
2347
2348 if (req->flags & (RDW_VALIDATE|RDW_INVALIDATE))
2349 {
2350 if (get_req_data_size()) /* no data means whole rectangle */
2351 {
2352 if (!(region = create_region_from_req_data( get_req_data(), get_req_data_size() )))
2353 return;
2354 }
2355 }
2356
2357 redraw_window( win, region, (req->flags & RDW_INVALIDATE) && (req->flags & RDW_FRAME),
2358 req->flags );
2359 if (region) free_region( region );
2360}
2361
2362
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002363/* set a window property */
2364DECL_HANDLER(set_window_property)
2365{
Alexandre Julliard25e070c2008-06-25 14:03:08 +02002366 struct unicode_str name;
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002367 struct window *win = get_window( req->window );
2368
Alexandre Julliard9e73cdd2005-05-11 19:01:10 +00002369 if (!win) return;
2370
Alexandre Julliard25e070c2008-06-25 14:03:08 +02002371 get_req_unicode_str( &name );
2372 if (name.len)
Alexandre Julliard9e73cdd2005-05-11 19:01:10 +00002373 {
Alexandre Julliard25e070c2008-06-25 14:03:08 +02002374 atom_t atom = add_global_atom( NULL, &name );
Alexandre Julliard9e73cdd2005-05-11 19:01:10 +00002375 if (atom)
2376 {
Alexandre Julliard517b2f62008-12-10 16:21:32 +01002377 set_property( win, atom, req->data, PROP_TYPE_STRING );
Alexandre Julliard641e9e32006-03-27 12:50:26 +02002378 release_global_atom( NULL, atom );
Alexandre Julliard9e73cdd2005-05-11 19:01:10 +00002379 }
2380 }
Alexandre Julliard517b2f62008-12-10 16:21:32 +01002381 else set_property( win, req->atom, req->data, PROP_TYPE_ATOM );
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002382}
2383
2384
2385/* remove a window property */
2386DECL_HANDLER(remove_window_property)
2387{
Alexandre Julliard25e070c2008-06-25 14:03:08 +02002388 struct unicode_str name;
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002389 struct window *win = get_window( req->window );
Alexandre Julliardc3ac57d2005-07-08 14:23:27 +00002390
Alexandre Julliard25e070c2008-06-25 14:03:08 +02002391 get_req_unicode_str( &name );
Alexandre Julliard5ad90c02005-07-11 13:30:23 +00002392 if (win)
Alexandre Julliard9e73cdd2005-05-11 19:01:10 +00002393 {
Alexandre Julliard25e070c2008-06-25 14:03:08 +02002394 atom_t atom = name.len ? find_global_atom( NULL, &name ) : req->atom;
Alexandre Julliard517b2f62008-12-10 16:21:32 +01002395 if (atom) reply->data = remove_property( win, atom );
Alexandre Julliard9e73cdd2005-05-11 19:01:10 +00002396 }
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002397}
2398
2399
2400/* get a window property */
2401DECL_HANDLER(get_window_property)
2402{
Alexandre Julliard25e070c2008-06-25 14:03:08 +02002403 struct unicode_str name;
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002404 struct window *win = get_window( req->window );
Alexandre Julliardc3ac57d2005-07-08 14:23:27 +00002405
Alexandre Julliard25e070c2008-06-25 14:03:08 +02002406 get_req_unicode_str( &name );
Alexandre Julliard5ad90c02005-07-11 13:30:23 +00002407 if (win)
Alexandre Julliard9e73cdd2005-05-11 19:01:10 +00002408 {
Alexandre Julliard25e070c2008-06-25 14:03:08 +02002409 atom_t atom = name.len ? find_global_atom( NULL, &name ) : req->atom;
Alexandre Julliard517b2f62008-12-10 16:21:32 +01002410 if (atom) reply->data = get_property( win, atom );
Alexandre Julliard9e73cdd2005-05-11 19:01:10 +00002411 }
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002412}
2413
2414
2415/* get the list of properties of a window */
2416DECL_HANDLER(get_window_properties)
2417{
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00002418 property_data_t *data;
2419 int i, count, max = get_reply_max_size() / sizeof(*data);
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002420 struct window *win = get_window( req->window );
2421
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00002422 reply->total = 0;
2423 if (!win) return;
2424
2425 for (i = count = 0; i < win->prop_inuse; i++)
2426 if (win->properties[i].type != PROP_TYPE_FREE) count++;
2427 reply->total = count;
2428
2429 if (count > max) count = max;
2430 if (!count || !(data = set_reply_data_size( count * sizeof(*data) ))) return;
2431
2432 for (i = 0; i < win->prop_inuse && count; i++)
2433 {
2434 if (win->properties[i].type == PROP_TYPE_FREE) continue;
2435 data->atom = win->properties[i].atom;
2436 data->string = (win->properties[i].type == PROP_TYPE_STRING);
Alexandre Julliard517b2f62008-12-10 16:21:32 +01002437 data->data = win->properties[i].data;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00002438 data++;
2439 count--;
2440 }
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002441}
Alexandre Julliard8d174d32003-10-07 03:40:23 +00002442
2443
2444/* get the new window pointer for a global window, checking permissions */
2445/* helper for set_global_windows request */
2446static int get_new_global_window( struct window **win, user_handle_t handle )
2447{
Alexandre Julliard8d174d32003-10-07 03:40:23 +00002448 if (!handle)
2449 {
2450 *win = NULL;
2451 return 1;
2452 }
Martin Fuchs76adb1f2003-11-18 00:13:34 +00002453 else if (*win)
2454 {
2455 set_error( STATUS_ACCESS_DENIED );
2456 return 0;
2457 }
Alexandre Julliard8d174d32003-10-07 03:40:23 +00002458 *win = get_window( handle );
2459 return (*win != NULL);
2460}
2461
2462/* Set/get the global windows */
2463DECL_HANDLER(set_global_windows)
2464{
2465 struct window *new_shell_window = shell_window;
2466 struct window *new_shell_listview = shell_listview;
2467 struct window *new_progman_window = progman_window;
2468 struct window *new_taskman_window = taskman_window;
2469
2470 reply->old_shell_window = shell_window ? shell_window->handle : 0;
2471 reply->old_shell_listview = shell_listview ? shell_listview->handle : 0;
2472 reply->old_progman_window = progman_window ? progman_window->handle : 0;
2473 reply->old_taskman_window = taskman_window ? taskman_window->handle : 0;
2474
2475 if (req->flags & SET_GLOBAL_SHELL_WINDOWS)
2476 {
2477 if (!get_new_global_window( &new_shell_window, req->shell_window )) return;
2478 if (!get_new_global_window( &new_shell_listview, req->shell_listview )) return;
2479 }
2480 if (req->flags & SET_GLOBAL_PROGMAN_WINDOW)
2481 {
2482 if (!get_new_global_window( &new_progman_window, req->progman_window )) return;
2483 }
2484 if (req->flags & SET_GLOBAL_TASKMAN_WINDOW)
2485 {
2486 if (!get_new_global_window( &new_taskman_window, req->taskman_window )) return;
2487 }
2488 shell_window = new_shell_window;
2489 shell_listview = new_shell_listview;
2490 progman_window = new_progman_window;
2491 taskman_window = new_taskman_window;
2492}
Alexandre Julliard05b41812008-09-12 15:30:47 +02002493
2494/* retrieve layered info for a window */
2495DECL_HANDLER(get_window_layered_info)
2496{
2497 struct window *win = get_window( req->handle );
2498
2499 if (!win) return;
2500
2501 if (win->is_layered)
2502 {
2503 reply->color_key = win->color_key;
2504 reply->alpha = win->alpha;
2505 reply->flags = win->layered_flags;
2506 }
2507 else set_win32_error( ERROR_INVALID_WINDOW_HANDLE );
2508}
2509
2510
2511/* set layered info for a window */
2512DECL_HANDLER(set_window_layered_info)
2513{
2514 struct window *win = get_window( req->handle );
2515
2516 if (!win) return;
2517
2518 if (win->ex_style & WS_EX_LAYERED)
2519 {
2520 if (req->flags & LWA_ALPHA) win->alpha = req->alpha;
2521 else if (!win->is_layered) win->alpha = 0; /* alpha init value is 0 */
2522
2523 win->color_key = req->color_key;
2524 win->layered_flags = req->flags;
2525 win->is_layered = 1;
2526 }
2527 else set_win32_error( ERROR_INVALID_WINDOW_HANDLE );
2528}