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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 #include <X11/Xresource.h>
33 #include <X11/Xutil.h>
40 #include "wine/unicode.h"
43 #include "wine/debug.h"
44 #include "wine/server.h"
49 WINE_DEFAULT_DEBUG_CHANNEL(x11drv
);
51 /* X context to associate a hwnd to an X window */
52 XContext winContext
= 0;
54 /* X context to associate a struct x11drv_win_data to an hwnd */
55 static XContext win_data_context
;
57 Atom X11DRV_Atoms
[NB_XATOMS
- FIRST_XATOM
];
59 static const char * const atom_names
[NB_XATOMS
- FIRST_XATOM
] =
78 "_KDE_NET_WM_SYSTEM_TRAY_WINDOW_FOR",
83 "_NET_WM_WINDOW_TYPE",
84 "_NET_WM_WINDOW_TYPE_UTILITY",
108 static LPCSTR whole_window_atom
;
109 static LPCSTR icon_window_atom
;
110 static LPCSTR managed_atom
;
112 /***********************************************************************
115 * Check if a given window should be managed
117 inline static BOOL
is_window_managed( HWND hwnd
)
119 DWORD style
, ex_style
;
121 if (!managed_mode
) return FALSE
;
122 /* tray window is always managed */
123 ex_style
= GetWindowLongW( hwnd
, GWL_EXSTYLE
);
124 if (ex_style
& WS_EX_TRAYWINDOW
) return TRUE
;
125 /* child windows are not managed */
126 style
= GetWindowLongW( hwnd
, GWL_STYLE
);
127 if (style
& WS_CHILD
) return FALSE
;
128 /* windows with caption are managed */
129 if ((style
& WS_CAPTION
) == WS_CAPTION
) return TRUE
;
130 /* tool windows are not managed */
131 if (ex_style
& WS_EX_TOOLWINDOW
) return FALSE
;
132 /* windows with thick frame are managed */
133 if (style
& WS_THICKFRAME
) return TRUE
;
134 /* application windows are managed */
135 if (ex_style
& WS_EX_APPWINDOW
) return TRUE
;
136 /* full-screen popup windows are managed */
137 if (style
& WS_POPUP
)
140 GetWindowRect( hwnd
, &rect
);
141 if ((rect
.right
- rect
.left
) == screen_width
&& (rect
.bottom
- rect
.top
) == screen_height
)
144 /* default: not managed */
149 /***********************************************************************
150 * X11DRV_is_window_rect_mapped
152 * Check if the X whole window should be mapped based on its rectangle
154 BOOL
X11DRV_is_window_rect_mapped( const RECT
*rect
)
156 /* don't map if rect is empty */
157 if (IsRectEmpty( rect
)) return FALSE
;
159 /* don't map if rect is off-screen */
160 if (rect
->left
>= (int)screen_width
|| rect
->top
>= (int)screen_height
) return FALSE
;
161 if (rect
->right
< 0 || rect
->bottom
< 0) return FALSE
;
167 /***********************************************************************
168 * get_window_attributes
170 * Fill the window attributes structure for an X window.
172 static int get_window_attributes( struct x11drv_win_data
*data
, XSetWindowAttributes
*attr
)
174 if (!data
->managed
&& !using_wine_desktop
&& is_window_managed( data
->hwnd
))
176 data
->managed
= TRUE
;
177 SetPropA( data
->hwnd
, managed_atom
, (HANDLE
)1 );
179 attr
->override_redirect
= !data
->managed
;
180 attr
->colormap
= X11DRV_PALETTE_PaletteXColormap
;
181 attr
->save_under
= ((GetClassLongW( data
->hwnd
, GCL_STYLE
) & CS_SAVEBITS
) != 0);
182 attr
->cursor
= x11drv_thread_data()->cursor
;
183 attr
->event_mask
= (ExposureMask
| PointerMotionMask
|
184 ButtonPressMask
| ButtonReleaseMask
| EnterWindowMask
|
185 KeyPressMask
| KeyReleaseMask
| StructureNotifyMask
|
186 FocusChangeMask
| KeymapStateMask
);
188 return (CWOverrideRedirect
| CWSaveUnder
| CWEventMask
| CWColormap
| CWCursor
);
192 /***********************************************************************
193 * X11DRV_sync_window_style
195 * Change the X window attributes when the window style has changed.
197 void X11DRV_sync_window_style( Display
*display
, struct x11drv_win_data
*data
)
199 XSetWindowAttributes attr
;
200 int mask
= get_window_attributes( data
, &attr
);
203 XChangeWindowAttributes( display
, data
->whole_window
, mask
, &attr
);
208 /***********************************************************************
211 * fill the window changes structure
213 static int get_window_changes( XWindowChanges
*changes
, const RECT
*old
, const RECT
*new )
217 if (old
->right
- old
->left
!= new->right
- new->left
)
219 if (!(changes
->width
= new->right
- new->left
)) changes
->width
= 1;
222 if (old
->bottom
- old
->top
!= new->bottom
- new->top
)
224 if (!(changes
->height
= new->bottom
- new->top
)) changes
->height
= 1;
227 if (old
->left
!= new->left
)
229 changes
->x
= new->left
;
232 if (old
->top
!= new->top
)
234 changes
->y
= new->top
;
241 /***********************************************************************
244 static Window
create_icon_window( Display
*display
, struct x11drv_win_data
*data
)
246 XSetWindowAttributes attr
;
248 attr
.event_mask
= (ExposureMask
| KeyPressMask
| KeyReleaseMask
| PointerMotionMask
|
249 ButtonPressMask
| ButtonReleaseMask
| EnterWindowMask
);
250 attr
.bit_gravity
= NorthWestGravity
;
251 attr
.backing_store
= NotUseful
/*WhenMapped*/;
252 attr
.colormap
= X11DRV_PALETTE_PaletteXColormap
; /* Needed due to our visual */
255 data
->icon_window
= XCreateWindow( display
, root_window
, 0, 0,
256 GetSystemMetrics( SM_CXICON
),
257 GetSystemMetrics( SM_CYICON
),
260 CWEventMask
| CWBitGravity
| CWBackingStore
| CWColormap
, &attr
);
261 XSaveContext( display
, data
->icon_window
, winContext
, (char *)data
->hwnd
);
264 TRACE( "created %lx\n", data
->icon_window
);
265 SetPropA( data
->hwnd
, icon_window_atom
, (HANDLE
)data
->icon_window
);
266 return data
->icon_window
;
271 /***********************************************************************
272 * destroy_icon_window
274 static void destroy_icon_window( Display
*display
, struct x11drv_win_data
*data
)
276 if (!data
->icon_window
) return;
277 if (x11drv_thread_data()->cursor_window
== data
->icon_window
)
278 x11drv_thread_data()->cursor_window
= None
;
280 XDeleteContext( display
, data
->icon_window
, winContext
);
281 XDestroyWindow( display
, data
->icon_window
);
282 data
->icon_window
= 0;
284 RemovePropA( data
->hwnd
, icon_window_atom
);
288 /***********************************************************************
291 * Set the icon wm hints
293 static void set_icon_hints( Display
*display
, struct x11drv_win_data
*data
,
294 XWMHints
*hints
, HICON hIcon
)
296 if (data
->hWMIconBitmap
) DeleteObject( data
->hWMIconBitmap
);
297 if (data
->hWMIconMask
) DeleteObject( data
->hWMIconMask
);
298 data
->hWMIconBitmap
= 0;
299 data
->hWMIconMask
= 0;
303 destroy_icon_window( display
, data
);
304 hints
->flags
&= ~(IconPixmapHint
| IconMaskHint
| IconWindowHint
);
308 if (!data
->icon_window
) create_icon_window( display
, data
);
309 hints
->icon_window
= data
->icon_window
;
310 hints
->flags
= (hints
->flags
& ~(IconPixmapHint
| IconMaskHint
)) | IconWindowHint
;
320 GetIconInfo(hIcon
, &ii
);
322 GetObjectA(ii
.hbmMask
, sizeof(bmMask
), &bmMask
);
325 rcMask
.right
= bmMask
.bmWidth
;
326 rcMask
.bottom
= bmMask
.bmHeight
;
328 hDC
= CreateCompatibleDC(0);
329 hbmOrig
= SelectObject(hDC
, ii
.hbmMask
);
330 InvertRect(hDC
, &rcMask
);
331 SelectObject(hDC
, ii
.hbmColor
); /* force the color bitmap to x11drv mode too */
332 SelectObject(hDC
, hbmOrig
);
335 data
->hWMIconBitmap
= ii
.hbmColor
;
336 data
->hWMIconMask
= ii
.hbmMask
;
338 hints
->icon_pixmap
= X11DRV_get_pixmap(data
->hWMIconBitmap
);
339 hints
->icon_mask
= X11DRV_get_pixmap(data
->hWMIconMask
);
340 destroy_icon_window( display
, data
);
341 hints
->flags
= (hints
->flags
& ~IconWindowHint
) | IconPixmapHint
| IconMaskHint
;
346 /***********************************************************************
349 * set the window size hints
351 static void set_size_hints( Display
*display
, struct x11drv_win_data
*data
, DWORD style
)
353 XSizeHints
* size_hints
;
355 if ((size_hints
= XAllocSizeHints()))
357 size_hints
->win_gravity
= StaticGravity
;
358 size_hints
->x
= data
->whole_rect
.left
;
359 size_hints
->y
= data
->whole_rect
.top
;
360 size_hints
->flags
= PWinGravity
| PPosition
;
362 if ( !(style
& WS_THICKFRAME
) )
364 size_hints
->max_width
= data
->whole_rect
.right
- data
->whole_rect
.left
;
365 size_hints
->max_height
= data
->whole_rect
.bottom
- data
->whole_rect
.top
;
366 size_hints
->min_width
= size_hints
->max_width
;
367 size_hints
->min_height
= size_hints
->max_height
;
368 size_hints
->flags
|= PMinSize
| PMaxSize
;
370 XSetWMNormalHints( display
, data
->whole_window
, size_hints
);
376 /***********************************************************************
377 * X11DRV_set_wm_hints
379 * Set the window manager hints for a newly-created window
381 void X11DRV_set_wm_hints( Display
*display
, struct x11drv_win_data
*data
)
384 XClassHint
*class_hints
;
390 DWORD style
= GetWindowLongW( data
->hwnd
, GWL_STYLE
);
391 DWORD ex_style
= GetWindowLongW( data
->hwnd
, GWL_EXSTYLE
);
392 HWND owner
= GetWindow( data
->hwnd
, GW_OWNER
);
394 /* transient for hint */
397 Window owner_win
= X11DRV_get_whole_window( owner
);
399 XSetTransientForHint( display
, data
->whole_window
, owner_win
);
401 group_leader
= owner_win
;
403 else group_leader
= data
->whole_window
;
409 protocols
[i
++] = x11drv_atom(WM_DELETE_WINDOW
);
410 protocols
[i
++] = x11drv_atom(_NET_WM_PING
);
411 if (use_take_focus
) protocols
[i
++] = x11drv_atom(WM_TAKE_FOCUS
);
412 XChangeProperty( display
, data
->whole_window
, x11drv_atom(WM_PROTOCOLS
),
413 XA_ATOM
, 32, PropModeReplace
, (unsigned char *)protocols
, i
);
416 if ((class_hints
= XAllocClassHint()))
418 class_hints
->res_name
= "wine";
419 class_hints
->res_class
= "Wine";
420 XSetClassHint( display
, data
->whole_window
, class_hints
);
421 XFree( class_hints
);
425 set_size_hints( display
, data
, style
);
427 /* systray properties (KDE only for now) */
428 if (ex_style
& WS_EX_TRAYWINDOW
)
431 XChangeProperty( display
, data
->whole_window
, x11drv_atom(KWM_DOCKWINDOW
),
432 x11drv_atom(KWM_DOCKWINDOW
), 32, PropModeReplace
, (unsigned char*)&val
, 1 );
433 XChangeProperty( display
, data
->whole_window
, x11drv_atom(_KDE_NET_WM_SYSTEM_TRAY_WINDOW_FOR
),
434 XA_WINDOW
, 32, PropModeReplace
, (unsigned char*)&data
->whole_window
, 1 );
437 /* set the WM_CLIENT_MACHINE and WM_LOCALE_NAME properties */
438 XSetWMProperties(display
, data
->whole_window
, NULL
, NULL
, NULL
, 0, NULL
, NULL
, NULL
);
439 /* set the pid. together, these properties are needed so the window manager can kill us if we freeze */
441 XChangeProperty(display
, data
->whole_window
, x11drv_atom(_NET_WM_PID
),
442 XA_CARDINAL
, 32, PropModeReplace
, (unsigned char *)&i
, 1);
444 /* map WS_EX_TOOLWINDOW to _NET_WM_WINDOW_TYPE_UTILITY */
445 if (ex_style
& WS_EX_TOOLWINDOW
)
447 Atom a
= x11drv_atom(_NET_WM_WINDOW_TYPE_UTILITY
);
448 XChangeProperty(display
, data
->whole_window
, x11drv_atom(_NET_WM_WINDOW_TYPE
),
449 XA_ATOM
, 32, PropModeReplace
, (unsigned char*)&a
, 1);
452 mwm_hints
.flags
= MWM_HINTS_FUNCTIONS
| MWM_HINTS_DECORATIONS
;
453 mwm_hints
.functions
= 0;
454 if ((style
& WS_CAPTION
) == WS_CAPTION
) mwm_hints
.functions
|= MWM_FUNC_MOVE
;
455 if (style
& WS_THICKFRAME
) mwm_hints
.functions
|= MWM_FUNC_MOVE
| MWM_FUNC_RESIZE
;
456 if (style
& WS_MINIMIZEBOX
) mwm_hints
.functions
|= MWM_FUNC_MINIMIZE
;
457 if (style
& WS_MAXIMIZEBOX
) mwm_hints
.functions
|= MWM_FUNC_MAXIMIZE
;
458 if (style
& WS_SYSMENU
) mwm_hints
.functions
|= MWM_FUNC_CLOSE
;
459 if (ex_style
& WS_EX_APPWINDOW
) mwm_hints
.functions
|= MWM_FUNC_MOVE
;
460 mwm_hints
.decorations
= 0;
461 if ((style
& WS_CAPTION
) == WS_CAPTION
)
463 mwm_hints
.decorations
|= MWM_DECOR_TITLE
;
464 if (style
& WS_SYSMENU
) mwm_hints
.decorations
|= MWM_DECOR_MENU
;
465 if (style
& WS_MINIMIZEBOX
) mwm_hints
.decorations
|= MWM_DECOR_MINIMIZE
;
466 if (style
& WS_MAXIMIZEBOX
) mwm_hints
.decorations
|= MWM_DECOR_MAXIMIZE
;
468 if (ex_style
& WS_EX_DLGMODALFRAME
) mwm_hints
.decorations
|= MWM_DECOR_BORDER
;
469 else if (style
& WS_THICKFRAME
) mwm_hints
.decorations
|= MWM_DECOR_BORDER
| MWM_DECOR_RESIZEH
;
470 else if ((style
& (WS_DLGFRAME
|WS_BORDER
)) == WS_DLGFRAME
) mwm_hints
.decorations
|= MWM_DECOR_BORDER
;
471 else if (style
& WS_BORDER
) mwm_hints
.decorations
|= MWM_DECOR_BORDER
;
472 else if (!(style
& (WS_CHILD
|WS_POPUP
))) mwm_hints
.decorations
|= MWM_DECOR_BORDER
;
474 XChangeProperty( display
, data
->whole_window
, x11drv_atom(_MOTIF_WM_HINTS
),
475 x11drv_atom(_MOTIF_WM_HINTS
), 32, PropModeReplace
,
476 (unsigned char*)&mwm_hints
, sizeof(mwm_hints
)/sizeof(long) );
478 XChangeProperty( display
, data
->whole_window
, x11drv_atom(XdndAware
),
479 XA_ATOM
, 32, PropModeReplace
, (unsigned char*)&dndVersion
, 1 );
481 wm_hints
= XAllocWMHints();
487 wm_hints
->flags
= InputHint
| StateHint
| WindowGroupHint
;
488 wm_hints
->input
= !(style
& WS_DISABLED
);
490 set_icon_hints( display
, data
, wm_hints
,
491 (HICON
)GetClassLongPtrW( data
->hwnd
, GCLP_HICON
) );
493 wm_hints
->initial_state
= (style
& WS_MINIMIZE
) ? IconicState
: NormalState
;
494 wm_hints
->window_group
= group_leader
;
497 XSetWMHints( display
, data
->whole_window
, wm_hints
);
504 /***********************************************************************
505 * X11DRV_set_iconic_state
507 * Set the X11 iconic state according to the window style.
509 void X11DRV_set_iconic_state( HWND hwnd
)
511 Display
*display
= thread_display();
512 struct x11drv_win_data
*data
;
515 DWORD style
= GetWindowLongW( hwnd
, GWL_STYLE
);
516 BOOL iconic
= (style
& WS_MINIMIZE
) != 0;
518 if (!(data
= X11DRV_get_win_data( hwnd
))) return;
519 if (!data
->whole_window
) return;
521 GetWindowRect( hwnd
, &rect
);
525 if (!(wm_hints
= XGetWMHints( display
, data
->whole_window
))) wm_hints
= XAllocWMHints();
526 wm_hints
->flags
|= StateHint
| IconPositionHint
;
527 wm_hints
->initial_state
= iconic
? IconicState
: NormalState
;
528 wm_hints
->icon_x
= rect
.left
;
529 wm_hints
->icon_y
= rect
.top
;
530 XSetWMHints( display
, data
->whole_window
, wm_hints
);
532 if (style
& WS_VISIBLE
)
535 XIconifyWindow( display
, data
->whole_window
, DefaultScreen(display
) );
537 if (X11DRV_is_window_rect_mapped( &rect
))
538 XMapWindow( display
, data
->whole_window
);
546 /***********************************************************************
547 * X11DRV_window_to_X_rect
549 * Convert a rect from client to X window coordinates
551 void X11DRV_window_to_X_rect( struct x11drv_win_data
*data
, RECT
*rect
)
555 if (!data
->managed
) return;
556 if (IsRectEmpty( rect
)) return;
558 rc
.top
= rc
.bottom
= rc
.left
= rc
.right
= 0;
560 AdjustWindowRectEx( &rc
, GetWindowLongW( data
->hwnd
, GWL_STYLE
) & ~(WS_HSCROLL
|WS_VSCROLL
),
561 FALSE
, GetWindowLongW( data
->hwnd
, GWL_EXSTYLE
) );
563 rect
->left
-= rc
.left
;
564 rect
->right
-= rc
.right
;
566 rect
->bottom
-= rc
.bottom
;
567 if (rect
->top
>= rect
->bottom
) rect
->bottom
= rect
->top
+ 1;
568 if (rect
->left
>= rect
->right
) rect
->right
= rect
->left
+ 1;
572 /***********************************************************************
573 * X11DRV_X_to_window_rect
575 * Opposite of X11DRV_window_to_X_rect
577 void X11DRV_X_to_window_rect( struct x11drv_win_data
*data
, RECT
*rect
)
579 if (!data
->managed
) return;
580 if (IsRectEmpty( rect
)) return;
582 AdjustWindowRectEx( rect
, GetWindowLongW( data
->hwnd
, GWL_STYLE
) & ~(WS_HSCROLL
|WS_VSCROLL
),
583 FALSE
, GetWindowLongW( data
->hwnd
, GWL_EXSTYLE
));
585 if (rect
->top
>= rect
->bottom
) rect
->bottom
= rect
->top
+ 1;
586 if (rect
->left
>= rect
->right
) rect
->right
= rect
->left
+ 1;
590 /***********************************************************************
591 * X11DRV_sync_window_position
593 * Synchronize the X window position with the Windows one
595 void X11DRV_sync_window_position( Display
*display
, struct x11drv_win_data
*data
,
596 UINT swp_flags
, const RECT
*new_client_rect
,
597 const RECT
*new_whole_rect
)
599 XWindowChanges changes
;
603 old_whole_rect
= data
->whole_rect
;
604 data
->whole_rect
= *new_whole_rect
;
606 data
->client_rect
= *new_client_rect
;
607 OffsetRect( &data
->client_rect
, -data
->whole_rect
.left
, -data
->whole_rect
.top
);
609 if (!data
->whole_window
) return;
610 if (swp_flags
& SWP_WINE_NOHOSTMOVE
) return;
612 mask
= get_window_changes( &changes
, &old_whole_rect
, &data
->whole_rect
);
614 if (!(swp_flags
& SWP_NOZORDER
))
616 /* find window that this one must be after */
617 HWND prev
= GetWindow( data
->hwnd
, GW_HWNDPREV
);
618 while (prev
&& !(GetWindowLongW( prev
, GWL_STYLE
) & WS_VISIBLE
))
619 prev
= GetWindow( prev
, GW_HWNDPREV
);
620 if (!prev
) /* top child */
622 changes
.stack_mode
= Above
;
627 /* should use stack_mode Below but most window managers don't get it right */
628 /* so move it above the next one in Z order */
629 HWND next
= GetWindow( data
->hwnd
, GW_HWNDNEXT
);
630 while (next
&& !(GetWindowLongW( next
, GWL_STYLE
) & WS_VISIBLE
))
631 next
= GetWindow( next
, GW_HWNDNEXT
);
634 changes
.stack_mode
= Above
;
635 changes
.sibling
= X11DRV_get_whole_window(next
);
636 mask
|= CWStackMode
| CWSibling
;
643 DWORD style
= GetWindowLongW( data
->hwnd
, GWL_STYLE
);
645 TRACE( "setting win %lx pos %ld,%ld,%ldx%ld after %lx changes=%x\n",
646 data
->whole_window
, data
->whole_rect
.left
, data
->whole_rect
.top
,
647 data
->whole_rect
.right
- data
->whole_rect
.left
,
648 data
->whole_rect
.bottom
- data
->whole_rect
.top
, changes
.sibling
, mask
);
651 XSync( gdi_display
, False
); /* flush graphics operations before moving the window */
652 if (mask
& (CWWidth
|CWHeight
)) set_size_hints( display
, data
, style
);
653 XReconfigureWMWindow( display
, data
->whole_window
,
654 DefaultScreen(display
), mask
, &changes
);
660 /**********************************************************************
663 static void create_desktop( Display
*display
, struct x11drv_win_data
*data
)
668 winContext
= XUniqueContext();
669 XInternAtoms( display
, (char **)atom_names
, NB_XATOMS
- FIRST_XATOM
, False
, X11DRV_Atoms
);
670 visualid
= XVisualIDFromVisual(visual
);
673 whole_window_atom
= MAKEINTATOMA( GlobalAddAtomA( "__wine_x11_whole_window" ));
674 icon_window_atom
= MAKEINTATOMA( GlobalAddAtomA( "__wine_x11_icon_window" ));
675 managed_atom
= MAKEINTATOMA( GlobalAddAtomA( "__wine_x11_managed" ));
677 data
->whole_window
= root_window
;
678 data
->whole_rect
= data
->client_rect
= data
->window_rect
;
680 SetPropA( data
->hwnd
, whole_window_atom
, (HANDLE
)root_window
);
681 SetPropA( data
->hwnd
, "__wine_x11_visual_id", (HANDLE
)visualid
);
683 X11DRV_InitClipboard();
685 if (root_window
!= DefaultRootWindow(display
)) X11DRV_create_desktop_thread();
689 /**********************************************************************
690 * create_whole_window
692 * Create the whole X window for a given window
694 static Window
create_whole_window( Display
*display
, struct x11drv_win_data
*data
, DWORD style
)
697 XSetWindowAttributes attr
;
701 rect
= data
->window_rect
;
702 X11DRV_window_to_X_rect( data
, &rect
);
704 if (!(cx
= rect
.right
- rect
.left
)) cx
= 1;
705 if (!(cy
= rect
.bottom
- rect
.top
)) cy
= 1;
707 mask
= get_window_attributes( data
, &attr
);
709 /* set the attributes that don't change over the lifetime of the window */
710 attr
.bit_gravity
= NorthWestGravity
;
711 attr
.win_gravity
= StaticGravity
;
712 attr
.backing_store
= NotUseful
;
713 mask
|= CWBitGravity
| CWWinGravity
| CWBackingStore
;
717 data
->whole_rect
= rect
;
718 data
->whole_window
= XCreateWindow( display
, root_window
, rect
.left
, rect
.top
, cx
, cy
,
719 0, screen_depth
, InputOutput
, visual
,
722 if (!data
->whole_window
)
727 XSaveContext( display
, data
->whole_window
, winContext
, (char *)data
->hwnd
);
729 /* non-maximized child must be at bottom of Z order */
730 if ((style
& (WS_CHILD
|WS_MAXIMIZE
)) == WS_CHILD
)
732 XWindowChanges changes
;
733 changes
.stack_mode
= Below
;
734 XConfigureWindow( display
, data
->whole_window
, CWStackMode
, &changes
);
736 XSync( display
, False
); /* FIXME: should not be needed */
740 xim
= x11drv_thread_data()->xim
;
741 if (xim
) data
->xic
= X11DRV_CreateIC( xim
, display
, data
->whole_window
);
743 X11DRV_set_wm_hints( display
, data
);
745 SetPropA( data
->hwnd
, whole_window_atom
, (HANDLE
)data
->whole_window
);
746 return data
->whole_window
;
750 /**********************************************************************
751 * destroy_whole_window
753 * Destroy the whole X window for a given window.
755 static void destroy_whole_window( Display
*display
, struct x11drv_win_data
*data
)
757 struct x11drv_thread_data
*thread_data
= x11drv_thread_data();
759 if (!data
->whole_window
) return;
761 TRACE( "win %p xwin %lx\n", data
->hwnd
, data
->whole_window
);
762 if (thread_data
->cursor_window
== data
->whole_window
) thread_data
->cursor_window
= None
;
764 XSync( gdi_display
, False
); /* flush any reference to this drawable in GDI queue */
765 XDeleteContext( display
, data
->whole_window
, winContext
);
766 XDestroyWindow( display
, data
->whole_window
); /* this destroys client too */
767 data
->whole_window
= 0;
770 XUnsetICFocus( data
->xic
);
771 XDestroyIC( data
->xic
);
774 RemovePropA( data
->hwnd
, whole_window_atom
);
778 /*****************************************************************
779 * SetWindowText (X11DRV.@)
781 BOOL
X11DRV_SetWindowText( HWND hwnd
, LPCWSTR text
)
783 Display
*display
= thread_display();
790 if ((win
= X11DRV_get_whole_window( hwnd
)))
792 /* allocate new buffer for window text */
793 count
= WideCharToMultiByte(CP_UNIXCP
, 0, text
, -1, NULL
, 0, NULL
, NULL
);
794 if (!(buffer
= HeapAlloc( GetProcessHeap(), 0, count
)))
796 ERR("Not enough memory for window text\n");
799 WideCharToMultiByte(CP_UNIXCP
, 0, text
, -1, buffer
, count
, NULL
, NULL
);
801 count
= WideCharToMultiByte(CP_UTF8
, 0, text
, strlenW(text
), NULL
, 0, NULL
, NULL
);
802 if (!(utf8_buffer
= HeapAlloc( GetProcessHeap(), 0, count
)))
804 ERR("Not enough memory for window text in UTF-8\n");
805 HeapFree( GetProcessHeap(), 0, buffer
);
808 WideCharToMultiByte(CP_UTF8
, 0, text
, strlenW(text
), utf8_buffer
, count
, NULL
, NULL
);
811 if (XmbTextListToTextProperty( display
, &buffer
, 1, XStdICCTextStyle
, &prop
) == Success
)
813 XSetWMName( display
, win
, &prop
);
814 XSetWMIconName( display
, win
, &prop
);
818 Implements a NET_WM UTF-8 title. It should be without a trailing \0,
819 according to the standard
820 ( http://www.pps.jussieu.fr/~jch/software/UTF8_STRING/UTF8_STRING.text ).
822 XChangeProperty( display
, win
, x11drv_atom(_NET_WM_NAME
), x11drv_atom(UTF8_STRING
),
823 8, PropModeReplace
, (unsigned char *) utf8_buffer
, count
);
826 HeapFree( GetProcessHeap(), 0, utf8_buffer
);
827 HeapFree( GetProcessHeap(), 0, buffer
);
833 /***********************************************************************
834 * DestroyWindow (X11DRV.@)
836 BOOL
X11DRV_DestroyWindow( HWND hwnd
)
838 struct x11drv_thread_data
*thread_data
= x11drv_thread_data();
839 Display
*display
= thread_data
->display
;
840 struct x11drv_win_data
*data
;
842 if (!(data
= X11DRV_get_win_data( hwnd
))) return TRUE
;
844 free_window_dce( data
);
845 destroy_whole_window( display
, data
);
846 destroy_icon_window( display
, data
);
848 if (thread_data
->last_focus
== hwnd
) thread_data
->last_focus
= 0;
849 if (data
->hWMIconBitmap
) DeleteObject( data
->hWMIconBitmap
);
850 if (data
->hWMIconMask
) DeleteObject( data
->hWMIconMask
);
852 XDeleteContext( display
, (XID
)hwnd
, win_data_context
);
854 HeapFree( GetProcessHeap(), 0, data
);
860 /**********************************************************************
861 * CreateWindow (X11DRV.@)
863 BOOL
X11DRV_CreateWindow( HWND hwnd
, CREATESTRUCTA
*cs
, BOOL unicode
)
865 Display
*display
= thread_display();
867 struct x11drv_win_data
*data
;
868 HWND parent
, insert_after
;
877 ERR( "invalid window width %d\n", cs
->cx
);
882 ERR( "invalid window height %d\n", cs
->cy
);
887 ERR( "invalid window width %d\n", cs
->cx
);
892 ERR( "invalid window height %d\n", cs
->cy
);
896 if (!(data
= HeapAlloc(GetProcessHeap(), 0, sizeof(*data
)))) return FALSE
;
898 data
->whole_window
= 0;
899 data
->icon_window
= 0;
901 data
->managed
= FALSE
;
903 data
->hWMIconBitmap
= 0;
904 data
->hWMIconMask
= 0;
907 if (!win_data_context
) win_data_context
= XUniqueContext();
908 XSaveContext( display
, (XID
)hwnd
, win_data_context
, (char *)data
);
911 /* initialize the dimensions before sending WM_GETMINMAXINFO */
912 SetRect( &rect
, cs
->x
, cs
->y
, cs
->x
+ cs
->cx
, cs
->y
+ cs
->cy
);
913 X11DRV_set_window_pos( hwnd
, 0, &rect
, &rect
, SWP_NOZORDER
, NULL
);
915 parent
= GetAncestor( hwnd
, GA_PARENT
);
918 create_desktop( display
, data
);
922 /* create an X window if it's a top level window */
923 if (parent
== GetDesktopWindow())
925 if (!create_whole_window( display
, data
, cs
->style
)) goto failed
;
928 /* get class or window DC if needed */
929 alloc_window_dce( data
);
931 /* Call the WH_CBT hook */
933 /* the window style passed to the hook must be the real window style,
934 * rather than just the window style that the caller to CreateWindowEx
935 * passed in, so we have to copy the original CREATESTRUCT and get the
938 cbcs
.style
= GetWindowLongW(hwnd
, GWL_STYLE
);
941 cbtc
.hwndInsertAfter
= HWND_TOP
;
942 if (HOOK_CallHooks( WH_CBT
, HCBT_CREATEWND
, (WPARAM
)hwnd
, (LPARAM
)&cbtc
, unicode
))
944 TRACE("CBT-hook returned !0\n");
948 /* Send the WM_GETMINMAXINFO message and fix the size if needed */
949 if ((cs
->style
& WS_THICKFRAME
) || !(cs
->style
& (WS_POPUP
| WS_CHILD
)))
951 POINT maxSize
, maxPos
, minTrack
, maxTrack
;
953 WINPOS_GetMinMaxInfo( hwnd
, &maxSize
, &maxPos
, &minTrack
, &maxTrack
);
954 if (maxSize
.x
< cs
->cx
) cs
->cx
= maxSize
.x
;
955 if (maxSize
.y
< cs
->cy
) cs
->cy
= maxSize
.y
;
956 if (cs
->cx
< 0) cs
->cx
= 0;
957 if (cs
->cy
< 0) cs
->cy
= 0;
959 SetRect( &rect
, cs
->x
, cs
->y
, cs
->x
+ cs
->cx
, cs
->y
+ cs
->cy
);
960 if (!X11DRV_set_window_pos( hwnd
, 0, &rect
, &rect
, SWP_NOZORDER
, NULL
)) return FALSE
;
963 /* send WM_NCCREATE */
964 TRACE( "hwnd %p cs %d,%d %dx%d\n", hwnd
, cs
->x
, cs
->y
, cs
->cx
, cs
->cy
);
966 ret
= SendMessageW( hwnd
, WM_NCCREATE
, 0, (LPARAM
)cs
);
968 ret
= SendMessageA( hwnd
, WM_NCCREATE
, 0, (LPARAM
)cs
);
971 WARN("aborted by WM_xxCREATE!\n");
975 /* make sure the window is still valid */
976 if (!(data
= X11DRV_get_win_data( hwnd
))) return FALSE
;
977 if (data
->whole_window
) X11DRV_sync_window_style( display
, data
);
979 /* send WM_NCCALCSIZE */
980 rect
= data
->window_rect
;
981 SendMessageW( hwnd
, WM_NCCALCSIZE
, FALSE
, (LPARAM
)&rect
);
983 if (!(wndPtr
= WIN_GetPtr(hwnd
))) return FALSE
;
985 /* yes, even if the CBT hook was called with HWND_TOP */
986 insert_after
= ((wndPtr
->dwStyle
& (WS_CHILD
|WS_MAXIMIZE
)) == WS_CHILD
) ? HWND_BOTTOM
: HWND_TOP
;
988 X11DRV_set_window_pos( hwnd
, insert_after
, &wndPtr
->rectWindow
, &rect
, 0, NULL
);
990 TRACE( "win %p window %ld,%ld,%ld,%ld client %ld,%ld,%ld,%ld whole %ld,%ld,%ld,%ld X client %ld,%ld,%ld,%ld xwin %x\n",
991 hwnd
, wndPtr
->rectWindow
.left
, wndPtr
->rectWindow
.top
,
992 wndPtr
->rectWindow
.right
, wndPtr
->rectWindow
.bottom
,
993 wndPtr
->rectClient
.left
, wndPtr
->rectClient
.top
,
994 wndPtr
->rectClient
.right
, wndPtr
->rectClient
.bottom
,
995 data
->whole_rect
.left
, data
->whole_rect
.top
,
996 data
->whole_rect
.right
, data
->whole_rect
.bottom
,
997 data
->client_rect
.left
, data
->client_rect
.top
,
998 data
->client_rect
.right
, data
->client_rect
.bottom
,
999 (unsigned int)data
->whole_window
);
1001 WIN_ReleasePtr( wndPtr
);
1004 ret
= (SendMessageW( hwnd
, WM_CREATE
, 0, (LPARAM
)cs
) != -1);
1006 ret
= (SendMessageA( hwnd
, WM_CREATE
, 0, (LPARAM
)cs
) != -1);
1008 if (!ret
) return FALSE
;
1010 NotifyWinEvent(EVENT_OBJECT_CREATE
, hwnd
, OBJID_WINDOW
, 0);
1012 /* Send the size messages */
1014 if (!(wndPtr
= WIN_GetPtr(hwnd
)) || wndPtr
== WND_OTHER_PROCESS
) return FALSE
;
1015 if (!(wndPtr
->flags
& WIN_NEED_SIZE
))
1017 RECT rect
= wndPtr
->rectClient
;
1018 WIN_ReleasePtr( wndPtr
);
1019 /* send it anyway */
1020 if (((rect
.right
-rect
.left
) <0) ||((rect
.bottom
-rect
.top
)<0))
1021 WARN("sending bogus WM_SIZE message 0x%08lx\n",
1022 MAKELONG(rect
.right
-rect
.left
, rect
.bottom
-rect
.top
));
1023 SendMessageW( hwnd
, WM_SIZE
, SIZE_RESTORED
,
1024 MAKELONG(rect
.right
-rect
.left
, rect
.bottom
-rect
.top
));
1025 SendMessageW( hwnd
, WM_MOVE
, 0, MAKELONG( rect
.left
, rect
.top
) );
1027 else WIN_ReleasePtr( wndPtr
);
1029 /* Show the window, maximizing or minimizing if needed */
1031 style
= GetWindowLongW( hwnd
, GWL_STYLE
);
1032 if (style
& (WS_MINIMIZE
| WS_MAXIMIZE
))
1034 extern UINT
WINPOS_MinMaximize( HWND hwnd
, UINT cmd
, LPRECT rect
); /*FIXME*/
1037 UINT swFlag
= (style
& WS_MINIMIZE
) ? SW_MINIMIZE
: SW_MAXIMIZE
;
1038 WIN_SetStyle( hwnd
, 0, WS_MAXIMIZE
| WS_MINIMIZE
);
1039 WINPOS_MinMaximize( hwnd
, swFlag
, &newPos
);
1040 swFlag
= ((style
& WS_CHILD
) || GetActiveWindow())
1041 ? SWP_NOACTIVATE
| SWP_NOZORDER
| SWP_FRAMECHANGED
1042 : SWP_NOZORDER
| SWP_FRAMECHANGED
;
1043 SetWindowPos( hwnd
, 0, newPos
.left
, newPos
.top
,
1044 newPos
.right
, newPos
.bottom
, swFlag
);
1050 X11DRV_DestroyWindow( hwnd
);
1055 /***********************************************************************
1056 * X11DRV_get_win_data
1058 * Return the X11 data structure associated with a window.
1060 struct x11drv_win_data
*X11DRV_get_win_data( HWND hwnd
)
1064 if (!hwnd
|| XFindContext( thread_display(), (XID
)hwnd
, win_data_context
, &data
)) data
= NULL
;
1065 return (struct x11drv_win_data
*)data
;
1069 /***********************************************************************
1070 * X11DRV_get_whole_window
1072 * Return the X window associated with the full area of a window
1074 Window
X11DRV_get_whole_window( HWND hwnd
)
1076 struct x11drv_win_data
*data
= X11DRV_get_win_data( hwnd
);
1078 if (!data
) return (Window
)GetPropA( hwnd
, whole_window_atom
);
1079 return data
->whole_window
;
1083 /***********************************************************************
1086 * Return the X input context associated with a window
1088 XIC
X11DRV_get_ic( HWND hwnd
)
1090 struct x11drv_win_data
*data
= X11DRV_get_win_data( hwnd
);
1092 if (!data
) return 0;
1097 /*****************************************************************
1098 * SetParent (X11DRV.@)
1100 HWND
X11DRV_SetParent( HWND hwnd
, HWND parent
)
1102 Display
*display
= thread_display();
1105 HWND old_parent
= 0;
1107 /* Windows hides the window first, then shows it again
1108 * including the WM_SHOWWINDOW messages and all */
1109 BOOL was_visible
= ShowWindow( hwnd
, SW_HIDE
);
1111 wndPtr
= WIN_GetPtr( hwnd
);
1112 if (!wndPtr
|| wndPtr
== WND_OTHER_PROCESS
|| wndPtr
== WND_DESKTOP
) return 0;
1114 SERVER_START_REQ( set_parent
)
1117 req
->parent
= parent
;
1118 if ((ret
= !wine_server_call( req
)))
1120 old_parent
= reply
->old_parent
;
1121 wndPtr
->parent
= parent
= reply
->full_parent
;
1126 WIN_ReleasePtr( wndPtr
);
1129 if (parent
!= old_parent
)
1131 struct x11drv_win_data
*data
= X11DRV_get_win_data( hwnd
);
1133 if (!data
) return 0;
1135 if (parent
!= GetDesktopWindow()) /* a child window */
1137 if (old_parent
== GetDesktopWindow())
1139 /* destroy the old X windows */
1140 destroy_whole_window( display
, data
);
1141 destroy_icon_window( display
, data
);
1144 data
->managed
= FALSE
;
1145 RemovePropA( data
->hwnd
, managed_atom
);
1149 else /* new top level window */
1151 /* FIXME: we ignore errors since we can't really recover anyway */
1152 create_whole_window( display
, data
, GetWindowLongW( hwnd
, GWL_STYLE
) );
1156 /* SetParent additionally needs to make hwnd the topmost window
1157 in the x-order and send the expected WM_WINDOWPOSCHANGING and
1158 WM_WINDOWPOSCHANGED notification messages.
1160 SetWindowPos( hwnd
, HWND_TOPMOST
, 0, 0, 0, 0,
1161 SWP_NOACTIVATE
| SWP_NOMOVE
| SWP_NOSIZE
| (was_visible
? SWP_SHOWWINDOW
: 0) );
1162 /* FIXME: a WM_MOVE is also generated (in the DefWindowProc handler
1163 * for WM_WINDOWPOSCHANGED) in Windows, should probably remove SWP_NOMOVE */
1169 /*****************************************************************
1170 * SetFocus (X11DRV.@)
1173 * Explicit colormap management seems to work only with OLVWM.
1175 void X11DRV_SetFocus( HWND hwnd
)
1177 Display
*display
= thread_display();
1178 struct x11drv_win_data
*data
;
1179 XWindowAttributes win_attr
;
1181 /* Only mess with the X focus if there's */
1182 /* no desktop window and if the window is not managed by the WM. */
1183 if (root_window
!= DefaultRootWindow(display
)) return;
1185 if (!hwnd
) /* If setting the focus to 0, uninstall the colormap */
1188 if (X11DRV_PALETTE_PaletteFlags
& X11DRV_PALETTE_PRIVATE
)
1189 XUninstallColormap( display
, X11DRV_PALETTE_PaletteXColormap
);
1190 wine_tsx11_unlock();
1194 hwnd
= GetAncestor( hwnd
, GA_ROOT
);
1196 if (!(data
= X11DRV_get_win_data( hwnd
))) return;
1197 if (!data
->managed
|| !data
->whole_window
) return;
1199 /* Set X focus and install colormap */
1201 if (XGetWindowAttributes( display
, data
->whole_window
, &win_attr
) &&
1202 (win_attr
.map_state
== IsViewable
))
1204 /* If window is not viewable, don't change anything */
1206 /* we must not use CurrentTime (ICCCM), so try to use last message time instead */
1207 /* FIXME: this is not entirely correct */
1208 XSetInputFocus( display
, data
->whole_window
, RevertToParent
,
1210 GetMessageTime() - EVENT_x11_time_to_win32_time(0));
1211 if (X11DRV_PALETTE_PaletteFlags
& X11DRV_PALETTE_PRIVATE
)
1212 XInstallColormap( display
, X11DRV_PALETTE_PaletteXColormap
);
1214 wine_tsx11_unlock();
1218 /**********************************************************************
1219 * SetWindowIcon (X11DRV.@)
1221 * hIcon or hIconSm has changed (or is being initialised for the
1222 * first time). Complete the X11 driver-specific initialisation
1223 * and set the window hints.
1225 * This is not entirely correct, may need to create
1226 * an icon window and set the pixmap as a background
1228 void X11DRV_SetWindowIcon( HWND hwnd
, UINT type
, HICON icon
)
1230 Display
*display
= thread_display();
1231 struct x11drv_win_data
*data
;
1234 if (type
!= ICON_BIG
) return; /* nothing to do here */
1236 if (!(data
= X11DRV_get_win_data( hwnd
))) return;
1237 if (!data
->whole_window
) return;
1238 if (!data
->managed
) return;
1241 if (!(wm_hints
= XGetWMHints( display
, data
->whole_window
))) wm_hints
= XAllocWMHints();
1242 wine_tsx11_unlock();
1245 set_icon_hints( display
, data
, wm_hints
, icon
);
1247 XSetWMHints( display
, data
->whole_window
, wm_hints
);
1249 wine_tsx11_unlock();