msi: Downgrade an ERR to a WARN.
[wine] / dlls / winex11.drv / window.c
1 /*
2  * Window related functions
3  *
4  * Copyright 1993, 1994, 1995, 1996, 2001 Alexandre Julliard
5  * Copyright 1993 David Metcalfe
6  * Copyright 1995, 1996 Alex Korobka
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21  */
22
23 #include "config.h"
24
25 #include <stdarg.h>
26 #include <stdlib.h>
27 #include <stdio.h>
28 #ifdef HAVE_UNISTD_H
29 # include <unistd.h>
30 #endif
31
32 #include <X11/Xlib.h>
33 #include <X11/Xresource.h>
34 #include <X11/Xutil.h>
35
36 #include "windef.h"
37 #include "winbase.h"
38 #include "wingdi.h"
39 #include "winuser.h"
40 #include "wine/unicode.h"
41
42 #include "x11drv.h"
43 #include "xcomposite.h"
44 #include "wine/debug.h"
45 #include "wine/server.h"
46 #include "win.h"
47 #include "mwm.h"
48
49 WINE_DEFAULT_DEBUG_CHANNEL(x11drv);
50
51 /* X context to associate a hwnd to an X window */
52 XContext winContext = 0;
53
54 /* X context to associate a struct x11drv_win_data to an hwnd */
55 static XContext win_data_context;
56
57 static const char whole_window_prop[] = "__wine_x11_whole_window";
58 static const char icon_window_prop[]  = "__wine_x11_icon_window";
59 static const char fbconfig_id_prop[]  = "__wine_x11_fbconfig_id";
60 static const char gl_drawable_prop[]  = "__wine_x11_gl_drawable";
61 static const char pixmap_prop[]       = "__wine_x11_pixmap";
62 static const char managed_prop[]      = "__wine_x11_managed";
63 static const char visual_id_prop[]    = "__wine_x11_visual_id";
64
65 /* for XDG systray icons */
66 #define SYSTEM_TRAY_REQUEST_DOCK    0
67
68 extern int usexcomposite;
69
70 /***********************************************************************
71  *              is_window_managed
72  *
73  * Check if a given window should be managed
74  */
75 BOOL is_window_managed( HWND hwnd, UINT swp_flags, const RECT *window_rect )
76 {
77     DWORD style, ex_style;
78
79     /* tray window is always managed */
80     ex_style = GetWindowLongW( hwnd, GWL_EXSTYLE );
81     if (ex_style & WS_EX_TRAYWINDOW) return TRUE;
82     /* child windows are not managed */
83     style = GetWindowLongW( hwnd, GWL_STYLE );
84     if ((style & (WS_CHILD|WS_POPUP)) == WS_CHILD) return FALSE;
85     /* activated windows are managed */
86     if (!(swp_flags & (SWP_NOACTIVATE|SWP_HIDEWINDOW))) return TRUE;
87     if (hwnd == GetActiveWindow()) return TRUE;
88     /* windows with caption are managed */
89     if ((style & WS_CAPTION) == WS_CAPTION) return TRUE;
90     /* tool windows are not managed  */
91     if (ex_style & WS_EX_TOOLWINDOW) return FALSE;
92     /* windows with thick frame are managed */
93     if (style & WS_THICKFRAME) return TRUE;
94     /* application windows are managed */
95     if (ex_style & WS_EX_APPWINDOW) return TRUE;
96     if (style & WS_POPUP)
97     {
98         /* popup with sysmenu == caption are managed */
99         if (style & WS_SYSMENU) return TRUE;
100         /* full-screen popup windows are managed */
101         if ((window_rect->right - window_rect->left) == screen_width &&
102             (window_rect->bottom - window_rect->top) == screen_height)
103             return TRUE;
104     }
105     /* default: not managed */
106     return FALSE;
107 }
108
109
110 /***********************************************************************
111  *              X11DRV_is_window_rect_mapped
112  *
113  * Check if the X whole window should be mapped based on its rectangle
114  */
115 BOOL X11DRV_is_window_rect_mapped( const RECT *rect )
116 {
117     /* don't map if rect is empty */
118     if (IsRectEmpty( rect )) return FALSE;
119
120     /* don't map if rect is off-screen */
121     if (rect->left >= virtual_screen_rect.right ||
122         rect->top >= virtual_screen_rect.bottom ||
123         rect->right <= virtual_screen_rect.left ||
124         rect->bottom <= virtual_screen_rect.top)
125         return FALSE;
126
127     return TRUE;
128 }
129
130
131 /***********************************************************************
132  *              get_mwm_decorations
133  */
134 static unsigned long get_mwm_decorations( DWORD style, DWORD ex_style )
135 {
136     unsigned long ret = 0;
137
138     if (ex_style & WS_EX_TOOLWINDOW) return 0;
139
140     if ((style & WS_CAPTION) == WS_CAPTION)
141     {
142         ret |= MWM_DECOR_TITLE | MWM_DECOR_BORDER;
143         if (style & WS_SYSMENU) ret |= MWM_DECOR_MENU;
144         if (style & WS_MINIMIZEBOX) ret |= MWM_DECOR_MINIMIZE;
145         if (style & WS_MAXIMIZEBOX) ret |= MWM_DECOR_MAXIMIZE;
146     }
147     if (ex_style & WS_EX_DLGMODALFRAME) ret |= MWM_DECOR_BORDER;
148     else if (style & WS_THICKFRAME) ret |= MWM_DECOR_BORDER | MWM_DECOR_RESIZEH;
149     else if ((style & (WS_DLGFRAME|WS_BORDER)) == WS_DLGFRAME) ret |= MWM_DECOR_BORDER;
150     return ret;
151 }
152
153
154 /***********************************************************************
155  *              get_x11_rect_offset
156  *
157  * Helper for X11DRV_window_to_X_rect and X11DRV_X_to_window_rect.
158  */
159 static void get_x11_rect_offset( struct x11drv_win_data *data, RECT *rect )
160 {
161     DWORD style, ex_style, style_mask = 0, ex_style_mask = 0;
162     unsigned long decor;
163
164     rect->top = rect->bottom = rect->left = rect->right = 0;
165
166     style = GetWindowLongW( data->hwnd, GWL_STYLE );
167     ex_style = GetWindowLongW( data->hwnd, GWL_EXSTYLE );
168     decor = get_mwm_decorations( style, ex_style );
169
170     if (decor & MWM_DECOR_TITLE) style_mask |= WS_CAPTION;
171     if (decor & MWM_DECOR_BORDER)
172     {
173         style_mask |= WS_DLGFRAME | WS_THICKFRAME;
174         ex_style_mask |= WS_EX_DLGMODALFRAME;
175     }
176
177     AdjustWindowRectEx( rect, style & style_mask, FALSE, ex_style & ex_style_mask );
178 }
179
180
181 /***********************************************************************
182  *              get_window_attributes
183  *
184  * Fill the window attributes structure for an X window.
185  */
186 static int get_window_attributes( Display *display, struct x11drv_win_data *data,
187                                   XSetWindowAttributes *attr )
188 {
189     attr->override_redirect = !data->managed;
190     attr->colormap          = X11DRV_PALETTE_PaletteXColormap;
191     attr->save_under        = ((GetClassLongW( data->hwnd, GCL_STYLE ) & CS_SAVEBITS) != 0);
192     attr->cursor            = x11drv_thread_data()->cursor;
193     attr->bit_gravity       = NorthWestGravity;
194     attr->backing_store     = NotUseful;
195     attr->event_mask        = (ExposureMask | PointerMotionMask |
196                                ButtonPressMask | ButtonReleaseMask | EnterWindowMask |
197                                KeyPressMask | KeyReleaseMask | FocusChangeMask | KeymapStateMask);
198     if (data->managed) attr->event_mask |= StructureNotifyMask;
199
200     return (CWOverrideRedirect | CWSaveUnder | CWColormap | CWCursor |
201             CWEventMask | CWBitGravity | CWBackingStore);
202 }
203
204
205 /***********************************************************************
206  *              X11DRV_sync_window_style
207  *
208  * Change the X window attributes when the window style has changed.
209  */
210 void X11DRV_sync_window_style( Display *display, struct x11drv_win_data *data )
211 {
212     if (data->whole_window != root_window)
213     {
214         XSetWindowAttributes attr;
215         int mask = get_window_attributes( display, data, &attr );
216
217         wine_tsx11_lock();
218         XChangeWindowAttributes( display, data->whole_window, mask, &attr );
219         wine_tsx11_unlock();
220     }
221 }
222
223
224 /***********************************************************************
225  *              X11DRV_set_win_format
226  */
227 BOOL X11DRV_set_win_format( HWND hwnd, XID fbconfig_id )
228 {
229     Display *display = thread_display();
230     struct x11drv_win_data *data;
231     XVisualInfo *vis;
232     Drawable parent;
233     HWND next_hwnd;
234     int w, h;
235
236     if (!(data = X11DRV_get_win_data(hwnd))) return FALSE;
237
238     wine_tsx11_lock();
239
240     vis = visual_from_fbconfig_id(fbconfig_id);
241     if(!vis)
242     {
243         wine_tsx11_unlock();
244         return FALSE;
245     }
246
247     if(data->whole_window && vis->visualid == XVisualIDFromVisual(visual))
248     {
249         TRACE("Whole window available and visual match, rendering onscreen\n");
250         goto done;
251     }
252
253     wine_tsx11_unlock();
254
255     parent = data->whole_window;
256     next_hwnd = hwnd;
257     while(!parent)
258     {
259         next_hwnd = GetAncestor(next_hwnd, GA_PARENT);
260         if(!next_hwnd)
261         {
262             ERR("Could not find parent HWND with a drawable!\n");
263             return FALSE;
264         }
265         parent = X11DRV_get_whole_window(next_hwnd);
266     }
267
268     w = data->client_rect.right - data->client_rect.left;
269     h = data->client_rect.bottom - data->client_rect.top;
270
271     if(w <= 0) w = 1;
272     if(h <= 0) h = 1;
273
274     wine_tsx11_lock();
275 #ifdef SONAME_LIBXCOMPOSITE
276     if(usexcomposite)
277     {
278         XSetWindowAttributes attrib;
279
280         attrib.override_redirect = True;
281         attrib.colormap = XCreateColormap(display, parent, vis->visual,
282                                           (vis->class == PseudoColor ||
283                                            vis->class == GrayScale ||
284                                            vis->class == DirectColor) ?
285                                           AllocAll : AllocNone);
286         XInstallColormap(gdi_display, attrib.colormap);
287
288         data->gl_drawable = XCreateWindow(display, parent, -w, 0, w, h, 0,
289                                           vis->depth, InputOutput, vis->visual,
290                                           CWColormap | CWOverrideRedirect,
291                                           &attrib);
292         if(data->gl_drawable)
293         {
294             pXCompositeRedirectWindow(display, data->gl_drawable,
295                                       CompositeRedirectManual);
296             XMapWindow(display, data->gl_drawable);
297         }
298     }
299     else
300 #endif
301     {
302         WARN("XComposite is not available, using GLXPixmap hack\n");
303
304         data->pixmap = XCreatePixmap(display, parent, w, h, vis->depth);
305         if(!data->pixmap)
306         {
307             ERR("Failed to create pixmap for offscreen rendering\n");
308             XFree(vis);
309             wine_tsx11_unlock();
310             return FALSE;
311         }
312
313         data->gl_drawable = create_glxpixmap(display, vis, data->pixmap);
314         if(!data->gl_drawable)
315         {
316             XFreePixmap(display, data->pixmap);
317             data->pixmap = 0;
318         }
319     }
320
321     if(!data->gl_drawable)
322     {
323         ERR("Failed to create drawable for offscreen rendering\n");
324         XFree(vis);
325         wine_tsx11_unlock();
326         return FALSE;
327     }
328
329 done:
330     XFree(vis);
331
332     XFlush(display);
333     wine_tsx11_unlock();
334
335     TRACE("Created GL drawable 0x%lx, using FBConfigID 0x%lx\n",
336           data->gl_drawable, fbconfig_id);
337
338     data->fbconfig_id = fbconfig_id;
339     SetPropA(hwnd, fbconfig_id_prop, (HANDLE)data->fbconfig_id);
340     SetPropA(hwnd, gl_drawable_prop, (HANDLE)data->gl_drawable);
341     SetPropA(hwnd, pixmap_prop, (HANDLE)data->pixmap);
342     invalidate_dce( hwnd, &data->window_rect );
343     return TRUE;
344 }
345
346 static void update_gl_drawable(Display *display, struct x11drv_win_data *data, const RECT *old_client_rect)
347 {
348     int w = data->client_rect.right - data->client_rect.left;
349     int h = data->client_rect.bottom - data->client_rect.top;
350     XVisualInfo *vis;
351     Drawable parent;
352     HWND next_hwnd;
353     Drawable glxp;
354     Pixmap pix;
355
356     if((w == old_client_rect->right - old_client_rect->left &&
357         h == old_client_rect->bottom - old_client_rect->top) ||
358        w <= 0 || h <= 0)
359     {
360         TRACE("No resize needed\n");
361         return;
362     }
363
364     TRACE("Resizing GL drawable 0x%lx to %dx%d\n", data->gl_drawable, w, h);
365 #ifdef SONAME_LIBXCOMPOSITE
366     if(usexcomposite)
367     {
368         wine_tsx11_lock();
369         XMoveResizeWindow(display, data->gl_drawable, -w, 0, w, h);
370         wine_tsx11_unlock();
371         return;
372     }
373 #endif
374
375     parent = data->whole_window;
376     next_hwnd = data->hwnd;
377     while(!parent)
378     {
379         next_hwnd = GetAncestor(next_hwnd, GA_PARENT);
380         if(!next_hwnd)
381         {
382             ERR("Could not find parent HWND with a drawable!\n");
383             return;
384         }
385         parent = X11DRV_get_whole_window(next_hwnd);
386     }
387
388     wine_tsx11_lock();
389
390     vis = visual_from_fbconfig_id(data->fbconfig_id);
391     if(!vis)
392     {
393         wine_tsx11_unlock();
394         return;
395     }
396
397     pix = XCreatePixmap(display, parent, w, h, vis->depth);
398     if(!pix)
399     {
400         ERR("Failed to create pixmap for offscreen rendering\n");
401         XFree(vis);
402         wine_tsx11_unlock();
403         return;
404     }
405
406     glxp = create_glxpixmap(display, vis, pix);
407     if(!glxp)
408     {
409         ERR("Failed to create drawable for offscreen rendering\n");
410         XFreePixmap(display, pix);
411         XFree(vis);
412         wine_tsx11_unlock();
413         return;
414     }
415
416     XFree(vis);
417
418     mark_drawable_dirty(data->gl_drawable, glxp);
419
420     XFreePixmap(display, data->pixmap);
421     destroy_glxpixmap(display, data->gl_drawable);
422
423     data->pixmap = pix;
424     data->gl_drawable = glxp;
425
426     XFlush(display);
427     wine_tsx11_unlock();
428
429     SetPropA(data->hwnd, gl_drawable_prop, (HANDLE)data->gl_drawable);
430     SetPropA(data->hwnd, pixmap_prop, (HANDLE)data->pixmap);
431     invalidate_dce( data->hwnd, &data->window_rect );
432 }
433
434
435 /***********************************************************************
436  *              get_window_changes
437  *
438  * fill the window changes structure
439  */
440 static int get_window_changes( XWindowChanges *changes, const RECT *old, const RECT *new )
441 {
442     int mask = 0;
443
444     if (old->right - old->left != new->right - new->left )
445     {
446         if (!(changes->width = new->right - new->left)) changes->width = 1;
447         mask |= CWWidth;
448     }
449     if (old->bottom - old->top != new->bottom - new->top)
450     {
451         if (!(changes->height = new->bottom - new->top)) changes->height = 1;
452         mask |= CWHeight;
453     }
454     if (old->left != new->left)
455     {
456         changes->x = new->left;
457         mask |= CWX;
458     }
459     if (old->top != new->top)
460     {
461         changes->y = new->top;
462         mask |= CWY;
463     }
464     return mask;
465 }
466
467
468 /***********************************************************************
469  *              create_icon_window
470  */
471 static Window create_icon_window( Display *display, struct x11drv_win_data *data )
472 {
473     XSetWindowAttributes attr;
474
475     attr.event_mask = (ExposureMask | KeyPressMask | KeyReleaseMask | PointerMotionMask |
476                        ButtonPressMask | ButtonReleaseMask | EnterWindowMask);
477     attr.bit_gravity = NorthWestGravity;
478     attr.backing_store = NotUseful/*WhenMapped*/;
479     attr.colormap      = X11DRV_PALETTE_PaletteXColormap; /* Needed due to our visual */
480
481     wine_tsx11_lock();
482     data->icon_window = XCreateWindow( display, root_window, 0, 0,
483                                        GetSystemMetrics( SM_CXICON ),
484                                        GetSystemMetrics( SM_CYICON ),
485                                        0, screen_depth,
486                                        InputOutput, visual,
487                                        CWEventMask | CWBitGravity | CWBackingStore | CWColormap, &attr );
488     XSaveContext( display, data->icon_window, winContext, (char *)data->hwnd );
489     wine_tsx11_unlock();
490
491     TRACE( "created %lx\n", data->icon_window );
492     SetPropA( data->hwnd, icon_window_prop, (HANDLE)data->icon_window );
493     return data->icon_window;
494 }
495
496
497
498 /***********************************************************************
499  *              destroy_icon_window
500  */
501 static void destroy_icon_window( Display *display, struct x11drv_win_data *data )
502 {
503     if (!data->icon_window) return;
504     if (x11drv_thread_data()->cursor_window == data->icon_window)
505         x11drv_thread_data()->cursor_window = None;
506     wine_tsx11_lock();
507     XDeleteContext( display, data->icon_window, winContext );
508     XDestroyWindow( display, data->icon_window );
509     data->icon_window = 0;
510     wine_tsx11_unlock();
511     RemovePropA( data->hwnd, icon_window_prop );
512 }
513
514
515 /***********************************************************************
516  *              set_icon_hints
517  *
518  * Set the icon wm hints
519  */
520 static void set_icon_hints( Display *display, struct x11drv_win_data *data, HICON hIcon )
521 {
522     XWMHints *hints = data->wm_hints;
523
524     if (data->hWMIconBitmap) DeleteObject( data->hWMIconBitmap );
525     if (data->hWMIconMask) DeleteObject( data->hWMIconMask);
526     data->hWMIconBitmap = 0;
527     data->hWMIconMask = 0;
528
529     if (!data->managed)
530     {
531         destroy_icon_window( display, data );
532         hints->flags &= ~(IconPixmapHint | IconMaskHint | IconWindowHint);
533     }
534     else if (!hIcon)
535     {
536         if (!data->icon_window) create_icon_window( display, data );
537         hints->icon_window = data->icon_window;
538         hints->flags = (hints->flags & ~(IconPixmapHint | IconMaskHint)) | IconWindowHint;
539     }
540     else
541     {
542         HBITMAP hbmOrig;
543         RECT rcMask;
544         BITMAP bmMask;
545         ICONINFO ii;
546         HDC hDC;
547
548         GetIconInfo(hIcon, &ii);
549
550         GetObjectA(ii.hbmMask, sizeof(bmMask), &bmMask);
551         rcMask.top    = 0;
552         rcMask.left   = 0;
553         rcMask.right  = bmMask.bmWidth;
554         rcMask.bottom = bmMask.bmHeight;
555
556         hDC = CreateCompatibleDC(0);
557         hbmOrig = SelectObject(hDC, ii.hbmMask);
558         InvertRect(hDC, &rcMask);
559         SelectObject(hDC, ii.hbmColor);  /* force the color bitmap to x11drv mode too */
560         SelectObject(hDC, hbmOrig);
561         DeleteDC(hDC);
562
563         data->hWMIconBitmap = ii.hbmColor;
564         data->hWMIconMask = ii.hbmMask;
565
566         hints->icon_pixmap = X11DRV_get_pixmap(data->hWMIconBitmap);
567         hints->icon_mask = X11DRV_get_pixmap(data->hWMIconMask);
568         destroy_icon_window( display, data );
569         hints->flags = (hints->flags & ~IconWindowHint) | IconPixmapHint | IconMaskHint;
570     }
571 }
572
573 /***********************************************************************
574  *              systray_dock_window
575  *
576  * Docks the given X window with the NETWM system tray.
577  */
578 static void systray_dock_window( Display *display, struct x11drv_win_data *data )
579 {
580     static Atom systray_atom;
581     Window systray_window;
582
583     wine_tsx11_lock();
584     if (!systray_atom)
585     {
586         if (DefaultScreen( display ) == 0)
587             systray_atom = x11drv_atom(_NET_SYSTEM_TRAY_S0);
588         else
589         {
590             char systray_buffer[29]; /* strlen(_NET_SYSTEM_TRAY_S4294967295)+1 */
591             sprintf( systray_buffer, "_NET_SYSTEM_TRAY_S%u", DefaultScreen( display ) );
592             systray_atom = XInternAtom( display, systray_buffer, False );
593         }
594     }
595     systray_window = XGetSelectionOwner( display, systray_atom );
596     wine_tsx11_unlock();
597
598     TRACE("Docking tray icon %p\n", data->hwnd);
599
600     if (systray_window != None)
601     {
602         XEvent ev;
603         unsigned long info[2];
604                 
605         /* Put the window offscreen so it isn't mapped. The window _cannot_ be 
606          * mapped if we intend to dock with an XEMBED tray. If the window is 
607          * mapped when we dock, it may become visible as a child of the root 
608          * window after it docks, which isn't the proper behavior. 
609          *
610          * For more information on this problem, see
611          * http://standards.freedesktop.org/xembed-spec/latest/ar01s04.html */
612         
613         SetWindowPos( data->hwnd, NULL, virtual_screen_rect.right + 1, virtual_screen_rect.bottom + 1,
614                       0, 0, SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE );
615
616         /* set XEMBED protocol data on the window */
617         info[0] = 0; /* protocol version */
618         info[1] = 1; /* mapped = true */
619         
620         wine_tsx11_lock();
621         XChangeProperty( display, data->whole_window,
622                          x11drv_atom(_XEMBED_INFO),
623                          x11drv_atom(_XEMBED_INFO), 32, PropModeReplace,
624                          (unsigned char*)info, 2 );
625         wine_tsx11_unlock();
626     
627         /* send the docking request message */
628         ZeroMemory( &ev, sizeof(ev) ); 
629         ev.xclient.type = ClientMessage;
630         ev.xclient.window = systray_window;
631         ev.xclient.message_type = x11drv_atom( _NET_SYSTEM_TRAY_OPCODE );
632         ev.xclient.format = 32;
633         ev.xclient.data.l[0] = CurrentTime;
634         ev.xclient.data.l[1] = SYSTEM_TRAY_REQUEST_DOCK;
635         ev.xclient.data.l[2] = data->whole_window;
636         ev.xclient.data.l[3] = 0;
637         ev.xclient.data.l[4] = 0;
638         
639         wine_tsx11_lock();
640         XSendEvent( display, systray_window, False, NoEventMask, &ev );
641         wine_tsx11_unlock();
642
643     }
644     else
645     {
646         int val = 1;
647
648         /* fall back to he KDE hints if the WM doesn't support XEMBED'ed
649          * systrays */
650         
651         wine_tsx11_lock();
652         XChangeProperty( display, data->whole_window, 
653                          x11drv_atom(KWM_DOCKWINDOW),
654                          x11drv_atom(KWM_DOCKWINDOW), 32, PropModeReplace,
655                          (unsigned char*)&val, 1 );
656         XChangeProperty( display, data->whole_window,
657                          x11drv_atom(_KDE_NET_WM_SYSTEM_TRAY_WINDOW_FOR),
658                          XA_WINDOW, 32, PropModeReplace,
659                          (unsigned char*)&data->whole_window, 1 );
660        wine_tsx11_unlock();
661     }
662 }
663
664
665 /***********************************************************************
666  *              set_size_hints
667  *
668  * set the window size hints
669  */
670 static void set_size_hints( Display *display, struct x11drv_win_data *data, DWORD style )
671 {
672     XSizeHints* size_hints;
673
674     if ((size_hints = XAllocSizeHints()))
675     {
676         size_hints->flags = 0;
677
678         if (data->hwnd != GetDesktopWindow())  /* don't force position of desktop */
679         {
680             size_hints->win_gravity = StaticGravity;
681             size_hints->x = data->whole_rect.left;
682             size_hints->y = data->whole_rect.top;
683             size_hints->flags |= PWinGravity | PPosition;
684         }
685
686         if ( !(style & WS_THICKFRAME) )
687         {
688             size_hints->max_width = data->whole_rect.right - data->whole_rect.left;
689             size_hints->max_height = data->whole_rect.bottom - data->whole_rect.top;
690             size_hints->min_width = size_hints->max_width;
691             size_hints->min_height = size_hints->max_height;
692             size_hints->flags |= PMinSize | PMaxSize;
693         }
694         XSetWMNormalHints( display, data->whole_window, size_hints );
695         XFree( size_hints );
696     }
697 }
698
699
700 /***********************************************************************
701  *              get_process_name
702  *
703  * get the name of the current process for setting class hints
704  */
705 static char *get_process_name(void)
706 {
707     static char *name;
708
709     if (!name)
710     {
711         WCHAR module[MAX_PATH];
712         DWORD len = GetModuleFileNameW( 0, module, MAX_PATH );
713         if (len && len < MAX_PATH)
714         {
715             char *ptr;
716             WCHAR *p, *appname = module;
717
718             if ((p = strrchrW( appname, '/' ))) appname = p + 1;
719             if ((p = strrchrW( appname, '\\' ))) appname = p + 1;
720             len = WideCharToMultiByte( CP_UNIXCP, 0, appname, -1, NULL, 0, NULL, NULL );
721             if ((ptr = HeapAlloc( GetProcessHeap(), 0, len )))
722             {
723                 WideCharToMultiByte( CP_UNIXCP, 0, appname, -1, ptr, len, NULL, NULL );
724                 name = ptr;
725             }
726         }
727     }
728     return name;
729 }
730
731
732 /***********************************************************************
733  *              set_initial_wm_hints
734  *
735  * Set the window manager hints that don't change over the lifetime of a window.
736  */
737 static void set_initial_wm_hints( Display *display, struct x11drv_win_data *data )
738 {
739     int i;
740     Atom protocols[3];
741     Atom dndVersion = 4;
742     XClassHint *class_hints;
743     char *process_name = get_process_name();
744
745     wine_tsx11_lock();
746
747     /* wm protocols */
748     i = 0;
749     protocols[i++] = x11drv_atom(WM_DELETE_WINDOW);
750     protocols[i++] = x11drv_atom(_NET_WM_PING);
751     if (use_take_focus) protocols[i++] = x11drv_atom(WM_TAKE_FOCUS);
752     XChangeProperty( display, data->whole_window, x11drv_atom(WM_PROTOCOLS),
753                      XA_ATOM, 32, PropModeReplace, (unsigned char *)protocols, i );
754
755     /* class hints */
756     if ((class_hints = XAllocClassHint()))
757     {
758         static char wine[] = "Wine";
759
760         class_hints->res_name = process_name;
761         class_hints->res_class = wine;
762         XSetClassHint( display, data->whole_window, class_hints );
763         XFree( class_hints );
764     }
765
766     /* set the WM_CLIENT_MACHINE and WM_LOCALE_NAME properties */
767     XSetWMProperties(display, data->whole_window, NULL, NULL, NULL, 0, NULL, NULL, NULL);
768     /* set the pid. together, these properties are needed so the window manager can kill us if we freeze */
769     i = getpid();
770     XChangeProperty(display, data->whole_window, x11drv_atom(_NET_WM_PID),
771                     XA_CARDINAL, 32, PropModeReplace, (unsigned char *)&i, 1);
772
773     XChangeProperty( display, data->whole_window, x11drv_atom(XdndAware),
774                      XA_ATOM, 32, PropModeReplace, (unsigned char*)&dndVersion, 1 );
775
776     wine_tsx11_unlock();
777 }
778
779
780 /***********************************************************************
781  *              X11DRV_set_wm_hints
782  *
783  * Set the window manager hints for a newly-created window
784  */
785 void X11DRV_set_wm_hints( Display *display, struct x11drv_win_data *data )
786 {
787     Window group_leader;
788     Atom window_type;
789     MwmHints mwm_hints;
790     DWORD style = GetWindowLongW( data->hwnd, GWL_STYLE );
791     DWORD ex_style = GetWindowLongW( data->hwnd, GWL_EXSTYLE );
792     HWND owner = GetWindow( data->hwnd, GW_OWNER );
793
794     if (data->hwnd == GetDesktopWindow())
795     {
796         if (data->whole_window == DefaultRootWindow(display)) return;
797         /* force some styles for the desktop to get the correct decorations */
798         style |= WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX;
799         owner = 0;
800     }
801
802     /* transient for hint */
803     if (owner)
804     {
805         Window owner_win = X11DRV_get_whole_window( owner );
806         wine_tsx11_lock();
807         XSetTransientForHint( display, data->whole_window, owner_win );
808         wine_tsx11_unlock();
809         group_leader = owner_win;
810     }
811     else group_leader = data->whole_window;
812
813     wine_tsx11_lock();
814
815     /* size hints */
816     set_size_hints( display, data, style );
817
818     /* set the WM_WINDOW_TYPE */
819     window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_NORMAL);
820     if (ex_style & WS_EX_TOOLWINDOW) window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_UTILITY);
821     else if (style & WS_THICKFRAME) window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_NORMAL);
822     else if (style & WS_DLGFRAME) window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_DIALOG);
823     else if (ex_style & WS_EX_DLGMODALFRAME) window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_DIALOG);
824
825     XChangeProperty(display, data->whole_window, x11drv_atom(_NET_WM_WINDOW_TYPE),
826                     XA_ATOM, 32, PropModeReplace, (unsigned char*)&window_type, 1);
827
828     mwm_hints.flags = MWM_HINTS_FUNCTIONS | MWM_HINTS_DECORATIONS;
829     mwm_hints.decorations = get_mwm_decorations( style, ex_style );
830     mwm_hints.functions = MWM_FUNC_MOVE;
831     if (style & WS_THICKFRAME)  mwm_hints.functions |= MWM_FUNC_RESIZE;
832     if (style & WS_MINIMIZEBOX) mwm_hints.functions |= MWM_FUNC_MINIMIZE;
833     if (style & WS_MAXIMIZEBOX) mwm_hints.functions |= MWM_FUNC_MAXIMIZE;
834     if (style & WS_SYSMENU)     mwm_hints.functions |= MWM_FUNC_CLOSE;
835
836     XChangeProperty( display, data->whole_window, x11drv_atom(_MOTIF_WM_HINTS),
837                      x11drv_atom(_MOTIF_WM_HINTS), 32, PropModeReplace,
838                      (unsigned char*)&mwm_hints, sizeof(mwm_hints)/sizeof(long) );
839
840     wine_tsx11_unlock();
841
842     /* wm hints */
843     if (data->wm_hints)
844     {
845         data->wm_hints->flags = InputHint | StateHint | WindowGroupHint;
846         data->wm_hints->input = !(style & WS_DISABLED);
847         data->wm_hints->initial_state = (style & WS_MINIMIZE) ? IconicState : NormalState;
848         data->wm_hints->window_group = group_leader;
849         set_icon_hints( display, data, (HICON)GetClassLongPtrW( data->hwnd, GCLP_HICON ) );
850
851         wine_tsx11_lock();
852         XSetWMHints( display, data->whole_window, data->wm_hints );
853         wine_tsx11_unlock();
854     }
855 }
856
857
858 /***********************************************************************
859  *              X11DRV_set_iconic_state
860  *
861  * Set the X11 iconic state according to the window style.
862  */
863 void X11DRV_set_iconic_state( HWND hwnd )
864 {
865     Display *display = thread_display();
866     struct x11drv_win_data *data;
867     RECT rect;
868     DWORD style = GetWindowLongW( hwnd, GWL_STYLE );
869     BOOL iconic = (style & WS_MINIMIZE) != 0;
870
871     if (!(data = X11DRV_get_win_data( hwnd ))) return;
872     if (!data->whole_window || data->whole_window == DefaultRootWindow(display)) return;
873
874     GetWindowRect( hwnd, &rect );
875
876     wine_tsx11_lock();
877
878     if (data->wm_hints)
879     {
880         data->wm_hints->flags |= StateHint | IconPositionHint;
881         data->wm_hints->initial_state = iconic ? IconicState : NormalState;
882         data->wm_hints->icon_x = rect.left - virtual_screen_rect.left;
883         data->wm_hints->icon_y = rect.top - virtual_screen_rect.top;
884         XSetWMHints( display, data->whole_window, data->wm_hints );
885     }
886
887     if (style & WS_VISIBLE)
888     {
889         if (iconic)
890             XIconifyWindow( display, data->whole_window, DefaultScreen(display) );
891         else
892             if (X11DRV_is_window_rect_mapped( &rect ))
893                 XMapWindow( display, data->whole_window );
894     }
895
896     wine_tsx11_unlock();
897 }
898
899
900 /***********************************************************************
901  *              X11DRV_window_to_X_rect
902  *
903  * Convert a rect from client to X window coordinates
904  */
905 void X11DRV_window_to_X_rect( struct x11drv_win_data *data, RECT *rect )
906 {
907     RECT rc;
908
909     if (!data->managed) return;
910     if (IsRectEmpty( rect )) return;
911
912     get_x11_rect_offset( data, &rc );
913
914     rect->left   -= rc.left;
915     rect->right  -= rc.right;
916     rect->top    -= rc.top;
917     rect->bottom -= rc.bottom;
918     if (rect->top >= rect->bottom) rect->bottom = rect->top + 1;
919     if (rect->left >= rect->right) rect->right = rect->left + 1;
920 }
921
922
923 /***********************************************************************
924  *              X11DRV_X_to_window_rect
925  *
926  * Opposite of X11DRV_window_to_X_rect
927  */
928 void X11DRV_X_to_window_rect( struct x11drv_win_data *data, RECT *rect )
929 {
930     RECT rc;
931
932     if (!data->managed) return;
933     if (IsRectEmpty( rect )) return;
934
935     get_x11_rect_offset( data, &rc );
936
937     rect->left   += rc.left;
938     rect->right  += rc.right;
939     rect->top    += rc.top;
940     rect->bottom += rc.bottom;
941     if (rect->top >= rect->bottom) rect->bottom = rect->top + 1;
942     if (rect->left >= rect->right) rect->right = rect->left + 1;
943 }
944
945
946 /***********************************************************************
947  *              X11DRV_sync_window_position
948  *
949  * Synchronize the X window position with the Windows one
950  */
951 void X11DRV_sync_window_position( Display *display, struct x11drv_win_data *data,
952                                   UINT swp_flags, const RECT *new_client_rect,
953                                   const RECT *new_whole_rect )
954 {
955     XWindowChanges changes;
956     int mask;
957     RECT old_whole_rect;
958     RECT old_client_rect;
959
960     old_whole_rect = data->whole_rect;
961     data->whole_rect = *new_whole_rect;
962
963     old_client_rect = data->client_rect;
964     data->client_rect = *new_client_rect;
965     OffsetRect( &data->client_rect, -data->whole_rect.left, -data->whole_rect.top );
966
967     if (data->gl_drawable)
968         update_gl_drawable(display, data, &old_client_rect);
969
970     if (!data->whole_window || data->lock_changes) return;
971
972     mask = get_window_changes( &changes, &old_whole_rect, &data->whole_rect );
973
974     if (!(swp_flags & SWP_NOZORDER))
975     {
976         /* find window that this one must be after */
977         HWND prev = GetWindow( data->hwnd, GW_HWNDPREV );
978         while (prev && !(GetWindowLongW( prev, GWL_STYLE ) & WS_VISIBLE))
979             prev = GetWindow( prev, GW_HWNDPREV );
980         if (!prev)  /* top child */
981         {
982             changes.stack_mode = Above;
983             mask |= CWStackMode;
984         }
985         else
986         {
987             /* should use stack_mode Below but most window managers don't get it right */
988             /* so move it above the next one in Z order */
989             HWND next = GetWindow( data->hwnd, GW_HWNDNEXT );
990             while (next && !(GetWindowLongW( next, GWL_STYLE ) & WS_VISIBLE))
991                 next = GetWindow( next, GW_HWNDNEXT );
992             if (next)
993             {
994                 changes.stack_mode = Above;
995                 changes.sibling = X11DRV_get_whole_window(next);
996                 mask |= CWStackMode | CWSibling;
997             }
998         }
999     }
1000
1001     if (mask)
1002     {
1003         DWORD style = GetWindowLongW( data->hwnd, GWL_STYLE );
1004
1005         TRACE( "setting win %lx pos %d,%d,%dx%d after %lx changes=%x\n",
1006                data->whole_window, data->whole_rect.left, data->whole_rect.top,
1007                data->whole_rect.right - data->whole_rect.left,
1008                data->whole_rect.bottom - data->whole_rect.top, changes.sibling, mask );
1009
1010         wine_tsx11_lock();
1011         if (mask & (CWWidth|CWHeight)) set_size_hints( display, data, style );
1012         if (mask & CWX) changes.x -= virtual_screen_rect.left;
1013         if (mask & CWY) changes.y -= virtual_screen_rect.top;
1014         XReconfigureWMWindow( display, data->whole_window,
1015                               DefaultScreen(display), mask, &changes );
1016         wine_tsx11_unlock();
1017     }
1018 }
1019
1020
1021 /**********************************************************************
1022  *              create_whole_window
1023  *
1024  * Create the whole X window for a given window
1025  */
1026 static Window create_whole_window( Display *display, struct x11drv_win_data *data, DWORD style )
1027 {
1028     int cx, cy, mask;
1029     XSetWindowAttributes attr;
1030     XIM xim;
1031
1032     if (!(cx = data->window_rect.right - data->window_rect.left)) cx = 1;
1033     if (!(cy = data->window_rect.bottom - data->window_rect.top)) cy = 1;
1034
1035     mask = get_window_attributes( display, data, &attr );
1036
1037     wine_tsx11_lock();
1038
1039     data->whole_rect = data->window_rect;
1040     data->whole_window = XCreateWindow( display, root_window,
1041                                         data->window_rect.left - virtual_screen_rect.left,
1042                                         data->window_rect.top - virtual_screen_rect.top,
1043                                         cx, cy, 0, screen_depth, InputOutput,
1044                                         visual, mask, &attr );
1045
1046     if (!data->whole_window)
1047     {
1048         wine_tsx11_unlock();
1049         return 0;
1050     }
1051     XSaveContext( display, data->whole_window, winContext, (char *)data->hwnd );
1052
1053     /* non-maximized child must be at bottom of Z order */
1054     if ((style & (WS_CHILD|WS_MAXIMIZE)) == WS_CHILD)
1055     {
1056         XWindowChanges changes;
1057         changes.stack_mode = Below;
1058         XConfigureWindow( display, data->whole_window, CWStackMode, &changes );
1059     }
1060     wine_tsx11_unlock();
1061
1062     xim = x11drv_thread_data()->xim;
1063     if (xim) data->xic = X11DRV_CreateIC( xim, display, data->whole_window );
1064
1065     set_initial_wm_hints( display, data );
1066     X11DRV_set_wm_hints( display, data );
1067
1068     SetPropA( data->hwnd, whole_window_prop, (HANDLE)data->whole_window );
1069     return data->whole_window;
1070 }
1071
1072
1073 /**********************************************************************
1074  *              destroy_whole_window
1075  *
1076  * Destroy the whole X window for a given window.
1077  */
1078 static void destroy_whole_window( Display *display, struct x11drv_win_data *data )
1079 {
1080     struct x11drv_thread_data *thread_data = x11drv_thread_data();
1081
1082     if (!data->whole_window) return;
1083
1084     TRACE( "win %p xwin %lx\n", data->hwnd, data->whole_window );
1085     if (thread_data->cursor_window == data->whole_window) thread_data->cursor_window = None;
1086     wine_tsx11_lock();
1087     XDeleteContext( display, data->whole_window, winContext );
1088     if (data->whole_window != DefaultRootWindow(display))
1089         XDestroyWindow( display, data->whole_window );
1090     data->whole_window = 0;
1091     if (data->xic)
1092     {
1093         XUnsetICFocus( data->xic );
1094         XDestroyIC( data->xic );
1095     }
1096     /* Outlook stops processing messages after destroying a dialog, so we need an explicit flush */
1097     XFlush( display );
1098     wine_tsx11_unlock();
1099     RemovePropA( data->hwnd, whole_window_prop );
1100 }
1101
1102
1103 /*****************************************************************
1104  *              SetWindowText   (X11DRV.@)
1105  */
1106 void X11DRV_SetWindowText( HWND hwnd, LPCWSTR text )
1107 {
1108     Display *display = thread_display();
1109     UINT count;
1110     char *buffer;
1111     char *utf8_buffer;
1112     Window win;
1113     XTextProperty prop;
1114
1115     if ((win = X11DRV_get_whole_window( hwnd )) && win != DefaultRootWindow(display))
1116     {
1117         /* allocate new buffer for window text */
1118         count = WideCharToMultiByte(CP_UNIXCP, 0, text, -1, NULL, 0, NULL, NULL);
1119         if (!(buffer = HeapAlloc( GetProcessHeap(), 0, count )))
1120         {
1121             ERR("Not enough memory for window text\n");
1122             return;
1123         }
1124         WideCharToMultiByte(CP_UNIXCP, 0, text, -1, buffer, count, NULL, NULL);
1125
1126         count = WideCharToMultiByte(CP_UTF8, 0, text, strlenW(text), NULL, 0, NULL, NULL);
1127         if (!(utf8_buffer = HeapAlloc( GetProcessHeap(), 0, count )))
1128         {
1129             ERR("Not enough memory for window text in UTF-8\n");
1130             HeapFree( GetProcessHeap(), 0, buffer );
1131             return;
1132         }
1133         WideCharToMultiByte(CP_UTF8, 0, text, strlenW(text), utf8_buffer, count, NULL, NULL);
1134
1135         wine_tsx11_lock();
1136         if (XmbTextListToTextProperty( display, &buffer, 1, XStdICCTextStyle, &prop ) == Success)
1137         {
1138             XSetWMName( display, win, &prop );
1139             XSetWMIconName( display, win, &prop );
1140             XFree( prop.value );
1141         }
1142         /*
1143         Implements a NET_WM UTF-8 title. It should be without a trailing \0,
1144         according to the standard
1145         ( http://www.pps.jussieu.fr/~jch/software/UTF8_STRING/UTF8_STRING.text ).
1146         */
1147         XChangeProperty( display, win, x11drv_atom(_NET_WM_NAME), x11drv_atom(UTF8_STRING),
1148                          8, PropModeReplace, (unsigned char *) utf8_buffer, count);
1149         wine_tsx11_unlock();
1150
1151         HeapFree( GetProcessHeap(), 0, utf8_buffer );
1152         HeapFree( GetProcessHeap(), 0, buffer );
1153     }
1154 }
1155
1156
1157 /***********************************************************************
1158  *              DestroyWindow   (X11DRV.@)
1159  */
1160 void X11DRV_DestroyWindow( HWND hwnd )
1161 {
1162     struct x11drv_thread_data *thread_data = x11drv_thread_data();
1163     Display *display = thread_data->display;
1164     struct x11drv_win_data *data;
1165
1166     if (!(data = X11DRV_get_win_data( hwnd ))) return;
1167
1168     if (data->pixmap)
1169     {
1170         destroy_glxpixmap(display, data->gl_drawable);
1171         wine_tsx11_lock();
1172         XFreePixmap(display, data->pixmap);
1173         wine_tsx11_unlock();
1174     }
1175     else if (data->gl_drawable)
1176     {
1177         wine_tsx11_lock();
1178         XDestroyWindow(display, data->gl_drawable);
1179         wine_tsx11_unlock();
1180     }
1181
1182     free_window_dce( data );
1183     destroy_whole_window( display, data );
1184     destroy_icon_window( display, data );
1185
1186     if (thread_data->last_focus == hwnd) thread_data->last_focus = 0;
1187     if (data->hWMIconBitmap) DeleteObject( data->hWMIconBitmap );
1188     if (data->hWMIconMask) DeleteObject( data->hWMIconMask);
1189     wine_tsx11_lock();
1190     XDeleteContext( display, (XID)hwnd, win_data_context );
1191     XFree( data->wm_hints );
1192     wine_tsx11_unlock();
1193     HeapFree( GetProcessHeap(), 0, data );
1194 }
1195
1196
1197 static struct x11drv_win_data *alloc_win_data( Display *display, HWND hwnd )
1198 {
1199     struct x11drv_win_data *data;
1200
1201     if ((data = HeapAlloc(GetProcessHeap(), 0, sizeof(*data))))
1202     {
1203         data->hwnd          = hwnd;
1204         data->whole_window  = 0;
1205         data->icon_window   = 0;
1206         data->fbconfig_id   = 0;
1207         data->gl_drawable   = 0;
1208         data->pixmap        = 0;
1209         data->xic           = 0;
1210         data->managed       = FALSE;
1211         data->wm_state      = 0;
1212         data->dce           = NULL;
1213         data->lock_changes  = 0;
1214         data->hWMIconBitmap = 0;
1215         data->hWMIconMask   = 0;
1216
1217         wine_tsx11_lock();
1218         if (!winContext) winContext = XUniqueContext();
1219         if (!win_data_context) win_data_context = XUniqueContext();
1220         XSaveContext( display, (XID)hwnd, win_data_context, (char *)data );
1221         data->wm_hints = XAllocWMHints();
1222         wine_tsx11_unlock();
1223     }
1224     return data;
1225 }
1226
1227
1228 /* fill in the desktop X window id in the x11drv_win_data structure */
1229 static void get_desktop_xwin( Display *display, struct x11drv_win_data *data )
1230 {
1231     Window win = (Window)GetPropA( data->hwnd, whole_window_prop );
1232
1233     if (win)
1234     {
1235         unsigned int width, height;
1236
1237         /* retrieve the real size of the desktop */
1238         SERVER_START_REQ( get_window_rectangles )
1239         {
1240             req->handle = data->hwnd;
1241             wine_server_call( req );
1242             width  = reply->window.right - reply->window.left;
1243             height = reply->window.bottom - reply->window.top;
1244         }
1245         SERVER_END_REQ;
1246         data->whole_window = win;
1247         if (win != root_window) X11DRV_init_desktop( win, width, height );
1248     }
1249     else
1250     {
1251         VisualID visualid;
1252
1253         wine_tsx11_lock();
1254         visualid = XVisualIDFromVisual(visual);
1255         wine_tsx11_unlock();
1256         SetPropA( data->hwnd, whole_window_prop, (HANDLE)root_window );
1257         SetPropA( data->hwnd, visual_id_prop, (HANDLE)visualid );
1258         data->whole_window = root_window;
1259         X11DRV_SetWindowPos( data->hwnd, 0, &virtual_screen_rect, &virtual_screen_rect,
1260                              SWP_NOZORDER | SWP_NOACTIVATE, NULL );
1261         if (root_window != DefaultRootWindow( display ))
1262         {
1263             data->managed = TRUE;
1264             SetPropA( data->hwnd, managed_prop, (HANDLE)1 );
1265             set_initial_wm_hints( display, data );
1266         }
1267     }
1268 }
1269
1270 /**********************************************************************
1271  *              CreateDesktopWindow   (X11DRV.@)
1272  */
1273 BOOL X11DRV_CreateDesktopWindow( HWND hwnd )
1274 {
1275     Display *display = thread_display();
1276     struct x11drv_win_data *data;
1277
1278     if (!(data = alloc_win_data( display, hwnd ))) return FALSE;
1279
1280     get_desktop_xwin( display, data );
1281
1282     return TRUE;
1283 }
1284
1285
1286 /**********************************************************************
1287  *              CreateWindow   (X11DRV.@)
1288  */
1289 BOOL X11DRV_CreateWindow( HWND hwnd, CREATESTRUCTA *cs, BOOL unicode )
1290 {
1291     Display *display = thread_display();
1292     WND *wndPtr;
1293     struct x11drv_win_data *data;
1294     HWND insert_after;
1295     RECT rect;
1296     DWORD style;
1297     CBT_CREATEWNDA cbtc;
1298     CREATESTRUCTA cbcs;
1299     BOOL ret = FALSE;
1300
1301     if (!(data = alloc_win_data( display, hwnd ))) return FALSE;
1302
1303     if (cs->cx > 65535)
1304     {
1305         ERR( "invalid window width %d\n", cs->cx );
1306         cs->cx = 65535;
1307     }
1308     if (cs->cy > 65535)
1309     {
1310         ERR( "invalid window height %d\n", cs->cy );
1311         cs->cy = 65535;
1312     }
1313     if (cs->cx < 0)
1314     {
1315         ERR( "invalid window width %d\n", cs->cx );
1316         cs->cx = 0;
1317     }
1318     if (cs->cy < 0)
1319     {
1320         ERR( "invalid window height %d\n", cs->cy );
1321         cs->cy = 0;
1322     }
1323
1324     /* initialize the dimensions before sending WM_GETMINMAXINFO */
1325     SetRect( &rect, cs->x, cs->y, cs->x + cs->cx, cs->y + cs->cy );
1326     X11DRV_SetWindowPos( hwnd, 0, &rect, &rect, SWP_NOZORDER | SWP_NOACTIVATE, NULL );
1327
1328     /* create an X window if it's a top level window */
1329     if (GetAncestor( hwnd, GA_PARENT ) == GetDesktopWindow())
1330     {
1331         if (!create_whole_window( display, data, cs->style )) goto failed;
1332     }
1333     else if (hwnd == GetDesktopWindow())
1334     {
1335         get_desktop_xwin( display, data );
1336     }
1337
1338     /* get class or window DC if needed */
1339     alloc_window_dce( data );
1340
1341     /* Call the WH_CBT hook */
1342
1343     /* the window style passed to the hook must be the real window style,
1344      * rather than just the window style that the caller to CreateWindowEx
1345      * passed in, so we have to copy the original CREATESTRUCT and get the
1346      * the real style. */
1347     cbcs = *cs;
1348     cbcs.style = GetWindowLongW(hwnd, GWL_STYLE);
1349
1350     cbtc.lpcs = &cbcs;
1351     cbtc.hwndInsertAfter = HWND_TOP;
1352     if (HOOK_CallHooks( WH_CBT, HCBT_CREATEWND, (WPARAM)hwnd, (LPARAM)&cbtc, unicode ))
1353     {
1354         TRACE("CBT-hook returned !0\n");
1355         goto failed;
1356     }
1357
1358     /* Send the WM_GETMINMAXINFO message and fix the size if needed */
1359     if ((cs->style & WS_THICKFRAME) || !(cs->style & (WS_POPUP | WS_CHILD)))
1360     {
1361         POINT maxSize, maxPos, minTrack, maxTrack;
1362
1363         WINPOS_GetMinMaxInfo( hwnd, &maxSize, &maxPos, &minTrack, &maxTrack);
1364         if (maxTrack.x < cs->cx) cs->cx = maxTrack.x;
1365         if (maxTrack.y < cs->cy) cs->cy = maxTrack.y;
1366         if (cs->cx < 0) cs->cx = 0;
1367         if (cs->cy < 0) cs->cy = 0;
1368
1369         SetRect( &rect, cs->x, cs->y, cs->x + cs->cx, cs->y + cs->cy );
1370         if (!X11DRV_SetWindowPos( hwnd, 0, &rect, &rect, SWP_NOZORDER | SWP_NOACTIVATE, NULL ))
1371             return FALSE;
1372     }
1373
1374     /* send WM_NCCREATE */
1375     TRACE( "hwnd %p cs %d,%d %dx%d\n", hwnd, cs->x, cs->y, cs->cx, cs->cy );
1376     if (unicode)
1377         ret = SendMessageW( hwnd, WM_NCCREATE, 0, (LPARAM)cs );
1378     else
1379         ret = SendMessageA( hwnd, WM_NCCREATE, 0, (LPARAM)cs );
1380     if (!ret)
1381     {
1382         WARN("aborted by WM_xxCREATE!\n");
1383         return FALSE;
1384     }
1385
1386     /* make sure the window is still valid */
1387     if (!(data = X11DRV_get_win_data( hwnd ))) return FALSE;
1388     if (data->whole_window) X11DRV_sync_window_style( display, data );
1389
1390     /* send WM_NCCALCSIZE */
1391     rect = data->window_rect;
1392     SendMessageW( hwnd, WM_NCCALCSIZE, FALSE, (LPARAM)&rect );
1393
1394     if (!(wndPtr = WIN_GetPtr(hwnd))) return FALSE;
1395
1396     /* yes, even if the CBT hook was called with HWND_TOP */
1397     insert_after = (wndPtr->dwStyle & WS_CHILD) ? HWND_BOTTOM : HWND_TOP;
1398
1399     X11DRV_SetWindowPos( hwnd, insert_after, &wndPtr->rectWindow, &rect, SWP_NOACTIVATE, NULL );
1400
1401     TRACE( "win %p window %d,%d,%d,%d client %d,%d,%d,%d whole %d,%d,%d,%d X client %d,%d,%d,%d xwin %x\n",
1402            hwnd, wndPtr->rectWindow.left, wndPtr->rectWindow.top,
1403            wndPtr->rectWindow.right, wndPtr->rectWindow.bottom,
1404            wndPtr->rectClient.left, wndPtr->rectClient.top,
1405            wndPtr->rectClient.right, wndPtr->rectClient.bottom,
1406            data->whole_rect.left, data->whole_rect.top,
1407            data->whole_rect.right, data->whole_rect.bottom,
1408            data->client_rect.left, data->client_rect.top,
1409            data->client_rect.right, data->client_rect.bottom,
1410            (unsigned int)data->whole_window );
1411
1412     WIN_ReleasePtr( wndPtr );
1413
1414     if (unicode)
1415         ret = (SendMessageW( hwnd, WM_CREATE, 0, (LPARAM)cs ) != -1);
1416     else
1417         ret = (SendMessageA( hwnd, WM_CREATE, 0, (LPARAM)cs ) != -1);
1418
1419     if (!ret) return FALSE;
1420
1421     NotifyWinEvent(EVENT_OBJECT_CREATE, hwnd, OBJID_WINDOW, 0);
1422
1423     /* Send the size messages */
1424
1425     if (!(wndPtr = WIN_GetPtr(hwnd)) || wndPtr == WND_OTHER_PROCESS) return FALSE;
1426     if (!(wndPtr->flags & WIN_NEED_SIZE))
1427     {
1428         RECT rect = wndPtr->rectClient;
1429         WIN_ReleasePtr( wndPtr );
1430         /* send it anyway */
1431         if (((rect.right-rect.left) <0) ||((rect.bottom-rect.top)<0))
1432             WARN("sending bogus WM_SIZE message 0x%08x\n",
1433                  MAKELONG(rect.right-rect.left, rect.bottom-rect.top));
1434         SendMessageW( hwnd, WM_SIZE, SIZE_RESTORED,
1435                       MAKELONG(rect.right-rect.left, rect.bottom-rect.top));
1436         SendMessageW( hwnd, WM_MOVE, 0, MAKELONG( rect.left, rect.top ) );
1437     }
1438     else WIN_ReleasePtr( wndPtr );
1439
1440     /* Show the window, maximizing or minimizing if needed */
1441
1442     style = GetWindowLongW( hwnd, GWL_STYLE );
1443     if (style & (WS_MINIMIZE | WS_MAXIMIZE))
1444     {
1445         extern UINT WINPOS_MinMaximize( HWND hwnd, UINT cmd, LPRECT rect ); /*FIXME*/
1446
1447         RECT newPos;
1448         UINT swFlag = (style & WS_MINIMIZE) ? SW_MINIMIZE : SW_MAXIMIZE;
1449         WIN_SetStyle( hwnd, 0, WS_MAXIMIZE | WS_MINIMIZE );
1450         swFlag = WINPOS_MinMaximize( hwnd, swFlag, &newPos );
1451
1452         swFlag |= SWP_FRAMECHANGED; /* Frame always gets changed */
1453         if (!(style & WS_VISIBLE) || (style & WS_CHILD) || GetActiveWindow()) swFlag |= SWP_NOACTIVATE;
1454
1455         SetWindowPos( hwnd, 0, newPos.left, newPos.top,
1456                       newPos.right, newPos.bottom, swFlag );
1457     }
1458
1459     /* Dock system tray windows. */
1460     /* Dock after the window is created so we don't have problems calling
1461      * SetWindowPos. */
1462     if (GetWindowLongW( hwnd, GWL_EXSTYLE ) & WS_EX_TRAYWINDOW)
1463         systray_dock_window( display, data );
1464
1465     return TRUE;
1466
1467  failed:
1468     X11DRV_DestroyWindow( hwnd );
1469     return FALSE;
1470 }
1471
1472
1473 /***********************************************************************
1474  *              X11DRV_get_win_data
1475  *
1476  * Return the X11 data structure associated with a window.
1477  */
1478 struct x11drv_win_data *X11DRV_get_win_data( HWND hwnd )
1479 {
1480     char *data;
1481
1482     if (!hwnd || XFindContext( thread_display(), (XID)hwnd, win_data_context, &data )) data = NULL;
1483     return (struct x11drv_win_data *)data;
1484 }
1485
1486
1487 /***********************************************************************
1488  *              X11DRV_get_whole_window
1489  *
1490  * Return the X window associated with the full area of a window
1491  */
1492 Window X11DRV_get_whole_window( HWND hwnd )
1493 {
1494     struct x11drv_win_data *data = X11DRV_get_win_data( hwnd );
1495
1496     if (!data) return (Window)GetPropA( hwnd, whole_window_prop );
1497     return data->whole_window;
1498 }
1499
1500
1501 /***********************************************************************
1502  *              X11DRV_get_fbconfig_id
1503  *
1504  * Return the GLXFBConfig ID of the drawable used by the window for
1505  * OpenGL rendering. This is 0 for windows without a pixel format set.
1506  */
1507 XID X11DRV_get_fbconfig_id( HWND hwnd )
1508 {
1509     struct x11drv_win_data *data = X11DRV_get_win_data( hwnd );
1510
1511     if (!data) return (XID)GetPropA( hwnd, fbconfig_id_prop );
1512     return data->fbconfig_id;
1513 }
1514
1515 /***********************************************************************
1516  *              X11DRV_get_gl_drawable
1517  *
1518  * Return the GL drawable for this window.
1519  */
1520 Drawable X11DRV_get_gl_drawable( HWND hwnd )
1521 {
1522     struct x11drv_win_data *data = X11DRV_get_win_data( hwnd );
1523
1524     if (!data) return (Drawable)GetPropA( hwnd, gl_drawable_prop );
1525     return data->gl_drawable;
1526 }
1527
1528 /***********************************************************************
1529  *              X11DRV_get_gl_pixmap
1530  *
1531  * Return the Pixmap associated with the GL drawable (if any) for this window.
1532  */
1533 Pixmap X11DRV_get_gl_pixmap( HWND hwnd )
1534 {
1535     struct x11drv_win_data *data = X11DRV_get_win_data( hwnd );
1536
1537     if (!data) return (Pixmap)GetPropA( hwnd, pixmap_prop );
1538     return data->pixmap;
1539 }
1540
1541
1542 /***********************************************************************
1543  *              X11DRV_get_ic
1544  *
1545  * Return the X input context associated with a window
1546  */
1547 XIC X11DRV_get_ic( HWND hwnd )
1548 {
1549     struct x11drv_win_data *data = X11DRV_get_win_data( hwnd );
1550
1551     if (!data) return 0;
1552     return data->xic;
1553 }
1554
1555
1556 /*****************************************************************
1557  *              SetParent   (X11DRV.@)
1558  */
1559 void X11DRV_SetParent( HWND hwnd, HWND parent, HWND old_parent )
1560 {
1561     Display *display = thread_display();
1562     struct x11drv_win_data *data = X11DRV_get_win_data( hwnd );
1563
1564     if (!data) return;
1565     if (parent == old_parent) return;
1566
1567     if (parent != GetDesktopWindow()) /* a child window */
1568     {
1569         if (old_parent == GetDesktopWindow())
1570         {
1571             /* destroy the old X windows */
1572             destroy_whole_window( display, data );
1573             destroy_icon_window( display, data );
1574             if (data->managed)
1575             {
1576                 data->managed = FALSE;
1577                 RemovePropA( data->hwnd, managed_prop );
1578             }
1579         }
1580     }
1581     else  /* new top level window */
1582     {
1583         /* FIXME: we ignore errors since we can't really recover anyway */
1584         create_whole_window( display, data, GetWindowLongW( hwnd, GWL_STYLE ) );
1585     }
1586 }
1587
1588
1589 /*****************************************************************
1590  *              SetFocus   (X11DRV.@)
1591  *
1592  * Set the X focus.
1593  * Explicit colormap management seems to work only with OLVWM.
1594  */
1595 void X11DRV_SetFocus( HWND hwnd )
1596 {
1597     Display *display = thread_display();
1598     struct x11drv_win_data *data;
1599     XWindowAttributes win_attr;
1600
1601     /* Only mess with the X focus if there's */
1602     /* no desktop window and if the window is not managed by the WM. */
1603     if (root_window != DefaultRootWindow(display)) return;
1604
1605     if (!hwnd)  /* If setting the focus to 0, uninstall the colormap */
1606     {
1607         wine_tsx11_lock();
1608         if (X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_PRIVATE)
1609             XUninstallColormap( display, X11DRV_PALETTE_PaletteXColormap );
1610         wine_tsx11_unlock();
1611         return;
1612     }
1613
1614     hwnd = GetAncestor( hwnd, GA_ROOT );
1615
1616     if (!(data = X11DRV_get_win_data( hwnd ))) return;
1617     if (data->managed || !data->whole_window) return;
1618
1619     /* Set X focus and install colormap */
1620     wine_tsx11_lock();
1621     if (XGetWindowAttributes( display, data->whole_window, &win_attr ) &&
1622         (win_attr.map_state == IsViewable))
1623     {
1624         /* If window is not viewable, don't change anything */
1625
1626         /* we must not use CurrentTime (ICCCM), so try to use last message time instead */
1627         /* FIXME: this is not entirely correct */
1628         XSetInputFocus( display, data->whole_window, RevertToParent,
1629                         /* CurrentTime */
1630                         GetMessageTime() - EVENT_x11_time_to_win32_time(0));
1631         if (X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_PRIVATE)
1632             XInstallColormap( display, X11DRV_PALETTE_PaletteXColormap );
1633     }
1634     wine_tsx11_unlock();
1635 }
1636
1637
1638 /**********************************************************************
1639  *              SetWindowIcon (X11DRV.@)
1640  *
1641  * hIcon or hIconSm has changed (or is being initialised for the
1642  * first time). Complete the X11 driver-specific initialisation
1643  * and set the window hints.
1644  *
1645  * This is not entirely correct, may need to create
1646  * an icon window and set the pixmap as a background
1647  */
1648 void X11DRV_SetWindowIcon( HWND hwnd, UINT type, HICON icon )
1649 {
1650     Display *display = thread_display();
1651     struct x11drv_win_data *data;
1652
1653     if (type != ICON_BIG) return;  /* nothing to do here */
1654
1655     if (!(data = X11DRV_get_win_data( hwnd ))) return;
1656     if (!data->whole_window) return;
1657     if (!data->managed) return;
1658
1659     if (data->wm_hints)
1660     {
1661         set_icon_hints( display, data, icon );
1662         wine_tsx11_lock();
1663         XSetWMHints( display, data->whole_window, data->wm_hints );
1664         wine_tsx11_unlock();
1665     }
1666 }