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 "wine/debug.h"
47 #include "wine/server.h"
50 WINE_DEFAULT_DEBUG_CHANNEL(x11drv
);
52 #define _NET_WM_MOVERESIZE_SIZE_TOPLEFT 0
53 #define _NET_WM_MOVERESIZE_SIZE_TOP 1
54 #define _NET_WM_MOVERESIZE_SIZE_TOPRIGHT 2
55 #define _NET_WM_MOVERESIZE_SIZE_RIGHT 3
56 #define _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT 4
57 #define _NET_WM_MOVERESIZE_SIZE_BOTTOM 5
58 #define _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT 6
59 #define _NET_WM_MOVERESIZE_SIZE_LEFT 7
60 #define _NET_WM_MOVERESIZE_MOVE 8
61 #define _NET_WM_MOVERESIZE_SIZE_KEYBOARD 9
62 #define _NET_WM_MOVERESIZE_MOVE_KEYBOARD 10
64 #define _NET_WM_STATE_REMOVE 0
65 #define _NET_WM_STATE_ADD 1
66 #define _NET_WM_STATE_TOGGLE 2
68 static const unsigned int net_wm_state_atoms
[NB_NET_WM_STATES
] =
70 XATOM__NET_WM_STATE_FULLSCREEN
,
71 XATOM__NET_WM_STATE_ABOVE
,
72 XATOM__NET_WM_STATE_MAXIMIZED_VERT
,
73 XATOM__NET_WM_STATE_SKIP_PAGER
,
74 XATOM__NET_WM_STATE_SKIP_TASKBAR
77 #define SWP_AGG_NOPOSCHANGE (SWP_NOSIZE | SWP_NOMOVE | SWP_NOCLIENTSIZE | SWP_NOCLIENTMOVE | SWP_NOZORDER)
79 /* is cursor clipping active? */
80 BOOL clipping_cursor
= FALSE
;
82 /* X context to associate a hwnd to an X window */
83 XContext winContext
= 0;
85 /* X context to associate a struct x11drv_win_data to an hwnd */
86 XContext win_data_context
= 0;
88 /* time of last user event and window where it's stored */
89 static Time last_user_time
;
90 static Window user_time_window
;
92 static const char foreign_window_prop
[] = "__wine_x11_foreign_window";
93 static const char whole_window_prop
[] = "__wine_x11_whole_window";
94 static const char clip_window_prop
[] = "__wine_x11_clip_window";
96 static CRITICAL_SECTION win_data_section
;
97 static CRITICAL_SECTION_DEBUG critsect_debug
=
99 0, 0, &win_data_section
,
100 { &critsect_debug
.ProcessLocksList
, &critsect_debug
.ProcessLocksList
},
101 0, 0, { (DWORD_PTR
)(__FILE__
": win_data_section") }
103 static CRITICAL_SECTION win_data_section
= { &critsect_debug
, -1, 0, 0, 0, 0 };
106 /***********************************************************************
107 * http://standards.freedesktop.org/startup-notification-spec
109 static void remove_startup_notification(Display
*display
, Window window
)
111 static LONG startup_notification_removed
= 0;
120 if (InterlockedCompareExchange(&startup_notification_removed
, 1, 0) != 0)
123 if (GetEnvironmentVariableA("DESKTOP_STARTUP_ID", id
, sizeof(id
)) == 0)
125 SetEnvironmentVariableA("DESKTOP_STARTUP_ID", NULL
);
127 if ((src
= strstr( id
, "_TIME" ))) update_user_time( atol( src
+ 5 ));
129 pos
= snprintf(message
, sizeof(message
), "remove: ID=");
130 message
[pos
++] = '"';
131 for (i
= 0; id
[i
] && pos
< sizeof(message
) - 3; i
++)
133 if (id
[i
] == '"' || id
[i
] == '\\')
134 message
[pos
++] = '\\';
135 message
[pos
++] = id
[i
];
137 message
[pos
++] = '"';
138 message
[pos
++] = '\0';
140 xevent
.xclient
.type
= ClientMessage
;
141 xevent
.xclient
.message_type
= x11drv_atom(_NET_STARTUP_INFO_BEGIN
);
142 xevent
.xclient
.display
= display
;
143 xevent
.xclient
.window
= window
;
144 xevent
.xclient
.format
= 8;
147 srclen
= strlen(src
) + 1;
154 memset(&xevent
.xclient
.data
.b
[0], 0, 20);
155 memcpy(&xevent
.xclient
.data
.b
[0], src
, msglen
);
159 XSendEvent( display
, DefaultRootWindow( display
), False
, PropertyChangeMask
, &xevent
);
160 xevent
.xclient
.message_type
= x11drv_atom(_NET_STARTUP_INFO
);
165 struct has_popup_result
171 static BOOL
is_managed( HWND hwnd
)
173 struct x11drv_win_data
*data
= get_win_data( hwnd
);
174 BOOL ret
= data
&& data
->managed
;
175 release_win_data( data
);
179 static BOOL CALLBACK
has_managed_popup( HWND hwnd
, LPARAM lparam
)
181 struct has_popup_result
*result
= (struct has_popup_result
*)lparam
;
183 if (hwnd
== result
->hwnd
) return FALSE
; /* popups are always above owner */
184 if (GetWindow( hwnd
, GW_OWNER
) != result
->hwnd
) return TRUE
;
185 result
->found
= is_managed( hwnd
);
186 return !result
->found
;
189 static BOOL
has_owned_popups( HWND hwnd
)
191 struct has_popup_result result
;
194 result
.found
= FALSE
;
195 EnumWindows( has_managed_popup
, (LPARAM
)&result
);
199 /***********************************************************************
202 * Check if a given window should be managed
204 static BOOL
is_window_managed( HWND hwnd
, UINT swp_flags
, const RECT
*window_rect
)
206 DWORD style
, ex_style
;
208 if (!managed_mode
) return FALSE
;
210 /* child windows are not managed */
211 style
= GetWindowLongW( hwnd
, GWL_STYLE
);
212 if ((style
& (WS_CHILD
|WS_POPUP
)) == WS_CHILD
) return FALSE
;
213 /* activated windows are managed */
214 if (!(swp_flags
& (SWP_NOACTIVATE
|SWP_HIDEWINDOW
))) return TRUE
;
215 if (hwnd
== GetActiveWindow()) return TRUE
;
216 /* windows with caption are managed */
217 if ((style
& WS_CAPTION
) == WS_CAPTION
) return TRUE
;
218 /* windows with thick frame are managed */
219 if (style
& WS_THICKFRAME
) return TRUE
;
220 if (style
& WS_POPUP
)
225 /* popup with sysmenu == caption are managed */
226 if (style
& WS_SYSMENU
) return TRUE
;
227 /* full-screen popup windows are managed */
228 hmon
= MonitorFromWindow( hwnd
, MONITOR_DEFAULTTOPRIMARY
);
229 mi
.cbSize
= sizeof( mi
);
230 GetMonitorInfoW( hmon
, &mi
);
231 if (window_rect
->left
<= mi
.rcWork
.left
&& window_rect
->right
>= mi
.rcWork
.right
&&
232 window_rect
->top
<= mi
.rcWork
.top
&& window_rect
->bottom
>= mi
.rcWork
.bottom
)
235 /* application windows are managed */
236 ex_style
= GetWindowLongW( hwnd
, GWL_EXSTYLE
);
237 if (ex_style
& WS_EX_APPWINDOW
) return TRUE
;
238 /* windows that own popups are managed */
239 if (has_owned_popups( hwnd
)) return TRUE
;
240 /* default: not managed */
245 /***********************************************************************
246 * is_window_resizable
248 * Check if window should be made resizable by the window manager
250 static inline BOOL
is_window_resizable( struct x11drv_win_data
*data
, DWORD style
)
252 if (style
& WS_THICKFRAME
) return TRUE
;
253 /* Metacity needs the window to be resizable to make it fullscreen */
254 return is_window_rect_fullscreen( &data
->whole_rect
);
258 /***********************************************************************
259 * get_mwm_decorations
261 static unsigned long get_mwm_decorations( struct x11drv_win_data
*data
,
262 DWORD style
, DWORD ex_style
)
264 unsigned long ret
= 0;
266 if (!decorated_mode
) return 0;
268 if (IsRectEmpty( &data
->window_rect
)) return 0;
269 if (data
->shaped
) return 0;
271 if (ex_style
& WS_EX_TOOLWINDOW
) return 0;
272 if (ex_style
& WS_EX_LAYERED
) return 0;
274 if ((style
& WS_CAPTION
) == WS_CAPTION
)
276 ret
|= MWM_DECOR_TITLE
| MWM_DECOR_BORDER
;
277 if (style
& WS_SYSMENU
) ret
|= MWM_DECOR_MENU
;
278 if (style
& WS_MINIMIZEBOX
) ret
|= MWM_DECOR_MINIMIZE
;
279 if (style
& WS_MAXIMIZEBOX
) ret
|= MWM_DECOR_MAXIMIZE
;
281 if (ex_style
& WS_EX_DLGMODALFRAME
) ret
|= MWM_DECOR_BORDER
;
282 else if (style
& WS_THICKFRAME
) ret
|= MWM_DECOR_BORDER
| MWM_DECOR_RESIZEH
;
283 else if ((style
& (WS_DLGFRAME
|WS_BORDER
)) == WS_DLGFRAME
) ret
|= MWM_DECOR_BORDER
;
288 /***********************************************************************
289 * get_x11_rect_offset
291 * Helper for X11DRV_window_to_X_rect and X11DRV_X_to_window_rect.
293 static void get_x11_rect_offset( struct x11drv_win_data
*data
, RECT
*rect
)
295 DWORD style
, ex_style
, style_mask
= 0, ex_style_mask
= 0;
298 rect
->top
= rect
->bottom
= rect
->left
= rect
->right
= 0;
300 style
= GetWindowLongW( data
->hwnd
, GWL_STYLE
);
301 ex_style
= GetWindowLongW( data
->hwnd
, GWL_EXSTYLE
);
302 decor
= get_mwm_decorations( data
, style
, ex_style
);
304 if (decor
& MWM_DECOR_TITLE
) style_mask
|= WS_CAPTION
;
305 if (decor
& MWM_DECOR_BORDER
)
307 style_mask
|= WS_DLGFRAME
| WS_THICKFRAME
;
308 ex_style_mask
|= WS_EX_DLGMODALFRAME
;
311 AdjustWindowRectEx( rect
, style
& style_mask
, FALSE
, ex_style
& ex_style_mask
);
315 /***********************************************************************
316 * get_window_attributes
318 * Fill the window attributes structure for an X window.
320 static int get_window_attributes( struct x11drv_win_data
*data
, XSetWindowAttributes
*attr
)
322 attr
->override_redirect
= !data
->managed
;
323 attr
->colormap
= data
->colormap
? data
->colormap
: default_colormap
;
324 attr
->save_under
= ((GetClassLongW( data
->hwnd
, GCL_STYLE
) & CS_SAVEBITS
) != 0);
325 attr
->bit_gravity
= NorthWestGravity
;
326 attr
->backing_store
= NotUseful
;
327 attr
->border_pixel
= 0;
328 attr
->event_mask
= (ExposureMask
| PointerMotionMask
|
329 ButtonPressMask
| ButtonReleaseMask
| EnterWindowMask
|
330 KeyPressMask
| KeyReleaseMask
| FocusChangeMask
|
331 KeymapStateMask
| StructureNotifyMask
);
332 if (data
->managed
) attr
->event_mask
|= PropertyChangeMask
;
334 return (CWOverrideRedirect
| CWSaveUnder
| CWColormap
| CWBorderPixel
|
335 CWEventMask
| CWBitGravity
| CWBackingStore
);
339 /***********************************************************************
342 * Change the X window attributes when the window style has changed.
344 static void sync_window_style( struct x11drv_win_data
*data
)
346 if (data
->whole_window
!= root_window
)
348 XSetWindowAttributes attr
;
349 int mask
= get_window_attributes( data
, &attr
);
351 XChangeWindowAttributes( data
->display
, data
->whole_window
, mask
, &attr
);
356 /***********************************************************************
359 * Update the X11 window region.
361 static void sync_window_region( struct x11drv_win_data
*data
, HRGN win_region
)
363 #ifdef HAVE_LIBXSHAPE
364 HRGN hrgn
= win_region
;
366 if (!data
->whole_window
) return;
367 data
->shaped
= FALSE
;
369 if (IsRectEmpty( &data
->window_rect
)) /* set an empty shape */
371 static XRectangle empty_rect
;
372 XShapeCombineRectangles( data
->display
, data
->whole_window
, ShapeBounding
, 0, 0,
373 &empty_rect
, 1, ShapeSet
, YXBanded
);
377 if (hrgn
== (HRGN
)1) /* hack: win_region == 1 means retrieve region from server */
379 if (!(hrgn
= CreateRectRgn( 0, 0, 0, 0 ))) return;
380 if (GetWindowRgn( data
->hwnd
, hrgn
) == ERROR
)
382 DeleteObject( hrgn
);
389 XShapeCombineMask( data
->display
, data
->whole_window
, ShapeBounding
, 0, 0, None
, ShapeSet
);
393 RGNDATA
*pRegionData
;
395 if (GetWindowLongW( data
->hwnd
, GWL_EXSTYLE
) & WS_EX_LAYOUTRTL
) MirrorRgn( data
->hwnd
, hrgn
);
396 if ((pRegionData
= X11DRV_GetRegionData( hrgn
, 0 )))
398 XShapeCombineRectangles( data
->display
, data
->whole_window
, ShapeBounding
,
399 data
->window_rect
.left
- data
->whole_rect
.left
,
400 data
->window_rect
.top
- data
->whole_rect
.top
,
401 (XRectangle
*)pRegionData
->Buffer
,
402 pRegionData
->rdh
.nCount
, ShapeSet
, YXBanded
);
403 HeapFree(GetProcessHeap(), 0, pRegionData
);
407 if (hrgn
&& hrgn
!= win_region
) DeleteObject( hrgn
);
408 #endif /* HAVE_LIBXSHAPE */
412 /***********************************************************************
413 * sync_window_opacity
415 static void sync_window_opacity( Display
*display
, Window win
,
416 COLORREF key
, BYTE alpha
, DWORD flags
)
418 unsigned long opacity
= 0xffffffff;
420 if (flags
& LWA_ALPHA
) opacity
= (0xffffffff / 0xff) * alpha
;
422 if (opacity
== 0xffffffff)
423 XDeleteProperty( display
, win
, x11drv_atom(_NET_WM_WINDOW_OPACITY
) );
425 XChangeProperty( display
, win
, x11drv_atom(_NET_WM_WINDOW_OPACITY
),
426 XA_CARDINAL
, 32, PropModeReplace
, (unsigned char *)&opacity
, 1 );
430 /***********************************************************************
433 static void sync_window_text( Display
*display
, Window win
, const WCHAR
*text
)
436 char *buffer
, *utf8_buffer
;
439 /* allocate new buffer for window text */
440 count
= WideCharToMultiByte(CP_UNIXCP
, 0, text
, -1, NULL
, 0, NULL
, NULL
);
441 if (!(buffer
= HeapAlloc( GetProcessHeap(), 0, count
))) return;
442 WideCharToMultiByte(CP_UNIXCP
, 0, text
, -1, buffer
, count
, NULL
, NULL
);
444 count
= WideCharToMultiByte(CP_UTF8
, 0, text
, strlenW(text
), NULL
, 0, NULL
, NULL
);
445 if (!(utf8_buffer
= HeapAlloc( GetProcessHeap(), 0, count
)))
447 HeapFree( GetProcessHeap(), 0, buffer
);
450 WideCharToMultiByte(CP_UTF8
, 0, text
, strlenW(text
), utf8_buffer
, count
, NULL
, NULL
);
452 if (XmbTextListToTextProperty( display
, &buffer
, 1, XStdICCTextStyle
, &prop
) == Success
)
454 XSetWMName( display
, win
, &prop
);
455 XSetWMIconName( display
, win
, &prop
);
459 Implements a NET_WM UTF-8 title. It should be without a trailing \0,
460 according to the standard
461 ( http://www.pps.jussieu.fr/~jch/software/UTF8_STRING/UTF8_STRING.text ).
463 XChangeProperty( display
, win
, x11drv_atom(_NET_WM_NAME
), x11drv_atom(UTF8_STRING
),
464 8, PropModeReplace
, (unsigned char *) utf8_buffer
, count
);
466 HeapFree( GetProcessHeap(), 0, utf8_buffer
);
467 HeapFree( GetProcessHeap(), 0, buffer
);
471 /***********************************************************************
474 * Return the bitmap bits in ARGB format. Helper for setting icon hints.
476 static unsigned long *get_bitmap_argb( HDC hdc
, HBITMAP color
, HBITMAP mask
, unsigned int *size
)
478 char buffer
[FIELD_OFFSET( BITMAPINFO
, bmiColors
[256] )];
479 BITMAPINFO
*info
= (BITMAPINFO
*)buffer
;
481 unsigned int *ptr
, *bits
= NULL
;
482 unsigned char *mask_bits
= NULL
;
484 BOOL has_alpha
= FALSE
;
486 if (!GetObjectW( color
, sizeof(bm
), &bm
)) return NULL
;
487 info
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
488 info
->bmiHeader
.biWidth
= bm
.bmWidth
;
489 info
->bmiHeader
.biHeight
= -bm
.bmHeight
;
490 info
->bmiHeader
.biPlanes
= 1;
491 info
->bmiHeader
.biBitCount
= 32;
492 info
->bmiHeader
.biCompression
= BI_RGB
;
493 info
->bmiHeader
.biSizeImage
= bm
.bmWidth
* bm
.bmHeight
* 4;
494 info
->bmiHeader
.biXPelsPerMeter
= 0;
495 info
->bmiHeader
.biYPelsPerMeter
= 0;
496 info
->bmiHeader
.biClrUsed
= 0;
497 info
->bmiHeader
.biClrImportant
= 0;
498 *size
= bm
.bmWidth
* bm
.bmHeight
+ 2;
499 if (!(bits
= HeapAlloc( GetProcessHeap(), 0, *size
* sizeof(long) ))) goto failed
;
500 if (!GetDIBits( hdc
, color
, 0, bm
.bmHeight
, bits
+ 2, info
, DIB_RGB_COLORS
)) goto failed
;
502 bits
[0] = bm
.bmWidth
;
503 bits
[1] = bm
.bmHeight
;
505 for (i
= 0; i
< bm
.bmWidth
* bm
.bmHeight
; i
++)
506 if ((has_alpha
= (bits
[i
+ 2] & 0xff000000) != 0)) break;
510 unsigned int width_bytes
= (bm
.bmWidth
+ 31) / 32 * 4;
511 /* generate alpha channel from the mask */
512 info
->bmiHeader
.biBitCount
= 1;
513 info
->bmiHeader
.biSizeImage
= width_bytes
* bm
.bmHeight
;
514 if (!(mask_bits
= HeapAlloc( GetProcessHeap(), 0, info
->bmiHeader
.biSizeImage
))) goto failed
;
515 if (!GetDIBits( hdc
, mask
, 0, bm
.bmHeight
, mask_bits
, info
, DIB_RGB_COLORS
)) goto failed
;
517 for (i
= 0; i
< bm
.bmHeight
; i
++)
518 for (j
= 0; j
< bm
.bmWidth
; j
++, ptr
++)
519 if (!((mask_bits
[i
* width_bytes
+ j
/ 8] << (j
% 8)) & 0x80)) *ptr
|= 0xff000000;
520 HeapFree( GetProcessHeap(), 0, mask_bits
);
523 /* convert to array of longs */
524 if (bits
&& sizeof(long) > sizeof(int))
525 for (i
= *size
- 1; i
>= 0; i
--) ((unsigned long *)bits
)[i
] = bits
[i
];
527 return (unsigned long *)bits
;
530 HeapFree( GetProcessHeap(), 0, bits
);
531 HeapFree( GetProcessHeap(), 0, mask_bits
);
536 /***********************************************************************
537 * create_icon_pixmaps
539 static BOOL
create_icon_pixmaps( HDC hdc
, const ICONINFO
*icon
, Pixmap
*icon_ret
, Pixmap
*mask_ret
)
541 char buffer
[FIELD_OFFSET( BITMAPINFO
, bmiColors
[256] )];
542 BITMAPINFO
*info
= (BITMAPINFO
*)buffer
;
543 XVisualInfo vis
= default_visual
;
544 struct gdi_image_bits bits
;
545 Pixmap color_pixmap
= 0, mask_pixmap
= 0;
553 info
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
554 info
->bmiHeader
.biBitCount
= 0;
555 if (!(lines
= GetDIBits( hdc
, icon
->hbmColor
, 0, 0, NULL
, info
, DIB_RGB_COLORS
))) goto failed
;
556 if (!(bits
.ptr
= HeapAlloc( GetProcessHeap(), 0, info
->bmiHeader
.biSizeImage
))) goto failed
;
557 if (!GetDIBits( hdc
, icon
->hbmColor
, 0, lines
, bits
.ptr
, info
, DIB_RGB_COLORS
)) goto failed
;
559 color_pixmap
= create_pixmap_from_image( hdc
, &vis
, info
, &bits
, DIB_RGB_COLORS
);
560 HeapFree( GetProcessHeap(), 0, bits
.ptr
);
562 if (!color_pixmap
) goto failed
;
564 info
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
565 info
->bmiHeader
.biBitCount
= 0;
566 if (!(lines
= GetDIBits( hdc
, icon
->hbmMask
, 0, 0, NULL
, info
, DIB_RGB_COLORS
))) goto failed
;
567 if (!(bits
.ptr
= HeapAlloc( GetProcessHeap(), 0, info
->bmiHeader
.biSizeImage
))) goto failed
;
568 if (!GetDIBits( hdc
, icon
->hbmMask
, 0, lines
, bits
.ptr
, info
, DIB_RGB_COLORS
)) goto failed
;
570 /* invert the mask */
571 for (i
= 0; i
< info
->bmiHeader
.biSizeImage
/ sizeof(DWORD
); i
++) ((DWORD
*)bits
.ptr
)[i
] ^= ~0u;
574 mask_pixmap
= create_pixmap_from_image( hdc
, &vis
, info
, &bits
, DIB_RGB_COLORS
);
575 HeapFree( GetProcessHeap(), 0, bits
.ptr
);
577 if (!mask_pixmap
) goto failed
;
579 *icon_ret
= color_pixmap
;
580 *mask_ret
= mask_pixmap
;
584 if (color_pixmap
) XFreePixmap( gdi_display
, color_pixmap
);
585 HeapFree( GetProcessHeap(), 0, bits
.ptr
);
590 /***********************************************************************
593 static void fetch_icon_data( HWND hwnd
, HICON icon_big
, HICON icon_small
)
595 struct x11drv_win_data
*data
;
596 ICONINFO ii
, ii_small
;
600 Pixmap icon_pixmap
, mask_pixmap
;
604 icon_big
= (HICON
)SendMessageW( hwnd
, WM_GETICON
, ICON_BIG
, 0 );
605 if (!icon_big
) icon_big
= (HICON
)GetClassLongPtrW( hwnd
, GCLP_HICON
);
606 if (!icon_big
) icon_big
= LoadIconW( 0, (LPWSTR
)IDI_WINLOGO
);
610 icon_small
= (HICON
)SendMessageW( hwnd
, WM_GETICON
, ICON_SMALL
, 0 );
611 if (!icon_small
) icon_small
= (HICON
)GetClassLongPtrW( hwnd
, GCLP_HICONSM
);
614 if (!GetIconInfo(icon_big
, &ii
)) return;
616 hDC
= CreateCompatibleDC(0);
617 bits
= get_bitmap_argb( hDC
, ii
.hbmColor
, ii
.hbmMask
, &size
);
618 if (bits
&& GetIconInfo( icon_small
, &ii_small
))
620 unsigned int size_small
;
621 unsigned long *bits_small
, *new;
623 if ((bits_small
= get_bitmap_argb( hDC
, ii_small
.hbmColor
, ii_small
.hbmMask
, &size_small
)) &&
624 (bits_small
[0] != bits
[0] || bits_small
[1] != bits
[1])) /* size must be different */
626 if ((new = HeapReAlloc( GetProcessHeap(), 0, bits
,
627 (size
+ size_small
) * sizeof(unsigned long) )))
630 memcpy( bits
+ size
, bits_small
, size_small
* sizeof(unsigned long) );
634 HeapFree( GetProcessHeap(), 0, bits_small
);
635 DeleteObject( ii_small
.hbmColor
);
636 DeleteObject( ii_small
.hbmMask
);
639 if (!create_icon_pixmaps( hDC
, &ii
, &icon_pixmap
, &mask_pixmap
)) icon_pixmap
= mask_pixmap
= 0;
641 DeleteObject( ii
.hbmColor
);
642 DeleteObject( ii
.hbmMask
);
645 if ((data
= get_win_data( hwnd
)))
647 if (data
->icon_pixmap
) XFreePixmap( gdi_display
, data
->icon_pixmap
);
648 if (data
->icon_mask
) XFreePixmap( gdi_display
, data
->icon_mask
);
649 HeapFree( GetProcessHeap(), 0, data
->icon_bits
);
650 data
->icon_pixmap
= icon_pixmap
;
651 data
->icon_mask
= mask_pixmap
;
652 data
->icon_bits
= bits
;
653 data
->icon_size
= size
;
654 release_win_data( data
);
658 if (icon_pixmap
) XFreePixmap( gdi_display
, icon_pixmap
);
659 if (mask_pixmap
) XFreePixmap( gdi_display
, mask_pixmap
);
660 HeapFree( GetProcessHeap(), 0, bits
);
665 /***********************************************************************
668 * set the window size hints
670 static void set_size_hints( struct x11drv_win_data
*data
, DWORD style
)
672 XSizeHints
* size_hints
;
674 if (!(size_hints
= XAllocSizeHints())) return;
676 size_hints
->win_gravity
= StaticGravity
;
677 size_hints
->flags
|= PWinGravity
;
679 /* don't update size hints if window is not in normal state */
680 if (!(style
& (WS_MINIMIZE
| WS_MAXIMIZE
)))
682 if (data
->hwnd
!= GetDesktopWindow()) /* don't force position of desktop */
684 size_hints
->x
= data
->whole_rect
.left
;
685 size_hints
->y
= data
->whole_rect
.top
;
686 size_hints
->flags
|= PPosition
;
688 else size_hints
->win_gravity
= NorthWestGravity
;
690 if (!is_window_resizable( data
, style
))
692 size_hints
->max_width
= data
->whole_rect
.right
- data
->whole_rect
.left
;
693 size_hints
->max_height
= data
->whole_rect
.bottom
- data
->whole_rect
.top
;
694 if (size_hints
->max_width
<= 0 ||size_hints
->max_height
<= 0)
695 size_hints
->max_width
= size_hints
->max_height
= 1;
696 size_hints
->min_width
= size_hints
->max_width
;
697 size_hints
->min_height
= size_hints
->max_height
;
698 size_hints
->flags
|= PMinSize
| PMaxSize
;
701 XSetWMNormalHints( data
->display
, data
->whole_window
, size_hints
);
706 /***********************************************************************
709 static void set_mwm_hints( struct x11drv_win_data
*data
, DWORD style
, DWORD ex_style
)
713 if (data
->hwnd
== GetDesktopWindow())
715 if (is_desktop_fullscreen()) mwm_hints
.decorations
= 0;
716 else mwm_hints
.decorations
= MWM_DECOR_TITLE
| MWM_DECOR_BORDER
| MWM_DECOR_MENU
| MWM_DECOR_MINIMIZE
;
717 mwm_hints
.functions
= MWM_FUNC_MOVE
| MWM_FUNC_MINIMIZE
| MWM_FUNC_CLOSE
;
721 mwm_hints
.decorations
= get_mwm_decorations( data
, style
, ex_style
);
722 mwm_hints
.functions
= MWM_FUNC_MOVE
;
723 if (is_window_resizable( data
, style
)) mwm_hints
.functions
|= MWM_FUNC_RESIZE
;
724 if (!(style
& WS_DISABLED
))
726 if (style
& WS_MINIMIZEBOX
) mwm_hints
.functions
|= MWM_FUNC_MINIMIZE
;
727 if (style
& WS_MAXIMIZEBOX
) mwm_hints
.functions
|= MWM_FUNC_MAXIMIZE
;
728 if (style
& WS_SYSMENU
) mwm_hints
.functions
|= MWM_FUNC_CLOSE
;
732 TRACE( "%p setting mwm hints to %lx,%lx (style %x exstyle %x)\n",
733 data
->hwnd
, mwm_hints
.decorations
, mwm_hints
.functions
, style
, ex_style
);
735 mwm_hints
.flags
= MWM_HINTS_FUNCTIONS
| MWM_HINTS_DECORATIONS
;
736 mwm_hints
.input_mode
= 0;
737 mwm_hints
.status
= 0;
738 XChangeProperty( data
->display
, data
->whole_window
, x11drv_atom(_MOTIF_WM_HINTS
),
739 x11drv_atom(_MOTIF_WM_HINTS
), 32, PropModeReplace
,
740 (unsigned char*)&mwm_hints
, sizeof(mwm_hints
)/sizeof(long) );
744 /***********************************************************************
747 static void set_style_hints( struct x11drv_win_data
*data
, DWORD style
, DWORD ex_style
)
749 Window group_leader
= data
->whole_window
;
750 HWND owner
= GetWindow( data
->hwnd
, GW_OWNER
);
751 Window owner_win
= X11DRV_get_whole_window( owner
);
757 XSetTransientForHint( data
->display
, data
->whole_window
, owner_win
);
758 group_leader
= owner_win
;
761 /* Only use dialog type for owned popups. Metacity allows making fullscreen
762 * only normal windows, and doesn't handle correctly TRANSIENT_FOR hint for
763 * dialogs owned by fullscreen windows.
765 if (((style
& WS_POPUP
) || (ex_style
& WS_EX_DLGMODALFRAME
)) && owner
)
766 window_type
= x11drv_atom(_NET_WM_WINDOW_TYPE_DIALOG
);
768 window_type
= x11drv_atom(_NET_WM_WINDOW_TYPE_NORMAL
);
770 XChangeProperty(data
->display
, data
->whole_window
, x11drv_atom(_NET_WM_WINDOW_TYPE
),
771 XA_ATOM
, 32, PropModeReplace
, (unsigned char*)&window_type
, 1);
773 if ((wm_hints
= XAllocWMHints()))
775 wm_hints
->flags
= InputHint
| StateHint
| WindowGroupHint
;
776 wm_hints
->input
= !use_take_focus
&& !(style
& WS_DISABLED
);
777 wm_hints
->initial_state
= (style
& WS_MINIMIZE
) ? IconicState
: NormalState
;
778 wm_hints
->window_group
= group_leader
;
779 if (data
->icon_pixmap
)
781 wm_hints
->icon_pixmap
= data
->icon_pixmap
;
782 wm_hints
->icon_mask
= data
->icon_mask
;
783 wm_hints
->flags
|= IconPixmapHint
| IconMaskHint
;
785 XSetWMHints( data
->display
, data
->whole_window
, wm_hints
);
790 XChangeProperty( data
->display
, data
->whole_window
, x11drv_atom(_NET_WM_ICON
),
791 XA_CARDINAL
, 32, PropModeReplace
,
792 (unsigned char *)data
->icon_bits
, data
->icon_size
);
794 XDeleteProperty( data
->display
, data
->whole_window
, x11drv_atom(_NET_WM_ICON
) );
799 /***********************************************************************
802 * get the name of the current process for setting class hints
804 static char *get_process_name(void)
810 WCHAR module
[MAX_PATH
];
811 DWORD len
= GetModuleFileNameW( 0, module
, MAX_PATH
);
812 if (len
&& len
< MAX_PATH
)
815 WCHAR
*p
, *appname
= module
;
817 if ((p
= strrchrW( appname
, '/' ))) appname
= p
+ 1;
818 if ((p
= strrchrW( appname
, '\\' ))) appname
= p
+ 1;
819 len
= WideCharToMultiByte( CP_UNIXCP
, 0, appname
, -1, NULL
, 0, NULL
, NULL
);
820 if ((ptr
= HeapAlloc( GetProcessHeap(), 0, len
)))
822 WideCharToMultiByte( CP_UNIXCP
, 0, appname
, -1, ptr
, len
, NULL
, NULL
);
831 /***********************************************************************
832 * set_initial_wm_hints
834 * Set the window manager hints that don't change over the lifetime of a window.
836 static void set_initial_wm_hints( Display
*display
, Window window
)
840 Atom dndVersion
= WINE_XDND_VERSION
;
841 XClassHint
*class_hints
;
842 char *process_name
= get_process_name();
846 protocols
[i
++] = x11drv_atom(WM_DELETE_WINDOW
);
847 protocols
[i
++] = x11drv_atom(_NET_WM_PING
);
848 if (use_take_focus
) protocols
[i
++] = x11drv_atom(WM_TAKE_FOCUS
);
849 XChangeProperty( display
, window
, x11drv_atom(WM_PROTOCOLS
),
850 XA_ATOM
, 32, PropModeReplace
, (unsigned char *)protocols
, i
);
853 if ((class_hints
= XAllocClassHint()))
855 static char wine
[] = "Wine";
857 class_hints
->res_name
= process_name
;
858 class_hints
->res_class
= wine
;
859 XSetClassHint( display
, window
, class_hints
);
860 XFree( class_hints
);
863 /* set the WM_CLIENT_MACHINE and WM_LOCALE_NAME properties */
864 XSetWMProperties(display
, window
, NULL
, NULL
, NULL
, 0, NULL
, NULL
, NULL
);
865 /* set the pid. together, these properties are needed so the window manager can kill us if we freeze */
867 XChangeProperty(display
, window
, x11drv_atom(_NET_WM_PID
),
868 XA_CARDINAL
, 32, PropModeReplace
, (unsigned char *)&i
, 1);
870 XChangeProperty( display
, window
, x11drv_atom(XdndAware
),
871 XA_ATOM
, 32, PropModeReplace
, (unsigned char*)&dndVersion
, 1 );
873 update_user_time( 0 ); /* make sure that the user time window exists */
874 if (user_time_window
)
875 XChangeProperty( display
, window
, x11drv_atom(_NET_WM_USER_TIME_WINDOW
),
876 XA_WINDOW
, 32, PropModeReplace
, (unsigned char *)&user_time_window
, 1 );
880 /***********************************************************************
883 * If the window is managed, make sure its owner window is too.
885 static void make_owner_managed( HWND hwnd
)
889 if (!(owner
= GetWindow( hwnd
, GW_OWNER
))) return;
890 if (is_managed( owner
)) return;
891 if (!is_managed( hwnd
)) return;
893 SetWindowPos( owner
, 0, 0, 0, 0, 0,
894 SWP_NOACTIVATE
| SWP_NOZORDER
| SWP_NOSIZE
| SWP_NOMOVE
|
895 SWP_NOREDRAW
| SWP_DEFERERASE
| SWP_NOSENDCHANGING
| SWP_STATECHANGED
);
899 /***********************************************************************
902 * Set all the window manager hints for a window.
904 static void set_wm_hints( struct x11drv_win_data
*data
)
906 DWORD style
, ex_style
;
908 if (data
->hwnd
== GetDesktopWindow())
910 /* force some styles for the desktop to get the correct decorations */
911 style
= WS_POPUP
| WS_VISIBLE
| WS_CAPTION
| WS_SYSMENU
| WS_MINIMIZEBOX
;
912 ex_style
= WS_EX_APPWINDOW
;
916 style
= GetWindowLongW( data
->hwnd
, GWL_STYLE
);
917 ex_style
= GetWindowLongW( data
->hwnd
, GWL_EXSTYLE
);
920 set_size_hints( data
, style
);
921 set_mwm_hints( data
, style
, ex_style
);
922 set_style_hints( data
, style
, ex_style
);
926 /***********************************************************************
929 Window
init_clip_window(void)
931 struct x11drv_thread_data
*data
= x11drv_init_thread_data();
933 if (!data
->clip_window
&&
934 (data
->clip_window
= (Window
)GetPropA( GetDesktopWindow(), clip_window_prop
)))
936 XSelectInput( data
->display
, data
->clip_window
, StructureNotifyMask
);
938 return data
->clip_window
;
942 /***********************************************************************
945 void update_user_time( Time time
)
947 if (!user_time_window
)
949 Window win
= XCreateWindow( gdi_display
, root_window
, -1, -1, 1, 1, 0, CopyFromParent
,
950 InputOnly
, CopyFromParent
, 0, NULL
);
951 if (InterlockedCompareExchangePointer( (void **)&user_time_window
, (void *)win
, 0 ))
952 XDestroyWindow( gdi_display
, win
);
953 TRACE( "user time window %lx\n", user_time_window
);
957 XLockDisplay( gdi_display
);
958 if (!last_user_time
|| (long)(time
- last_user_time
) > 0)
960 last_user_time
= time
;
961 XChangeProperty( gdi_display
, user_time_window
, x11drv_atom(_NET_WM_USER_TIME
),
962 XA_CARDINAL
, 32, PropModeReplace
, (unsigned char *)&time
, 1 );
964 XUnlockDisplay( gdi_display
);
967 /***********************************************************************
968 * update_net_wm_states
970 void update_net_wm_states( struct x11drv_win_data
*data
)
972 DWORD i
, style
, ex_style
, new_state
= 0;
974 if (!data
->managed
) return;
975 if (data
->whole_window
== root_window
) return;
977 style
= GetWindowLongW( data
->hwnd
, GWL_STYLE
);
978 if (style
& WS_MINIMIZE
)
979 new_state
|= data
->net_wm_state
& ((1 << NET_WM_STATE_FULLSCREEN
)|(1 << NET_WM_STATE_MAXIMIZED
));
980 if (is_window_rect_fullscreen( &data
->whole_rect
))
982 if ((style
& WS_MAXIMIZE
) && (style
& WS_CAPTION
) == WS_CAPTION
)
983 new_state
|= (1 << NET_WM_STATE_MAXIMIZED
);
984 else if (!(style
& WS_MINIMIZE
))
985 new_state
|= (1 << NET_WM_STATE_FULLSCREEN
);
987 else if (style
& WS_MAXIMIZE
)
988 new_state
|= (1 << NET_WM_STATE_MAXIMIZED
);
990 ex_style
= GetWindowLongW( data
->hwnd
, GWL_EXSTYLE
);
991 if (ex_style
& WS_EX_TOPMOST
)
992 new_state
|= (1 << NET_WM_STATE_ABOVE
);
993 if (ex_style
& (WS_EX_TOOLWINDOW
| WS_EX_NOACTIVATE
))
994 new_state
|= (1 << NET_WM_STATE_SKIP_TASKBAR
) | (1 << NET_WM_STATE_SKIP_PAGER
);
995 if (!(ex_style
& WS_EX_APPWINDOW
) && GetWindow( data
->hwnd
, GW_OWNER
))
996 new_state
|= (1 << NET_WM_STATE_SKIP_TASKBAR
);
998 if (!data
->mapped
) /* set the _NET_WM_STATE atom directly */
1000 Atom atoms
[NB_NET_WM_STATES
+1];
1003 for (i
= count
= 0; i
< NB_NET_WM_STATES
; i
++)
1005 if (!(new_state
& (1 << i
))) continue;
1006 TRACE( "setting wm state %u for unmapped window %p/%lx\n",
1007 i
, data
->hwnd
, data
->whole_window
);
1008 atoms
[count
++] = X11DRV_Atoms
[net_wm_state_atoms
[i
] - FIRST_XATOM
];
1009 if (net_wm_state_atoms
[i
] == XATOM__NET_WM_STATE_MAXIMIZED_VERT
)
1010 atoms
[count
++] = x11drv_atom(_NET_WM_STATE_MAXIMIZED_HORZ
);
1012 XChangeProperty( data
->display
, data
->whole_window
, x11drv_atom(_NET_WM_STATE
), XA_ATOM
,
1013 32, PropModeReplace
, (unsigned char *)atoms
, count
);
1015 else /* ask the window manager to do it for us */
1019 xev
.xclient
.type
= ClientMessage
;
1020 xev
.xclient
.window
= data
->whole_window
;
1021 xev
.xclient
.message_type
= x11drv_atom(_NET_WM_STATE
);
1022 xev
.xclient
.serial
= 0;
1023 xev
.xclient
.display
= data
->display
;
1024 xev
.xclient
.send_event
= True
;
1025 xev
.xclient
.format
= 32;
1026 xev
.xclient
.data
.l
[3] = 1;
1027 xev
.xclient
.data
.l
[4] = 0;
1029 for (i
= 0; i
< NB_NET_WM_STATES
; i
++)
1031 if (!((data
->net_wm_state
^ new_state
) & (1 << i
))) continue; /* unchanged */
1033 TRACE( "setting wm state %u for window %p/%lx to %u prev %u\n",
1034 i
, data
->hwnd
, data
->whole_window
,
1035 (new_state
& (1 << i
)) != 0, (data
->net_wm_state
& (1 << i
)) != 0 );
1037 xev
.xclient
.data
.l
[0] = (new_state
& (1 << i
)) ? _NET_WM_STATE_ADD
: _NET_WM_STATE_REMOVE
;
1038 xev
.xclient
.data
.l
[1] = X11DRV_Atoms
[net_wm_state_atoms
[i
] - FIRST_XATOM
];
1039 xev
.xclient
.data
.l
[2] = ((net_wm_state_atoms
[i
] == XATOM__NET_WM_STATE_MAXIMIZED_VERT
) ?
1040 x11drv_atom(_NET_WM_STATE_MAXIMIZED_HORZ
) : 0);
1041 XSendEvent( data
->display
, root_window
, False
,
1042 SubstructureRedirectMask
| SubstructureNotifyMask
, &xev
);
1045 data
->net_wm_state
= new_state
;
1048 /***********************************************************************
1049 * read_net_wm_states
1051 void read_net_wm_states( Display
* display
, struct x11drv_win_data
*data
)
1055 unsigned long i
, j
, count
, remaining
;
1056 DWORD new_state
= 0;
1057 BOOL maximized_horz
= FALSE
;
1059 if (!data
->whole_window
) return;
1061 if (!XGetWindowProperty( display
, data
->whole_window
, x11drv_atom(_NET_WM_STATE
), 0,
1062 65536/sizeof(CARD32
), False
, XA_ATOM
, &type
, &format
, &count
,
1063 &remaining
, (unsigned char **)&state
))
1065 if (type
== XA_ATOM
&& format
== 32)
1067 for (i
= 0; i
< count
; i
++)
1069 if (state
[i
] == x11drv_atom(_NET_WM_STATE_MAXIMIZED_HORZ
))
1070 maximized_horz
= TRUE
;
1071 for (j
=0; j
< NB_NET_WM_STATES
; j
++)
1073 if (state
[i
] == X11DRV_Atoms
[net_wm_state_atoms
[j
] - FIRST_XATOM
])
1075 new_state
|= 1 << j
;
1083 if (!maximized_horz
)
1084 new_state
&= ~(1 << NET_WM_STATE_MAXIMIZED
);
1086 data
->net_wm_state
= new_state
;
1090 /***********************************************************************
1093 static void set_xembed_flags( struct x11drv_win_data
*data
, unsigned long flags
)
1095 unsigned long info
[2];
1097 if (!data
->whole_window
) return;
1099 info
[0] = 0; /* protocol version */
1101 XChangeProperty( data
->display
, data
->whole_window
, x11drv_atom(_XEMBED_INFO
),
1102 x11drv_atom(_XEMBED_INFO
), 32, PropModeReplace
, (unsigned char*)info
, 2 );
1106 /***********************************************************************
1109 static void map_window( HWND hwnd
, DWORD new_style
)
1111 struct x11drv_win_data
*data
;
1113 make_owner_managed( hwnd
);
1114 wait_for_withdrawn_state( hwnd
, TRUE
);
1116 if (!(data
= get_win_data( hwnd
))) return;
1118 if (data
->whole_window
&& !data
->mapped
)
1120 TRACE( "win %p/%lx\n", data
->hwnd
, data
->whole_window
);
1122 remove_startup_notification( data
->display
, data
->whole_window
);
1123 set_wm_hints( data
);
1125 if (!data
->embedded
)
1127 update_net_wm_states( data
);
1128 sync_window_style( data
);
1129 XMapWindow( data
->display
, data
->whole_window
);
1130 XFlush( data
->display
);
1131 if (data
->surface
&& data
->vis
.visualid
!= default_visual
.visualid
)
1132 data
->surface
->funcs
->flush( data
->surface
);
1134 else set_xembed_flags( data
, XEMBED_MAPPED
);
1136 data
->mapped
= TRUE
;
1137 data
->iconic
= (new_style
& WS_MINIMIZE
) != 0;
1139 release_win_data( data
);
1143 /***********************************************************************
1146 static void unmap_window( HWND hwnd
)
1148 struct x11drv_win_data
*data
;
1150 wait_for_withdrawn_state( hwnd
, FALSE
);
1152 if (!(data
= get_win_data( hwnd
))) return;
1156 TRACE( "win %p/%lx\n", data
->hwnd
, data
->whole_window
);
1158 if (data
->embedded
) set_xembed_flags( data
, 0 );
1159 else if (!data
->managed
) XUnmapWindow( data
->display
, data
->whole_window
);
1160 else XWithdrawWindow( data
->display
, data
->whole_window
, data
->vis
.screen
);
1162 data
->mapped
= FALSE
;
1163 data
->net_wm_state
= 0;
1165 release_win_data( data
);
1169 /***********************************************************************
1170 * make_window_embedded
1172 void make_window_embedded( struct x11drv_win_data
*data
)
1174 /* the window cannot be mapped before being embedded */
1177 if (!data
->managed
) XUnmapWindow( data
->display
, data
->whole_window
);
1178 else XWithdrawWindow( data
->display
, data
->whole_window
, data
->vis
.screen
);
1179 data
->net_wm_state
= 0;
1181 data
->embedded
= TRUE
;
1182 data
->managed
= TRUE
;
1183 sync_window_style( data
);
1184 set_xembed_flags( data
, (data
->mapped
|| data
->embedder
) ? XEMBED_MAPPED
: 0 );
1188 /***********************************************************************
1189 * X11DRV_window_to_X_rect
1191 * Convert a rect from client to X window coordinates
1193 static void X11DRV_window_to_X_rect( struct x11drv_win_data
*data
, RECT
*rect
)
1197 if (!data
->managed
) return;
1198 if (IsRectEmpty( rect
)) return;
1200 get_x11_rect_offset( data
, &rc
);
1202 rect
->left
-= rc
.left
;
1203 rect
->right
-= rc
.right
;
1204 rect
->top
-= rc
.top
;
1205 rect
->bottom
-= rc
.bottom
;
1206 if (rect
->top
>= rect
->bottom
) rect
->bottom
= rect
->top
+ 1;
1207 if (rect
->left
>= rect
->right
) rect
->right
= rect
->left
+ 1;
1211 /***********************************************************************
1212 * X11DRV_X_to_window_rect
1214 * Opposite of X11DRV_window_to_X_rect
1216 void X11DRV_X_to_window_rect( struct x11drv_win_data
*data
, RECT
*rect
)
1220 if (!data
->managed
) return;
1221 if (IsRectEmpty( rect
)) return;
1223 get_x11_rect_offset( data
, &rc
);
1225 rect
->left
+= rc
.left
;
1226 rect
->right
+= rc
.right
;
1227 rect
->top
+= rc
.top
;
1228 rect
->bottom
+= rc
.bottom
;
1229 if (rect
->top
>= rect
->bottom
) rect
->bottom
= rect
->top
+ 1;
1230 if (rect
->left
>= rect
->right
) rect
->right
= rect
->left
+ 1;
1234 /***********************************************************************
1235 * sync_window_position
1237 * Synchronize the X window position with the Windows one
1239 static void sync_window_position( struct x11drv_win_data
*data
,
1240 UINT swp_flags
, const RECT
*old_window_rect
,
1241 const RECT
*old_whole_rect
, const RECT
*old_client_rect
)
1243 DWORD style
= GetWindowLongW( data
->hwnd
, GWL_STYLE
);
1244 DWORD ex_style
= GetWindowLongW( data
->hwnd
, GWL_EXSTYLE
);
1245 XWindowChanges changes
;
1246 unsigned int mask
= 0;
1248 if (data
->managed
&& data
->iconic
) return;
1250 /* resizing a managed maximized window is not allowed */
1251 if (!(style
& WS_MAXIMIZE
) || !data
->managed
)
1253 changes
.width
= data
->whole_rect
.right
- data
->whole_rect
.left
;
1254 changes
.height
= data
->whole_rect
.bottom
- data
->whole_rect
.top
;
1255 /* if window rect is empty force size to 1x1 */
1256 if (changes
.width
<= 0 || changes
.height
<= 0) changes
.width
= changes
.height
= 1;
1257 if (changes
.width
> 65535) changes
.width
= 65535;
1258 if (changes
.height
> 65535) changes
.height
= 65535;
1259 mask
|= CWWidth
| CWHeight
;
1262 /* only the size is allowed to change for the desktop window */
1263 if (data
->whole_window
!= root_window
)
1265 POINT pt
= virtual_screen_to_root( data
->whole_rect
.left
, data
->whole_rect
.top
);
1271 if (!(swp_flags
& SWP_NOZORDER
) || (swp_flags
& SWP_SHOWWINDOW
))
1273 /* find window that this one must be after */
1274 HWND prev
= GetWindow( data
->hwnd
, GW_HWNDPREV
);
1275 while (prev
&& !(GetWindowLongW( prev
, GWL_STYLE
) & WS_VISIBLE
))
1276 prev
= GetWindow( prev
, GW_HWNDPREV
);
1277 if (!prev
) /* top child */
1279 changes
.stack_mode
= Above
;
1280 mask
|= CWStackMode
;
1282 /* should use stack_mode Below but most window managers don't get it right */
1283 /* and Above with a sibling doesn't work so well either, so we ignore it */
1286 set_size_hints( data
, style
);
1287 set_mwm_hints( data
, style
, ex_style
);
1288 data
->configure_serial
= NextRequest( data
->display
);
1289 XReconfigureWMWindow( data
->display
, data
->whole_window
, data
->vis
.screen
, mask
, &changes
);
1290 #ifdef HAVE_LIBXSHAPE
1291 if (IsRectEmpty( old_window_rect
) != IsRectEmpty( &data
->window_rect
))
1292 sync_window_region( data
, (HRGN
)1 );
1295 int old_x_offset
= old_window_rect
->left
- old_whole_rect
->left
;
1296 int old_y_offset
= old_window_rect
->top
- old_whole_rect
->top
;
1297 int new_x_offset
= data
->window_rect
.left
- data
->whole_rect
.left
;
1298 int new_y_offset
= data
->window_rect
.top
- data
->whole_rect
.top
;
1299 if (old_x_offset
!= new_x_offset
|| old_y_offset
!= new_y_offset
)
1300 XShapeOffsetShape( data
->display
, data
->whole_window
, ShapeBounding
,
1301 new_x_offset
- old_x_offset
, new_y_offset
- old_y_offset
);
1305 TRACE( "win %p/%lx pos %d,%d,%dx%d after %lx changes=%x serial=%lu\n",
1306 data
->hwnd
, data
->whole_window
, data
->whole_rect
.left
, data
->whole_rect
.top
,
1307 data
->whole_rect
.right
- data
->whole_rect
.left
,
1308 data
->whole_rect
.bottom
- data
->whole_rect
.top
,
1309 changes
.sibling
, mask
, data
->configure_serial
);
1313 /***********************************************************************
1314 * sync_client_position
1316 * Synchronize the X client window position with the Windows one
1318 static void sync_client_position( struct x11drv_win_data
*data
,
1319 const RECT
*old_client_rect
, const RECT
*old_whole_rect
)
1322 XWindowChanges changes
;
1324 if (!data
->client_window
) return;
1326 changes
.x
= data
->client_rect
.left
- data
->whole_rect
.left
;
1327 changes
.y
= data
->client_rect
.top
- data
->whole_rect
.top
;
1328 changes
.width
= min( max( 1, data
->client_rect
.right
- data
->client_rect
.left
), 65535 );
1329 changes
.height
= min( max( 1, data
->client_rect
.bottom
- data
->client_rect
.top
), 65535 );
1331 if (changes
.x
!= old_client_rect
->left
- old_whole_rect
->left
) mask
|= CWX
;
1332 if (changes
.y
!= old_client_rect
->top
- old_whole_rect
->top
) mask
|= CWY
;
1333 if (changes
.width
!= old_client_rect
->right
- old_client_rect
->left
) mask
|= CWWidth
;
1334 if (changes
.height
!= old_client_rect
->bottom
- old_client_rect
->top
) mask
|= CWHeight
;
1338 TRACE( "setting client win %lx pos %d,%d,%dx%d changes=%x\n",
1339 data
->client_window
, changes
.x
, changes
.y
, changes
.width
, changes
.height
, mask
);
1340 XConfigureWindow( data
->display
, data
->client_window
, mask
, &changes
);
1345 /***********************************************************************
1348 * Move the window bits when a window is moved.
1350 static void move_window_bits( HWND hwnd
, Window window
, const RECT
*old_rect
, const RECT
*new_rect
,
1351 const RECT
*old_client_rect
, const RECT
*new_client_rect
,
1352 const RECT
*new_window_rect
)
1354 RECT src_rect
= *old_rect
;
1355 RECT dst_rect
= *new_rect
;
1356 HDC hdc_src
, hdc_dst
;
1363 OffsetRect( &dst_rect
, -new_window_rect
->left
, -new_window_rect
->top
);
1364 parent
= GetAncestor( hwnd
, GA_PARENT
);
1365 hdc_src
= GetDCEx( parent
, 0, DCX_CACHE
);
1366 hdc_dst
= GetDCEx( hwnd
, 0, DCX_CACHE
| DCX_WINDOW
);
1370 OffsetRect( &dst_rect
, -new_client_rect
->left
, -new_client_rect
->top
);
1371 /* make src rect relative to the old position of the window */
1372 OffsetRect( &src_rect
, -old_client_rect
->left
, -old_client_rect
->top
);
1373 if (dst_rect
.left
== src_rect
.left
&& dst_rect
.top
== src_rect
.top
) return;
1374 hdc_src
= hdc_dst
= GetDCEx( hwnd
, 0, DCX_CACHE
);
1377 rgn
= CreateRectRgnIndirect( &dst_rect
);
1378 SelectClipRgn( hdc_dst
, rgn
);
1379 DeleteObject( rgn
);
1380 /* WS_CLIPCHILDREN doesn't exclude children from the window update
1381 * region, and ExcludeUpdateRgn call may inappropriately clip valid
1382 * child window contents from the copied parent window bits, but we
1383 * still want to avoid copying invalid window bits when possible.
1385 if (!(GetWindowLongW( hwnd
, GWL_STYLE
) & WS_CLIPCHILDREN
))
1386 ExcludeUpdateRgn( hdc_dst
, hwnd
);
1388 code
= X11DRV_START_EXPOSURES
;
1389 ExtEscape( hdc_dst
, X11DRV_ESCAPE
, sizeof(code
), (LPSTR
)&code
, 0, NULL
);
1391 TRACE( "copying bits for win %p/%lx %s -> %s\n",
1392 hwnd
, window
, wine_dbgstr_rect(&src_rect
), wine_dbgstr_rect(&dst_rect
) );
1393 BitBlt( hdc_dst
, dst_rect
.left
, dst_rect
.top
,
1394 dst_rect
.right
- dst_rect
.left
, dst_rect
.bottom
- dst_rect
.top
,
1395 hdc_src
, src_rect
.left
, src_rect
.top
, SRCCOPY
);
1398 code
= X11DRV_END_EXPOSURES
;
1399 ExtEscape( hdc_dst
, X11DRV_ESCAPE
, sizeof(code
), (LPSTR
)&code
, sizeof(rgn
), (LPSTR
)&rgn
);
1401 ReleaseDC( hwnd
, hdc_dst
);
1402 if (hdc_src
!= hdc_dst
) ReleaseDC( parent
, hdc_src
);
1408 /* map region to client rect since we are using DCX_WINDOW */
1409 OffsetRgn( rgn
, new_window_rect
->left
- new_client_rect
->left
,
1410 new_window_rect
->top
- new_client_rect
->top
);
1411 RedrawWindow( hwnd
, NULL
, rgn
,
1412 RDW_INVALIDATE
| RDW_FRAME
| RDW_ERASE
| RDW_ALLCHILDREN
);
1414 else RedrawWindow( hwnd
, NULL
, rgn
, RDW_INVALIDATE
| RDW_ERASE
| RDW_ALLCHILDREN
);
1415 DeleteObject( rgn
);
1420 /**********************************************************************
1421 * create_client_window
1423 Window
create_client_window( struct x11drv_win_data
*data
, const XVisualInfo
*visual
)
1425 XSetWindowAttributes attr
;
1426 int x
= data
->client_rect
.left
- data
->whole_rect
.left
;
1427 int y
= data
->client_rect
.top
- data
->whole_rect
.top
;
1428 int cx
= min( max( 1, data
->client_rect
.right
- data
->client_rect
.left
), 65535 );
1429 int cy
= min( max( 1, data
->client_rect
.bottom
- data
->client_rect
.top
), 65535 );
1431 if (data
->client_window
)
1433 XDeleteContext( data
->display
, data
->client_window
, winContext
);
1434 XDestroyWindow( data
->display
, data
->client_window
);
1437 if (data
->colormap
) XFreeColormap( data
->display
, data
->colormap
);
1438 data
->colormap
= XCreateColormap( data
->display
, root_window
, visual
->visual
,
1439 (visual
->class == PseudoColor
||
1440 visual
->class == GrayScale
||
1441 visual
->class == DirectColor
) ? AllocAll
: AllocNone
);
1442 attr
.colormap
= data
->colormap
;
1443 attr
.bit_gravity
= NorthWestGravity
;
1444 attr
.win_gravity
= NorthWestGravity
;
1445 attr
.backing_store
= NotUseful
;
1446 attr
.event_mask
= ExposureMask
;
1447 attr
.border_pixel
= 0;
1449 data
->client_window
= XCreateWindow( data
->display
, data
->whole_window
, x
, y
, cx
, cy
,
1450 0, default_visual
.depth
, InputOutput
, visual
->visual
,
1451 CWBitGravity
| CWWinGravity
| CWBackingStore
|
1452 CWColormap
| CWEventMask
| CWBorderPixel
, &attr
);
1453 if (!data
->client_window
) return 0;
1455 XSaveContext( data
->display
, data
->client_window
, winContext
, (char *)data
->hwnd
);
1456 XMapWindow( data
->display
, data
->client_window
);
1457 XSync( data
->display
, False
);
1458 return data
->client_window
;
1462 /**********************************************************************
1463 * create_whole_window
1465 * Create the whole X window for a given window
1467 static void create_whole_window( struct x11drv_win_data
*data
)
1470 XSetWindowAttributes attr
;
1474 DWORD layered_flags
;
1478 if (!data
->managed
&& is_window_managed( data
->hwnd
, SWP_NOACTIVATE
, &data
->window_rect
))
1480 TRACE( "making win %p/%lx managed\n", data
->hwnd
, data
->whole_window
);
1481 data
->managed
= TRUE
;
1484 if ((win_rgn
= CreateRectRgn( 0, 0, 0, 0 )) && GetWindowRgn( data
->hwnd
, win_rgn
) == ERROR
)
1486 DeleteObject( win_rgn
);
1489 data
->shaped
= (win_rgn
!= 0);
1491 if (data
->vis
.visualid
!= default_visual
.visualid
)
1492 data
->colormap
= XCreateColormap( data
->display
, root_window
, data
->vis
.visual
, AllocNone
);
1494 mask
= get_window_attributes( data
, &attr
);
1496 data
->whole_rect
= data
->window_rect
;
1497 X11DRV_window_to_X_rect( data
, &data
->whole_rect
);
1498 if (!(cx
= data
->whole_rect
.right
- data
->whole_rect
.left
)) cx
= 1;
1499 else if (cx
> 65535) cx
= 65535;
1500 if (!(cy
= data
->whole_rect
.bottom
- data
->whole_rect
.top
)) cy
= 1;
1501 else if (cy
> 65535) cy
= 65535;
1503 pos
= virtual_screen_to_root( data
->whole_rect
.left
, data
->whole_rect
.top
);
1504 data
->whole_window
= XCreateWindow( data
->display
, root_window
, pos
.x
, pos
.y
,
1505 cx
, cy
, 0, data
->vis
.depth
, InputOutput
,
1506 data
->vis
.visual
, mask
, &attr
);
1507 if (!data
->whole_window
) goto done
;
1509 set_initial_wm_hints( data
->display
, data
->whole_window
);
1510 set_wm_hints( data
);
1512 XSaveContext( data
->display
, data
->whole_window
, winContext
, (char *)data
->hwnd
);
1513 SetPropA( data
->hwnd
, whole_window_prop
, (HANDLE
)data
->whole_window
);
1515 /* set the window text */
1516 if (!InternalGetWindowText( data
->hwnd
, text
, sizeof(text
)/sizeof(WCHAR
) )) text
[0] = 0;
1517 sync_window_text( data
->display
, data
->whole_window
, text
);
1519 /* set the window region */
1520 if (win_rgn
|| IsRectEmpty( &data
->window_rect
)) sync_window_region( data
, win_rgn
);
1522 /* set the window opacity */
1523 if (!GetLayeredWindowAttributes( data
->hwnd
, &key
, &alpha
, &layered_flags
)) layered_flags
= 0;
1524 sync_window_opacity( data
->display
, data
->whole_window
, key
, alpha
, layered_flags
);
1526 XFlush( data
->display
); /* make sure the window exists before we start painting to it */
1528 sync_window_cursor( data
->whole_window
);
1531 if (win_rgn
) DeleteObject( win_rgn
);
1535 /**********************************************************************
1536 * destroy_whole_window
1538 * Destroy the whole X window for a given window.
1540 static void destroy_whole_window( struct x11drv_win_data
*data
, BOOL already_destroyed
)
1542 if (!data
->whole_window
)
1546 Window xwin
= (Window
)GetPropA( data
->hwnd
, foreign_window_prop
);
1549 if (!already_destroyed
) XSelectInput( data
->display
, xwin
, 0 );
1550 XDeleteContext( data
->display
, xwin
, winContext
);
1551 RemovePropA( data
->hwnd
, foreign_window_prop
);
1558 TRACE( "win %p xwin %lx\n", data
->hwnd
, data
->whole_window
);
1559 XDeleteContext( data
->display
, data
->whole_window
, winContext
);
1560 if (data
->client_window
) XDeleteContext( data
->display
, data
->client_window
, winContext
);
1561 if (!already_destroyed
) XDestroyWindow( data
->display
, data
->whole_window
);
1562 if (data
->colormap
) XFreeColormap( data
->display
, data
->colormap
);
1563 data
->whole_window
= data
->client_window
= 0;
1565 data
->wm_state
= WithdrawnState
;
1566 data
->net_wm_state
= 0;
1567 data
->mapped
= FALSE
;
1570 XUnsetICFocus( data
->xic
);
1571 XDestroyIC( data
->xic
);
1574 /* Outlook stops processing messages after destroying a dialog, so we need an explicit flush */
1575 XFlush( data
->display
);
1576 if (data
->surface
) window_surface_release( data
->surface
);
1577 data
->surface
= NULL
;
1578 RemovePropA( data
->hwnd
, whole_window_prop
);
1582 /**********************************************************************
1585 * Change the visual by destroying and recreating the X window if needed.
1587 void set_window_visual( struct x11drv_win_data
*data
, const XVisualInfo
*vis
)
1589 Window client_window
= data
->client_window
;
1590 Window whole_window
= data
->whole_window
;
1592 if (data
->vis
.visualid
== vis
->visualid
) return;
1593 data
->client_window
= 0;
1594 destroy_whole_window( data
, client_window
!= 0 /* don't destroy whole_window until reparented */ );
1595 if (data
->surface
) window_surface_release( data
->surface
);
1596 data
->surface
= NULL
;
1598 create_whole_window( data
);
1599 if (!client_window
) return;
1600 /* move the client to the new parent */
1601 XReparentWindow( data
->display
, client_window
, data
->whole_window
,
1602 data
->client_rect
.left
- data
->whole_rect
.left
,
1603 data
->client_rect
.top
- data
->whole_rect
.top
);
1604 data
->client_window
= client_window
;
1605 XDestroyWindow( data
->display
, whole_window
);
1609 /*****************************************************************
1610 * SetWindowText (X11DRV.@)
1612 void CDECL
X11DRV_SetWindowText( HWND hwnd
, LPCWSTR text
)
1616 if ((win
= X11DRV_get_whole_window( hwnd
)) && win
!= DefaultRootWindow(gdi_display
))
1618 Display
*display
= thread_init_display();
1619 sync_window_text( display
, win
, text
);
1624 /***********************************************************************
1625 * SetWindowStyle (X11DRV.@)
1627 * Update the X state of a window to reflect a style change
1629 void CDECL
X11DRV_SetWindowStyle( HWND hwnd
, INT offset
, STYLESTRUCT
*style
)
1631 struct x11drv_win_data
*data
;
1632 DWORD changed
= style
->styleNew
^ style
->styleOld
;
1634 if (hwnd
== GetDesktopWindow()) return;
1635 if (!(data
= get_win_data( hwnd
))) return;
1636 if (!data
->whole_window
) goto done
;
1638 if (offset
== GWL_STYLE
&& (changed
& WS_DISABLED
)) set_wm_hints( data
);
1640 if (offset
== GWL_EXSTYLE
&& (changed
& WS_EX_LAYERED
)) /* changing WS_EX_LAYERED resets attributes */
1642 data
->layered
= FALSE
;
1643 set_window_visual( data
, &default_visual
);
1644 sync_window_opacity( data
->display
, data
->whole_window
, 0, 0, 0 );
1645 if (data
->surface
) set_surface_color_key( data
->surface
, CLR_INVALID
);
1648 release_win_data( data
);
1652 /***********************************************************************
1653 * DestroyWindow (X11DRV.@)
1655 void CDECL
X11DRV_DestroyWindow( HWND hwnd
)
1657 struct x11drv_thread_data
*thread_data
= x11drv_thread_data();
1658 struct x11drv_win_data
*data
;
1660 destroy_gl_drawable( hwnd
);
1662 if (!(data
= get_win_data( hwnd
))) return;
1664 destroy_whole_window( data
, FALSE
);
1665 if (thread_data
->last_focus
== hwnd
) thread_data
->last_focus
= 0;
1666 if (thread_data
->last_xic_hwnd
== hwnd
) thread_data
->last_xic_hwnd
= 0;
1667 if (data
->icon_pixmap
) XFreePixmap( gdi_display
, data
->icon_pixmap
);
1668 if (data
->icon_mask
) XFreePixmap( gdi_display
, data
->icon_mask
);
1669 HeapFree( GetProcessHeap(), 0, data
->icon_bits
);
1670 XDeleteContext( gdi_display
, (XID
)hwnd
, win_data_context
);
1671 release_win_data( data
);
1672 HeapFree( GetProcessHeap(), 0, data
);
1676 /***********************************************************************
1677 * X11DRV_DestroyNotify
1679 void X11DRV_DestroyNotify( HWND hwnd
, XEvent
*event
)
1681 struct x11drv_win_data
*data
;
1684 if (!(data
= get_win_data( hwnd
))) return;
1685 embedded
= data
->embedded
;
1686 if (!embedded
) FIXME( "window %p/%lx destroyed from the outside\n", hwnd
, data
->whole_window
);
1688 destroy_whole_window( data
, TRUE
);
1689 release_win_data( data
);
1690 if (embedded
) SendMessageW( hwnd
, WM_CLOSE
, 0, 0 );
1694 static struct x11drv_win_data
*alloc_win_data( Display
*display
, HWND hwnd
)
1696 struct x11drv_win_data
*data
;
1698 if ((data
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*data
))))
1700 data
->display
= display
;
1701 data
->vis
= default_visual
;
1703 EnterCriticalSection( &win_data_section
);
1704 XSaveContext( gdi_display
, (XID
)hwnd
, win_data_context
, (char *)data
);
1710 /* initialize the desktop window id in the desktop manager process */
1711 BOOL
create_desktop_win_data( Window win
)
1713 struct x11drv_thread_data
*thread_data
= x11drv_thread_data();
1714 Display
*display
= thread_data
->display
;
1715 struct x11drv_win_data
*data
;
1717 if (!(data
= alloc_win_data( display
, GetDesktopWindow() ))) return FALSE
;
1718 data
->whole_window
= win
;
1719 data
->managed
= TRUE
;
1720 SetPropA( data
->hwnd
, whole_window_prop
, (HANDLE
)win
);
1721 set_initial_wm_hints( display
, win
);
1722 release_win_data( data
);
1723 if (thread_data
->clip_window
) XReparentWindow( display
, thread_data
->clip_window
, win
, 0, 0 );
1727 /**********************************************************************
1728 * CreateDesktopWindow (X11DRV.@)
1730 BOOL CDECL
X11DRV_CreateDesktopWindow( HWND hwnd
)
1732 unsigned int width
, height
;
1734 /* retrieve the real size of the desktop */
1735 SERVER_START_REQ( get_window_rectangles
)
1737 req
->handle
= wine_server_user_handle( hwnd
);
1738 req
->relative
= COORDS_CLIENT
;
1739 wine_server_call( req
);
1740 width
= reply
->window
.right
;
1741 height
= reply
->window
.bottom
;
1745 if (!width
&& !height
) /* not initialized yet */
1747 RECT rect
= get_virtual_screen_rect();
1749 SERVER_START_REQ( set_window_pos
)
1751 req
->handle
= wine_server_user_handle( hwnd
);
1753 req
->swp_flags
= SWP_NOZORDER
;
1754 req
->window
.left
= rect
.left
;
1755 req
->window
.top
= rect
.top
;
1756 req
->window
.right
= rect
.right
;
1757 req
->window
.bottom
= rect
.bottom
;
1758 req
->client
= req
->window
;
1759 wine_server_call( req
);
1765 Window win
= (Window
)GetPropA( hwnd
, whole_window_prop
);
1766 if (win
&& win
!= root_window
) X11DRV_init_desktop( win
, width
, height
);
1772 /**********************************************************************
1773 * CreateWindow (X11DRV.@)
1775 BOOL CDECL
X11DRV_CreateWindow( HWND hwnd
)
1777 if (hwnd
== GetDesktopWindow())
1779 struct x11drv_thread_data
*data
= x11drv_init_thread_data();
1780 XSetWindowAttributes attr
;
1782 /* create the cursor clipping window */
1783 attr
.override_redirect
= TRUE
;
1784 attr
.event_mask
= StructureNotifyMask
| FocusChangeMask
;
1785 data
->clip_window
= XCreateWindow( data
->display
, root_window
, 0, 0, 1, 1, 0, 0,
1786 InputOnly
, default_visual
.visual
,
1787 CWOverrideRedirect
| CWEventMask
, &attr
);
1788 XFlush( data
->display
);
1789 SetPropA( hwnd
, clip_window_prop
, (HANDLE
)data
->clip_window
);
1795 /***********************************************************************
1798 * Lock and return the X11 data structure associated with a window.
1800 struct x11drv_win_data
*get_win_data( HWND hwnd
)
1804 if (!hwnd
) return NULL
;
1805 EnterCriticalSection( &win_data_section
);
1806 if (!XFindContext( gdi_display
, (XID
)hwnd
, win_data_context
, &data
))
1807 return (struct x11drv_win_data
*)data
;
1808 LeaveCriticalSection( &win_data_section
);
1813 /***********************************************************************
1816 * Release the data returned by get_win_data.
1818 void release_win_data( struct x11drv_win_data
*data
)
1820 if (data
) LeaveCriticalSection( &win_data_section
);
1824 /***********************************************************************
1825 * X11DRV_create_win_data
1827 * Create an X11 data window structure for an existing window.
1829 static struct x11drv_win_data
*X11DRV_create_win_data( HWND hwnd
, const RECT
*window_rect
,
1830 const RECT
*client_rect
)
1833 struct x11drv_win_data
*data
;
1836 if (!(parent
= GetAncestor( hwnd
, GA_PARENT
))) return NULL
; /* desktop */
1838 /* don't create win data for HWND_MESSAGE windows */
1839 if (parent
!= GetDesktopWindow() && !GetAncestor( parent
, GA_PARENT
)) return NULL
;
1841 if (GetWindowThreadProcessId( hwnd
, NULL
) != GetCurrentThreadId()) return NULL
;
1843 display
= thread_init_display();
1844 init_clip_window(); /* make sure the clip window is initialized in this thread */
1846 if (!(data
= alloc_win_data( display
, hwnd
))) return NULL
;
1848 data
->whole_rect
= data
->window_rect
= *window_rect
;
1849 data
->client_rect
= *client_rect
;
1850 if (parent
== GetDesktopWindow())
1852 create_whole_window( data
);
1853 TRACE( "win %p/%lx window %s whole %s client %s\n",
1854 hwnd
, data
->whole_window
, wine_dbgstr_rect( &data
->window_rect
),
1855 wine_dbgstr_rect( &data
->whole_rect
), wine_dbgstr_rect( &data
->client_rect
));
1861 /* window procedure for foreign windows */
1862 static LRESULT WINAPI
foreign_window_proc( HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
1866 case WM_WINDOWPOSCHANGED
:
1867 update_systray_balloon_position();
1869 case WM_PARENTNOTIFY
:
1870 if (LOWORD(wparam
) == WM_DESTROY
)
1872 TRACE( "%p: got parent notify destroy for win %lx\n", hwnd
, lparam
);
1873 PostMessageW( hwnd
, WM_CLOSE
, 0, 0 ); /* so that we come back here once the child is gone */
1877 if (GetWindow( hwnd
, GW_CHILD
)) return 0; /* refuse to die if we still have children */
1880 return DefWindowProcW( hwnd
, msg
, wparam
, lparam
);
1884 /***********************************************************************
1885 * create_foreign_window
1887 * Create a foreign window for the specified X window and its ancestors
1889 HWND
create_foreign_window( Display
*display
, Window xwin
)
1891 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};
1892 static BOOL class_registered
;
1893 struct x11drv_win_data
*data
;
1896 Window xparent
, xroot
;
1898 unsigned int nchildren
;
1899 XWindowAttributes attr
;
1900 DWORD style
= WS_CLIPCHILDREN
;
1902 if (!class_registered
)
1906 memset( &class, 0, sizeof(class) );
1907 class.cbSize
= sizeof(class);
1908 class.lpfnWndProc
= foreign_window_proc
;
1909 class.lpszClassName
= classW
;
1910 if (!RegisterClassExW( &class ) && GetLastError() != ERROR_CLASS_ALREADY_EXISTS
)
1912 ERR( "Could not register foreign window class\n" );
1915 class_registered
= TRUE
;
1918 if (XFindContext( display
, xwin
, winContext
, (char **)&hwnd
)) hwnd
= 0;
1919 if (hwnd
) return hwnd
; /* already created */
1921 XSelectInput( display
, xwin
, StructureNotifyMask
);
1922 if (!XGetWindowAttributes( display
, xwin
, &attr
) ||
1923 !XQueryTree( display
, xwin
, &xroot
, &xparent
, &xchildren
, &nchildren
))
1925 XSelectInput( display
, xwin
, 0 );
1930 if (xparent
== xroot
)
1932 parent
= GetDesktopWindow();
1934 pos
= root_to_virtual_screen( attr
.x
, attr
.y
);
1938 parent
= create_foreign_window( display
, xparent
);
1944 hwnd
= CreateWindowW( classW
, NULL
, style
, pos
.x
, pos
.y
, attr
.width
, attr
.height
,
1945 parent
, 0, 0, NULL
);
1947 if (!(data
= alloc_win_data( display
, hwnd
)))
1949 DestroyWindow( hwnd
);
1952 SetRect( &data
->window_rect
, pos
.x
, pos
.y
, pos
.x
+ attr
.width
, pos
.y
+ attr
.height
);
1953 data
->whole_rect
= data
->client_rect
= data
->window_rect
;
1954 data
->whole_window
= data
->client_window
= 0;
1955 data
->embedded
= TRUE
;
1956 data
->mapped
= TRUE
;
1958 SetPropA( hwnd
, foreign_window_prop
, (HANDLE
)xwin
);
1959 XSaveContext( display
, xwin
, winContext
, (char *)data
->hwnd
);
1961 TRACE( "win %lx parent %p style %08x %s -> hwnd %p\n",
1962 xwin
, parent
, style
, wine_dbgstr_rect(&data
->window_rect
), hwnd
);
1964 release_win_data( data
);
1966 ShowWindow( hwnd
, SW_SHOW
);
1971 /***********************************************************************
1972 * X11DRV_get_whole_window
1974 * Return the X window associated with the full area of a window
1976 Window
X11DRV_get_whole_window( HWND hwnd
)
1978 struct x11drv_win_data
*data
= get_win_data( hwnd
);
1983 if (hwnd
== GetDesktopWindow()) return root_window
;
1984 return (Window
)GetPropA( hwnd
, whole_window_prop
);
1986 ret
= data
->whole_window
;
1987 release_win_data( data
);
1992 /***********************************************************************
1995 * Return the X input context associated with a window
1997 XIC
X11DRV_get_ic( HWND hwnd
)
1999 struct x11drv_win_data
*data
= get_win_data( hwnd
);
2005 x11drv_thread_data()->last_xic_hwnd
= hwnd
;
2007 if (!ret
&& (xim
= x11drv_thread_data()->xim
)) ret
= X11DRV_CreateIC( xim
, data
);
2008 release_win_data( data
);
2014 /***********************************************************************
2015 * X11DRV_GetDC (X11DRV.@)
2017 void CDECL
X11DRV_GetDC( HDC hdc
, HWND hwnd
, HWND top
, const RECT
*win_rect
,
2018 const RECT
*top_rect
, DWORD flags
)
2020 struct x11drv_escape_set_drawable escape
;
2023 escape
.code
= X11DRV_SET_DRAWABLE
;
2024 escape
.mode
= IncludeInferiors
;
2026 escape
.dc_rect
.left
= win_rect
->left
- top_rect
->left
;
2027 escape
.dc_rect
.top
= win_rect
->top
- top_rect
->top
;
2028 escape
.dc_rect
.right
= win_rect
->right
- top_rect
->left
;
2029 escape
.dc_rect
.bottom
= win_rect
->bottom
- top_rect
->top
;
2033 struct x11drv_win_data
*data
= get_win_data( hwnd
);
2035 escape
.drawable
= data
? data
->whole_window
: X11DRV_get_whole_window( hwnd
);
2037 /* special case: when repainting the root window, clip out top-level windows */
2038 if (data
&& data
->whole_window
== root_window
) escape
.mode
= ClipByChildren
;
2039 release_win_data( data
);
2043 /* find the first ancestor that has a drawable */
2044 for (parent
= hwnd
; parent
&& parent
!= top
; parent
= GetAncestor( parent
, GA_PARENT
))
2045 if ((escape
.drawable
= X11DRV_get_whole_window( parent
))) break;
2047 if (escape
.drawable
)
2049 POINT pt
= { 0, 0 };
2050 MapWindowPoints( 0, parent
, &pt
, 1 );
2051 escape
.dc_rect
= *win_rect
;
2052 OffsetRect( &escape
.dc_rect
, pt
.x
, pt
.y
);
2053 if (flags
& DCX_CLIPCHILDREN
) escape
.mode
= ClipByChildren
;
2055 else escape
.drawable
= X11DRV_get_whole_window( top
);
2058 ExtEscape( hdc
, X11DRV_ESCAPE
, sizeof(escape
), (LPSTR
)&escape
, 0, NULL
);
2062 /***********************************************************************
2063 * X11DRV_ReleaseDC (X11DRV.@)
2065 void CDECL
X11DRV_ReleaseDC( HWND hwnd
, HDC hdc
)
2067 struct x11drv_escape_set_drawable escape
;
2069 escape
.code
= X11DRV_SET_DRAWABLE
;
2070 escape
.drawable
= root_window
;
2071 escape
.mode
= IncludeInferiors
;
2072 escape
.dc_rect
= get_virtual_screen_rect();
2073 OffsetRect( &escape
.dc_rect
, -2 * escape
.dc_rect
.left
, -2 * escape
.dc_rect
.top
);
2074 ExtEscape( hdc
, X11DRV_ESCAPE
, sizeof(escape
), (LPSTR
)&escape
, 0, NULL
);
2078 /*************************************************************************
2079 * ScrollDC (X11DRV.@)
2081 BOOL CDECL
X11DRV_ScrollDC( HDC hdc
, INT dx
, INT dy
, HRGN update
)
2085 HRGN expose_rgn
= 0;
2087 GetClipBox( hdc
, &rect
);
2091 INT code
= X11DRV_START_EXPOSURES
;
2092 ExtEscape( hdc
, X11DRV_ESCAPE
, sizeof(code
), (LPSTR
)&code
, 0, NULL
);
2094 ret
= BitBlt( hdc
, rect
.left
, rect
.top
, rect
.right
- rect
.left
, rect
.bottom
- rect
.top
,
2095 hdc
, rect
.left
- dx
, rect
.top
- dy
, SRCCOPY
);
2097 code
= X11DRV_END_EXPOSURES
;
2098 ExtEscape( hdc
, X11DRV_ESCAPE
, sizeof(code
), (LPSTR
)&code
,
2099 sizeof(expose_rgn
), (LPSTR
)&expose_rgn
);
2102 CombineRgn( update
, update
, expose_rgn
, RGN_OR
);
2103 DeleteObject( expose_rgn
);
2106 else ret
= BitBlt( hdc
, rect
.left
, rect
.top
, rect
.right
- rect
.left
, rect
.bottom
- rect
.top
,
2107 hdc
, rect
.left
- dx
, rect
.top
- dy
, SRCCOPY
);
2113 /***********************************************************************
2114 * SetCapture (X11DRV.@)
2116 void CDECL
X11DRV_SetCapture( HWND hwnd
, UINT flags
)
2118 struct x11drv_thread_data
*thread_data
= x11drv_thread_data();
2119 struct x11drv_win_data
*data
;
2121 if (!(flags
& (GUI_INMOVESIZE
| GUI_INMENUMODE
))) return;
2125 if (!(data
= get_win_data( GetAncestor( hwnd
, GA_ROOT
)))) return;
2126 if (data
->whole_window
)
2128 XFlush( gdi_display
);
2129 XGrabPointer( data
->display
, data
->whole_window
, False
,
2130 PointerMotionMask
| ButtonPressMask
| ButtonReleaseMask
,
2131 GrabModeAsync
, GrabModeAsync
, None
, None
, CurrentTime
);
2132 thread_data
->grab_hwnd
= data
->hwnd
;
2134 release_win_data( data
);
2136 else /* release capture */
2138 if (!(data
= get_win_data( thread_data
->grab_hwnd
))) return;
2139 XFlush( gdi_display
);
2140 XUngrabPointer( data
->display
, CurrentTime
);
2141 XFlush( data
->display
);
2142 thread_data
->grab_hwnd
= NULL
;
2143 release_win_data( data
);
2148 /*****************************************************************
2149 * SetParent (X11DRV.@)
2151 void CDECL
X11DRV_SetParent( HWND hwnd
, HWND parent
, HWND old_parent
)
2153 struct x11drv_win_data
*data
;
2155 if (parent
== old_parent
) return;
2156 if (!(data
= get_win_data( hwnd
))) return;
2157 if (data
->embedded
) goto done
;
2159 if (parent
!= GetDesktopWindow()) /* a child window */
2161 if (old_parent
== GetDesktopWindow())
2163 /* destroy the old X windows */
2164 destroy_whole_window( data
, FALSE
);
2165 data
->managed
= FALSE
;
2168 else /* new top level window */
2170 create_whole_window( data
);
2173 release_win_data( data
);
2174 set_gl_drawable_parent( hwnd
, parent
);
2175 fetch_icon_data( hwnd
, 0, 0 );
2179 static inline RECT
get_surface_rect( const RECT
*visible_rect
)
2181 RECT rect
= get_virtual_screen_rect();
2183 IntersectRect( &rect
, &rect
, visible_rect
);
2184 OffsetRect( &rect
, -visible_rect
->left
, -visible_rect
->top
);
2187 rect
.right
= max( rect
.left
+ 32, (rect
.right
+ 31) & ~31 );
2188 rect
.bottom
= max( rect
.top
+ 32, (rect
.bottom
+ 31) & ~31 );
2193 /***********************************************************************
2194 * WindowPosChanging (X11DRV.@)
2196 void CDECL
X11DRV_WindowPosChanging( HWND hwnd
, HWND insert_after
, UINT swp_flags
,
2197 const RECT
*window_rect
, const RECT
*client_rect
, RECT
*visible_rect
,
2198 struct window_surface
**surface
)
2200 struct x11drv_win_data
*data
= get_win_data( hwnd
);
2204 BOOL layered
= GetWindowLongW( hwnd
, GWL_EXSTYLE
) & WS_EX_LAYERED
;
2206 if (!data
&& !(data
= X11DRV_create_win_data( hwnd
, window_rect
, client_rect
))) return;
2208 /* check if we need to switch the window to managed */
2209 if (!data
->managed
&& data
->whole_window
&& is_window_managed( hwnd
, swp_flags
, window_rect
))
2211 TRACE( "making win %p/%lx managed\n", hwnd
, data
->whole_window
);
2212 release_win_data( data
);
2213 unmap_window( hwnd
);
2214 if (!(data
= get_win_data( hwnd
))) return;
2215 data
->managed
= TRUE
;
2218 *visible_rect
= *window_rect
;
2219 X11DRV_window_to_X_rect( data
, visible_rect
);
2221 /* create the window surface if necessary */
2223 if (!data
->whole_window
&& !data
->embedded
) goto done
;
2224 if (swp_flags
& SWP_HIDEWINDOW
) goto done
;
2225 if (data
->vis
.visualid
!= default_visual
.visualid
) goto done
;
2227 if (*surface
) window_surface_release( *surface
);
2228 *surface
= NULL
; /* indicate that we want to draw directly to the window */
2230 if (data
->embedded
) goto done
;
2231 if (data
->whole_window
== root_window
) goto done
;
2232 if (data
->client_window
) goto done
;
2233 if (!client_side_graphics
&& !layered
) goto done
;
2235 surface_rect
= get_surface_rect( visible_rect
);
2238 if (!memcmp( &data
->surface
->rect
, &surface_rect
, sizeof(surface_rect
) ))
2240 /* existing surface is good enough */
2241 window_surface_add_ref( data
->surface
);
2242 *surface
= data
->surface
;
2246 else if (!(swp_flags
& SWP_SHOWWINDOW
) && !(GetWindowLongW( hwnd
, GWL_STYLE
) & WS_VISIBLE
)) goto done
;
2248 if (!layered
|| !GetLayeredWindowAttributes( hwnd
, &key
, NULL
, &flags
) || !(flags
& LWA_COLORKEY
))
2251 *surface
= create_surface( data
->whole_window
, &data
->vis
, &surface_rect
, key
, FALSE
);
2254 release_win_data( data
);
2258 /***********************************************************************
2259 * WindowPosChanged (X11DRV.@)
2261 void CDECL
X11DRV_WindowPosChanged( HWND hwnd
, HWND insert_after
, UINT swp_flags
,
2262 const RECT
*rectWindow
, const RECT
*rectClient
,
2263 const RECT
*visible_rect
, const RECT
*valid_rects
,
2264 struct window_surface
*surface
)
2266 struct x11drv_thread_data
*thread_data
;
2267 struct x11drv_win_data
*data
;
2268 DWORD new_style
= GetWindowLongW( hwnd
, GWL_STYLE
);
2269 RECT old_window_rect
, old_whole_rect
, old_client_rect
;
2272 if (!(data
= get_win_data( hwnd
))) return;
2274 thread_data
= x11drv_thread_data();
2276 old_window_rect
= data
->window_rect
;
2277 old_whole_rect
= data
->whole_rect
;
2278 old_client_rect
= data
->client_rect
;
2279 data
->window_rect
= *rectWindow
;
2280 data
->whole_rect
= *visible_rect
;
2281 data
->client_rect
= *rectClient
;
2282 if (data
->vis
.visualid
== default_visual
.visualid
)
2284 if (surface
) window_surface_add_ref( surface
);
2285 if (data
->surface
) window_surface_release( data
->surface
);
2286 data
->surface
= surface
;
2289 TRACE( "win %p window %s client %s style %08x flags %08x\n",
2290 hwnd
, wine_dbgstr_rect(rectWindow
), wine_dbgstr_rect(rectClient
), new_style
, swp_flags
);
2292 if (!IsRectEmpty( &valid_rects
[0] ))
2294 Window window
= data
->whole_window
;
2295 int x_offset
= old_whole_rect
.left
- data
->whole_rect
.left
;
2296 int y_offset
= old_whole_rect
.top
- data
->whole_rect
.top
;
2298 /* if all that happened is that the whole window moved, copy everything */
2299 if (!(swp_flags
& SWP_FRAMECHANGED
) &&
2300 old_whole_rect
.right
- data
->whole_rect
.right
== x_offset
&&
2301 old_whole_rect
.bottom
- data
->whole_rect
.bottom
== y_offset
&&
2302 old_client_rect
.left
- data
->client_rect
.left
== x_offset
&&
2303 old_client_rect
.right
- data
->client_rect
.right
== x_offset
&&
2304 old_client_rect
.top
- data
->client_rect
.top
== y_offset
&&
2305 old_client_rect
.bottom
- data
->client_rect
.bottom
== y_offset
&&
2306 !memcmp( &valid_rects
[0], &data
->client_rect
, sizeof(RECT
) ))
2308 /* if we have an X window the bits will be moved by the X server */
2309 if (!window
&& (x_offset
!= 0 || y_offset
!= 0))
2311 release_win_data( data
);
2312 move_window_bits( hwnd
, window
, &old_whole_rect
, visible_rect
,
2313 &old_client_rect
, rectClient
, rectWindow
);
2314 if (!(data
= get_win_data( hwnd
))) return;
2319 release_win_data( data
);
2320 move_window_bits( hwnd
, window
, &valid_rects
[1], &valid_rects
[0],
2321 &old_client_rect
, rectClient
, rectWindow
);
2322 if (!(data
= get_win_data( hwnd
))) return;
2326 XFlush( gdi_display
); /* make sure painting is done before we move the window */
2328 sync_client_position( data
, &old_client_rect
, &old_whole_rect
);
2330 if (!data
->whole_window
)
2332 release_win_data( data
);
2333 sync_gl_drawable( hwnd
, visible_rect
, rectClient
);
2337 /* check if we are currently processing an event relevant to this window */
2340 thread_data
->current_event
&&
2341 thread_data
->current_event
->xany
.window
== data
->whole_window
)
2343 event_type
= thread_data
->current_event
->type
;
2344 if (event_type
!= ConfigureNotify
&& event_type
!= PropertyNotify
&&
2345 event_type
!= GravityNotify
&& event_type
!= ReparentNotify
)
2346 event_type
= 0; /* ignore other events */
2349 if (data
->mapped
&& event_type
!= ReparentNotify
)
2351 if (((swp_flags
& SWP_HIDEWINDOW
) && !(new_style
& WS_VISIBLE
)) ||
2352 (!event_type
&& !(new_style
& WS_MINIMIZE
) &&
2353 !is_window_rect_mapped( rectWindow
) && is_window_rect_mapped( &old_window_rect
)))
2355 release_win_data( data
);
2356 unmap_window( hwnd
);
2357 if (is_window_rect_fullscreen( &old_window_rect
)) reset_clipping_window();
2358 if (!(data
= get_win_data( hwnd
))) return;
2362 /* don't change position if we are about to minimize or maximize a managed window */
2364 !(data
->managed
&& (swp_flags
& SWP_STATECHANGED
) && (new_style
& (WS_MINIMIZE
|WS_MAXIMIZE
))))
2365 sync_window_position( data
, swp_flags
, &old_window_rect
, &old_whole_rect
, &old_client_rect
);
2367 if ((new_style
& WS_VISIBLE
) &&
2368 ((new_style
& WS_MINIMIZE
) || is_window_rect_mapped( rectWindow
)))
2372 BOOL needs_icon
= !data
->icon_pixmap
;
2373 BOOL needs_map
= TRUE
;
2375 /* layered windows are mapped only once their attributes are set */
2376 if (GetWindowLongW( hwnd
, GWL_EXSTYLE
) & WS_EX_LAYERED
) needs_map
= data
->layered
;
2377 release_win_data( data
);
2378 if (needs_icon
) fetch_icon_data( hwnd
, 0, 0 );
2379 if (needs_map
) map_window( hwnd
, new_style
);
2382 else if ((swp_flags
& SWP_STATECHANGED
) && (!data
->iconic
!= !(new_style
& WS_MINIMIZE
)))
2384 set_wm_hints( data
);
2385 data
->iconic
= (new_style
& WS_MINIMIZE
) != 0;
2386 TRACE( "changing win %p iconic state to %u\n", data
->hwnd
, data
->iconic
);
2388 XIconifyWindow( data
->display
, data
->whole_window
, data
->vis
.screen
);
2389 else if (is_window_rect_mapped( rectWindow
))
2390 XMapWindow( data
->display
, data
->whole_window
);
2391 update_net_wm_states( data
);
2395 if (swp_flags
& (SWP_FRAMECHANGED
|SWP_STATECHANGED
)) set_wm_hints( data
);
2396 if (!event_type
) update_net_wm_states( data
);
2400 XFlush( data
->display
); /* make sure changes are done before we start painting again */
2401 if (data
->surface
&& data
->vis
.visualid
!= default_visual
.visualid
)
2402 data
->surface
->funcs
->flush( data
->surface
);
2404 release_win_data( data
);
2407 /* check if the window icon should be hidden (i.e. moved off-screen) */
2408 static BOOL
hide_icon( struct x11drv_win_data
*data
)
2410 static const WCHAR trayW
[] = {'S','h','e','l','l','_','T','r','a','y','W','n','d',0};
2412 if (data
->managed
) return TRUE
;
2413 /* hide icons in desktop mode when the taskbar is active */
2414 if (root_window
== DefaultRootWindow( gdi_display
)) return FALSE
;
2415 return IsWindowVisible( FindWindowW( trayW
, NULL
));
2418 /***********************************************************************
2419 * ShowWindow (X11DRV.@)
2421 UINT CDECL
X11DRV_ShowWindow( HWND hwnd
, INT cmd
, RECT
*rect
, UINT swp
)
2424 unsigned int width
, height
, border
, depth
;
2427 DWORD style
= GetWindowLongW( hwnd
, GWL_STYLE
);
2428 struct x11drv_thread_data
*thread_data
= x11drv_thread_data();
2429 struct x11drv_win_data
*data
= get_win_data( hwnd
);
2431 if (!data
|| !data
->whole_window
) goto done
;
2432 if (IsRectEmpty( rect
)) goto done
;
2433 if (style
& WS_MINIMIZE
)
2435 if (((rect
->left
!= -32000 || rect
->top
!= -32000)) && hide_icon( data
))
2437 OffsetRect( rect
, -32000 - rect
->left
, -32000 - rect
->top
);
2438 swp
&= ~(SWP_NOMOVE
| SWP_NOCLIENTMOVE
);
2442 if (!data
->managed
|| !data
->mapped
|| data
->iconic
) goto done
;
2444 /* only fetch the new rectangle if the ShowWindow was a result of a window manager event */
2446 if (!thread_data
->current_event
|| thread_data
->current_event
->xany
.window
!= data
->whole_window
)
2449 if (thread_data
->current_event
->type
!= ConfigureNotify
&&
2450 thread_data
->current_event
->type
!= PropertyNotify
)
2453 TRACE( "win %p/%lx cmd %d at %s flags %08x\n",
2454 hwnd
, data
->whole_window
, cmd
, wine_dbgstr_rect(rect
), swp
);
2456 XGetGeometry( thread_data
->display
, data
->whole_window
,
2457 &root
, &x
, &y
, &width
, &height
, &border
, &depth
);
2458 XTranslateCoordinates( thread_data
->display
, data
->whole_window
, root
, 0, 0, &x
, &y
, &top
);
2459 pos
= root_to_virtual_screen( x
, y
);
2462 rect
->right
= pos
.x
+ width
;
2463 rect
->bottom
= pos
.y
+ height
;
2464 X11DRV_X_to_window_rect( data
, rect
);
2465 swp
&= ~(SWP_NOMOVE
| SWP_NOCLIENTMOVE
| SWP_NOSIZE
| SWP_NOCLIENTSIZE
);
2468 release_win_data( data
);
2473 /**********************************************************************
2474 * SetWindowIcon (X11DRV.@)
2476 * hIcon or hIconSm has changed (or is being initialised for the
2477 * first time). Complete the X11 driver-specific initialisation
2478 * and set the window hints.
2480 void CDECL
X11DRV_SetWindowIcon( HWND hwnd
, UINT type
, HICON icon
)
2482 struct x11drv_win_data
*data
;
2484 if (!(data
= get_win_data( hwnd
))) return;
2485 if (!data
->whole_window
) goto done
;
2486 release_win_data( data
); /* release the lock, fetching the icon requires sending messages */
2488 if (type
== ICON_BIG
) fetch_icon_data( hwnd
, icon
, 0 );
2489 else fetch_icon_data( hwnd
, 0, icon
);
2491 if (!(data
= get_win_data( hwnd
))) return;
2492 set_wm_hints( data
);
2494 release_win_data( data
);
2498 /***********************************************************************
2499 * SetWindowRgn (X11DRV.@)
2501 * Assign specified region to window (for non-rectangular windows)
2503 void CDECL
X11DRV_SetWindowRgn( HWND hwnd
, HRGN hrgn
, BOOL redraw
)
2505 struct x11drv_win_data
*data
;
2507 if ((data
= get_win_data( hwnd
)))
2509 sync_window_region( data
, hrgn
);
2510 release_win_data( data
);
2512 else if (X11DRV_get_whole_window( hwnd
))
2514 SendMessageW( hwnd
, WM_X11DRV_SET_WIN_REGION
, 0, 0 );
2519 /***********************************************************************
2520 * SetLayeredWindowAttributes (X11DRV.@)
2522 * Set transparency attributes for a layered window.
2524 void CDECL
X11DRV_SetLayeredWindowAttributes( HWND hwnd
, COLORREF key
, BYTE alpha
, DWORD flags
)
2526 struct x11drv_win_data
*data
= get_win_data( hwnd
);
2530 if (data
->whole_window
)
2531 sync_window_opacity( data
->display
, data
->whole_window
, key
, alpha
, flags
);
2533 set_surface_color_key( data
->surface
, (flags
& LWA_COLORKEY
) ? key
: CLR_INVALID
);
2535 data
->layered
= TRUE
;
2536 if (!data
->mapped
) /* mapping is delayed until attributes are set */
2538 DWORD style
= GetWindowLongW( data
->hwnd
, GWL_STYLE
);
2540 if ((style
& WS_VISIBLE
) &&
2541 ((style
& WS_MINIMIZE
) || is_window_rect_mapped( &data
->window_rect
)))
2543 release_win_data( data
);
2544 map_window( hwnd
, style
);
2548 release_win_data( data
);
2552 Window win
= X11DRV_get_whole_window( hwnd
);
2555 sync_window_opacity( gdi_display
, win
, key
, alpha
, flags
);
2556 if (flags
& LWA_COLORKEY
)
2557 FIXME( "LWA_COLORKEY not supported on foreign process window %p\n", hwnd
);
2563 /*****************************************************************************
2564 * UpdateLayeredWindow (X11DRV.@)
2566 BOOL CDECL
X11DRV_UpdateLayeredWindow( HWND hwnd
, const UPDATELAYEREDWINDOWINFO
*info
,
2567 const RECT
*window_rect
)
2569 struct window_surface
*surface
;
2570 struct x11drv_win_data
*data
;
2571 BLENDFUNCTION blend
= { AC_SRC_OVER
, 0, 255, 0 };
2572 COLORREF color_key
= (info
->dwFlags
& ULW_COLORKEY
) ? info
->crKey
: CLR_INVALID
;
2573 char buffer
[FIELD_OFFSET( BITMAPINFO
, bmiColors
[256] )];
2574 BITMAPINFO
*bmi
= (BITMAPINFO
*)buffer
;
2575 void *src_bits
, *dst_bits
;
2581 if (!(data
= get_win_data( hwnd
))) return FALSE
;
2583 data
->layered
= TRUE
;
2584 if (!data
->embedded
&& argb_visual
.visualid
) set_window_visual( data
, &argb_visual
);
2586 rect
= *window_rect
;
2587 OffsetRect( &rect
, -window_rect
->left
, -window_rect
->top
);
2589 surface
= data
->surface
;
2590 if (!surface
|| memcmp( &surface
->rect
, &rect
, sizeof(RECT
) ))
2592 data
->surface
= create_surface( data
->whole_window
, &data
->vis
, &rect
,
2593 color_key
, !data
->embedded
);
2594 if (surface
) window_surface_release( surface
);
2595 surface
= data
->surface
;
2597 else set_surface_color_key( surface
, color_key
);
2599 if (surface
) window_surface_add_ref( surface
);
2600 release_win_data( data
);
2602 if (!surface
) return FALSE
;
2605 window_surface_release( surface
);
2609 dst_bits
= surface
->funcs
->get_info( surface
, bmi
);
2611 if (!(dib
= CreateDIBSection( info
->hdcDst
, bmi
, DIB_RGB_COLORS
, &src_bits
, NULL
, 0 ))) goto done
;
2612 if (!(hdc
= CreateCompatibleDC( 0 ))) goto done
;
2614 SelectObject( hdc
, dib
);
2616 surface
->funcs
->lock( surface
);
2620 IntersectRect( &rect
, &rect
, info
->prcDirty
);
2621 memcpy( src_bits
, dst_bits
, bmi
->bmiHeader
.biSizeImage
);
2622 PatBlt( hdc
, rect
.left
, rect
.top
, rect
.right
- rect
.left
, rect
.bottom
- rect
.top
, BLACKNESS
);
2624 ret
= GdiAlphaBlend( hdc
, rect
.left
, rect
.top
, rect
.right
- rect
.left
, rect
.bottom
- rect
.top
,
2626 rect
.left
+ (info
->pptSrc
? info
->pptSrc
->x
: 0),
2627 rect
.top
+ (info
->pptSrc
? info
->pptSrc
->y
: 0),
2628 rect
.right
- rect
.left
, rect
.bottom
- rect
.top
,
2629 (info
->dwFlags
& ULW_ALPHA
) ? *info
->pblend
: blend
);
2632 memcpy( dst_bits
, src_bits
, bmi
->bmiHeader
.biSizeImage
);
2633 add_bounds_rect( surface
->funcs
->get_bounds( surface
), &rect
);
2636 surface
->funcs
->unlock( surface
);
2637 surface
->funcs
->flush( surface
);
2640 window_surface_release( surface
);
2641 if (hdc
) DeleteDC( hdc
);
2642 if (dib
) DeleteObject( dib
);
2647 /**********************************************************************
2648 * X11DRV_WindowMessage (X11DRV.@)
2650 LRESULT CDECL
X11DRV_WindowMessage( HWND hwnd
, UINT msg
, WPARAM wp
, LPARAM lp
)
2652 struct x11drv_win_data
*data
;
2656 case WM_X11DRV_ACQUIRE_SELECTION
:
2657 X11DRV_AcquireClipboard( hwnd
);
2659 case WM_X11DRV_SET_WIN_REGION
:
2660 if ((data
= get_win_data( hwnd
)))
2662 sync_window_region( data
, (HRGN
)1 );
2663 release_win_data( data
);
2666 case WM_X11DRV_RESIZE_DESKTOP
:
2667 X11DRV_resize_desktop( LOWORD(lp
), HIWORD(lp
) );
2669 case WM_X11DRV_SET_CURSOR
:
2670 if ((data
= get_win_data( hwnd
)))
2672 if (data
->whole_window
) set_window_cursor( data
->whole_window
, (HCURSOR
)lp
);
2673 release_win_data( data
);
2675 else if (hwnd
== x11drv_thread_data()->clip_hwnd
)
2676 set_window_cursor( x11drv_thread_data()->clip_window
, (HCURSOR
)lp
);
2678 case WM_X11DRV_CLIP_CURSOR
:
2679 return clip_cursor_notify( hwnd
, (HWND
)lp
);
2681 FIXME( "got window msg %x hwnd %p wp %lx lp %lx\n", msg
, hwnd
, wp
, lp
);
2687 /***********************************************************************
2688 * is_netwm_supported
2690 static BOOL
is_netwm_supported( Display
*display
, Atom atom
)
2692 static Atom
*net_supported
;
2693 static int net_supported_count
= -1;
2696 if (net_supported_count
== -1)
2700 unsigned long count
, remaining
;
2702 if (!XGetWindowProperty( display
, DefaultRootWindow(display
), x11drv_atom(_NET_SUPPORTED
), 0,
2703 ~0UL, False
, XA_ATOM
, &type
, &format
, &count
,
2704 &remaining
, (unsigned char **)&net_supported
))
2705 net_supported_count
= get_property_size( format
, count
) / sizeof(Atom
);
2707 net_supported_count
= 0;
2710 for (i
= 0; i
< net_supported_count
; i
++)
2711 if (net_supported
[i
] == atom
) return TRUE
;
2716 /***********************************************************************
2717 * SysCommand (X11DRV.@)
2719 * Perform WM_SYSCOMMAND handling.
2721 LRESULT CDECL
X11DRV_SysCommand( HWND hwnd
, WPARAM wparam
, LPARAM lparam
)
2723 WPARAM hittest
= wparam
& 0x0f;
2725 struct x11drv_win_data
*data
;
2727 if (!(data
= get_win_data( hwnd
))) return -1;
2728 if (!data
->whole_window
|| !data
->managed
|| !data
->mapped
) goto failed
;
2730 switch (wparam
& 0xfff0)
2733 if (!hittest
) dir
= _NET_WM_MOVERESIZE_MOVE_KEYBOARD
;
2734 else dir
= _NET_WM_MOVERESIZE_MOVE
;
2737 /* windows without WS_THICKFRAME are not resizable through the window manager */
2738 if (!(GetWindowLongW( hwnd
, GWL_STYLE
) & WS_THICKFRAME
)) goto failed
;
2742 case WMSZ_LEFT
: dir
= _NET_WM_MOVERESIZE_SIZE_LEFT
; break;
2743 case WMSZ_RIGHT
: dir
= _NET_WM_MOVERESIZE_SIZE_RIGHT
; break;
2744 case WMSZ_TOP
: dir
= _NET_WM_MOVERESIZE_SIZE_TOP
; break;
2745 case WMSZ_TOPLEFT
: dir
= _NET_WM_MOVERESIZE_SIZE_TOPLEFT
; break;
2746 case WMSZ_TOPRIGHT
: dir
= _NET_WM_MOVERESIZE_SIZE_TOPRIGHT
; break;
2747 case WMSZ_BOTTOM
: dir
= _NET_WM_MOVERESIZE_SIZE_BOTTOM
; break;
2748 case WMSZ_BOTTOMLEFT
: dir
= _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT
; break;
2749 case WMSZ_BOTTOMRIGHT
: dir
= _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT
; break;
2750 default: dir
= _NET_WM_MOVERESIZE_SIZE_KEYBOARD
; break;
2755 /* prevent a simple ALT press+release from activating the system menu,
2756 * as that can get confusing on managed windows */
2757 if ((WCHAR
)lparam
) goto failed
; /* got an explicit char */
2758 if (GetMenu( hwnd
)) goto failed
; /* window has a real menu */
2759 if (!(GetWindowLongW( hwnd
, GWL_STYLE
) & WS_SYSMENU
)) goto failed
; /* no system menu */
2760 TRACE( "ignoring SC_KEYMENU wp %lx lp %lx\n", wparam
, lparam
);
2761 release_win_data( data
);
2768 if (IsZoomed(hwnd
)) goto failed
;
2770 if (!is_netwm_supported( data
->display
, x11drv_atom(_NET_WM_MOVERESIZE
) ))
2772 TRACE( "_NET_WM_MOVERESIZE not supported\n" );
2776 release_win_data( data
);
2777 move_resize_window( hwnd
, dir
);
2781 release_win_data( data
);
2785 void CDECL
X11DRV_FlashWindowEx( PFLASHWINFO pfinfo
)
2787 struct x11drv_win_data
*data
= get_win_data( pfinfo
->hwnd
);
2795 xev
.type
= ClientMessage
;
2796 xev
.xclient
.window
= data
->whole_window
;
2797 xev
.xclient
.message_type
= x11drv_atom( _NET_WM_STATE
);
2798 xev
.xclient
.serial
= 0;
2799 xev
.xclient
.display
= data
->display
;
2800 xev
.xclient
.send_event
= True
;
2801 xev
.xclient
.format
= 32;
2802 xev
.xclient
.data
.l
[0] = pfinfo
->dwFlags
? _NET_WM_STATE_ADD
: _NET_WM_STATE_REMOVE
;
2803 xev
.xclient
.data
.l
[1] = x11drv_atom( _NET_WM_STATE_DEMANDS_ATTENTION
);
2804 xev
.xclient
.data
.l
[2] = 0;
2805 xev
.xclient
.data
.l
[3] = 1;
2806 xev
.xclient
.data
.l
[4] = 0;
2808 XSendEvent( data
->display
, DefaultRootWindow( data
->display
), False
,
2809 SubstructureNotifyMask
, &xev
);
2811 release_win_data( data
);