Use an X context to associated the x11drv private window data to a
[wine] / dlls / x11drv / 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #include "config.h"
24
25 #include <stdarg.h>
26 #include <stdlib.h>
27 #ifdef HAVE_UNISTD_H
28 # include <unistd.h>
29 #endif
30
31 #include <X11/Xlib.h>
32 #include <X11/Xresource.h>
33 #include <X11/Xutil.h>
34
35 #include "windef.h"
36 #include "winbase.h"
37 #include "wingdi.h"
38 #include "winreg.h"
39 #include "winuser.h"
40 #include "wine/unicode.h"
41
42 #include "wine/debug.h"
43 #include "x11drv.h"
44 #include "win.h"
45 #include "winpos.h"
46 #include "mwm.h"
47
48 WINE_DEFAULT_DEBUG_CHANNEL(x11drv);
49
50 /* X context to associate a hwnd to an X window */
51 XContext winContext = 0;
52
53 /* X context to associate a struct x11drv_win_data to an hwnd */
54 static XContext win_data_context;
55
56 Atom X11DRV_Atoms[NB_XATOMS - FIRST_XATOM];
57
58 static const char * const atom_names[NB_XATOMS - FIRST_XATOM] =
59 {
60     "CLIPBOARD",
61     "COMPOUND_TEXT",
62     "MULTIPLE",
63     "SELECTION_DATA",
64     "TARGETS",
65     "TEXT",
66     "UTF8_STRING",
67     "RAW_ASCENT",
68     "RAW_DESCENT",
69     "RAW_CAP_HEIGHT",
70     "WM_PROTOCOLS",
71     "WM_DELETE_WINDOW",
72     "WM_TAKE_FOCUS",
73     "KWM_DOCKWINDOW",
74     "DndProtocol",
75     "DndSelection",
76     "_MOTIF_WM_HINTS",
77     "_KDE_NET_WM_SYSTEM_TRAY_WINDOW_FOR",
78     "_NET_WM_MOVERESIZE",
79     "_NET_WM_PID",
80     "_NET_WM_PING",
81     "_NET_WM_NAME",
82     "_NET_WM_WINDOW_TYPE",
83     "_NET_WM_WINDOW_TYPE_UTILITY",
84     "XdndAware",
85     "XdndEnter",
86     "XdndPosition",
87     "XdndStatus",
88     "XdndLeave",
89     "XdndFinished",
90     "XdndDrop",
91     "XdndActionCopy",
92     "XdndActionMove",
93     "XdndActionLink",
94     "XdndActionAsk",
95     "XdndActionPrivate",
96     "XdndSelection",
97     "XdndTarget",
98     "XdndTypeList",
99     "WCF_DIB",
100     "image/gif",
101     "text/html",
102     "text/plain",
103     "text/rtf",
104     "text/richtext"
105 };
106
107 static LPCSTR whole_window_atom;
108 static LPCSTR client_window_atom;
109 static LPCSTR icon_window_atom;
110
111 /***********************************************************************
112  *              is_window_managed
113  *
114  * Check if a given window should be managed
115  */
116 inline static BOOL is_window_managed( HWND hwnd )
117 {
118     DWORD style, ex_style;
119
120     if (!managed_mode) return FALSE;
121     /* tray window is always managed */
122     ex_style = GetWindowLongW( hwnd, GWL_EXSTYLE );
123     if (ex_style & WS_EX_TRAYWINDOW) return TRUE;
124     /* child windows are not managed */
125     style = GetWindowLongW( hwnd, GWL_STYLE );
126     if (style & WS_CHILD) return FALSE;
127     /* windows with caption are managed */
128     if ((style & WS_CAPTION) == WS_CAPTION) return TRUE;
129     /* tool windows are not managed  */
130     if (ex_style & WS_EX_TOOLWINDOW) return FALSE;
131     /* windows with thick frame are managed */
132     if (style & WS_THICKFRAME) return TRUE;
133     /* application windows are managed */
134     if (ex_style & WS_EX_APPWINDOW) return TRUE;
135     /* full-screen popup windows are managed */
136     if (style & WS_POPUP)
137     {
138         RECT rect;
139         GetWindowRect( hwnd, &rect );
140         if ((rect.right - rect.left) == screen_width && (rect.bottom - rect.top) == screen_height)
141             return TRUE;
142     }
143     /* default: not managed */
144     return FALSE;
145 }
146
147
148 /***********************************************************************
149  *              is_client_window_mapped
150  *
151  * Check if the X client window should be mapped
152  */
153 inline static BOOL is_client_window_mapped( struct x11drv_win_data *data )
154 {
155     return !(GetWindowLongW( data->hwnd, GWL_STYLE ) & WS_MINIMIZE) && !IsRectEmpty( &data->client_rect );
156 }
157
158
159 /***********************************************************************
160  *              X11DRV_is_window_rect_mapped
161  *
162  * Check if the X whole window should be mapped based on its rectangle
163  */
164 BOOL X11DRV_is_window_rect_mapped( const RECT *rect )
165 {
166     /* don't map if rect is empty */
167     if (IsRectEmpty( rect )) return FALSE;
168
169     /* don't map if rect is off-screen */
170     if (rect->left >= (int)screen_width || rect->top >= (int)screen_height) return FALSE;
171     if (rect->right < 0 || rect->bottom < 0) return FALSE;
172
173     return TRUE;
174 }
175
176
177 /***********************************************************************
178  *              get_window_attributes
179  *
180  * Fill the window attributes structure for an X window.
181  */
182 static int get_window_attributes( struct x11drv_win_data *data, XSetWindowAttributes *attr )
183 {
184     BOOL is_top_level = is_window_top_level( data->hwnd );
185     BOOL managed = is_top_level && is_window_managed( data->hwnd );
186     DWORD ex_style = GetWindowLongW( data->hwnd, GWL_EXSTYLE );
187
188     if (managed) WIN_SetExStyle( data->hwnd, ex_style | WS_EX_MANAGED );
189     else WIN_SetExStyle( data->hwnd, ex_style & ~WS_EX_MANAGED );
190
191     attr->override_redirect = !managed;
192     attr->colormap          = X11DRV_PALETTE_PaletteXColormap;
193     attr->save_under        = ((GetClassLongW( data->hwnd, GCL_STYLE ) & CS_SAVEBITS) != 0);
194     attr->cursor            = x11drv_thread_data()->cursor;
195     attr->event_mask        = (ExposureMask | PointerMotionMask |
196                                ButtonPressMask | ButtonReleaseMask | EnterWindowMask);
197
198     if (is_top_level)
199         attr->event_mask |= (KeyPressMask | KeyReleaseMask | StructureNotifyMask |
200                              FocusChangeMask | KeymapStateMask);
201
202     return (CWOverrideRedirect | CWSaveUnder | CWEventMask | CWColormap | CWCursor);
203 }
204
205
206 /***********************************************************************
207  *              X11DRV_sync_window_style
208  *
209  * Change the X window attributes when the window style has changed.
210  */
211 void X11DRV_sync_window_style( Display *display, struct x11drv_win_data *data )
212 {
213     XSetWindowAttributes attr;
214     int mask = get_window_attributes( data, &attr );
215
216     wine_tsx11_lock();
217     XChangeWindowAttributes( display, data->whole_window, mask, &attr );
218     wine_tsx11_unlock();
219 }
220
221
222 /***********************************************************************
223  *              get_window_changes
224  *
225  * fill the window changes structure
226  */
227 static int get_window_changes( XWindowChanges *changes, const RECT *old, const RECT *new )
228 {
229     int mask = 0;
230
231     if (old->right - old->left != new->right - new->left )
232     {
233         if (!(changes->width = new->right - new->left)) changes->width = 1;
234         mask |= CWWidth;
235     }
236     if (old->bottom - old->top != new->bottom - new->top)
237     {
238         if (!(changes->height = new->bottom - new->top)) changes->height = 1;
239         mask |= CWHeight;
240     }
241     if (old->left != new->left)
242     {
243         changes->x = new->left;
244         mask |= CWX;
245     }
246     if (old->top != new->top)
247     {
248         changes->y = new->top;
249         mask |= CWY;
250     }
251     return mask;
252 }
253
254
255 /***********************************************************************
256  *              create_icon_window
257  */
258 static Window create_icon_window( Display *display, struct x11drv_win_data *data )
259 {
260     XSetWindowAttributes attr;
261
262     attr.event_mask = (ExposureMask | KeyPressMask | KeyReleaseMask | PointerMotionMask |
263                        ButtonPressMask | ButtonReleaseMask | EnterWindowMask);
264     attr.bit_gravity = NorthWestGravity;
265     attr.backing_store = NotUseful/*WhenMapped*/;
266     attr.colormap      = X11DRV_PALETTE_PaletteXColormap; /* Needed due to our visual */
267
268     wine_tsx11_lock();
269     data->icon_window = XCreateWindow( display, root_window, 0, 0,
270                                        GetSystemMetrics( SM_CXICON ),
271                                        GetSystemMetrics( SM_CYICON ),
272                                        0, screen_depth,
273                                        InputOutput, visual,
274                                        CWEventMask | CWBitGravity | CWBackingStore | CWColormap, &attr );
275     XSaveContext( display, data->icon_window, winContext, (char *)data->hwnd );
276     wine_tsx11_unlock();
277
278     TRACE( "created %lx\n", data->icon_window );
279     SetPropA( data->hwnd, icon_window_atom, (HANDLE)data->icon_window );
280     return data->icon_window;
281 }
282
283
284
285 /***********************************************************************
286  *              destroy_icon_window
287  */
288 inline static void destroy_icon_window( Display *display, struct x11drv_win_data *data )
289 {
290     if (!data->icon_window) return;
291     if (x11drv_thread_data()->cursor_window == data->icon_window)
292         x11drv_thread_data()->cursor_window = None;
293     wine_tsx11_lock();
294     XDeleteContext( display, data->icon_window, winContext );
295     XDestroyWindow( display, data->icon_window );
296     data->icon_window = 0;
297     wine_tsx11_unlock();
298     RemovePropA( data->hwnd, icon_window_atom );
299 }
300
301
302 /***********************************************************************
303  *              set_icon_hints
304  *
305  * Set the icon wm hints
306  */
307 static void set_icon_hints( Display *display, struct x11drv_win_data *data,
308                             XWMHints *hints, HICON hIcon, DWORD ex_style )
309 {
310     if (data->hWMIconBitmap) DeleteObject( data->hWMIconBitmap );
311     if (data->hWMIconMask) DeleteObject( data->hWMIconMask);
312     data->hWMIconBitmap = 0;
313     data->hWMIconMask = 0;
314
315     if (!(ex_style & WS_EX_MANAGED))
316     {
317         destroy_icon_window( display, data );
318         hints->flags &= ~(IconPixmapHint | IconMaskHint | IconWindowHint);
319     }
320     else if (!hIcon)
321     {
322         if (!data->icon_window) create_icon_window( display, data );
323         hints->icon_window = data->icon_window;
324         hints->flags = (hints->flags & ~(IconPixmapHint | IconMaskHint)) | IconWindowHint;
325     }
326     else
327     {
328         HBITMAP hbmOrig;
329         RECT rcMask;
330         BITMAP bmMask;
331         ICONINFO ii;
332         HDC hDC;
333
334         GetIconInfo(hIcon, &ii);
335
336         GetObjectA(ii.hbmMask, sizeof(bmMask), &bmMask);
337         rcMask.top    = 0;
338         rcMask.left   = 0;
339         rcMask.right  = bmMask.bmWidth;
340         rcMask.bottom = bmMask.bmHeight;
341
342         hDC = CreateCompatibleDC(0);
343         hbmOrig = SelectObject(hDC, ii.hbmMask);
344         InvertRect(hDC, &rcMask);
345         SelectObject(hDC, ii.hbmColor);  /* force the color bitmap to x11drv mode too */
346         SelectObject(hDC, hbmOrig);
347         DeleteDC(hDC);
348
349         data->hWMIconBitmap = ii.hbmColor;
350         data->hWMIconMask = ii.hbmMask;
351
352         hints->icon_pixmap = X11DRV_BITMAP_Pixmap(data->hWMIconBitmap);
353         hints->icon_mask = X11DRV_BITMAP_Pixmap(data->hWMIconMask);
354         destroy_icon_window( display, data );
355         hints->flags = (hints->flags & ~IconWindowHint) | IconPixmapHint | IconMaskHint;
356     }
357 }
358
359
360 /***********************************************************************
361  *              set_size_hints
362  *
363  * set the window size hints
364  */
365 static void set_size_hints( Display *display, struct x11drv_win_data *data, DWORD style )
366 {
367     XSizeHints* size_hints;
368
369     if ((size_hints = XAllocSizeHints()))
370     {
371         size_hints->win_gravity = StaticGravity;
372         size_hints->x = data->whole_rect.left;
373         size_hints->y = data->whole_rect.top;
374         size_hints->flags = PWinGravity | PPosition;
375
376         if ( !(style & WS_THICKFRAME) )
377         {
378             size_hints->max_width = data->whole_rect.right - data->whole_rect.left;
379             size_hints->max_height = data->whole_rect.bottom - data->whole_rect.top;
380             size_hints->min_width = size_hints->max_width;
381             size_hints->min_height = size_hints->max_height;
382             size_hints->flags |= PMinSize | PMaxSize;
383         }
384         XSetWMNormalHints( display, data->whole_window, size_hints );
385         XFree( size_hints );
386     }
387 }
388
389
390 /***********************************************************************
391  *              X11DRV_set_wm_hints
392  *
393  * Set the window manager hints for a newly-created window
394  */
395 void X11DRV_set_wm_hints( Display *display, struct x11drv_win_data *data )
396 {
397     Window group_leader;
398     XClassHint *class_hints;
399     XWMHints* wm_hints;
400     Atom protocols[3];
401     MwmHints mwm_hints;
402     Atom dndVersion = 4;
403     int i;
404     DWORD style = GetWindowLongW( data->hwnd, GWL_STYLE );
405     DWORD ex_style = GetWindowLongW( data->hwnd, GWL_EXSTYLE );
406     HWND owner = GetWindow( data->hwnd, GW_OWNER );
407
408     /* transient for hint */
409     if (owner)
410     {
411         Window owner_win = X11DRV_get_whole_window( owner );
412         wine_tsx11_lock();
413         XSetTransientForHint( display, data->whole_window, owner_win );
414         wine_tsx11_unlock();
415         group_leader = owner_win;
416     }
417     else group_leader = data->whole_window;
418
419     wine_tsx11_lock();
420
421     /* wm protocols */
422     i = 0;
423     protocols[i++] = x11drv_atom(WM_DELETE_WINDOW);
424     protocols[i++] = x11drv_atom(_NET_WM_PING);
425     if (use_take_focus) protocols[i++] = x11drv_atom(WM_TAKE_FOCUS);
426     XChangeProperty( display, data->whole_window, x11drv_atom(WM_PROTOCOLS),
427                      XA_ATOM, 32, PropModeReplace, (char *)protocols, i );
428
429     /* class hints */
430     if ((class_hints = XAllocClassHint()))
431     {
432         class_hints->res_name = "wine";
433         class_hints->res_class = "Wine";
434         XSetClassHint( display, data->whole_window, class_hints );
435         XFree( class_hints );
436     }
437
438     /* size hints */
439     set_size_hints( display, data, style );
440
441     /* systray properties (KDE only for now) */
442     if (ex_style & WS_EX_TRAYWINDOW)
443     {
444         int val = 1;
445         XChangeProperty( display, data->whole_window, x11drv_atom(KWM_DOCKWINDOW),
446                          x11drv_atom(KWM_DOCKWINDOW), 32, PropModeReplace, (char*)&val, 1 );
447         XChangeProperty( display, data->whole_window, x11drv_atom(_KDE_NET_WM_SYSTEM_TRAY_WINDOW_FOR),
448                          XA_WINDOW, 32, PropModeReplace, (char*)&data->whole_window, 1 );
449     }
450
451     /* set the WM_CLIENT_MACHINE and WM_LOCALE_NAME properties */
452     XSetWMProperties(display, data->whole_window, NULL, NULL, NULL, 0, NULL, NULL, NULL);
453     /* set the pid. together, these properties are needed so the window manager can kill us if we freeze */
454     i = getpid();
455     XChangeProperty(display, data->whole_window, x11drv_atom(_NET_WM_PID),
456                     XA_CARDINAL, 32, PropModeReplace, (char *)&i, 1);
457
458    /* map WS_EX_TOOLWINDOW to _NET_WM_WINDOW_TYPE_UTILITY */
459    if (ex_style & WS_EX_TOOLWINDOW)
460    {
461       Atom a = x11drv_atom(_NET_WM_WINDOW_TYPE_UTILITY);
462       XChangeProperty(display, data->whole_window, x11drv_atom(_NET_WM_WINDOW_TYPE),
463                       XA_ATOM, 32, PropModeReplace, (char*)&a, 1);
464    }
465
466     mwm_hints.flags = MWM_HINTS_FUNCTIONS | MWM_HINTS_DECORATIONS;
467     mwm_hints.functions = 0;
468     if ((style & WS_CAPTION) == WS_CAPTION) mwm_hints.functions |= MWM_FUNC_MOVE;
469     if (style & WS_THICKFRAME) mwm_hints.functions |= MWM_FUNC_MOVE | MWM_FUNC_RESIZE;
470     if (style & WS_MINIMIZEBOX) mwm_hints.functions |= MWM_FUNC_MINIMIZE;
471     if (style & WS_MAXIMIZEBOX) mwm_hints.functions |= MWM_FUNC_MAXIMIZE;
472     if (style & WS_SYSMENU)    mwm_hints.functions |= MWM_FUNC_CLOSE;
473     mwm_hints.decorations = 0;
474     if ((style & WS_CAPTION) == WS_CAPTION) mwm_hints.decorations |= MWM_DECOR_TITLE;
475     if (ex_style & WS_EX_DLGMODALFRAME) mwm_hints.decorations |= MWM_DECOR_BORDER;
476     else if (style & WS_THICKFRAME) mwm_hints.decorations |= MWM_DECOR_BORDER | MWM_DECOR_RESIZEH;
477     else if ((style & (WS_DLGFRAME|WS_BORDER)) == WS_DLGFRAME) mwm_hints.decorations |= MWM_DECOR_BORDER;
478     else if (style & WS_BORDER) mwm_hints.decorations |= MWM_DECOR_BORDER;
479     else if (!(style & (WS_CHILD|WS_POPUP))) mwm_hints.decorations |= MWM_DECOR_BORDER;
480     if (style & WS_SYSMENU)  mwm_hints.decorations |= MWM_DECOR_MENU;
481     if (style & WS_MINIMIZEBOX) mwm_hints.decorations |= MWM_DECOR_MINIMIZE;
482     if (style & WS_MAXIMIZEBOX) mwm_hints.decorations |= MWM_DECOR_MAXIMIZE;
483
484     XChangeProperty( display, data->whole_window, x11drv_atom(_MOTIF_WM_HINTS),
485                      x11drv_atom(_MOTIF_WM_HINTS), 32, PropModeReplace,
486                      (char*)&mwm_hints, sizeof(mwm_hints)/sizeof(long) );
487
488     XChangeProperty( display, data->whole_window, x11drv_atom(XdndAware),
489                      XA_ATOM, 32, PropModeReplace, (unsigned char*)&dndVersion, 1 );
490
491     wm_hints = XAllocWMHints();
492     wine_tsx11_unlock();
493
494     /* wm hints */
495     if (wm_hints)
496     {
497         wm_hints->flags = InputHint | StateHint | WindowGroupHint;
498         wm_hints->input = !(style & WS_DISABLED);
499
500         set_icon_hints( display, data, wm_hints,
501                         (HICON)GetClassLongW( data->hwnd, GCL_HICON ), ex_style );
502
503         wm_hints->initial_state = (style & WS_MINIMIZE) ? IconicState : NormalState;
504         wm_hints->window_group = group_leader;
505
506         wine_tsx11_lock();
507         XSetWMHints( display, data->whole_window, wm_hints );
508         XFree(wm_hints);
509         wine_tsx11_unlock();
510     }
511 }
512
513
514 /***********************************************************************
515  *              X11DRV_set_iconic_state
516  *
517  * Set the X11 iconic state according to the window style.
518  */
519 void X11DRV_set_iconic_state( HWND hwnd )
520 {
521     Display *display = thread_display();
522     struct x11drv_win_data *data;
523     RECT rect;
524     XWMHints* wm_hints;
525     DWORD style = GetWindowLongW( hwnd, GWL_STYLE );
526     BOOL iconic = (style & WS_MINIMIZE) != 0;
527
528     if (!(data = X11DRV_get_win_data( hwnd ))) return;
529
530     GetWindowRect( hwnd, &rect );
531
532     wine_tsx11_lock();
533
534     if (iconic) XUnmapWindow( display, data->client_window );
535     else if (!IsRectEmpty( &data->client_rect )) XMapWindow( display, data->client_window );
536
537     if (!(wm_hints = XGetWMHints( display, data->whole_window ))) wm_hints = XAllocWMHints();
538     wm_hints->flags |= StateHint | IconPositionHint;
539     wm_hints->initial_state = iconic ? IconicState : NormalState;
540     wm_hints->icon_x = rect.left;
541     wm_hints->icon_y = rect.top;
542     XSetWMHints( display, data->whole_window, wm_hints );
543
544     if (style & WS_VISIBLE)
545     {
546         if (iconic)
547             XIconifyWindow( display, data->whole_window, DefaultScreen(display) );
548         else
549             if (X11DRV_is_window_rect_mapped( &rect ))
550                 XMapWindow( display, data->whole_window );
551     }
552
553     XFree(wm_hints);
554     wine_tsx11_unlock();
555 }
556
557
558 /***********************************************************************
559  *              X11DRV_window_to_X_rect
560  *
561  * Convert a rect from client to X window coordinates
562  */
563 void X11DRV_window_to_X_rect( HWND hwnd, RECT *rect )
564 {
565     RECT rc;
566     DWORD ex_style = GetWindowLongW( hwnd, GWL_EXSTYLE );
567
568     if (!(ex_style & WS_EX_MANAGED)) return;
569     if (IsRectEmpty( rect )) return;
570
571     rc.top = rc.bottom = rc.left = rc.right = 0;
572
573     AdjustWindowRectEx( &rc, GetWindowLongW(hwnd, GWL_STYLE) & ~(WS_HSCROLL|WS_VSCROLL),
574                         FALSE, ex_style );
575
576     rect->left   -= rc.left;
577     rect->right  -= rc.right;
578     rect->top    -= rc.top;
579     rect->bottom -= rc.bottom;
580     if (rect->top >= rect->bottom) rect->bottom = rect->top + 1;
581     if (rect->left >= rect->right) rect->right = rect->left + 1;
582 }
583
584
585 /***********************************************************************
586  *              X11DRV_X_to_window_rect
587  *
588  * Opposite of X11DRV_window_to_X_rect
589  */
590 void X11DRV_X_to_window_rect( HWND hwnd, RECT *rect )
591 {
592     DWORD ex_style = GetWindowLongW( hwnd, GWL_EXSTYLE );
593
594     if (!(ex_style & WS_EX_MANAGED)) return;
595     if (IsRectEmpty( rect )) return;
596
597     AdjustWindowRectEx( rect, GetWindowLongW(hwnd, GWL_STYLE) & ~(WS_HSCROLL|WS_VSCROLL),
598                         FALSE, ex_style );
599
600     if (rect->top >= rect->bottom) rect->bottom = rect->top + 1;
601     if (rect->left >= rect->right) rect->right = rect->left + 1;
602 }
603
604
605 /***********************************************************************
606  *              X11DRV_sync_whole_window_position
607  *
608  * Synchronize the X whole window position with the Windows one
609  */
610 int X11DRV_sync_whole_window_position( Display *display, struct x11drv_win_data *data, int zorder )
611 {
612     XWindowChanges changes;
613     int mask;
614     RECT whole_rect;
615
616     whole_rect = data->window_rect;
617     X11DRV_window_to_X_rect( data->hwnd, &whole_rect );
618     mask = get_window_changes( &changes, &data->whole_rect, &whole_rect );
619
620     if (zorder)
621     {
622         if (is_window_top_level( data->hwnd ))
623         {
624             /* find window that this one must be after */
625             HWND prev = GetWindow( data->hwnd, GW_HWNDPREV );
626             while (prev && !(GetWindowLongW( prev, GWL_STYLE ) & WS_VISIBLE))
627                 prev = GetWindow( prev, GW_HWNDPREV );
628             if (!prev)  /* top child */
629             {
630                 changes.stack_mode = Above;
631                 mask |= CWStackMode;
632             }
633             else
634             {
635                 /* should use stack_mode Below but most window managers don't get it right */
636                 /* so move it above the next one in Z order */
637                 HWND next = GetWindow( data->hwnd, GW_HWNDNEXT );
638                 while (next && !(GetWindowLongW( next, GWL_STYLE ) & WS_VISIBLE))
639                     next = GetWindow( next, GW_HWNDNEXT );
640                 if (next)
641                 {
642                     changes.stack_mode = Above;
643                     changes.sibling = X11DRV_get_whole_window(next);
644                     mask |= CWStackMode | CWSibling;
645                 }
646             }
647         }
648         else
649         {
650             HWND next = GetWindow( data->hwnd, GW_HWNDNEXT );
651
652             if (GetAncestor( data->hwnd, GA_PARENT ) == GetDesktopWindow() &&
653                 root_window != DefaultRootWindow(display))
654             {
655                 /* in desktop mode we need the sibling to belong to the same process */
656                 while (next)
657                 {
658                     if (X11DRV_get_win_data( next )) break;
659                     next = GetWindow( next, GW_HWNDNEXT );
660                 }
661             }
662
663             if (!next)  /* bottom child */
664             {
665                 changes.stack_mode = Below;
666                 mask |= CWStackMode;
667             }
668             else
669             {
670                 changes.stack_mode = Above;
671                 changes.sibling = X11DRV_get_whole_window(next);
672                 mask |= CWStackMode | CWSibling;
673             }
674         }
675     }
676
677     data->whole_rect = whole_rect;
678
679     if (mask)
680     {
681         TRACE( "setting win %lx pos %ld,%ld,%ldx%ld after %lx changes=%x\n",
682                data->whole_window, whole_rect.left, whole_rect.top,
683                whole_rect.right - whole_rect.left, whole_rect.bottom - whole_rect.top,
684                changes.sibling, mask );
685         wine_tsx11_lock();
686         XSync( gdi_display, False );  /* flush graphics operations before moving the window */
687         wine_tsx11_unlock();
688
689         if (is_window_top_level( data->hwnd ))
690         {
691             DWORD style = GetWindowLongW( data->hwnd, GWL_STYLE );
692
693             wine_tsx11_lock();
694             if (mask & (CWWidth|CWHeight)) set_size_hints( display, data, style );
695             XReconfigureWMWindow( display, data->whole_window,
696                                   DefaultScreen(display), mask, &changes );
697             wine_tsx11_unlock();
698         }
699         else
700         {
701             wine_tsx11_lock();
702             XConfigureWindow( display, data->whole_window, mask, &changes );
703             wine_tsx11_unlock();
704         }
705     }
706     return mask;
707 }
708
709
710 /***********************************************************************
711  *              X11DRV_sync_client_window_position
712  *
713  * Synchronize the X client window position with the Windows one
714  */
715 int X11DRV_sync_client_window_position( Display *display, struct x11drv_win_data *data,
716                                         const RECT *new_client_rect )
717 {
718     XWindowChanges changes;
719     int mask;
720     RECT client_rect = *new_client_rect;
721
722     OffsetRect( &client_rect, -data->whole_rect.left, -data->whole_rect.top );
723
724     if ((mask = get_window_changes( &changes, &data->client_rect, &client_rect )))
725     {
726         BOOL is_mapped;
727
728         TRACE( "setting win %lx pos %ld,%ld,%ldx%ld (was %ld,%ld,%ldx%ld) after %lx changes=%x\n",
729                data->client_window, client_rect.left, client_rect.top,
730                client_rect.right - client_rect.left, client_rect.bottom - client_rect.top,
731                data->client_rect.left, data->client_rect.top,
732                data->client_rect.right - data->client_rect.left,
733                data->client_rect.bottom - data->client_rect.top,
734                changes.sibling, mask );
735
736         data->client_rect = client_rect;
737         is_mapped = is_client_window_mapped( data );
738         wine_tsx11_lock();
739         XSync( gdi_display, False );  /* flush graphics operations before moving the window */
740         if (!is_mapped) XUnmapWindow( display, data->client_window );
741         XConfigureWindow( display, data->client_window, mask, &changes );
742         if (is_mapped) XMapWindow( display, data->client_window );
743         wine_tsx11_unlock();
744     }
745     return mask;
746 }
747
748
749 /**********************************************************************
750  *              create_desktop
751  */
752 static void create_desktop( Display *display, struct x11drv_win_data *data )
753 {
754     VisualID visualid;
755
756     wine_tsx11_lock();
757     winContext = XUniqueContext();
758     XInternAtoms( display, (char **)atom_names, NB_XATOMS - FIRST_XATOM, False, X11DRV_Atoms );
759     visualid = XVisualIDFromVisual(visual);
760     wine_tsx11_unlock();
761
762     whole_window_atom  = MAKEINTATOMA( GlobalAddAtomA( "__wine_x11_whole_window" ));
763     client_window_atom = MAKEINTATOMA( GlobalAddAtomA( "__wine_x11_client_window" ));
764     icon_window_atom   = MAKEINTATOMA( GlobalAddAtomA( "__wine_x11_icon_window" ));
765
766     data->whole_window = data->client_window = root_window;
767     data->whole_rect = data->client_rect = data->window_rect;
768
769     SetPropA( data->hwnd, whole_window_atom, (HANDLE)root_window );
770     SetPropA( data->hwnd, client_window_atom, (HANDLE)root_window );
771     SetPropA( data->hwnd, "__wine_x11_visual_id", (HANDLE)visualid );
772
773     X11DRV_InitClipboard();
774
775     if (root_window != DefaultRootWindow(display)) X11DRV_create_desktop_thread();
776 }
777
778
779 /**********************************************************************
780  *              create_whole_window
781  *
782  * Create the whole X window for a given window
783  */
784 static Window create_whole_window( Display *display, struct x11drv_win_data *data, DWORD style )
785 {
786     int cx, cy, mask;
787     XSetWindowAttributes attr;
788     Window parent;
789     RECT rect;
790     BOOL is_top_level = is_window_top_level( data->hwnd );
791
792     rect = data->window_rect;
793     X11DRV_window_to_X_rect( data->hwnd, &rect );
794
795     if (!(cx = rect.right - rect.left)) cx = 1;
796     if (!(cy = rect.bottom - rect.top)) cy = 1;
797
798     parent = X11DRV_get_client_window( GetAncestor( data->hwnd, GA_PARENT ) );
799
800     mask = get_window_attributes( data, &attr );
801
802     /* set the attributes that don't change over the lifetime of the window */
803     attr.bit_gravity       = ForgetGravity;
804     attr.win_gravity       = NorthWestGravity;
805     attr.backing_store     = NotUseful/*WhenMapped*/;
806     mask |= CWBitGravity | CWWinGravity | CWBackingStore;
807
808     wine_tsx11_lock();
809
810     data->whole_rect = rect;
811     data->whole_window = XCreateWindow( display, parent, rect.left, rect.top, cx, cy,
812                                         0, screen_depth, InputOutput, visual,
813                                         mask, &attr );
814
815     if (!data->whole_window)
816     {
817         wine_tsx11_unlock();
818         return 0;
819     }
820     XSaveContext( display, data->whole_window, winContext, (char *)data->hwnd );
821
822     /* non-maximized child must be at bottom of Z order */
823     if ((style & (WS_CHILD|WS_MAXIMIZE)) == WS_CHILD)
824     {
825         XWindowChanges changes;
826         changes.stack_mode = Below;
827         XConfigureWindow( display, data->whole_window, CWStackMode, &changes );
828     }
829
830     wine_tsx11_unlock();
831
832     if (is_top_level)
833     {
834         XIM xim = x11drv_thread_data()->xim;
835         if (xim) data->xic = X11DRV_CreateIC( xim, display, data->whole_window );
836         X11DRV_set_wm_hints( display, data );
837     }
838
839     return data->whole_window;
840 }
841
842
843 /**********************************************************************
844  *              create_client_window
845  *
846  * Create the client window for a given window
847  */
848 static Window create_client_window( Display *display, struct x11drv_win_data *data )
849 {
850     RECT rect = data->whole_rect;
851     XSetWindowAttributes attr;
852     BOOL is_mapped;
853
854     OffsetRect( &rect, -data->whole_rect.left, -data->whole_rect.top );
855     data->client_rect = rect;
856     is_mapped = is_client_window_mapped( data );
857
858     attr.event_mask = (ExposureMask | PointerMotionMask |
859                        ButtonPressMask | ButtonReleaseMask | EnterWindowMask);
860     attr.bit_gravity = (GetClassLongW( data->hwnd, GCL_STYLE ) & (CS_VREDRAW | CS_HREDRAW)) ?
861                        ForgetGravity : NorthWestGravity;
862     attr.backing_store = NotUseful/*WhenMapped*/;
863
864     wine_tsx11_lock();
865     data->client_window = XCreateWindow( display, data->whole_window, 0, 0,
866                                          max( rect.right - rect.left, 1 ),
867                                          max( rect.bottom - rect.top, 1 ),
868                                          0, screen_depth,
869                                          InputOutput, visual,
870                                          CWEventMask | CWBitGravity | CWBackingStore, &attr );
871     XSaveContext( display, data->client_window, winContext, (char *)data->hwnd );
872     if (data->client_window && is_mapped) XMapWindow( display, data->client_window );
873     wine_tsx11_unlock();
874     return data->client_window;
875 }
876
877
878 /*****************************************************************
879  *              SetWindowText   (X11DRV.@)
880  */
881 BOOL X11DRV_SetWindowText( HWND hwnd, LPCWSTR text )
882 {
883     Display *display = thread_display();
884     UINT count;
885     char *buffer;
886     char *utf8_buffer;
887     Window win;
888     XTextProperty prop;
889
890     if ((win = X11DRV_get_whole_window( hwnd )))
891     {
892         /* allocate new buffer for window text */
893         count = WideCharToMultiByte(CP_UNIXCP, 0, text, -1, NULL, 0, NULL, NULL);
894         if (!(buffer = HeapAlloc( GetProcessHeap(), 0, count )))
895         {
896             ERR("Not enough memory for window text\n");
897             return FALSE;
898         }
899         WideCharToMultiByte(CP_UNIXCP, 0, text, -1, buffer, count, NULL, NULL);
900
901         count = WideCharToMultiByte(CP_UTF8, 0, text, strlenW(text), NULL, 0, NULL, NULL);
902         if (!(utf8_buffer = HeapAlloc( GetProcessHeap(), 0, count )))
903         {
904             ERR("Not enough memory for window text in UTF-8\n");
905             HeapFree( GetProcessHeap(), 0, buffer );
906             return FALSE;
907         }
908         WideCharToMultiByte(CP_UTF8, 0, text, strlenW(text), utf8_buffer, count, NULL, NULL);
909
910         wine_tsx11_lock();
911         if (XmbTextListToTextProperty( display, &buffer, 1, XStdICCTextStyle, &prop ) == Success)
912         {
913             XSetWMName( display, win, &prop );
914             XSetWMIconName( display, win, &prop );
915             XFree( prop.value );
916         }
917         /*
918         Implements a NET_WM UTF-8 title. It should be without a trailing \0,
919         according to the standard
920         ( http://www.pps.jussieu.fr/~jch/software/UTF8_STRING/UTF8_STRING.text ).
921         */
922         XChangeProperty( display, win, x11drv_atom(_NET_WM_NAME), x11drv_atom(UTF8_STRING),
923                          8, PropModeReplace, (unsigned char *) utf8_buffer, count);
924         wine_tsx11_unlock();
925
926         HeapFree( GetProcessHeap(), 0, utf8_buffer );
927         HeapFree( GetProcessHeap(), 0, buffer );
928     }
929     return TRUE;
930 }
931
932
933 /***********************************************************************
934  *              DestroyWindow   (X11DRV.@)
935  */
936 BOOL X11DRV_DestroyWindow( HWND hwnd )
937 {
938     struct x11drv_thread_data *thread_data = x11drv_thread_data();
939     Display *display = thread_data->display;
940     WND *wndPtr = WIN_GetPtr( hwnd );
941     struct x11drv_win_data *data;
942
943     if (!(data = X11DRV_get_win_data( hwnd ))) goto done;
944
945     if (data->whole_window)
946     {
947         TRACE( "win %p xwin %lx/%lx\n", hwnd, data->whole_window, data->client_window );
948         if (thread_data->cursor_window == data->whole_window) thread_data->cursor_window = None;
949         if (thread_data->last_focus == hwnd) thread_data->last_focus = 0;
950         wine_tsx11_lock();
951         XSync( gdi_display, False );  /* flush any reference to this drawable in GDI queue */
952         XDeleteContext( display, data->whole_window, winContext );
953         XDeleteContext( display, data->client_window, winContext );
954         XDestroyWindow( display, data->whole_window );  /* this destroys client too */
955         if (data->xic)
956         {
957             XUnsetICFocus( data->xic );
958             XDestroyIC( data->xic );
959         }
960         wine_tsx11_unlock();
961         destroy_icon_window( display, data );
962     }
963
964     if (data->hWMIconBitmap) DeleteObject( data->hWMIconBitmap );
965     if (data->hWMIconMask) DeleteObject( data->hWMIconMask);
966     wine_tsx11_lock();
967     XDeleteContext( gdi_display, (XID)hwnd, win_data_context );
968     wine_tsx11_unlock();
969     HeapFree( GetProcessHeap(), 0, data );
970
971  done:
972     WIN_ReleasePtr( wndPtr );
973     return TRUE;
974 }
975
976
977 /**********************************************************************
978  *              CreateWindow   (X11DRV.@)
979  */
980 BOOL X11DRV_CreateWindow( HWND hwnd, CREATESTRUCTA *cs, BOOL unicode )
981 {
982     Display *display = thread_display();
983     WND *wndPtr;
984     struct x11drv_win_data *data;
985     HWND parent, insert_after;
986     RECT rect;
987     DWORD style;
988     CBT_CREATEWNDA cbtc;
989     BOOL ret = FALSE;
990
991     if (cs->cx > 65535)
992     {
993         ERR( "invalid window width %d\n", cs->cx );
994         cs->cx = 65535;
995     }
996     if (cs->cy > 65535)
997     {
998         ERR( "invalid window height %d\n", cs->cy );
999         cs->cy = 65535;
1000     }
1001     if (cs->cx < 0)
1002     {
1003         ERR( "invalid window width %d\n", cs->cx );
1004         cs->cx = 0;
1005     }
1006     if (cs->cy < 0)
1007     {
1008         ERR( "invalid window height %d\n", cs->cy );
1009         cs->cy = 0;
1010     }
1011
1012     if (!(data = HeapAlloc(GetProcessHeap(), 0, sizeof(*data)))) return FALSE;
1013     data->hwnd          = hwnd;
1014     data->whole_window  = 0;
1015     data->client_window = 0;
1016     data->icon_window   = 0;
1017     data->xic           = 0;
1018     data->hWMIconBitmap = 0;
1019     data->hWMIconMask   = 0;
1020
1021     /* use gdi_display so that it's available from all threads (FIXME) */
1022     wine_tsx11_lock();
1023     if (!win_data_context) win_data_context = XUniqueContext();
1024     XSaveContext( gdi_display, (XID)hwnd, win_data_context, (char *)data );
1025     wine_tsx11_unlock();
1026
1027     /* initialize the dimensions before sending WM_GETMINMAXINFO */
1028     SetRect( &rect, cs->x, cs->y, cs->x + cs->cx, cs->y + cs->cy );
1029     X11DRV_set_window_pos( hwnd, 0, &rect, &rect, SWP_NOZORDER, 0 );
1030
1031     parent = GetAncestor( hwnd, GA_PARENT );
1032     if (!parent)
1033     {
1034         create_desktop( display, data );
1035         return TRUE;
1036     }
1037
1038     if (!create_whole_window( display, data, cs->style )) goto failed;
1039     if (!create_client_window( display, data )) goto failed;
1040     wine_tsx11_lock();
1041     XSync( display, False );
1042     wine_tsx11_unlock();
1043
1044     SetPropA( hwnd, whole_window_atom, (HANDLE)data->whole_window );
1045     SetPropA( hwnd, client_window_atom, (HANDLE)data->client_window );
1046
1047     /* Call the WH_CBT hook */
1048     cbtc.lpcs = cs;
1049     cbtc.hwndInsertAfter = HWND_TOP;
1050     if (HOOK_CallHooks( WH_CBT, HCBT_CREATEWND, (WPARAM)hwnd, (LPARAM)&cbtc, unicode ))
1051     {
1052         TRACE("CBT-hook returned !0\n");
1053         goto failed;
1054     }
1055
1056     /* Send the WM_GETMINMAXINFO message and fix the size if needed */
1057     if ((cs->style & WS_THICKFRAME) || !(cs->style & (WS_POPUP | WS_CHILD)))
1058     {
1059         POINT maxSize, maxPos, minTrack, maxTrack;
1060
1061         WINPOS_GetMinMaxInfo( hwnd, &maxSize, &maxPos, &minTrack, &maxTrack);
1062         if (maxSize.x < cs->cx) cs->cx = maxSize.x;
1063         if (maxSize.y < cs->cy) cs->cy = maxSize.y;
1064         if (cs->cx < 0) cs->cx = 0;
1065         if (cs->cy < 0) cs->cy = 0;
1066
1067         SetRect( &rect, cs->x, cs->y, cs->x + cs->cx, cs->y + cs->cy );
1068         if (!X11DRV_set_window_pos( hwnd, 0, &rect, &rect, SWP_NOZORDER, 0 )) return FALSE;
1069     }
1070
1071     /* send WM_NCCREATE */
1072     TRACE( "hwnd %p cs %d,%d %dx%d\n", hwnd, cs->x, cs->y, cs->cx, cs->cy );
1073     if (unicode)
1074         ret = SendMessageW( hwnd, WM_NCCREATE, 0, (LPARAM)cs );
1075     else
1076         ret = SendMessageA( hwnd, WM_NCCREATE, 0, (LPARAM)cs );
1077     if (!ret)
1078     {
1079         WARN("aborted by WM_xxCREATE!\n");
1080         return FALSE;
1081     }
1082
1083     /* make sure the window is still valid */
1084     if (!(data = X11DRV_get_win_data( hwnd ))) return FALSE;
1085     X11DRV_sync_window_style( display, data );
1086
1087     /* send WM_NCCALCSIZE */
1088     rect = data->window_rect;
1089     SendMessageW( hwnd, WM_NCCALCSIZE, FALSE, (LPARAM)&rect );
1090
1091     if (!(wndPtr = WIN_GetPtr(hwnd))) return FALSE;
1092     if (rect.left < wndPtr->rectWindow.left) rect.left = wndPtr->rectWindow.left;
1093     if (rect.right > wndPtr->rectWindow.right) rect.right = wndPtr->rectWindow.right;
1094     if (rect.top < wndPtr->rectWindow.top) rect.top = wndPtr->rectWindow.top;
1095     if (rect.bottom > wndPtr->rectWindow.bottom) rect.bottom = wndPtr->rectWindow.bottom;
1096     if (rect.left > rect.right || rect.top > rect.bottom) rect = wndPtr->rectWindow;
1097
1098     /* yes, even if the CBT hook was called with HWND_TOP */
1099     insert_after = ((wndPtr->dwStyle & (WS_CHILD|WS_MAXIMIZE)) == WS_CHILD) ? HWND_BOTTOM : HWND_TOP;
1100
1101     X11DRV_set_window_pos( hwnd, insert_after, &wndPtr->rectWindow, &rect, 0, 0 );
1102
1103     TRACE( "win %p window %ld,%ld,%ld,%ld client %ld,%ld,%ld,%ld whole %ld,%ld,%ld,%ld X client %ld,%ld,%ld,%ld xwin %x/%x\n",
1104            hwnd, wndPtr->rectWindow.left, wndPtr->rectWindow.top,
1105            wndPtr->rectWindow.right, wndPtr->rectWindow.bottom,
1106            wndPtr->rectClient.left, wndPtr->rectClient.top,
1107            wndPtr->rectClient.right, wndPtr->rectClient.bottom,
1108            data->whole_rect.left, data->whole_rect.top,
1109            data->whole_rect.right, data->whole_rect.bottom,
1110            data->client_rect.left, data->client_rect.top,
1111            data->client_rect.right, data->client_rect.bottom,
1112            (unsigned int)data->whole_window, (unsigned int)data->client_window );
1113
1114     WIN_ReleasePtr( wndPtr );
1115
1116     if (unicode)
1117         ret = (SendMessageW( hwnd, WM_CREATE, 0, (LPARAM)cs ) != -1);
1118     else
1119         ret = (SendMessageA( hwnd, WM_CREATE, 0, (LPARAM)cs ) != -1);
1120
1121     if (!ret)
1122     {
1123         WIN_UnlinkWindow( hwnd );
1124         return FALSE;
1125     }
1126
1127     /* Send the size messages */
1128
1129     if (!(wndPtr = WIN_GetPtr(hwnd)) || wndPtr == WND_OTHER_PROCESS) return FALSE;
1130     if (!(wndPtr->flags & WIN_NEED_SIZE))
1131     {
1132         RECT rect = wndPtr->rectClient;
1133         WIN_ReleasePtr( wndPtr );
1134         /* send it anyway */
1135         if (((rect.right-rect.left) <0) ||((rect.bottom-rect.top)<0))
1136             WARN("sending bogus WM_SIZE message 0x%08lx\n",
1137                  MAKELONG(rect.right-rect.left, rect.bottom-rect.top));
1138         SendMessageW( hwnd, WM_SIZE, SIZE_RESTORED,
1139                       MAKELONG(rect.right-rect.left, rect.bottom-rect.top));
1140         SendMessageW( hwnd, WM_MOVE, 0, MAKELONG( rect.left, rect.top ) );
1141     }
1142     else WIN_ReleasePtr( wndPtr );
1143
1144     /* Show the window, maximizing or minimizing if needed */
1145
1146     style = GetWindowLongW( hwnd, GWL_STYLE );
1147     if (style & (WS_MINIMIZE | WS_MAXIMIZE))
1148     {
1149         extern UINT WINPOS_MinMaximize( HWND hwnd, UINT cmd, LPRECT rect ); /*FIXME*/
1150
1151         RECT newPos;
1152         UINT swFlag = (style & WS_MINIMIZE) ? SW_MINIMIZE : SW_MAXIMIZE;
1153         WIN_SetStyle( hwnd, 0, WS_MAXIMIZE | WS_MINIMIZE );
1154         WINPOS_MinMaximize( hwnd, swFlag, &newPos );
1155         swFlag = ((style & WS_CHILD) || GetActiveWindow())
1156             ? SWP_NOACTIVATE | SWP_NOZORDER | SWP_FRAMECHANGED
1157             : SWP_NOZORDER | SWP_FRAMECHANGED;
1158         SetWindowPos( hwnd, 0, newPos.left, newPos.top,
1159                       newPos.right, newPos.bottom, swFlag );
1160     }
1161
1162     return TRUE;
1163
1164  failed:
1165     X11DRV_DestroyWindow( hwnd );
1166     return FALSE;
1167 }
1168
1169
1170 /***********************************************************************
1171  *              X11DRV_get_win_data
1172  *
1173  * Return the X11 data structure associated with a window.
1174  */
1175 struct x11drv_win_data *X11DRV_get_win_data( HWND hwnd )
1176 {
1177     char *data;
1178     if (XFindContext( gdi_display, (XID)hwnd, win_data_context, &data )) data = NULL;
1179     return (struct x11drv_win_data *)data;
1180 }
1181
1182
1183 /***********************************************************************
1184  *              X11DRV_get_client_window
1185  *
1186  * Return the X window associated with the client area of a window
1187  */
1188 Window X11DRV_get_client_window( HWND hwnd )
1189 {
1190     struct x11drv_win_data *data = X11DRV_get_win_data( hwnd );
1191
1192     if (!data) return (Window)GetPropA( hwnd, client_window_atom );
1193     return data->client_window;
1194 }
1195
1196
1197 /***********************************************************************
1198  *              X11DRV_get_whole_window
1199  *
1200  * Return the X window associated with the full area of a window
1201  */
1202 Window X11DRV_get_whole_window( HWND hwnd )
1203 {
1204     struct x11drv_win_data *data = X11DRV_get_win_data( hwnd );
1205
1206     if (!data) return (Window)GetPropA( hwnd, whole_window_atom );
1207     return data->whole_window;
1208 }
1209
1210
1211 /***********************************************************************
1212  *              X11DRV_get_ic
1213  *
1214  * Return the X input context associated with a window
1215  */
1216 XIC X11DRV_get_ic( HWND hwnd )
1217 {
1218     struct x11drv_win_data *data = X11DRV_get_win_data( hwnd );
1219
1220     if (!data) return 0;
1221     return data->xic;
1222 }
1223
1224
1225 /*****************************************************************
1226  *              SetParent   (X11DRV.@)
1227  */
1228 HWND X11DRV_SetParent( HWND hwnd, HWND parent )
1229 {
1230     Display *display = thread_display();
1231     HWND old_parent;
1232
1233     /* Windows hides the window first, then shows it again
1234      * including the WM_SHOWWINDOW messages and all */
1235     BOOL was_visible = ShowWindow( hwnd, SW_HIDE );
1236
1237     if (!IsWindow( parent )) return 0;
1238
1239     old_parent = GetAncestor( hwnd, GA_PARENT );
1240     if (parent != old_parent)
1241     {
1242         struct x11drv_win_data *data;
1243         Window new_parent = X11DRV_get_client_window( parent );
1244
1245         if (!(data = X11DRV_get_win_data( hwnd ))) return 0;
1246
1247         WIN_LinkWindow( hwnd, parent, HWND_TOP );
1248
1249         if (parent != GetDesktopWindow()) /* a child window */
1250         {
1251             if (!(GetWindowLongW( hwnd, GWL_STYLE ) & WS_CHILD))
1252             {
1253                 HMENU menu = (HMENU)SetWindowLongPtrW( hwnd, GWLP_ID, 0 );
1254                 if (menu) DestroyMenu( menu );
1255             }
1256         }
1257
1258         if (is_window_top_level( data->hwnd )) X11DRV_set_wm_hints( display, data );
1259         X11DRV_sync_window_style( display, data );
1260         wine_tsx11_lock();
1261         XReparentWindow( display, data->whole_window, new_parent,
1262                          data->whole_rect.left, data->whole_rect.top );
1263         wine_tsx11_unlock();
1264     }
1265
1266     /* SetParent additionally needs to make hwnd the topmost window
1267        in the x-order and send the expected WM_WINDOWPOSCHANGING and
1268        WM_WINDOWPOSCHANGED notification messages.
1269     */
1270     SetWindowPos( hwnd, HWND_TOPMOST, 0, 0, 0, 0,
1271                   SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE | (was_visible ? SWP_SHOWWINDOW : 0) );
1272     /* FIXME: a WM_MOVE is also generated (in the DefWindowProc handler
1273      * for WM_WINDOWPOSCHANGED) in Windows, should probably remove SWP_NOMOVE */
1274
1275     return old_parent;
1276 }
1277
1278
1279 /*****************************************************************
1280  *              SetFocus   (X11DRV.@)
1281  *
1282  * Set the X focus.
1283  * Explicit colormap management seems to work only with OLVWM.
1284  */
1285 void X11DRV_SetFocus( HWND hwnd )
1286 {
1287     Display *display = thread_display();
1288     XWindowAttributes win_attr;
1289     Window win;
1290
1291     /* Only mess with the X focus if there's */
1292     /* no desktop window and if the window is not managed by the WM. */
1293     if (root_window != DefaultRootWindow(display)) return;
1294
1295     if (!hwnd)  /* If setting the focus to 0, uninstall the colormap */
1296     {
1297         wine_tsx11_lock();
1298         if (X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_PRIVATE)
1299             XUninstallColormap( display, X11DRV_PALETTE_PaletteXColormap );
1300         wine_tsx11_unlock();
1301         return;
1302     }
1303
1304     hwnd = GetAncestor( hwnd, GA_ROOT );
1305     if (GetWindowLongW( hwnd, GWL_EXSTYLE ) & WS_EX_MANAGED) return;
1306     if (!(win = X11DRV_get_whole_window( hwnd ))) return;
1307
1308     /* Set X focus and install colormap */
1309     wine_tsx11_lock();
1310     if (XGetWindowAttributes( display, win, &win_attr ) &&
1311         (win_attr.map_state == IsViewable))
1312     {
1313         /* If window is not viewable, don't change anything */
1314
1315         /* we must not use CurrentTime (ICCCM), so try to use last message time instead */
1316         /* FIXME: this is not entirely correct */
1317         XSetInputFocus( display, win, RevertToParent,
1318                         /* CurrentTime */
1319                         GetMessageTime() - EVENT_x11_time_to_win32_time(0));
1320         if (X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_PRIVATE)
1321             XInstallColormap( display, X11DRV_PALETTE_PaletteXColormap );
1322     }
1323     wine_tsx11_unlock();
1324 }
1325
1326
1327 /**********************************************************************
1328  *              SetWindowIcon (X11DRV.@)
1329  *
1330  * hIcon or hIconSm has changed (or is being initialised for the
1331  * first time). Complete the X11 driver-specific initialisation
1332  * and set the window hints.
1333  *
1334  * This is not entirely correct, may need to create
1335  * an icon window and set the pixmap as a background
1336  */
1337 void X11DRV_SetWindowIcon( HWND hwnd, UINT type, HICON icon )
1338 {
1339     Display *display = thread_display();
1340     struct x11drv_win_data *data;
1341     DWORD ex_style;
1342
1343     if (type != ICON_BIG) return;  /* nothing to do here */
1344
1345     if (!(data = X11DRV_get_win_data( hwnd ))) return;
1346
1347     ex_style = GetWindowLongW( hwnd, GWL_EXSTYLE );
1348     if (ex_style & WS_EX_MANAGED)
1349     {
1350         XWMHints* wm_hints;
1351
1352         wine_tsx11_lock();
1353         if (!(wm_hints = XGetWMHints( display, data->whole_window ))) wm_hints = XAllocWMHints();
1354         wine_tsx11_unlock();
1355         if (wm_hints)
1356         {
1357             set_icon_hints( display, data, wm_hints, icon, ex_style );
1358             wine_tsx11_lock();
1359             XSetWMHints( display, data->whole_window, wm_hints );
1360             XFree( wm_hints );
1361             wine_tsx11_unlock();
1362         }
1363     }
1364 }