2 * Window related functions
4 * Copyright 1993, 1994, 1995, 1996, 2001 Alexandre Julliard
5 * Copyright 1993 David Metcalfe
6 * Copyright 1995, 1996 Alex Korobka
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.
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.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
33 #include <X11/Xresource.h>
34 #include <X11/Xutil.h>
36 #include <X11/extensions/shape.h>
37 #endif /* HAVE_LIBXSHAPE */
43 #include "wine/unicode.h"
46 #include "xcomposite.h"
47 #include "wine/debug.h"
48 #include "wine/server.h"
51 WINE_DEFAULT_DEBUG_CHANNEL(x11drv
);
53 #define _NET_WM_MOVERESIZE_SIZE_TOPLEFT 0
54 #define _NET_WM_MOVERESIZE_SIZE_TOP 1
55 #define _NET_WM_MOVERESIZE_SIZE_TOPRIGHT 2
56 #define _NET_WM_MOVERESIZE_SIZE_RIGHT 3
57 #define _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT 4
58 #define _NET_WM_MOVERESIZE_SIZE_BOTTOM 5
59 #define _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT 6
60 #define _NET_WM_MOVERESIZE_SIZE_LEFT 7
61 #define _NET_WM_MOVERESIZE_MOVE 8
62 #define _NET_WM_MOVERESIZE_SIZE_KEYBOARD 9
63 #define _NET_WM_MOVERESIZE_MOVE_KEYBOARD 10
65 #define _NET_WM_STATE_REMOVE 0
66 #define _NET_WM_STATE_ADD 1
67 #define _NET_WM_STATE_TOGGLE 2
69 #define SWP_AGG_NOPOSCHANGE (SWP_NOSIZE | SWP_NOMOVE | SWP_NOCLIENTSIZE | SWP_NOCLIENTMOVE | SWP_NOZORDER)
71 /* is cursor clipping active? */
72 int clipping_cursor
= 0;
74 /* X context to associate a hwnd to an X window */
75 XContext winContext
= 0;
77 /* X context to associate a struct x11drv_win_data to an hwnd */
78 static XContext win_data_context
;
80 /* time of last user event and window where it's stored */
81 static Time last_user_time
;
82 static Window user_time_window
;
84 static const char foreign_window_prop
[] = "__wine_x11_foreign_window";
85 static const char whole_window_prop
[] = "__wine_x11_whole_window";
86 static const char client_window_prop
[]= "__wine_x11_client_window";
87 static const char icon_window_prop
[] = "__wine_x11_icon_window";
88 static const char clip_window_prop
[] = "__wine_x11_clip_window";
89 static const char fbconfig_id_prop
[] = "__wine_x11_fbconfig_id";
90 static const char gl_drawable_prop
[] = "__wine_x11_gl_drawable";
91 static const char pixmap_prop
[] = "__wine_x11_pixmap";
92 static const char managed_prop
[] = "__wine_x11_managed";
95 /***********************************************************************
96 * http://standards.freedesktop.org/startup-notification-spec
98 static void remove_startup_notification(Display
*display
, Window window
)
100 static LONG startup_notification_removed
= 0;
109 if (InterlockedCompareExchange(&startup_notification_removed
, 1, 0) != 0)
112 if (GetEnvironmentVariableA("DESKTOP_STARTUP_ID", id
, sizeof(id
)) == 0)
114 SetEnvironmentVariableA("DESKTOP_STARTUP_ID", NULL
);
116 if ((src
= strstr( id
, "_TIME" ))) update_user_time( atol( src
+ 5 ));
118 pos
= snprintf(message
, sizeof(message
), "remove: ID=");
119 message
[pos
++] = '"';
120 for (i
= 0; id
[i
] && pos
< sizeof(message
) - 2; i
++)
122 if (id
[i
] == '"' || id
[i
] == '\\')
123 message
[pos
++] = '\\';
124 message
[pos
++] = id
[i
];
126 message
[pos
++] = '"';
127 message
[pos
++] = '\0';
129 xevent
.xclient
.type
= ClientMessage
;
130 xevent
.xclient
.message_type
= x11drv_atom(_NET_STARTUP_INFO_BEGIN
);
131 xevent
.xclient
.display
= display
;
132 xevent
.xclient
.window
= window
;
133 xevent
.xclient
.format
= 8;
136 srclen
= strlen(src
) + 1;
144 memset(&xevent
.xclient
.data
.b
[0], 0, 20);
145 memcpy(&xevent
.xclient
.data
.b
[0], src
, msglen
);
149 XSendEvent( display
, DefaultRootWindow( display
), False
, PropertyChangeMask
, &xevent
);
150 xevent
.xclient
.message_type
= x11drv_atom(_NET_STARTUP_INFO
);
156 struct has_popup_result
162 static BOOL CALLBACK
has_managed_popup( HWND hwnd
, LPARAM lparam
)
164 struct has_popup_result
*result
= (struct has_popup_result
*)lparam
;
165 struct x11drv_win_data
*data
;
167 if (hwnd
== result
->hwnd
) return FALSE
; /* popups are always above owner */
168 if (!(data
= X11DRV_get_win_data( hwnd
))) return TRUE
;
169 if (GetWindow( hwnd
, GW_OWNER
) != result
->hwnd
) return TRUE
;
170 result
->found
= data
->managed
;
171 return !result
->found
;
174 static BOOL
has_owned_popups( HWND hwnd
)
176 struct has_popup_result result
;
179 result
.found
= FALSE
;
180 EnumWindows( has_managed_popup
, (LPARAM
)&result
);
184 /***********************************************************************
187 * Check if a given window should be managed
189 static BOOL
is_window_managed( HWND hwnd
, UINT swp_flags
, const RECT
*window_rect
)
191 DWORD style
, ex_style
;
193 if (!managed_mode
) return FALSE
;
195 /* child windows are not managed */
196 style
= GetWindowLongW( hwnd
, GWL_STYLE
);
197 if ((style
& (WS_CHILD
|WS_POPUP
)) == WS_CHILD
) return FALSE
;
198 /* activated windows are managed */
199 if (!(swp_flags
& (SWP_NOACTIVATE
|SWP_HIDEWINDOW
))) return TRUE
;
200 if (hwnd
== GetActiveWindow()) return TRUE
;
201 /* windows with caption are managed */
202 if ((style
& WS_CAPTION
) == WS_CAPTION
) return TRUE
;
203 /* windows with thick frame are managed */
204 if (style
& WS_THICKFRAME
) return TRUE
;
205 if (style
& WS_POPUP
)
210 /* popup with sysmenu == caption are managed */
211 if (style
& WS_SYSMENU
) return TRUE
;
212 /* full-screen popup windows are managed */
213 hmon
= MonitorFromWindow( hwnd
, MONITOR_DEFAULTTOPRIMARY
);
214 mi
.cbSize
= sizeof( mi
);
215 GetMonitorInfoW( hmon
, &mi
);
216 if (window_rect
->left
<= mi
.rcWork
.left
&& window_rect
->right
>= mi
.rcWork
.right
&&
217 window_rect
->top
<= mi
.rcWork
.top
&& window_rect
->bottom
>= mi
.rcWork
.bottom
)
220 /* application windows are managed */
221 ex_style
= GetWindowLongW( hwnd
, GWL_EXSTYLE
);
222 if (ex_style
& WS_EX_APPWINDOW
) return TRUE
;
223 /* windows that own popups are managed */
224 if (has_owned_popups( hwnd
)) return TRUE
;
225 /* default: not managed */
230 /***********************************************************************
231 * is_window_resizable
233 * Check if window should be made resizable by the window manager
235 static inline BOOL
is_window_resizable( struct x11drv_win_data
*data
, DWORD style
)
237 if (style
& WS_THICKFRAME
) return TRUE
;
238 /* Metacity needs the window to be resizable to make it fullscreen */
239 return is_window_rect_fullscreen( &data
->whole_rect
);
243 /***********************************************************************
244 * get_mwm_decorations
246 static unsigned long get_mwm_decorations( struct x11drv_win_data
*data
,
247 DWORD style
, DWORD ex_style
)
249 unsigned long ret
= 0;
251 if (!decorated_mode
) return 0;
253 if (IsRectEmpty( &data
->window_rect
)) return 0;
254 if (data
->shaped
) return 0;
256 if (ex_style
& WS_EX_TOOLWINDOW
) return 0;
258 if ((style
& WS_CAPTION
) == WS_CAPTION
)
260 ret
|= MWM_DECOR_TITLE
| MWM_DECOR_BORDER
;
261 if (style
& WS_SYSMENU
) ret
|= MWM_DECOR_MENU
;
262 if (style
& WS_MINIMIZEBOX
) ret
|= MWM_DECOR_MINIMIZE
;
263 if (style
& WS_MAXIMIZEBOX
) ret
|= MWM_DECOR_MAXIMIZE
;
265 if (ex_style
& WS_EX_DLGMODALFRAME
) ret
|= MWM_DECOR_BORDER
;
266 else if (style
& WS_THICKFRAME
) ret
|= MWM_DECOR_BORDER
| MWM_DECOR_RESIZEH
;
267 else if ((style
& (WS_DLGFRAME
|WS_BORDER
)) == WS_DLGFRAME
) ret
|= MWM_DECOR_BORDER
;
272 /***********************************************************************
273 * get_x11_rect_offset
275 * Helper for X11DRV_window_to_X_rect and X11DRV_X_to_window_rect.
277 static void get_x11_rect_offset( struct x11drv_win_data
*data
, RECT
*rect
)
279 DWORD style
, ex_style
, style_mask
= 0, ex_style_mask
= 0;
282 rect
->top
= rect
->bottom
= rect
->left
= rect
->right
= 0;
284 style
= GetWindowLongW( data
->hwnd
, GWL_STYLE
);
285 ex_style
= GetWindowLongW( data
->hwnd
, GWL_EXSTYLE
);
286 decor
= get_mwm_decorations( data
, style
, ex_style
);
288 if (decor
& MWM_DECOR_TITLE
) style_mask
|= WS_CAPTION
;
289 if (decor
& MWM_DECOR_BORDER
)
291 style_mask
|= WS_DLGFRAME
| WS_THICKFRAME
;
292 ex_style_mask
|= WS_EX_DLGMODALFRAME
;
295 AdjustWindowRectEx( rect
, style
& style_mask
, FALSE
, ex_style
& ex_style_mask
);
299 /***********************************************************************
300 * get_window_attributes
302 * Fill the window attributes structure for an X window.
304 static int get_window_attributes( Display
*display
, struct x11drv_win_data
*data
,
305 XSetWindowAttributes
*attr
)
307 attr
->override_redirect
= !data
->managed
;
308 attr
->colormap
= X11DRV_PALETTE_PaletteXColormap
;
309 attr
->save_under
= ((GetClassLongW( data
->hwnd
, GCL_STYLE
) & CS_SAVEBITS
) != 0);
310 attr
->bit_gravity
= NorthWestGravity
;
311 attr
->win_gravity
= StaticGravity
;
312 attr
->backing_store
= NotUseful
;
313 attr
->event_mask
= (ExposureMask
| PointerMotionMask
|
314 ButtonPressMask
| ButtonReleaseMask
| EnterWindowMask
|
315 KeyPressMask
| KeyReleaseMask
| FocusChangeMask
|
316 KeymapStateMask
| StructureNotifyMask
);
317 if (data
->managed
) attr
->event_mask
|= PropertyChangeMask
;
319 return (CWOverrideRedirect
| CWSaveUnder
| CWColormap
|
320 CWEventMask
| CWBitGravity
| CWBackingStore
);
324 /***********************************************************************
325 * create_client_window
327 static Window
create_client_window( Display
*display
, struct x11drv_win_data
*data
, XVisualInfo
*vis
)
330 XSetWindowAttributes attr
;
332 Visual
*client_visual
= vis
? vis
->visual
: visual
;
334 attr
.bit_gravity
= NorthWestGravity
;
335 attr
.win_gravity
= NorthWestGravity
;
336 attr
.backing_store
= NotUseful
;
337 attr
.event_mask
= (ExposureMask
| PointerMotionMask
|
338 ButtonPressMask
| ButtonReleaseMask
| EnterWindowMask
);
339 mask
= CWEventMask
| CWBitGravity
| CWWinGravity
| CWBackingStore
;
341 if ((cx
= data
->client_rect
.right
- data
->client_rect
.left
) <= 0) cx
= 1;
342 else if (cx
> 65535) cx
= 65535;
343 if ((cy
= data
->client_rect
.bottom
- data
->client_rect
.top
) <= 0) cy
= 1;
344 else if (cy
> 65535) cy
= 65535;
350 attr
.colormap
= XCreateColormap( display
, root_window
, vis
->visual
,
351 (vis
->class == PseudoColor
|| vis
->class == GrayScale
||
352 vis
->class == DirectColor
) ? AllocAll
: AllocNone
);
356 client
= XCreateWindow( display
, data
->whole_window
,
357 data
->client_rect
.left
- data
->whole_rect
.left
,
358 data
->client_rect
.top
- data
->whole_rect
.top
,
359 cx
, cy
, 0, screen_depth
, InputOutput
,
360 client_visual
, mask
, &attr
);
367 if (data
->client_window
)
369 XDeleteContext( display
, data
->client_window
, winContext
);
370 XDestroyWindow( display
, data
->client_window
);
372 data
->client_window
= client
;
373 data
->visualid
= XVisualIDFromVisual( client_visual
);
375 if (data
->colormap
) XFreeColormap( display
, data
->colormap
);
376 data
->colormap
= vis
? attr
.colormap
: 0;
378 XMapWindow( display
, data
->client_window
);
379 XSaveContext( display
, data
->client_window
, winContext
, (char *)data
->hwnd
);
382 SetPropA( data
->hwnd
, client_window_prop
, (HANDLE
)data
->client_window
);
383 return data
->client_window
;
387 /***********************************************************************
390 * Change the X window attributes when the window style has changed.
392 static void sync_window_style( Display
*display
, struct x11drv_win_data
*data
)
394 if (data
->whole_window
!= root_window
)
396 XSetWindowAttributes attr
;
397 int mask
= get_window_attributes( display
, data
, &attr
);
400 XChangeWindowAttributes( display
, data
->whole_window
, mask
, &attr
);
406 /***********************************************************************
409 * Update the X11 window region.
411 static void sync_window_region( Display
*display
, struct x11drv_win_data
*data
, HRGN win_region
)
413 #ifdef HAVE_LIBXSHAPE
414 HRGN hrgn
= win_region
;
416 if (!data
->whole_window
) return;
417 data
->shaped
= FALSE
;
419 if (IsRectEmpty( &data
->window_rect
)) /* set an empty shape */
421 static XRectangle empty_rect
;
423 XShapeCombineRectangles( display
, data
->whole_window
, ShapeBounding
, 0, 0,
424 &empty_rect
, 1, ShapeSet
, YXBanded
);
429 if (hrgn
== (HRGN
)1) /* hack: win_region == 1 means retrieve region from server */
431 if (!(hrgn
= CreateRectRgn( 0, 0, 0, 0 ))) return;
432 if (GetWindowRgn( data
->hwnd
, hrgn
) == ERROR
)
434 DeleteObject( hrgn
);
442 XShapeCombineMask( display
, data
->whole_window
, ShapeBounding
, 0, 0, None
, ShapeSet
);
447 RGNDATA
*pRegionData
;
449 if (GetWindowLongW( data
->hwnd
, GWL_EXSTYLE
) & WS_EX_LAYOUTRTL
) MirrorRgn( data
->hwnd
, hrgn
);
450 if ((pRegionData
= X11DRV_GetRegionData( hrgn
, 0 )))
453 XShapeCombineRectangles( display
, data
->whole_window
, ShapeBounding
,
454 data
->window_rect
.left
- data
->whole_rect
.left
,
455 data
->window_rect
.top
- data
->whole_rect
.top
,
456 (XRectangle
*)pRegionData
->Buffer
,
457 pRegionData
->rdh
.nCount
, ShapeSet
, YXBanded
);
459 HeapFree(GetProcessHeap(), 0, pRegionData
);
463 if (hrgn
&& hrgn
!= win_region
) DeleteObject( hrgn
);
464 #endif /* HAVE_LIBXSHAPE */
468 /***********************************************************************
469 * sync_window_opacity
471 static void sync_window_opacity( Display
*display
, Window win
,
472 COLORREF key
, BYTE alpha
, DWORD flags
)
474 unsigned long opacity
= 0xffffffff;
476 if (flags
& LWA_ALPHA
) opacity
= (0xffffffff / 0xff) * alpha
;
478 if (flags
& LWA_COLORKEY
) FIXME("LWA_COLORKEY not supported\n");
481 if (opacity
== 0xffffffff)
482 XDeleteProperty( display
, win
, x11drv_atom(_NET_WM_WINDOW_OPACITY
) );
484 XChangeProperty( display
, win
, x11drv_atom(_NET_WM_WINDOW_OPACITY
),
485 XA_CARDINAL
, 32, PropModeReplace
, (unsigned char *)&opacity
, 1 );
490 /***********************************************************************
493 static void sync_window_text( Display
*display
, Window win
, const WCHAR
*text
)
496 char *buffer
, *utf8_buffer
;
499 /* allocate new buffer for window text */
500 count
= WideCharToMultiByte(CP_UNIXCP
, 0, text
, -1, NULL
, 0, NULL
, NULL
);
501 if (!(buffer
= HeapAlloc( GetProcessHeap(), 0, count
))) return;
502 WideCharToMultiByte(CP_UNIXCP
, 0, text
, -1, buffer
, count
, NULL
, NULL
);
504 count
= WideCharToMultiByte(CP_UTF8
, 0, text
, strlenW(text
), NULL
, 0, NULL
, NULL
);
505 if (!(utf8_buffer
= HeapAlloc( GetProcessHeap(), 0, count
)))
507 HeapFree( GetProcessHeap(), 0, buffer
);
510 WideCharToMultiByte(CP_UTF8
, 0, text
, strlenW(text
), utf8_buffer
, count
, NULL
, NULL
);
513 if (XmbTextListToTextProperty( display
, &buffer
, 1, XStdICCTextStyle
, &prop
) == Success
)
515 XSetWMName( display
, win
, &prop
);
516 XSetWMIconName( display
, win
, &prop
);
520 Implements a NET_WM UTF-8 title. It should be without a trailing \0,
521 according to the standard
522 ( http://www.pps.jussieu.fr/~jch/software/UTF8_STRING/UTF8_STRING.text ).
524 XChangeProperty( display
, win
, x11drv_atom(_NET_WM_NAME
), x11drv_atom(UTF8_STRING
),
525 8, PropModeReplace
, (unsigned char *) utf8_buffer
, count
);
528 HeapFree( GetProcessHeap(), 0, utf8_buffer
);
529 HeapFree( GetProcessHeap(), 0, buffer
);
533 /***********************************************************************
536 static BOOL
set_win_format( HWND hwnd
, XID fbconfig_id
)
538 struct x11drv_win_data
*data
;
542 if (!(data
= X11DRV_get_win_data(hwnd
)) &&
543 !(data
= X11DRV_create_win_data(hwnd
))) return FALSE
;
545 if (!(vis
= visual_from_fbconfig_id(fbconfig_id
))) return FALSE
;
547 if (data
->whole_window
)
549 Display
*display
= thread_display();
550 Window client
= data
->client_window
;
552 if (vis
->visualid
!= data
->visualid
)
554 client
= create_client_window( display
, data
, vis
);
555 TRACE( "re-created client window %lx for %p fbconfig %lx\n", client
, data
->hwnd
, fbconfig_id
);
561 if (client
) goto done
;
565 w
= data
->client_rect
.right
- data
->client_rect
.left
;
566 h
= data
->client_rect
.bottom
- data
->client_rect
.top
;
571 #ifdef SONAME_LIBXCOMPOSITE
574 XSetWindowAttributes attrib
;
575 static Window dummy_parent
;
578 attrib
.override_redirect
= True
;
581 dummy_parent
= XCreateWindow( gdi_display
, root_window
, -1, -1, 1, 1, 0, screen_depth
,
582 InputOutput
, visual
, CWOverrideRedirect
, &attrib
);
583 XMapWindow( gdi_display
, dummy_parent
);
585 data
->colormap
= XCreateColormap(gdi_display
, dummy_parent
, vis
->visual
,
586 (vis
->class == PseudoColor
||
587 vis
->class == GrayScale
||
588 vis
->class == DirectColor
) ?
589 AllocAll
: AllocNone
);
590 attrib
.colormap
= data
->colormap
;
591 XInstallColormap(gdi_display
, attrib
.colormap
);
593 if(data
->gl_drawable
) XDestroyWindow(gdi_display
, data
->gl_drawable
);
594 data
->gl_drawable
= XCreateWindow(gdi_display
, dummy_parent
, 0, 0, w
, h
, 0,
595 vis
->depth
, InputOutput
, vis
->visual
,
596 CWColormap
| CWOverrideRedirect
,
598 if(data
->gl_drawable
)
600 pXCompositeRedirectWindow(gdi_display
, data
->gl_drawable
,
601 CompositeRedirectManual
);
602 XMapWindow(gdi_display
, data
->gl_drawable
);
605 XFlush( gdi_display
);
611 WARN("XComposite is not available, using GLXPixmap hack\n");
615 if(data
->pixmap
) XFreePixmap(gdi_display
, data
->pixmap
);
616 data
->pixmap
= XCreatePixmap(gdi_display
, root_window
, w
, h
, vis
->depth
);
624 if(data
->gl_drawable
) destroy_glxpixmap(gdi_display
, data
->gl_drawable
);
625 data
->gl_drawable
= create_glxpixmap(gdi_display
, vis
, data
->pixmap
);
626 if(!data
->gl_drawable
)
628 XFreePixmap(gdi_display
, data
->pixmap
);
632 XFlush( gdi_display
);
634 if (data
->pixmap
) SetPropA(hwnd
, pixmap_prop
, (HANDLE
)data
->pixmap
);
637 if (!data
->gl_drawable
) return FALSE
;
639 TRACE("Created GL drawable 0x%lx, using FBConfigID 0x%lx\n",
640 data
->gl_drawable
, fbconfig_id
);
641 SetPropA(hwnd
, gl_drawable_prop
, (HANDLE
)data
->gl_drawable
);
644 data
->fbconfig_id
= fbconfig_id
;
645 SetPropA(hwnd
, fbconfig_id_prop
, (HANDLE
)data
->fbconfig_id
);
646 /* force DCE invalidation */
647 SetWindowPos( hwnd
, 0, 0, 0, 0, 0,
648 SWP_NOACTIVATE
| SWP_NOZORDER
| SWP_NOSIZE
| SWP_NOMOVE
|
649 SWP_NOREDRAW
| SWP_DEFERERASE
| SWP_NOSENDCHANGING
| SWP_STATECHANGED
);
653 /***********************************************************************
656 static void sync_gl_drawable(struct x11drv_win_data
*data
)
658 int w
= data
->client_rect
.right
- data
->client_rect
.left
;
659 int h
= data
->client_rect
.bottom
- data
->client_rect
.top
;
667 TRACE("Resizing GL drawable 0x%lx to %dx%d\n", data
->gl_drawable
, w
, h
);
668 #ifdef SONAME_LIBXCOMPOSITE
672 XMoveResizeWindow(gdi_display
, data
->gl_drawable
, 0, 0, w
, h
);
678 if (!(vis
= visual_from_fbconfig_id(data
->fbconfig_id
))) return;
681 pix
= XCreatePixmap(gdi_display
, root_window
, w
, h
, vis
->depth
);
684 ERR("Failed to create pixmap for offscreen rendering\n");
690 glxp
= create_glxpixmap(gdi_display
, vis
, pix
);
693 ERR("Failed to create drawable for offscreen rendering\n");
694 XFreePixmap(gdi_display
, pix
);
702 mark_drawable_dirty(data
->gl_drawable
, glxp
);
704 XFreePixmap(gdi_display
, data
->pixmap
);
705 destroy_glxpixmap(gdi_display
, data
->gl_drawable
);
706 TRACE( "Recreated GL drawable %lx to replace %lx\n", glxp
, data
->gl_drawable
);
709 data
->gl_drawable
= glxp
;
711 XFlush( gdi_display
);
714 SetPropA(data
->hwnd
, gl_drawable_prop
, (HANDLE
)data
->gl_drawable
);
715 SetPropA(data
->hwnd
, pixmap_prop
, (HANDLE
)data
->pixmap
);
719 /***********************************************************************
722 * fill the window changes structure
724 static int get_window_changes( XWindowChanges
*changes
, const RECT
*old
, const RECT
*new )
728 if (old
->right
- old
->left
!= new->right
- new->left
)
730 if ((changes
->width
= new->right
- new->left
) <= 0) changes
->width
= 1;
731 else if (changes
->width
> 65535) changes
->width
= 65535;
734 if (old
->bottom
- old
->top
!= new->bottom
- new->top
)
736 if ((changes
->height
= new->bottom
- new->top
) <= 0) changes
->height
= 1;
737 else if (changes
->height
> 65535) changes
->height
= 65535;
740 if (old
->left
!= new->left
)
742 changes
->x
= new->left
;
745 if (old
->top
!= new->top
)
747 changes
->y
= new->top
;
754 /***********************************************************************
757 static Window
create_icon_window( Display
*display
, struct x11drv_win_data
*data
)
759 XSetWindowAttributes attr
;
761 attr
.event_mask
= (ExposureMask
| KeyPressMask
| KeyReleaseMask
| PointerMotionMask
|
762 ButtonPressMask
| ButtonReleaseMask
| EnterWindowMask
);
763 attr
.bit_gravity
= NorthWestGravity
;
764 attr
.backing_store
= NotUseful
/*WhenMapped*/;
765 attr
.colormap
= X11DRV_PALETTE_PaletteXColormap
; /* Needed due to our visual */
768 data
->icon_window
= XCreateWindow( display
, root_window
, 0, 0,
769 GetSystemMetrics( SM_CXICON
),
770 GetSystemMetrics( SM_CYICON
),
773 CWEventMask
| CWBitGravity
| CWBackingStore
| CWColormap
, &attr
);
774 XSaveContext( display
, data
->icon_window
, winContext
, (char *)data
->hwnd
);
775 XFlush( display
); /* make sure the window exists before we start painting to it */
778 TRACE( "created %lx\n", data
->icon_window
);
779 SetPropA( data
->hwnd
, icon_window_prop
, (HANDLE
)data
->icon_window
);
780 return data
->icon_window
;
785 /***********************************************************************
786 * destroy_icon_window
788 static void destroy_icon_window( Display
*display
, struct x11drv_win_data
*data
)
790 if (!data
->icon_window
) return;
792 XDeleteContext( display
, data
->icon_window
, winContext
);
793 XDestroyWindow( display
, data
->icon_window
);
794 data
->icon_window
= 0;
796 RemovePropA( data
->hwnd
, icon_window_prop
);
800 /***********************************************************************
803 * Return the bitmap bits in ARGB format. Helper for setting icon hints.
805 static unsigned long *get_bitmap_argb( HDC hdc
, HBITMAP color
, HBITMAP mask
, unsigned int *size
)
807 char buffer
[FIELD_OFFSET( BITMAPINFO
, bmiColors
[256] )];
808 BITMAPINFO
*info
= (BITMAPINFO
*)buffer
;
810 unsigned int *ptr
, *bits
= NULL
;
811 unsigned char *mask_bits
= NULL
;
812 int i
, j
, has_alpha
= 0;
814 if (!GetObjectW( color
, sizeof(bm
), &bm
)) return NULL
;
815 info
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
816 info
->bmiHeader
.biWidth
= bm
.bmWidth
;
817 info
->bmiHeader
.biHeight
= -bm
.bmHeight
;
818 info
->bmiHeader
.biPlanes
= 1;
819 info
->bmiHeader
.biBitCount
= 32;
820 info
->bmiHeader
.biCompression
= BI_RGB
;
821 info
->bmiHeader
.biSizeImage
= bm
.bmWidth
* bm
.bmHeight
* 4;
822 info
->bmiHeader
.biXPelsPerMeter
= 0;
823 info
->bmiHeader
.biYPelsPerMeter
= 0;
824 info
->bmiHeader
.biClrUsed
= 0;
825 info
->bmiHeader
.biClrImportant
= 0;
826 *size
= bm
.bmWidth
* bm
.bmHeight
+ 2;
827 if (!(bits
= HeapAlloc( GetProcessHeap(), 0, *size
* sizeof(long) ))) goto failed
;
828 if (!GetDIBits( hdc
, color
, 0, bm
.bmHeight
, bits
+ 2, info
, DIB_RGB_COLORS
)) goto failed
;
830 bits
[0] = bm
.bmWidth
;
831 bits
[1] = bm
.bmHeight
;
833 for (i
= 0; i
< bm
.bmWidth
* bm
.bmHeight
; i
++)
834 if ((has_alpha
= (bits
[i
+ 2] & 0xff000000) != 0)) break;
838 unsigned int width_bytes
= (bm
.bmWidth
+ 31) / 32 * 4;
839 /* generate alpha channel from the mask */
840 info
->bmiHeader
.biBitCount
= 1;
841 info
->bmiHeader
.biSizeImage
= width_bytes
* bm
.bmHeight
;
842 if (!(mask_bits
= HeapAlloc( GetProcessHeap(), 0, info
->bmiHeader
.biSizeImage
))) goto failed
;
843 if (!GetDIBits( hdc
, mask
, 0, bm
.bmHeight
, mask_bits
, info
, DIB_RGB_COLORS
)) goto failed
;
845 for (i
= 0; i
< bm
.bmHeight
; i
++)
846 for (j
= 0; j
< bm
.bmWidth
; j
++, ptr
++)
847 if (!((mask_bits
[i
* width_bytes
+ j
/ 8] << (j
% 8)) & 0x80)) *ptr
|= 0xff000000;
848 HeapFree( GetProcessHeap(), 0, mask_bits
);
851 /* convert to array of longs */
852 if (bits
&& sizeof(long) > sizeof(int))
853 for (i
= *size
- 1; i
>= 0; i
--) ((unsigned long *)bits
)[i
] = bits
[i
];
855 return (unsigned long *)bits
;
858 HeapFree( GetProcessHeap(), 0, bits
);
859 HeapFree( GetProcessHeap(), 0, mask_bits
);
864 /***********************************************************************
865 * create_icon_pixmaps
867 static BOOL
create_icon_pixmaps( HDC hdc
, const ICONINFO
*icon
, struct x11drv_win_data
*data
)
869 char buffer
[FIELD_OFFSET( BITMAPINFO
, bmiColors
[256] )];
870 BITMAPINFO
*info
= (BITMAPINFO
*)buffer
;
872 struct gdi_image_bits bits
;
873 Pixmap color_pixmap
= 0, mask_pixmap
= 0;
880 info
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
881 info
->bmiHeader
.biBitCount
= 0;
882 if (!(lines
= GetDIBits( hdc
, icon
->hbmColor
, 0, 0, NULL
, info
, DIB_RGB_COLORS
))) goto failed
;
883 if (!(bits
.ptr
= HeapAlloc( GetProcessHeap(), 0, info
->bmiHeader
.biSizeImage
))) goto failed
;
884 if (!GetDIBits( hdc
, icon
->hbmColor
, 0, lines
, bits
.ptr
, info
, DIB_RGB_COLORS
)) goto failed
;
887 vis
.depth
= screen_depth
;
888 vis
.visualid
= visual
->visualid
;
889 vis
.class = visual
->class;
890 vis
.red_mask
= visual
->red_mask
;
891 vis
.green_mask
= visual
->green_mask
;
892 vis
.blue_mask
= visual
->blue_mask
;
893 color_pixmap
= create_pixmap_from_image( hdc
, &vis
, info
, &bits
, DIB_RGB_COLORS
);
894 HeapFree( GetProcessHeap(), 0, bits
.ptr
);
896 if (!color_pixmap
) goto failed
;
898 info
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
899 info
->bmiHeader
.biBitCount
= 0;
900 if (!(lines
= GetDIBits( hdc
, icon
->hbmMask
, 0, 0, NULL
, info
, DIB_RGB_COLORS
))) goto failed
;
901 if (!(bits
.ptr
= HeapAlloc( GetProcessHeap(), 0, info
->bmiHeader
.biSizeImage
))) goto failed
;
902 if (!GetDIBits( hdc
, icon
->hbmMask
, 0, lines
, bits
.ptr
, info
, DIB_RGB_COLORS
)) goto failed
;
904 /* invert the mask */
905 for (i
= 0; i
< info
->bmiHeader
.biSizeImage
/ sizeof(DWORD
); i
++) ((DWORD
*)bits
.ptr
)[i
] ^= ~0u;
908 mask_pixmap
= create_pixmap_from_image( hdc
, &vis
, info
, &bits
, DIB_RGB_COLORS
);
909 HeapFree( GetProcessHeap(), 0, bits
.ptr
);
911 if (!mask_pixmap
) goto failed
;
913 data
->icon_pixmap
= color_pixmap
;
914 data
->icon_mask
= mask_pixmap
;
919 if (color_pixmap
) XFreePixmap( gdi_display
, color_pixmap
);
920 if (mask_pixmap
) XFreePixmap( gdi_display
, mask_pixmap
);
922 HeapFree( GetProcessHeap(), 0, bits
.ptr
);
927 /***********************************************************************
930 * Set the icon wm hints
932 static void set_icon_hints( Display
*display
, struct x11drv_win_data
*data
,
933 HICON icon_big
, HICON icon_small
)
935 XWMHints
*hints
= data
->wm_hints
;
939 icon_big
= (HICON
)SendMessageW( data
->hwnd
, WM_GETICON
, ICON_BIG
, 0 );
940 if (!icon_big
) icon_big
= (HICON
)GetClassLongPtrW( data
->hwnd
, GCLP_HICON
);
944 icon_small
= (HICON
)SendMessageW( data
->hwnd
, WM_GETICON
, ICON_SMALL
, 0 );
945 if (!icon_small
) icon_small
= (HICON
)GetClassLongPtrW( data
->hwnd
, GCLP_HICONSM
);
949 if (data
->icon_pixmap
) XFreePixmap( gdi_display
, data
->icon_pixmap
);
950 if (data
->icon_mask
) XFreePixmap( gdi_display
, data
->icon_mask
);
951 data
->icon_pixmap
= data
->icon_mask
= 0;
956 if (!data
->icon_window
) create_icon_window( display
, data
);
957 hints
->icon_window
= data
->icon_window
;
958 hints
->flags
= (hints
->flags
& ~(IconPixmapHint
| IconMaskHint
)) | IconWindowHint
;
962 ICONINFO ii
, ii_small
;
967 if (!GetIconInfo(icon_big
, &ii
)) return;
969 hDC
= CreateCompatibleDC(0);
970 bits
= get_bitmap_argb( hDC
, ii
.hbmColor
, ii
.hbmMask
, &size
);
971 if (bits
&& GetIconInfo( icon_small
, &ii_small
))
973 unsigned int size_small
;
974 unsigned long *bits_small
, *new;
976 if ((bits_small
= get_bitmap_argb( hDC
, ii_small
.hbmColor
, ii_small
.hbmMask
, &size_small
)) &&
977 (bits_small
[0] != bits
[0] || bits_small
[1] != bits
[1])) /* size must be different */
979 if ((new = HeapReAlloc( GetProcessHeap(), 0, bits
,
980 (size
+ size_small
) * sizeof(unsigned long) )))
983 memcpy( bits
+ size
, bits_small
, size_small
* sizeof(unsigned long) );
987 HeapFree( GetProcessHeap(), 0, bits_small
);
988 DeleteObject( ii_small
.hbmColor
);
989 DeleteObject( ii_small
.hbmMask
);
993 XChangeProperty( display
, data
->whole_window
, x11drv_atom(_NET_WM_ICON
),
994 XA_CARDINAL
, 32, PropModeReplace
, (unsigned char *)bits
, size
);
996 XDeleteProperty( display
, data
->whole_window
, x11drv_atom(_NET_WM_ICON
) );
998 HeapFree( GetProcessHeap(), 0, bits
);
1000 if (create_icon_pixmaps( hDC
, &ii
, data
))
1002 hints
->icon_pixmap
= data
->icon_pixmap
;
1003 hints
->icon_mask
= data
->icon_mask
;
1004 hints
->flags
|= IconPixmapHint
| IconMaskHint
;
1006 destroy_icon_window( display
, data
);
1007 hints
->flags
&= ~IconWindowHint
;
1009 DeleteObject( ii
.hbmColor
);
1010 DeleteObject( ii
.hbmMask
);
1016 /***********************************************************************
1019 * set the window size hints
1021 static void set_size_hints( Display
*display
, struct x11drv_win_data
*data
, DWORD style
)
1023 XSizeHints
* size_hints
;
1025 if (!(size_hints
= XAllocSizeHints())) return;
1027 size_hints
->win_gravity
= StaticGravity
;
1028 size_hints
->flags
|= PWinGravity
;
1030 /* don't update size hints if window is not in normal state */
1031 if (!(style
& (WS_MINIMIZE
| WS_MAXIMIZE
)))
1033 if (data
->hwnd
!= GetDesktopWindow()) /* don't force position of desktop */
1035 size_hints
->x
= data
->whole_rect
.left
;
1036 size_hints
->y
= data
->whole_rect
.top
;
1037 size_hints
->flags
|= PPosition
;
1039 else size_hints
->win_gravity
= NorthWestGravity
;
1041 if (!is_window_resizable( data
, style
))
1043 size_hints
->max_width
= data
->whole_rect
.right
- data
->whole_rect
.left
;
1044 size_hints
->max_height
= data
->whole_rect
.bottom
- data
->whole_rect
.top
;
1045 if (size_hints
->max_width
<= 0 ||size_hints
->max_height
<= 0)
1046 size_hints
->max_width
= size_hints
->max_height
= 1;
1047 size_hints
->min_width
= size_hints
->max_width
;
1048 size_hints
->min_height
= size_hints
->max_height
;
1049 size_hints
->flags
|= PMinSize
| PMaxSize
;
1052 XSetWMNormalHints( display
, data
->whole_window
, size_hints
);
1053 XFree( size_hints
);
1057 /***********************************************************************
1060 static void set_mwm_hints( Display
*display
, struct x11drv_win_data
*data
, DWORD style
, DWORD ex_style
)
1064 if (data
->hwnd
== GetDesktopWindow())
1066 mwm_hints
.decorations
= MWM_DECOR_TITLE
| MWM_DECOR_BORDER
| MWM_DECOR_MENU
| MWM_DECOR_MINIMIZE
;
1067 mwm_hints
.functions
= MWM_FUNC_MOVE
| MWM_FUNC_MINIMIZE
| MWM_FUNC_CLOSE
;
1071 mwm_hints
.decorations
= get_mwm_decorations( data
, style
, ex_style
);
1072 mwm_hints
.functions
= MWM_FUNC_MOVE
;
1073 if (is_window_resizable( data
, style
)) mwm_hints
.functions
|= MWM_FUNC_RESIZE
;
1074 if (!(style
& WS_DISABLED
))
1076 if (style
& WS_MINIMIZEBOX
) mwm_hints
.functions
|= MWM_FUNC_MINIMIZE
;
1077 if (style
& WS_MAXIMIZEBOX
) mwm_hints
.functions
|= MWM_FUNC_MAXIMIZE
;
1078 if (style
& WS_SYSMENU
) mwm_hints
.functions
|= MWM_FUNC_CLOSE
;
1082 TRACE( "%p setting mwm hints to %lx,%lx (style %x exstyle %x)\n",
1083 data
->hwnd
, mwm_hints
.decorations
, mwm_hints
.functions
, style
, ex_style
);
1085 mwm_hints
.flags
= MWM_HINTS_FUNCTIONS
| MWM_HINTS_DECORATIONS
;
1086 XChangeProperty( display
, data
->whole_window
, x11drv_atom(_MOTIF_WM_HINTS
),
1087 x11drv_atom(_MOTIF_WM_HINTS
), 32, PropModeReplace
,
1088 (unsigned char*)&mwm_hints
, sizeof(mwm_hints
)/sizeof(long) );
1092 /***********************************************************************
1095 * get the name of the current process for setting class hints
1097 static char *get_process_name(void)
1103 WCHAR module
[MAX_PATH
];
1104 DWORD len
= GetModuleFileNameW( 0, module
, MAX_PATH
);
1105 if (len
&& len
< MAX_PATH
)
1108 WCHAR
*p
, *appname
= module
;
1110 if ((p
= strrchrW( appname
, '/' ))) appname
= p
+ 1;
1111 if ((p
= strrchrW( appname
, '\\' ))) appname
= p
+ 1;
1112 len
= WideCharToMultiByte( CP_UNIXCP
, 0, appname
, -1, NULL
, 0, NULL
, NULL
);
1113 if ((ptr
= HeapAlloc( GetProcessHeap(), 0, len
)))
1115 WideCharToMultiByte( CP_UNIXCP
, 0, appname
, -1, ptr
, len
, NULL
, NULL
);
1124 /***********************************************************************
1125 * set_initial_wm_hints
1127 * Set the window manager hints that don't change over the lifetime of a window.
1129 static void set_initial_wm_hints( Display
*display
, struct x11drv_win_data
*data
)
1133 Atom dndVersion
= WINE_XDND_VERSION
;
1134 XClassHint
*class_hints
;
1135 char *process_name
= get_process_name();
1141 protocols
[i
++] = x11drv_atom(WM_DELETE_WINDOW
);
1142 protocols
[i
++] = x11drv_atom(_NET_WM_PING
);
1143 if (use_take_focus
) protocols
[i
++] = x11drv_atom(WM_TAKE_FOCUS
);
1144 XChangeProperty( display
, data
->whole_window
, x11drv_atom(WM_PROTOCOLS
),
1145 XA_ATOM
, 32, PropModeReplace
, (unsigned char *)protocols
, i
);
1148 if ((class_hints
= XAllocClassHint()))
1150 static char wine
[] = "Wine";
1152 class_hints
->res_name
= process_name
;
1153 class_hints
->res_class
= wine
;
1154 XSetClassHint( display
, data
->whole_window
, class_hints
);
1155 XFree( class_hints
);
1158 /* set the WM_CLIENT_MACHINE and WM_LOCALE_NAME properties */
1159 XSetWMProperties(display
, data
->whole_window
, NULL
, NULL
, NULL
, 0, NULL
, NULL
, NULL
);
1160 /* set the pid. together, these properties are needed so the window manager can kill us if we freeze */
1162 XChangeProperty(display
, data
->whole_window
, x11drv_atom(_NET_WM_PID
),
1163 XA_CARDINAL
, 32, PropModeReplace
, (unsigned char *)&i
, 1);
1165 XChangeProperty( display
, data
->whole_window
, x11drv_atom(XdndAware
),
1166 XA_ATOM
, 32, PropModeReplace
, (unsigned char*)&dndVersion
, 1 );
1168 update_user_time( 0 ); /* make sure that the user time window exists */
1169 if (user_time_window
)
1170 XChangeProperty( display
, data
->whole_window
, x11drv_atom(_NET_WM_USER_TIME_WINDOW
),
1171 XA_WINDOW
, 32, PropModeReplace
, (unsigned char *)&user_time_window
, 1 );
1173 data
->wm_hints
= XAllocWMHints();
1174 wine_tsx11_unlock();
1178 data
->wm_hints
->flags
= 0;
1179 set_icon_hints( display
, data
, 0, 0 );
1184 /***********************************************************************
1185 * get_owner_whole_window
1187 * Retrieve an owner's window, creating it if necessary.
1189 static Window
get_owner_whole_window( HWND owner
, BOOL force_managed
)
1191 struct x11drv_win_data
*data
;
1193 if (!owner
) return 0;
1195 if (!(data
= X11DRV_get_win_data( owner
)))
1197 if (GetWindowThreadProcessId( owner
, NULL
) != GetCurrentThreadId() ||
1198 !(data
= X11DRV_create_win_data( owner
)))
1199 return (Window
)GetPropA( owner
, whole_window_prop
);
1201 else if (!data
->managed
&& force_managed
) /* make it managed */
1203 SetWindowPos( owner
, 0, 0, 0, 0, 0,
1204 SWP_NOACTIVATE
| SWP_NOZORDER
| SWP_NOSIZE
| SWP_NOMOVE
|
1205 SWP_NOREDRAW
| SWP_DEFERERASE
| SWP_NOSENDCHANGING
| SWP_STATECHANGED
);
1207 return data
->whole_window
;
1211 /***********************************************************************
1214 * Set the window manager hints for a newly-created window
1216 static void set_wm_hints( Display
*display
, struct x11drv_win_data
*data
)
1218 Window group_leader
= data
->whole_window
;
1219 Window owner_win
= 0;
1221 DWORD style
, ex_style
;
1224 if (data
->hwnd
== GetDesktopWindow())
1226 /* force some styles for the desktop to get the correct decorations */
1227 style
= WS_POPUP
| WS_VISIBLE
| WS_CAPTION
| WS_SYSMENU
| WS_MINIMIZEBOX
;
1228 ex_style
= WS_EX_APPWINDOW
;
1233 style
= GetWindowLongW( data
->hwnd
, GWL_STYLE
);
1234 ex_style
= GetWindowLongW( data
->hwnd
, GWL_EXSTYLE
);
1235 owner
= GetWindow( data
->hwnd
, GW_OWNER
);
1236 if ((owner_win
= get_owner_whole_window( owner
, data
->managed
))) group_leader
= owner_win
;
1241 if (owner_win
) XSetTransientForHint( display
, data
->whole_window
, owner_win
);
1244 set_size_hints( display
, data
, style
);
1245 set_mwm_hints( display
, data
, style
, ex_style
);
1247 /* Only use dialog type for owned popups. Metacity allows making fullscreen
1248 * only normal windows, and doesn't handle correctly TRANSIENT_FOR hint for
1249 * dialogs owned by fullscreen windows.
1251 if (((style
& WS_POPUP
) || (ex_style
& WS_EX_DLGMODALFRAME
)) && owner
) window_type
= x11drv_atom(_NET_WM_WINDOW_TYPE_DIALOG
);
1252 else window_type
= x11drv_atom(_NET_WM_WINDOW_TYPE_NORMAL
);
1254 XChangeProperty(display
, data
->whole_window
, x11drv_atom(_NET_WM_WINDOW_TYPE
),
1255 XA_ATOM
, 32, PropModeReplace
, (unsigned char*)&window_type
, 1);
1260 data
->wm_hints
->flags
|= InputHint
| StateHint
| WindowGroupHint
;
1261 data
->wm_hints
->input
= !use_take_focus
&& !(style
& WS_DISABLED
);
1262 data
->wm_hints
->initial_state
= (style
& WS_MINIMIZE
) ? IconicState
: NormalState
;
1263 data
->wm_hints
->window_group
= group_leader
;
1264 XSetWMHints( display
, data
->whole_window
, data
->wm_hints
);
1267 wine_tsx11_unlock();
1271 /***********************************************************************
1274 Window
init_clip_window(void)
1276 struct x11drv_thread_data
*data
= x11drv_init_thread_data();
1278 if (!data
->clip_window
&&
1279 (data
->clip_window
= (Window
)GetPropA( GetDesktopWindow(), clip_window_prop
)))
1282 XSelectInput( data
->display
, data
->clip_window
, StructureNotifyMask
);
1283 wine_tsx11_unlock();
1285 return data
->clip_window
;
1289 /***********************************************************************
1292 void update_user_time( Time time
)
1295 if (!user_time_window
)
1297 user_time_window
= XCreateWindow( gdi_display
, root_window
, -1, -1, 1, 1, 0, 0, InputOnly
,
1298 DefaultVisual(gdi_display
,DefaultScreen(gdi_display
)), 0, NULL
);
1299 TRACE( "user time window %lx\n", user_time_window
);
1301 if (time
&& (!last_user_time
|| (long)(time
- last_user_time
) > 0))
1303 last_user_time
= time
;
1304 XChangeProperty( gdi_display
, user_time_window
, x11drv_atom(_NET_WM_USER_TIME
),
1305 XA_CARDINAL
, 32, PropModeReplace
, (unsigned char *)&time
, 1 );
1307 wine_tsx11_unlock();
1310 /***********************************************************************
1311 * update_net_wm_states
1313 void update_net_wm_states( Display
*display
, struct x11drv_win_data
*data
)
1315 static const unsigned int state_atoms
[NB_NET_WM_STATES
] =
1317 XATOM__NET_WM_STATE_FULLSCREEN
,
1318 XATOM__NET_WM_STATE_ABOVE
,
1319 XATOM__NET_WM_STATE_MAXIMIZED_VERT
,
1320 XATOM__NET_WM_STATE_SKIP_PAGER
,
1321 XATOM__NET_WM_STATE_SKIP_TASKBAR
1324 DWORD i
, style
, ex_style
, new_state
= 0;
1326 if (!data
->managed
) return;
1327 if (data
->whole_window
== root_window
) return;
1329 style
= GetWindowLongW( data
->hwnd
, GWL_STYLE
);
1330 if (is_window_rect_fullscreen( &data
->whole_rect
))
1332 if ((style
& WS_MAXIMIZE
) && (style
& WS_CAPTION
) == WS_CAPTION
)
1333 new_state
|= (1 << NET_WM_STATE_MAXIMIZED
);
1334 else if (!(style
& WS_MINIMIZE
))
1335 new_state
|= (1 << NET_WM_STATE_FULLSCREEN
);
1337 else if (style
& WS_MAXIMIZE
)
1338 new_state
|= (1 << NET_WM_STATE_MAXIMIZED
);
1340 ex_style
= GetWindowLongW( data
->hwnd
, GWL_EXSTYLE
);
1341 if (ex_style
& WS_EX_TOPMOST
)
1342 new_state
|= (1 << NET_WM_STATE_ABOVE
);
1343 if (ex_style
& (WS_EX_TOOLWINDOW
| WS_EX_NOACTIVATE
))
1344 new_state
|= (1 << NET_WM_STATE_SKIP_TASKBAR
) | (1 << NET_WM_STATE_SKIP_PAGER
);
1345 if (!(ex_style
& WS_EX_APPWINDOW
) && GetWindow( data
->hwnd
, GW_OWNER
))
1346 new_state
|= (1 << NET_WM_STATE_SKIP_TASKBAR
);
1348 if (!data
->mapped
) /* set the _NET_WM_STATE atom directly */
1350 Atom atoms
[NB_NET_WM_STATES
+1];
1353 for (i
= count
= 0; i
< NB_NET_WM_STATES
; i
++)
1355 if (!(new_state
& (1 << i
))) continue;
1356 TRACE( "setting wm state %u for unmapped window %p/%lx\n",
1357 i
, data
->hwnd
, data
->whole_window
);
1358 atoms
[count
++] = X11DRV_Atoms
[state_atoms
[i
] - FIRST_XATOM
];
1359 if (state_atoms
[i
] == XATOM__NET_WM_STATE_MAXIMIZED_VERT
)
1360 atoms
[count
++] = x11drv_atom(_NET_WM_STATE_MAXIMIZED_HORZ
);
1363 XChangeProperty( display
, data
->whole_window
, x11drv_atom(_NET_WM_STATE
), XA_ATOM
,
1364 32, PropModeReplace
, (unsigned char *)atoms
, count
);
1365 wine_tsx11_unlock();
1367 else /* ask the window manager to do it for us */
1371 xev
.xclient
.type
= ClientMessage
;
1372 xev
.xclient
.window
= data
->whole_window
;
1373 xev
.xclient
.message_type
= x11drv_atom(_NET_WM_STATE
);
1374 xev
.xclient
.serial
= 0;
1375 xev
.xclient
.display
= display
;
1376 xev
.xclient
.send_event
= True
;
1377 xev
.xclient
.format
= 32;
1378 xev
.xclient
.data
.l
[3] = 1;
1380 for (i
= 0; i
< NB_NET_WM_STATES
; i
++)
1382 if (!((data
->net_wm_state
^ new_state
) & (1 << i
))) continue; /* unchanged */
1384 TRACE( "setting wm state %u for window %p/%lx to %u prev %u\n",
1385 i
, data
->hwnd
, data
->whole_window
,
1386 (new_state
& (1 << i
)) != 0, (data
->net_wm_state
& (1 << i
)) != 0 );
1388 xev
.xclient
.data
.l
[0] = (new_state
& (1 << i
)) ? _NET_WM_STATE_ADD
: _NET_WM_STATE_REMOVE
;
1389 xev
.xclient
.data
.l
[1] = X11DRV_Atoms
[state_atoms
[i
] - FIRST_XATOM
];
1390 xev
.xclient
.data
.l
[2] = ((state_atoms
[i
] == XATOM__NET_WM_STATE_MAXIMIZED_VERT
) ?
1391 x11drv_atom(_NET_WM_STATE_MAXIMIZED_HORZ
) : 0);
1393 XSendEvent( display
, root_window
, False
,
1394 SubstructureRedirectMask
| SubstructureNotifyMask
, &xev
);
1395 wine_tsx11_unlock();
1398 data
->net_wm_state
= new_state
;
1402 /***********************************************************************
1405 static void set_xembed_flags( Display
*display
, struct x11drv_win_data
*data
, unsigned long flags
)
1407 unsigned long info
[2];
1409 if (!data
->whole_window
) return;
1411 info
[0] = 0; /* protocol version */
1414 XChangeProperty( display
, data
->whole_window
, x11drv_atom(_XEMBED_INFO
),
1415 x11drv_atom(_XEMBED_INFO
), 32, PropModeReplace
, (unsigned char*)info
, 2 );
1416 wine_tsx11_unlock();
1420 /***********************************************************************
1423 static void map_window( Display
*display
, struct x11drv_win_data
*data
, DWORD new_style
)
1425 TRACE( "win %p/%lx\n", data
->hwnd
, data
->whole_window
);
1427 remove_startup_notification( display
, data
->whole_window
);
1429 wait_for_withdrawn_state( display
, data
, TRUE
);
1431 if (!data
->embedded
)
1433 update_net_wm_states( display
, data
);
1434 sync_window_style( display
, data
);
1436 XMapWindow( display
, data
->whole_window
);
1437 wine_tsx11_unlock();
1439 else set_xembed_flags( display
, data
, XEMBED_MAPPED
);
1441 data
->mapped
= TRUE
;
1442 data
->iconic
= (new_style
& WS_MINIMIZE
) != 0;
1446 /***********************************************************************
1449 static void unmap_window( Display
*display
, struct x11drv_win_data
*data
)
1451 TRACE( "win %p/%lx\n", data
->hwnd
, data
->whole_window
);
1453 if (!data
->embedded
)
1455 wait_for_withdrawn_state( display
, data
, FALSE
);
1457 if (data
->managed
) XWithdrawWindow( display
, data
->whole_window
, DefaultScreen(display
) );
1458 else XUnmapWindow( display
, data
->whole_window
);
1459 wine_tsx11_unlock();
1461 else set_xembed_flags( display
, data
, 0 );
1463 data
->mapped
= FALSE
;
1464 data
->net_wm_state
= 0;
1468 /***********************************************************************
1469 * make_window_embedded
1471 void make_window_embedded( Display
*display
, struct x11drv_win_data
*data
)
1473 BOOL was_mapped
= data
->mapped
;
1474 /* the window cannot be mapped before being embedded */
1475 if (data
->mapped
) unmap_window( display
, data
);
1477 data
->embedded
= TRUE
;
1478 data
->managed
= TRUE
;
1479 SetPropA( data
->hwnd
, managed_prop
, (HANDLE
)1 );
1480 sync_window_style( display
, data
);
1483 map_window( display
, data
, 0 );
1485 set_xembed_flags( display
, data
, 0 );
1489 /***********************************************************************
1490 * X11DRV_window_to_X_rect
1492 * Convert a rect from client to X window coordinates
1494 static void X11DRV_window_to_X_rect( struct x11drv_win_data
*data
, RECT
*rect
)
1498 if (!data
->managed
) return;
1499 if (IsRectEmpty( rect
)) return;
1501 get_x11_rect_offset( data
, &rc
);
1503 rect
->left
-= rc
.left
;
1504 rect
->right
-= rc
.right
;
1505 rect
->top
-= rc
.top
;
1506 rect
->bottom
-= rc
.bottom
;
1507 if (rect
->top
>= rect
->bottom
) rect
->bottom
= rect
->top
+ 1;
1508 if (rect
->left
>= rect
->right
) rect
->right
= rect
->left
+ 1;
1512 /***********************************************************************
1513 * X11DRV_X_to_window_rect
1515 * Opposite of X11DRV_window_to_X_rect
1517 void X11DRV_X_to_window_rect( struct x11drv_win_data
*data
, RECT
*rect
)
1521 if (!data
->managed
) return;
1522 if (IsRectEmpty( rect
)) return;
1524 get_x11_rect_offset( data
, &rc
);
1526 rect
->left
+= rc
.left
;
1527 rect
->right
+= rc
.right
;
1528 rect
->top
+= rc
.top
;
1529 rect
->bottom
+= rc
.bottom
;
1530 if (rect
->top
>= rect
->bottom
) rect
->bottom
= rect
->top
+ 1;
1531 if (rect
->left
>= rect
->right
) rect
->right
= rect
->left
+ 1;
1535 /***********************************************************************
1536 * sync_window_position
1538 * Synchronize the X window position with the Windows one
1540 static void sync_window_position( Display
*display
, struct x11drv_win_data
*data
,
1541 UINT swp_flags
, const RECT
*old_window_rect
,
1542 const RECT
*old_whole_rect
, const RECT
*old_client_rect
)
1544 DWORD style
= GetWindowLongW( data
->hwnd
, GWL_STYLE
);
1545 DWORD ex_style
= GetWindowLongW( data
->hwnd
, GWL_EXSTYLE
);
1546 XWindowChanges changes
;
1547 unsigned int mask
= 0;
1549 if (data
->managed
&& data
->iconic
) return;
1551 /* resizing a managed maximized window is not allowed */
1552 if (!(style
& WS_MAXIMIZE
) || !data
->managed
)
1554 changes
.width
= data
->whole_rect
.right
- data
->whole_rect
.left
;
1555 changes
.height
= data
->whole_rect
.bottom
- data
->whole_rect
.top
;
1556 /* if window rect is empty force size to 1x1 */
1557 if (changes
.width
<= 0 || changes
.height
<= 0) changes
.width
= changes
.height
= 1;
1558 if (changes
.width
> 65535) changes
.width
= 65535;
1559 if (changes
.height
> 65535) changes
.height
= 65535;
1560 mask
|= CWWidth
| CWHeight
;
1563 /* only the size is allowed to change for the desktop window */
1564 if (data
->whole_window
!= root_window
)
1566 changes
.x
= data
->whole_rect
.left
- virtual_screen_rect
.left
;
1567 changes
.y
= data
->whole_rect
.top
- virtual_screen_rect
.top
;
1571 if (!(swp_flags
& SWP_NOZORDER
) || (swp_flags
& SWP_SHOWWINDOW
))
1573 /* find window that this one must be after */
1574 HWND prev
= GetWindow( data
->hwnd
, GW_HWNDPREV
);
1575 while (prev
&& !(GetWindowLongW( prev
, GWL_STYLE
) & WS_VISIBLE
))
1576 prev
= GetWindow( prev
, GW_HWNDPREV
);
1577 if (!prev
) /* top child */
1579 changes
.stack_mode
= Above
;
1580 mask
|= CWStackMode
;
1582 /* should use stack_mode Below but most window managers don't get it right */
1583 /* and Above with a sibling doesn't work so well either, so we ignore it */
1587 set_size_hints( display
, data
, style
);
1588 set_mwm_hints( display
, data
, style
, ex_style
);
1589 data
->configure_serial
= NextRequest( display
);
1590 XReconfigureWMWindow( display
, data
->whole_window
,
1591 DefaultScreen(display
), mask
, &changes
);
1592 wine_tsx11_unlock();
1593 #ifdef HAVE_LIBXSHAPE
1594 if (IsRectEmpty( old_window_rect
) != IsRectEmpty( &data
->window_rect
))
1595 sync_window_region( display
, data
, (HRGN
)1 );
1598 int old_x_offset
= old_window_rect
->left
- old_whole_rect
->left
;
1599 int old_y_offset
= old_window_rect
->top
- old_whole_rect
->top
;
1600 int new_x_offset
= data
->window_rect
.left
- data
->whole_rect
.left
;
1601 int new_y_offset
= data
->window_rect
.top
- data
->whole_rect
.top
;
1602 if (old_x_offset
!= new_x_offset
|| old_y_offset
!= new_y_offset
)
1605 XShapeOffsetShape( display
, data
->whole_window
, ShapeBounding
,
1606 new_x_offset
- old_x_offset
, new_y_offset
- old_y_offset
);
1607 wine_tsx11_unlock();
1612 TRACE( "win %p/%lx pos %d,%d,%dx%d after %lx changes=%x serial=%lu\n",
1613 data
->hwnd
, data
->whole_window
, data
->whole_rect
.left
, data
->whole_rect
.top
,
1614 data
->whole_rect
.right
- data
->whole_rect
.left
,
1615 data
->whole_rect
.bottom
- data
->whole_rect
.top
,
1616 changes
.sibling
, mask
, data
->configure_serial
);
1620 /***********************************************************************
1621 * sync_client_position
1623 * Synchronize the X client window position with the Windows one
1625 static void sync_client_position( Display
*display
, struct x11drv_win_data
*data
,
1626 UINT swp_flags
, const RECT
*old_client_rect
,
1627 const RECT
*old_whole_rect
)
1630 XWindowChanges changes
;
1631 RECT old
= *old_client_rect
;
1632 RECT
new = data
->client_rect
;
1634 OffsetRect( &old
, -old_whole_rect
->left
, -old_whole_rect
->top
);
1635 OffsetRect( &new, -data
->whole_rect
.left
, -data
->whole_rect
.top
);
1636 if (!(mask
= get_window_changes( &changes
, &old
, &new ))) return;
1638 if (data
->client_window
)
1640 TRACE( "setting client win %lx pos %d,%d,%dx%d changes=%x\n",
1641 data
->client_window
, new.left
, new.top
,
1642 new.right
- new.left
, new.bottom
- new.top
, mask
);
1644 XConfigureWindow( display
, data
->client_window
, mask
, &changes
);
1645 wine_tsx11_unlock();
1648 if (data
->gl_drawable
&& (mask
& (CWWidth
|CWHeight
))) sync_gl_drawable( data
);
1652 /***********************************************************************
1655 * Move the window bits when a window is moved.
1657 static void move_window_bits( struct x11drv_win_data
*data
, const RECT
*old_rect
, const RECT
*new_rect
,
1658 const RECT
*old_client_rect
)
1660 RECT src_rect
= *old_rect
;
1661 RECT dst_rect
= *new_rect
;
1662 HDC hdc_src
, hdc_dst
;
1667 if (!data
->whole_window
)
1669 OffsetRect( &dst_rect
, -data
->window_rect
.left
, -data
->window_rect
.top
);
1670 parent
= GetAncestor( data
->hwnd
, GA_PARENT
);
1671 hdc_src
= GetDCEx( parent
, 0, DCX_CACHE
);
1672 hdc_dst
= GetDCEx( data
->hwnd
, 0, DCX_CACHE
| DCX_WINDOW
);
1676 OffsetRect( &dst_rect
, -data
->client_rect
.left
, -data
->client_rect
.top
);
1677 /* make src rect relative to the old position of the window */
1678 OffsetRect( &src_rect
, -old_client_rect
->left
, -old_client_rect
->top
);
1679 if (dst_rect
.left
== src_rect
.left
&& dst_rect
.top
== src_rect
.top
) return;
1680 hdc_src
= hdc_dst
= GetDCEx( data
->hwnd
, 0, DCX_CACHE
);
1683 rgn
= CreateRectRgnIndirect( &dst_rect
);
1684 SelectClipRgn( hdc_dst
, rgn
);
1685 DeleteObject( rgn
);
1686 ExcludeUpdateRgn( hdc_dst
, data
->hwnd
);
1688 code
= X11DRV_START_EXPOSURES
;
1689 ExtEscape( hdc_dst
, X11DRV_ESCAPE
, sizeof(code
), (LPSTR
)&code
, 0, NULL
);
1691 TRACE( "copying bits for win %p/%lx/%lx %s -> %s\n",
1692 data
->hwnd
, data
->whole_window
, data
->client_window
,
1693 wine_dbgstr_rect(&src_rect
), wine_dbgstr_rect(&dst_rect
) );
1694 BitBlt( hdc_dst
, dst_rect
.left
, dst_rect
.top
,
1695 dst_rect
.right
- dst_rect
.left
, dst_rect
.bottom
- dst_rect
.top
,
1696 hdc_src
, src_rect
.left
, src_rect
.top
, SRCCOPY
);
1699 code
= X11DRV_END_EXPOSURES
;
1700 ExtEscape( hdc_dst
, X11DRV_ESCAPE
, sizeof(code
), (LPSTR
)&code
, sizeof(rgn
), (LPSTR
)&rgn
);
1702 ReleaseDC( data
->hwnd
, hdc_dst
);
1703 if (hdc_src
!= hdc_dst
) ReleaseDC( parent
, hdc_src
);
1707 if (!data
->whole_window
)
1709 /* map region to client rect since we are using DCX_WINDOW */
1710 OffsetRgn( rgn
, data
->window_rect
.left
- data
->client_rect
.left
,
1711 data
->window_rect
.top
- data
->client_rect
.top
);
1712 RedrawWindow( data
->hwnd
, NULL
, rgn
,
1713 RDW_INVALIDATE
| RDW_FRAME
| RDW_ERASE
| RDW_ALLCHILDREN
);
1715 else RedrawWindow( data
->hwnd
, NULL
, rgn
, RDW_INVALIDATE
| RDW_ERASE
| RDW_ALLCHILDREN
);
1716 DeleteObject( rgn
);
1721 /**********************************************************************
1722 * create_whole_window
1724 * Create the whole X window for a given window
1726 static Window
create_whole_window( Display
*display
, struct x11drv_win_data
*data
)
1729 XSetWindowAttributes attr
;
1733 DWORD layered_flags
;
1736 if (!data
->managed
&& is_window_managed( data
->hwnd
, SWP_NOACTIVATE
, &data
->window_rect
))
1738 TRACE( "making win %p/%lx managed\n", data
->hwnd
, data
->whole_window
);
1739 data
->managed
= TRUE
;
1740 SetPropA( data
->hwnd
, managed_prop
, (HANDLE
)1 );
1743 if ((win_rgn
= CreateRectRgn( 0, 0, 0, 0 )) &&
1744 GetWindowRgn( data
->hwnd
, win_rgn
) == ERROR
)
1746 DeleteObject( win_rgn
);
1749 data
->shaped
= (win_rgn
!= 0);
1751 mask
= get_window_attributes( display
, data
, &attr
);
1753 data
->whole_rect
= data
->window_rect
;
1754 X11DRV_window_to_X_rect( data
, &data
->whole_rect
);
1755 if (!(cx
= data
->whole_rect
.right
- data
->whole_rect
.left
)) cx
= 1;
1756 else if (cx
> 65535) cx
= 65535;
1757 if (!(cy
= data
->whole_rect
.bottom
- data
->whole_rect
.top
)) cy
= 1;
1758 else if (cy
> 65535) cy
= 65535;
1761 data
->whole_window
= XCreateWindow( display
, root_window
,
1762 data
->whole_rect
.left
- virtual_screen_rect
.left
,
1763 data
->whole_rect
.top
- virtual_screen_rect
.top
,
1764 cx
, cy
, 0, screen_depth
, InputOutput
,
1765 visual
, mask
, &attr
);
1767 if (data
->whole_window
) XSaveContext( display
, data
->whole_window
, winContext
, (char *)data
->hwnd
);
1768 wine_tsx11_unlock();
1770 if (!data
->whole_window
) goto done
;
1772 if (!create_client_window( display
, data
, NULL
))
1775 XDeleteContext( display
, data
->whole_window
, winContext
);
1776 XDestroyWindow( display
, data
->whole_window
);
1777 data
->whole_window
= 0;
1778 wine_tsx11_unlock();
1782 set_initial_wm_hints( display
, data
);
1783 set_wm_hints( display
, data
);
1785 SetPropA( data
->hwnd
, whole_window_prop
, (HANDLE
)data
->whole_window
);
1787 /* set the window text */
1788 if (!InternalGetWindowText( data
->hwnd
, text
, sizeof(text
)/sizeof(WCHAR
) )) text
[0] = 0;
1789 sync_window_text( display
, data
->whole_window
, text
);
1791 /* set the window region */
1792 if (win_rgn
|| IsRectEmpty( &data
->window_rect
)) sync_window_region( display
, data
, win_rgn
);
1794 /* set the window opacity */
1795 if (!GetLayeredWindowAttributes( data
->hwnd
, &key
, &alpha
, &layered_flags
)) layered_flags
= 0;
1796 sync_window_opacity( display
, data
->whole_window
, key
, alpha
, layered_flags
);
1798 init_clip_window(); /* make sure the clip window is initialized in this thread */
1801 XFlush( display
); /* make sure the window exists before we start painting to it */
1802 wine_tsx11_unlock();
1804 sync_window_cursor( data
->whole_window
);
1807 if (win_rgn
) DeleteObject( win_rgn
);
1808 return data
->whole_window
;
1812 /**********************************************************************
1813 * destroy_whole_window
1815 * Destroy the whole X window for a given window.
1817 static void destroy_whole_window( Display
*display
, struct x11drv_win_data
*data
, BOOL already_destroyed
)
1819 if (!data
->whole_window
)
1823 Window xwin
= (Window
)GetPropA( data
->hwnd
, foreign_window_prop
);
1827 if (!already_destroyed
) XSelectInput( display
, xwin
, 0 );
1828 XDeleteContext( display
, xwin
, winContext
);
1829 wine_tsx11_unlock();
1830 RemovePropA( data
->hwnd
, foreign_window_prop
);
1837 TRACE( "win %p xwin %lx/%lx\n", data
->hwnd
, data
->whole_window
, data
->client_window
);
1839 XDeleteContext( display
, data
->whole_window
, winContext
);
1840 XDeleteContext( display
, data
->client_window
, winContext
);
1841 if (!already_destroyed
) XDestroyWindow( display
, data
->whole_window
);
1842 data
->whole_window
= data
->client_window
= 0;
1843 data
->wm_state
= WithdrawnState
;
1844 data
->net_wm_state
= 0;
1845 data
->mapped
= FALSE
;
1848 XUnsetICFocus( data
->xic
);
1849 XDestroyIC( data
->xic
);
1852 /* Outlook stops processing messages after destroying a dialog, so we need an explicit flush */
1854 XFree( data
->wm_hints
);
1855 data
->wm_hints
= NULL
;
1856 wine_tsx11_unlock();
1857 RemovePropA( data
->hwnd
, whole_window_prop
);
1858 RemovePropA( data
->hwnd
, client_window_prop
);
1862 /*****************************************************************
1863 * SetWindowText (X11DRV.@)
1865 void CDECL
X11DRV_SetWindowText( HWND hwnd
, LPCWSTR text
)
1869 if ((win
= X11DRV_get_whole_window( hwnd
)) && win
!= DefaultRootWindow(gdi_display
))
1871 Display
*display
= thread_init_display();
1872 sync_window_text( display
, win
, text
);
1877 /***********************************************************************
1878 * SetWindowStyle (X11DRV.@)
1880 * Update the X state of a window to reflect a style change
1882 void CDECL
X11DRV_SetWindowStyle( HWND hwnd
, INT offset
, STYLESTRUCT
*style
)
1884 struct x11drv_win_data
*data
= X11DRV_get_win_data( hwnd
);
1887 if (hwnd
== GetDesktopWindow()) return;
1888 changed
= style
->styleNew
^ style
->styleOld
;
1890 /* if WS_VISIBLE was set through WM_SETREDRAW, map the window if it's the first time */
1891 if (offset
== GWL_STYLE
&& (changed
& WS_VISIBLE
) && (style
->styleNew
& WS_VISIBLE
) && !data
)
1893 if (!(data
= X11DRV_create_win_data( hwnd
))) return;
1895 if (data
->whole_window
&& is_window_rect_mapped( &data
->window_rect
))
1897 Display
*display
= thread_display();
1898 set_wm_hints( display
, data
);
1899 if (!data
->mapped
) map_window( display
, data
, style
->styleNew
);
1902 if (!data
|| !data
->whole_window
) return;
1904 if (offset
== GWL_STYLE
&& (changed
& WS_DISABLED
))
1905 set_wm_hints( thread_display(), data
);
1907 if (offset
== GWL_EXSTYLE
&& (changed
& WS_EX_LAYERED
)) /* changing WS_EX_LAYERED resets attributes */
1908 sync_window_opacity( thread_display(), data
->whole_window
, 0, 0, 0 );
1912 /***********************************************************************
1913 * DestroyWindow (X11DRV.@)
1915 void CDECL
X11DRV_DestroyWindow( HWND hwnd
)
1917 struct x11drv_thread_data
*thread_data
= x11drv_thread_data();
1918 struct x11drv_win_data
*data
;
1920 if (!(data
= X11DRV_get_win_data( hwnd
))) return;
1925 destroy_glxpixmap(gdi_display
, data
->gl_drawable
);
1926 XFreePixmap(gdi_display
, data
->pixmap
);
1927 wine_tsx11_unlock();
1929 else if (data
->gl_drawable
)
1932 XDestroyWindow(gdi_display
, data
->gl_drawable
);
1933 wine_tsx11_unlock();
1936 destroy_whole_window( thread_data
->display
, data
, FALSE
);
1937 destroy_icon_window( thread_data
->display
, data
);
1942 XFreeColormap( thread_data
->display
, data
->colormap
);
1943 wine_tsx11_unlock();
1946 if (thread_data
->last_focus
== hwnd
) thread_data
->last_focus
= 0;
1947 if (thread_data
->last_xic_hwnd
== hwnd
) thread_data
->last_xic_hwnd
= 0;
1949 if (data
->icon_pixmap
) XFreePixmap( gdi_display
, data
->icon_pixmap
);
1950 if (data
->icon_mask
) XFreePixmap( gdi_display
, data
->icon_mask
);
1951 XDeleteContext( thread_data
->display
, (XID
)hwnd
, win_data_context
);
1952 wine_tsx11_unlock();
1953 HeapFree( GetProcessHeap(), 0, data
);
1957 /***********************************************************************
1958 * X11DRV_DestroyNotify
1960 void X11DRV_DestroyNotify( HWND hwnd
, XEvent
*event
)
1962 Display
*display
= event
->xdestroywindow
.display
;
1963 struct x11drv_win_data
*data
;
1965 if (!(data
= X11DRV_get_win_data( hwnd
))) return;
1966 if (!data
->embedded
) FIXME( "window %p/%lx destroyed from the outside\n", hwnd
, data
->whole_window
);
1968 destroy_whole_window( display
, data
, TRUE
);
1969 if (data
->embedded
) SendMessageW( hwnd
, WM_CLOSE
, 0, 0 );
1973 static struct x11drv_win_data
*alloc_win_data( Display
*display
, HWND hwnd
)
1975 struct x11drv_win_data
*data
;
1977 if ((data
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*data
))))
1981 if (!winContext
) winContext
= XUniqueContext();
1982 if (!win_data_context
) win_data_context
= XUniqueContext();
1983 XSaveContext( display
, (XID
)hwnd
, win_data_context
, (char *)data
);
1984 wine_tsx11_unlock();
1990 /* initialize the desktop window id in the desktop manager process */
1991 static struct x11drv_win_data
*create_desktop_win_data( Display
*display
, HWND hwnd
)
1993 struct x11drv_win_data
*data
;
1995 if (!(data
= alloc_win_data( display
, hwnd
))) return NULL
;
1996 data
->whole_window
= data
->client_window
= root_window
;
1997 data
->managed
= TRUE
;
1998 SetPropA( data
->hwnd
, managed_prop
, (HANDLE
)1 );
1999 SetPropA( data
->hwnd
, whole_window_prop
, (HANDLE
)root_window
);
2000 SetPropA( data
->hwnd
, client_window_prop
, (HANDLE
)root_window
);
2001 set_initial_wm_hints( display
, data
);
2005 /**********************************************************************
2006 * CreateDesktopWindow (X11DRV.@)
2008 BOOL CDECL
X11DRV_CreateDesktopWindow( HWND hwnd
)
2010 unsigned int width
, height
;
2012 /* retrieve the real size of the desktop */
2013 SERVER_START_REQ( get_window_rectangles
)
2015 req
->handle
= wine_server_user_handle( hwnd
);
2016 req
->relative
= COORDS_CLIENT
;
2017 wine_server_call( req
);
2018 width
= reply
->window
.right
;
2019 height
= reply
->window
.bottom
;
2023 if (!width
&& !height
) /* not initialized yet */
2025 SERVER_START_REQ( set_window_pos
)
2027 req
->handle
= wine_server_user_handle( hwnd
);
2029 req
->flags
= SWP_NOZORDER
;
2030 req
->window
.left
= virtual_screen_rect
.left
;
2031 req
->window
.top
= virtual_screen_rect
.top
;
2032 req
->window
.right
= virtual_screen_rect
.right
;
2033 req
->window
.bottom
= virtual_screen_rect
.bottom
;
2034 req
->client
= req
->window
;
2035 wine_server_call( req
);
2041 Window win
= (Window
)GetPropA( hwnd
, whole_window_prop
);
2042 if (win
&& win
!= root_window
) X11DRV_init_desktop( win
, width
, height
);
2048 /**********************************************************************
2049 * CreateWindow (X11DRV.@)
2051 BOOL CDECL
X11DRV_CreateWindow( HWND hwnd
)
2053 if (hwnd
== GetDesktopWindow())
2055 struct x11drv_thread_data
*data
= x11drv_init_thread_data();
2056 XSetWindowAttributes attr
;
2058 if (root_window
!= DefaultRootWindow( gdi_display
))
2060 /* the desktop win data can't be created lazily */
2061 if (!create_desktop_win_data( data
->display
, hwnd
)) return FALSE
;
2064 /* create the cursor clipping window */
2065 attr
.override_redirect
= TRUE
;
2066 attr
.event_mask
= StructureNotifyMask
| FocusChangeMask
;
2068 data
->clip_window
= XCreateWindow( data
->display
, root_window
, 0, 0, 1, 1, 0, 0,
2069 InputOnly
, visual
, CWOverrideRedirect
| CWEventMask
, &attr
);
2070 XFlush( data
->display
);
2071 wine_tsx11_unlock();
2072 SetPropA( hwnd
, clip_window_prop
, (HANDLE
)data
->clip_window
);
2078 /***********************************************************************
2079 * X11DRV_get_win_data
2081 * Return the X11 data structure associated with a window.
2083 struct x11drv_win_data
*X11DRV_get_win_data( HWND hwnd
)
2085 struct x11drv_thread_data
*thread_data
= x11drv_thread_data();
2088 if (!thread_data
) return NULL
;
2089 if (!hwnd
) return NULL
;
2090 if (XFindContext( thread_data
->display
, (XID
)hwnd
, win_data_context
, &data
)) data
= NULL
;
2091 return (struct x11drv_win_data
*)data
;
2095 /***********************************************************************
2096 * X11DRV_create_win_data
2098 * Create an X11 data window structure for an existing window.
2100 struct x11drv_win_data
*X11DRV_create_win_data( HWND hwnd
)
2103 struct x11drv_win_data
*data
;
2106 if (!(parent
= GetAncestor( hwnd
, GA_PARENT
))) return NULL
; /* desktop */
2108 /* don't create win data for HWND_MESSAGE windows */
2109 if (parent
!= GetDesktopWindow() && !GetAncestor( parent
, GA_PARENT
)) return NULL
;
2111 display
= thread_init_display();
2112 if (!(data
= alloc_win_data( display
, hwnd
))) return NULL
;
2114 GetWindowRect( hwnd
, &data
->window_rect
);
2115 MapWindowPoints( 0, parent
, (POINT
*)&data
->window_rect
, 2 );
2116 data
->whole_rect
= data
->window_rect
;
2117 GetClientRect( hwnd
, &data
->client_rect
);
2118 MapWindowPoints( hwnd
, parent
, (POINT
*)&data
->client_rect
, 2 );
2120 if (parent
== GetDesktopWindow())
2122 if (!create_whole_window( display
, data
))
2124 HeapFree( GetProcessHeap(), 0, data
);
2127 TRACE( "win %p/%lx/%lx window %s whole %s client %s\n",
2128 hwnd
, data
->whole_window
, data
->client_window
, wine_dbgstr_rect( &data
->window_rect
),
2129 wine_dbgstr_rect( &data
->whole_rect
), wine_dbgstr_rect( &data
->client_rect
));
2135 /* window procedure for foreign windows */
2136 static LRESULT WINAPI
foreign_window_proc( HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
2140 case WM_WINDOWPOSCHANGED
:
2141 update_systray_balloon_position();
2143 case WM_PARENTNOTIFY
:
2144 if (LOWORD(wparam
) == WM_DESTROY
)
2146 TRACE( "%p: got parent notify destroy for win %lx\n", hwnd
, lparam
);
2147 PostMessageW( hwnd
, WM_CLOSE
, 0, 0 ); /* so that we come back here once the child is gone */
2151 if (GetWindow( hwnd
, GW_CHILD
)) return 0; /* refuse to die if we still have children */
2154 return DefWindowProcW( hwnd
, msg
, wparam
, lparam
);
2158 /***********************************************************************
2159 * create_foreign_window
2161 * Create a foreign window for the specified X window and its ancestors
2163 HWND
create_foreign_window( Display
*display
, Window xwin
)
2165 static const WCHAR classW
[] = {'_','_','w','i','n','e','_','x','1','1','_','f','o','r','e','i','g','n','_','w','i','n','d','o','w',0};
2166 static BOOL class_registered
;
2167 struct x11drv_win_data
*data
;
2169 Window xparent
, xroot
;
2171 unsigned int nchildren
;
2172 XWindowAttributes attr
;
2173 DWORD style
= WS_CLIPCHILDREN
;
2175 if (!class_registered
)
2179 memset( &class, 0, sizeof(class) );
2180 class.cbSize
= sizeof(class);
2181 class.lpfnWndProc
= foreign_window_proc
;
2182 class.lpszClassName
= classW
;
2183 if (!RegisterClassExW( &class ) && GetLastError() != ERROR_CLASS_ALREADY_EXISTS
)
2185 ERR( "Could not register foreign window class\n" );
2188 class_registered
= TRUE
;
2192 if (XFindContext( display
, xwin
, winContext
, (char **)&hwnd
)) hwnd
= 0;
2193 if (hwnd
) /* already created */
2195 wine_tsx11_unlock();
2199 XSelectInput( display
, xwin
, StructureNotifyMask
);
2200 if (!XGetWindowAttributes( display
, xwin
, &attr
) ||
2201 !XQueryTree( display
, xwin
, &xroot
, &xparent
, &xchildren
, &nchildren
))
2203 XSelectInput( display
, xwin
, 0 );
2204 wine_tsx11_unlock();
2208 wine_tsx11_unlock();
2210 if (xparent
== xroot
)
2212 parent
= GetDesktopWindow();
2214 attr
.x
+= virtual_screen_rect
.left
;
2215 attr
.y
+= virtual_screen_rect
.top
;
2219 parent
= create_foreign_window( display
, xparent
);
2223 hwnd
= CreateWindowW( classW
, NULL
, style
, attr
.x
, attr
.y
, attr
.width
, attr
.height
,
2224 parent
, 0, 0, NULL
);
2226 if (!(data
= alloc_win_data( display
, hwnd
)))
2228 DestroyWindow( hwnd
);
2231 SetRect( &data
->window_rect
, attr
.x
, attr
.y
, attr
.x
+ attr
.width
, attr
.y
+ attr
.height
);
2232 data
->whole_rect
= data
->client_rect
= data
->window_rect
;
2233 data
->whole_window
= data
->client_window
= 0;
2234 data
->embedded
= TRUE
;
2235 data
->mapped
= TRUE
;
2237 SetPropA( hwnd
, foreign_window_prop
, (HANDLE
)xwin
);
2239 XSaveContext( display
, xwin
, winContext
, (char *)data
->hwnd
);
2240 wine_tsx11_unlock();
2242 ShowWindow( hwnd
, SW_SHOW
);
2244 TRACE( "win %lx parent %p style %08x %s -> hwnd %p\n",
2245 xwin
, parent
, style
, wine_dbgstr_rect(&data
->window_rect
), hwnd
);
2251 /***********************************************************************
2252 * X11DRV_get_whole_window
2254 * Return the X window associated with the full area of a window
2256 Window
X11DRV_get_whole_window( HWND hwnd
)
2258 struct x11drv_win_data
*data
= X11DRV_get_win_data( hwnd
);
2262 if (hwnd
== GetDesktopWindow()) return root_window
;
2263 return (Window
)GetPropA( hwnd
, whole_window_prop
);
2265 return data
->whole_window
;
2269 /***********************************************************************
2270 * X11DRV_get_client_window
2272 * Return the X window associated with the client area of a window
2274 static Window
X11DRV_get_client_window( HWND hwnd
)
2276 struct x11drv_win_data
*data
= X11DRV_get_win_data( hwnd
);
2280 if (hwnd
== GetDesktopWindow()) return root_window
;
2281 return (Window
)GetPropA( hwnd
, client_window_prop
);
2283 return data
->client_window
;
2287 /***********************************************************************
2290 * Return the X input context associated with a window
2292 XIC
X11DRV_get_ic( HWND hwnd
)
2294 struct x11drv_win_data
*data
= X11DRV_get_win_data( hwnd
);
2297 if (!data
) return 0;
2299 x11drv_thread_data()->last_xic_hwnd
= hwnd
;
2300 if (data
->xic
) return data
->xic
;
2301 if (!(xim
= x11drv_thread_data()->xim
)) return 0;
2302 return X11DRV_CreateIC( xim
, data
);
2306 /***********************************************************************
2307 * X11DRV_GetDC (X11DRV.@)
2309 void CDECL
X11DRV_GetDC( HDC hdc
, HWND hwnd
, HWND top
, const RECT
*win_rect
,
2310 const RECT
*top_rect
, DWORD flags
)
2312 struct x11drv_escape_set_drawable escape
;
2313 struct x11drv_win_data
*data
= X11DRV_get_win_data( hwnd
);
2316 escape
.code
= X11DRV_SET_DRAWABLE
;
2317 escape
.mode
= IncludeInferiors
;
2318 escape
.fbconfig_id
= 0;
2319 escape
.gl_drawable
= 0;
2321 escape
.gl_type
= DC_GL_NONE
;
2323 escape
.dc_rect
.left
= win_rect
->left
- top_rect
->left
;
2324 escape
.dc_rect
.top
= win_rect
->top
- top_rect
->top
;
2325 escape
.dc_rect
.right
= win_rect
->right
- top_rect
->left
;
2326 escape
.dc_rect
.bottom
= win_rect
->bottom
- top_rect
->top
;
2330 escape
.fbconfig_id
= data
? data
->fbconfig_id
: (XID
)GetPropA( hwnd
, fbconfig_id_prop
);
2331 /* GL draws to the client area even for window DCs */
2332 escape
.gl_drawable
= data
? data
->client_window
: X11DRV_get_client_window( hwnd
);
2333 if (data
&& IsIconic( hwnd
) && data
->icon_window
)
2335 escape
.drawable
= data
->icon_window
;
2337 else if (flags
& DCX_WINDOW
)
2338 escape
.drawable
= data
? data
->whole_window
: X11DRV_get_whole_window( hwnd
);
2340 escape
.drawable
= escape
.gl_drawable
;
2342 if (escape
.gl_drawable
) escape
.gl_type
= DC_GL_WINDOW
;
2343 /* special case: when repainting the root window, clip out top-level windows */
2344 if (data
&& data
->whole_window
== root_window
) escape
.mode
= ClipByChildren
;
2348 /* find the first ancestor that has a drawable */
2349 for (parent
= hwnd
; parent
&& parent
!= top
; parent
= GetAncestor( parent
, GA_PARENT
))
2350 if ((escape
.drawable
= X11DRV_get_client_window( parent
))) break;
2352 if (escape
.drawable
)
2354 POINT pt
= { 0, 0 };
2355 MapWindowPoints( top
, parent
, &pt
, 1 );
2356 OffsetRect( &escape
.dc_rect
, pt
.x
, pt
.y
);
2358 else escape
.drawable
= X11DRV_get_client_window( top
);
2360 escape
.fbconfig_id
= data
? data
->fbconfig_id
: (XID
)GetPropA( hwnd
, fbconfig_id_prop
);
2361 escape
.gl_drawable
= data
? data
->gl_drawable
: (Drawable
)GetPropA( hwnd
, gl_drawable_prop
);
2362 escape
.pixmap
= data
? data
->pixmap
: (Pixmap
)GetPropA( hwnd
, pixmap_prop
);
2363 if (escape
.gl_drawable
) escape
.gl_type
= escape
.pixmap
? DC_GL_PIXMAP_WIN
: DC_GL_CHILD_WIN
;
2364 if (flags
& DCX_CLIPCHILDREN
) escape
.mode
= ClipByChildren
;
2367 ExtEscape( hdc
, X11DRV_ESCAPE
, sizeof(escape
), (LPSTR
)&escape
, 0, NULL
);
2371 /***********************************************************************
2372 * X11DRV_ReleaseDC (X11DRV.@)
2374 void CDECL
X11DRV_ReleaseDC( HWND hwnd
, HDC hdc
)
2376 struct x11drv_escape_set_drawable escape
;
2378 escape
.code
= X11DRV_SET_DRAWABLE
;
2379 escape
.drawable
= root_window
;
2380 escape
.mode
= IncludeInferiors
;
2381 SetRect( &escape
.dc_rect
, 0, 0, virtual_screen_rect
.right
- virtual_screen_rect
.left
,
2382 virtual_screen_rect
.bottom
- virtual_screen_rect
.top
);
2383 OffsetRect( &escape
.dc_rect
, -virtual_screen_rect
.left
, -virtual_screen_rect
.top
);
2384 escape
.fbconfig_id
= 0;
2385 escape
.gl_drawable
= 0;
2387 escape
.gl_type
= DC_GL_NONE
;
2388 ExtEscape( hdc
, X11DRV_ESCAPE
, sizeof(escape
), (LPSTR
)&escape
, 0, NULL
);
2392 /***********************************************************************
2393 * SetCapture (X11DRV.@)
2395 void CDECL
X11DRV_SetCapture( HWND hwnd
, UINT flags
)
2397 struct x11drv_thread_data
*thread_data
= x11drv_thread_data();
2399 if (!thread_data
) return;
2400 if (!(flags
& (GUI_INMOVESIZE
| GUI_INMENUMODE
))) return;
2404 Window grab_win
= X11DRV_get_client_window( GetAncestor( hwnd
, GA_ROOT
) );
2406 if (!grab_win
) return;
2408 XFlush( gdi_display
);
2409 XGrabPointer( thread_data
->display
, grab_win
, False
,
2410 PointerMotionMask
| ButtonPressMask
| ButtonReleaseMask
,
2411 GrabModeAsync
, GrabModeAsync
, None
, None
, CurrentTime
);
2412 wine_tsx11_unlock();
2413 thread_data
->grab_window
= grab_win
;
2415 else /* release capture */
2418 XFlush( gdi_display
);
2419 XUngrabPointer( thread_data
->display
, CurrentTime
);
2420 XFlush( thread_data
->display
);
2421 wine_tsx11_unlock();
2422 thread_data
->grab_window
= None
;
2427 /*****************************************************************
2428 * SetParent (X11DRV.@)
2430 void CDECL
X11DRV_SetParent( HWND hwnd
, HWND parent
, HWND old_parent
)
2432 Display
*display
= thread_display();
2433 struct x11drv_win_data
*data
= X11DRV_get_win_data( hwnd
);
2436 if (parent
== old_parent
) return;
2437 if (data
->embedded
) return;
2439 if (parent
!= GetDesktopWindow()) /* a child window */
2441 if (old_parent
== GetDesktopWindow())
2443 /* destroy the old X windows */
2444 destroy_whole_window( display
, data
, FALSE
);
2445 destroy_icon_window( display
, data
);
2448 data
->managed
= FALSE
;
2449 RemovePropA( data
->hwnd
, managed_prop
);
2453 else /* new top level window */
2455 /* FIXME: we ignore errors since we can't really recover anyway */
2456 create_whole_window( display
, data
);
2461 /*****************************************************************
2462 * SetFocus (X11DRV.@)
2466 void CDECL
X11DRV_SetFocus( HWND hwnd
)
2468 Display
*display
= thread_display();
2469 struct x11drv_win_data
*data
;
2470 XWindowChanges changes
;
2473 if (!(hwnd
= GetAncestor( hwnd
, GA_ROOT
))) return;
2474 if (!(data
= X11DRV_get_win_data( hwnd
))) return;
2475 if (data
->managed
|| !data
->whole_window
) return;
2477 if (EVENT_x11_time_to_win32_time(0))
2478 /* ICCCM says don't use CurrentTime, so try to use last message time if possible */
2479 /* FIXME: this is not entirely correct */
2480 timestamp
= GetMessageTime() - EVENT_x11_time_to_win32_time(0);
2482 timestamp
= CurrentTime
;
2484 /* Set X focus and install colormap */
2486 changes
.stack_mode
= Above
;
2487 XConfigureWindow( display
, data
->whole_window
, CWStackMode
, &changes
);
2488 XSetInputFocus( display
, data
->whole_window
, RevertToParent
, timestamp
);
2489 wine_tsx11_unlock();
2493 /***********************************************************************
2494 * WindowPosChanging (X11DRV.@)
2496 void CDECL
X11DRV_WindowPosChanging( HWND hwnd
, HWND insert_after
, UINT swp_flags
,
2497 const RECT
*window_rect
, const RECT
*client_rect
, RECT
*visible_rect
)
2499 struct x11drv_win_data
*data
= X11DRV_get_win_data( hwnd
);
2500 DWORD style
= GetWindowLongW( hwnd
, GWL_STYLE
);
2504 /* create the win data if the window is being made visible */
2505 if (!(style
& WS_VISIBLE
) && !(swp_flags
& SWP_SHOWWINDOW
)) return;
2506 if (!(data
= X11DRV_create_win_data( hwnd
))) return;
2509 /* check if we need to switch the window to managed */
2510 if (!data
->managed
&& data
->whole_window
&& is_window_managed( hwnd
, swp_flags
, window_rect
))
2512 TRACE( "making win %p/%lx managed\n", hwnd
, data
->whole_window
);
2513 if (data
->mapped
) unmap_window( thread_display(), data
);
2514 data
->managed
= TRUE
;
2515 SetPropA( hwnd
, managed_prop
, (HANDLE
)1 );
2518 *visible_rect
= *window_rect
;
2519 X11DRV_window_to_X_rect( data
, visible_rect
);
2523 /***********************************************************************
2524 * WindowPosChanged (X11DRV.@)
2526 void CDECL
X11DRV_WindowPosChanged( HWND hwnd
, HWND insert_after
, UINT swp_flags
,
2527 const RECT
*rectWindow
, const RECT
*rectClient
,
2528 const RECT
*visible_rect
, const RECT
*valid_rects
)
2530 struct x11drv_thread_data
*thread_data
;
2532 struct x11drv_win_data
*data
= X11DRV_get_win_data( hwnd
);
2533 DWORD new_style
= GetWindowLongW( hwnd
, GWL_STYLE
);
2534 RECT old_window_rect
, old_whole_rect
, old_client_rect
;
2539 thread_data
= x11drv_thread_data();
2540 display
= thread_data
->display
;
2542 old_window_rect
= data
->window_rect
;
2543 old_whole_rect
= data
->whole_rect
;
2544 old_client_rect
= data
->client_rect
;
2545 data
->window_rect
= *rectWindow
;
2546 data
->whole_rect
= *visible_rect
;
2547 data
->client_rect
= *rectClient
;
2549 TRACE( "win %p window %s client %s style %08x flags %08x\n",
2550 hwnd
, wine_dbgstr_rect(rectWindow
), wine_dbgstr_rect(rectClient
), new_style
, swp_flags
);
2552 if (!IsRectEmpty( &valid_rects
[0] ))
2554 int x_offset
= old_whole_rect
.left
- data
->whole_rect
.left
;
2555 int y_offset
= old_whole_rect
.top
- data
->whole_rect
.top
;
2557 /* if all that happened is that the whole window moved, copy everything */
2558 if (!(swp_flags
& SWP_FRAMECHANGED
) &&
2559 old_whole_rect
.right
- data
->whole_rect
.right
== x_offset
&&
2560 old_whole_rect
.bottom
- data
->whole_rect
.bottom
== y_offset
&&
2561 old_client_rect
.left
- data
->client_rect
.left
== x_offset
&&
2562 old_client_rect
.right
- data
->client_rect
.right
== x_offset
&&
2563 old_client_rect
.top
- data
->client_rect
.top
== y_offset
&&
2564 old_client_rect
.bottom
- data
->client_rect
.bottom
== y_offset
&&
2565 !memcmp( &valid_rects
[0], &data
->client_rect
, sizeof(RECT
) ))
2567 /* if we have an X window the bits will be moved by the X server */
2568 if (!data
->whole_window
&& (x_offset
!= 0 || y_offset
!= 0))
2569 move_window_bits( data
, &old_whole_rect
, &data
->whole_rect
, &old_client_rect
);
2572 move_window_bits( data
, &valid_rects
[1], &valid_rects
[0], &old_client_rect
);
2576 XFlush( gdi_display
); /* make sure painting is done before we move the window */
2577 wine_tsx11_unlock();
2579 sync_client_position( display
, data
, swp_flags
, &old_client_rect
, &old_whole_rect
);
2581 if (!data
->whole_window
) return;
2583 /* check if we are currently processing an event relevant to this window */
2585 if (thread_data
->current_event
&& thread_data
->current_event
->xany
.window
== data
->whole_window
)
2586 event_type
= thread_data
->current_event
->type
;
2588 if (event_type
!= ConfigureNotify
&& event_type
!= PropertyNotify
&&
2589 event_type
!= GravityNotify
&& event_type
!= ReparentNotify
)
2590 event_type
= 0; /* ignore other events */
2592 if (data
->mapped
&& event_type
!= ReparentNotify
)
2594 if (((swp_flags
& SWP_HIDEWINDOW
) && !(new_style
& WS_VISIBLE
)) ||
2596 !is_window_rect_mapped( rectWindow
) && is_window_rect_mapped( &old_window_rect
)))
2598 unmap_window( display
, data
);
2599 if (is_window_rect_fullscreen( &old_window_rect
)) reset_clipping_window();
2603 /* don't change position if we are about to minimize or maximize a managed window */
2605 !(data
->managed
&& (swp_flags
& SWP_STATECHANGED
) && (new_style
& (WS_MINIMIZE
|WS_MAXIMIZE
))))
2606 sync_window_position( display
, data
, swp_flags
,
2607 &old_window_rect
, &old_whole_rect
, &old_client_rect
);
2609 if ((new_style
& WS_VISIBLE
) &&
2610 ((new_style
& WS_MINIMIZE
) || is_window_rect_mapped( rectWindow
)))
2612 if (!data
->mapped
|| (swp_flags
& (SWP_FRAMECHANGED
|SWP_STATECHANGED
)))
2613 set_wm_hints( display
, data
);
2617 map_window( display
, data
, new_style
);
2619 else if ((swp_flags
& SWP_STATECHANGED
) && (!data
->iconic
!= !(new_style
& WS_MINIMIZE
)))
2621 data
->iconic
= (new_style
& WS_MINIMIZE
) != 0;
2622 TRACE( "changing win %p iconic state to %u\n", data
->hwnd
, data
->iconic
);
2625 XIconifyWindow( display
, data
->whole_window
, DefaultScreen(display
) );
2626 else if (is_window_rect_mapped( rectWindow
))
2627 XMapWindow( display
, data
->whole_window
);
2628 wine_tsx11_unlock();
2629 update_net_wm_states( display
, data
);
2631 else if (!event_type
)
2633 update_net_wm_states( display
, data
);
2638 XFlush( display
); /* make sure changes are done before we start painting again */
2639 wine_tsx11_unlock();
2643 /***********************************************************************
2644 * ShowWindow (X11DRV.@)
2646 UINT CDECL
X11DRV_ShowWindow( HWND hwnd
, INT cmd
, RECT
*rect
, UINT swp
)
2649 unsigned int width
, height
, border
, depth
;
2651 DWORD style
= GetWindowLongW( hwnd
, GWL_STYLE
);
2652 struct x11drv_thread_data
*thread_data
= x11drv_thread_data();
2653 struct x11drv_win_data
*data
= X11DRV_get_win_data( hwnd
);
2655 if (!data
|| !data
->whole_window
|| !data
->managed
|| !data
->mapped
|| data
->iconic
) return swp
;
2656 if (style
& WS_MINIMIZE
) return swp
;
2657 if (IsRectEmpty( rect
)) return swp
;
2659 /* only fetch the new rectangle if the ShowWindow was a result of a window manager event */
2661 if (!thread_data
->current_event
|| thread_data
->current_event
->xany
.window
!= data
->whole_window
)
2664 if (thread_data
->current_event
->type
!= ConfigureNotify
&&
2665 thread_data
->current_event
->type
!= PropertyNotify
)
2668 TRACE( "win %p/%lx cmd %d at %s flags %08x\n",
2669 hwnd
, data
->whole_window
, cmd
, wine_dbgstr_rect(rect
), swp
);
2672 XGetGeometry( thread_data
->display
, data
->whole_window
,
2673 &root
, &x
, &y
, &width
, &height
, &border
, &depth
);
2674 XTranslateCoordinates( thread_data
->display
, data
->whole_window
, root
, 0, 0, &x
, &y
, &top
);
2675 wine_tsx11_unlock();
2678 rect
->right
= x
+ width
;
2679 rect
->bottom
= y
+ height
;
2680 OffsetRect( rect
, virtual_screen_rect
.left
, virtual_screen_rect
.top
);
2681 X11DRV_X_to_window_rect( data
, rect
);
2682 return swp
& ~(SWP_NOMOVE
| SWP_NOCLIENTMOVE
| SWP_NOSIZE
| SWP_NOCLIENTSIZE
);
2686 /**********************************************************************
2687 * SetWindowIcon (X11DRV.@)
2689 * hIcon or hIconSm has changed (or is being initialised for the
2690 * first time). Complete the X11 driver-specific initialisation
2691 * and set the window hints.
2693 * This is not entirely correct, may need to create
2694 * an icon window and set the pixmap as a background
2696 void CDECL
X11DRV_SetWindowIcon( HWND hwnd
, UINT type
, HICON icon
)
2698 Display
*display
= thread_display();
2699 struct x11drv_win_data
*data
;
2702 if (!(data
= X11DRV_get_win_data( hwnd
))) return;
2703 if (!data
->whole_window
) return;
2704 if (!data
->managed
) return;
2708 if (type
== ICON_BIG
) set_icon_hints( display
, data
, icon
, 0 );
2709 else set_icon_hints( display
, data
, 0, icon
);
2711 XSetWMHints( display
, data
->whole_window
, data
->wm_hints
);
2712 wine_tsx11_unlock();
2717 /***********************************************************************
2718 * SetWindowRgn (X11DRV.@)
2720 * Assign specified region to window (for non-rectangular windows)
2722 int CDECL
X11DRV_SetWindowRgn( HWND hwnd
, HRGN hrgn
, BOOL redraw
)
2724 struct x11drv_win_data
*data
;
2726 if ((data
= X11DRV_get_win_data( hwnd
)))
2728 sync_window_region( thread_display(), data
, hrgn
);
2730 else if (X11DRV_get_whole_window( hwnd
))
2732 SendMessageW( hwnd
, WM_X11DRV_SET_WIN_REGION
, 0, 0 );
2738 /***********************************************************************
2739 * SetLayeredWindowAttributes (X11DRV.@)
2741 * Set transparency attributes for a layered window.
2743 void CDECL
X11DRV_SetLayeredWindowAttributes( HWND hwnd
, COLORREF key
, BYTE alpha
, DWORD flags
)
2745 struct x11drv_win_data
*data
= X11DRV_get_win_data( hwnd
);
2749 if (data
->whole_window
)
2750 sync_window_opacity( thread_display(), data
->whole_window
, key
, alpha
, flags
);
2754 Window win
= X11DRV_get_whole_window( hwnd
);
2755 if (win
) sync_window_opacity( gdi_display
, win
, key
, alpha
, flags
);
2760 /**********************************************************************
2761 * X11DRV_WindowMessage (X11DRV.@)
2763 LRESULT CDECL
X11DRV_WindowMessage( HWND hwnd
, UINT msg
, WPARAM wp
, LPARAM lp
)
2765 struct x11drv_win_data
*data
;
2769 case WM_X11DRV_ACQUIRE_SELECTION
:
2770 return X11DRV_AcquireClipboard( hwnd
);
2771 case WM_X11DRV_SET_WIN_FORMAT
:
2772 return set_win_format( hwnd
, (XID
)wp
);
2773 case WM_X11DRV_SET_WIN_REGION
:
2774 if ((data
= X11DRV_get_win_data( hwnd
))) sync_window_region( thread_display(), data
, (HRGN
)1 );
2776 case WM_X11DRV_RESIZE_DESKTOP
:
2777 X11DRV_resize_desktop( LOWORD(lp
), HIWORD(lp
) );
2779 case WM_X11DRV_SET_CURSOR
:
2780 if ((data
= X11DRV_get_win_data( hwnd
)) && data
->whole_window
)
2781 set_window_cursor( data
->whole_window
, (HCURSOR
)lp
);
2782 else if (hwnd
== x11drv_thread_data()->clip_hwnd
)
2783 set_window_cursor( x11drv_thread_data()->clip_window
, (HCURSOR
)lp
);
2785 case WM_X11DRV_CLIP_CURSOR
:
2786 return clip_cursor_notify( hwnd
, (HWND
)lp
);
2788 FIXME( "got window msg %x hwnd %p wp %lx lp %lx\n", msg
, hwnd
, wp
, lp
);
2794 /***********************************************************************
2795 * is_netwm_supported
2797 static BOOL
is_netwm_supported( Display
*display
, Atom atom
)
2799 static Atom
*net_supported
;
2800 static int net_supported_count
= -1;
2804 if (net_supported_count
== -1)
2808 unsigned long count
, remaining
;
2810 if (!XGetWindowProperty( display
, DefaultRootWindow(display
), x11drv_atom(_NET_SUPPORTED
), 0,
2811 ~0UL, False
, XA_ATOM
, &type
, &format
, &count
,
2812 &remaining
, (unsigned char **)&net_supported
))
2813 net_supported_count
= get_property_size( format
, count
) / sizeof(Atom
);
2815 net_supported_count
= 0;
2817 wine_tsx11_unlock();
2819 for (i
= 0; i
< net_supported_count
; i
++)
2820 if (net_supported
[i
] == atom
) return TRUE
;
2825 /***********************************************************************
2826 * SysCommand (X11DRV.@)
2828 * Perform WM_SYSCOMMAND handling.
2830 LRESULT CDECL
X11DRV_SysCommand( HWND hwnd
, WPARAM wparam
, LPARAM lparam
)
2832 WPARAM hittest
= wparam
& 0x0f;
2834 Display
*display
= thread_display();
2835 struct x11drv_win_data
*data
;
2837 if (!(data
= X11DRV_get_win_data( hwnd
))) return -1;
2838 if (!data
->whole_window
|| !data
->managed
|| !data
->mapped
) return -1;
2840 switch (wparam
& 0xfff0)
2843 if (!hittest
) dir
= _NET_WM_MOVERESIZE_MOVE_KEYBOARD
;
2844 else dir
= _NET_WM_MOVERESIZE_MOVE
;
2847 /* windows without WS_THICKFRAME are not resizable through the window manager */
2848 if (!(GetWindowLongW( hwnd
, GWL_STYLE
) & WS_THICKFRAME
)) return -1;
2852 case WMSZ_LEFT
: dir
= _NET_WM_MOVERESIZE_SIZE_LEFT
; break;
2853 case WMSZ_RIGHT
: dir
= _NET_WM_MOVERESIZE_SIZE_RIGHT
; break;
2854 case WMSZ_TOP
: dir
= _NET_WM_MOVERESIZE_SIZE_TOP
; break;
2855 case WMSZ_TOPLEFT
: dir
= _NET_WM_MOVERESIZE_SIZE_TOPLEFT
; break;
2856 case WMSZ_TOPRIGHT
: dir
= _NET_WM_MOVERESIZE_SIZE_TOPRIGHT
; break;
2857 case WMSZ_BOTTOM
: dir
= _NET_WM_MOVERESIZE_SIZE_BOTTOM
; break;
2858 case WMSZ_BOTTOMLEFT
: dir
= _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT
; break;
2859 case WMSZ_BOTTOMRIGHT
: dir
= _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT
; break;
2860 default: dir
= _NET_WM_MOVERESIZE_SIZE_KEYBOARD
; break;
2865 /* prevent a simple ALT press+release from activating the system menu,
2866 * as that can get confusing on managed windows */
2867 if ((WCHAR
)lparam
) return -1; /* got an explicit char */
2868 if (GetMenu( hwnd
)) return -1; /* window has a real menu */
2869 if (!(GetWindowLongW( hwnd
, GWL_STYLE
) & WS_SYSMENU
)) return -1; /* no system menu */
2870 TRACE( "ignoring SC_KEYMENU wp %lx lp %lx\n", wparam
, lparam
);
2877 if (IsZoomed(hwnd
)) return -1;
2879 if (!is_netwm_supported( display
, x11drv_atom(_NET_WM_MOVERESIZE
) ))
2881 TRACE( "_NET_WM_MOVERESIZE not supported\n" );
2885 move_resize_window( display
, data
, dir
);