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