| /* |
| * Window related functions |
| * |
| * Copyright 1993, 1994, 1995, 1996, 2001 Alexandre Julliard |
| * Copyright 1993 David Metcalfe |
| * Copyright 1995, 1996 Alex Korobka |
| * |
| * This library is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU Lesser General Public |
| * License as published by the Free Software Foundation; either |
| * version 2.1 of the License, or (at your option) any later version. |
| * |
| * This library is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| * Lesser General Public License for more details. |
| * |
| * You should have received a copy of the GNU Lesser General Public |
| * License along with this library; if not, write to the Free Software |
| * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
| */ |
| |
| #include "config.h" |
| |
| #include <stdarg.h> |
| #include <stdlib.h> |
| #include <stdio.h> |
| #ifdef HAVE_UNISTD_H |
| # include <unistd.h> |
| #endif |
| |
| #include <X11/Xlib.h> |
| #include <X11/Xresource.h> |
| #include <X11/Xutil.h> |
| |
| #include "windef.h" |
| #include "winbase.h" |
| #include "wingdi.h" |
| #include "winuser.h" |
| #include "wine/unicode.h" |
| |
| #include "x11drv.h" |
| #include "xcomposite.h" |
| #include "wine/debug.h" |
| #include "wine/server.h" |
| #include "win.h" |
| #include "mwm.h" |
| |
| WINE_DEFAULT_DEBUG_CHANNEL(x11drv); |
| |
| /* X context to associate a hwnd to an X window */ |
| XContext winContext = 0; |
| |
| /* X context to associate a struct x11drv_win_data to an hwnd */ |
| static XContext win_data_context; |
| |
| static const char whole_window_prop[] = "__wine_x11_whole_window"; |
| static const char icon_window_prop[] = "__wine_x11_icon_window"; |
| static const char fbconfig_id_prop[] = "__wine_x11_fbconfig_id"; |
| static const char gl_drawable_prop[] = "__wine_x11_gl_drawable"; |
| static const char pixmap_prop[] = "__wine_x11_pixmap"; |
| static const char managed_prop[] = "__wine_x11_managed"; |
| static const char visual_id_prop[] = "__wine_x11_visual_id"; |
| |
| /* for XDG systray icons */ |
| #define SYSTEM_TRAY_REQUEST_DOCK 0 |
| |
| extern int usexcomposite; |
| |
| /*********************************************************************** |
| * is_window_managed |
| * |
| * Check if a given window should be managed |
| */ |
| BOOL is_window_managed( HWND hwnd, UINT swp_flags, const RECT *window_rect ) |
| { |
| DWORD style, ex_style; |
| |
| /* tray window is always managed */ |
| ex_style = GetWindowLongW( hwnd, GWL_EXSTYLE ); |
| if (ex_style & WS_EX_TRAYWINDOW) return TRUE; |
| /* child windows are not managed */ |
| style = GetWindowLongW( hwnd, GWL_STYLE ); |
| if ((style & (WS_CHILD|WS_POPUP)) == WS_CHILD) return FALSE; |
| /* activated windows are managed */ |
| if (!(swp_flags & (SWP_NOACTIVATE|SWP_HIDEWINDOW))) return TRUE; |
| if (hwnd == GetActiveWindow()) return TRUE; |
| /* windows with caption are managed */ |
| if ((style & WS_CAPTION) == WS_CAPTION) return TRUE; |
| /* tool windows are not managed */ |
| if (ex_style & WS_EX_TOOLWINDOW) return FALSE; |
| /* windows with thick frame are managed */ |
| if (style & WS_THICKFRAME) return TRUE; |
| /* application windows are managed */ |
| if (ex_style & WS_EX_APPWINDOW) return TRUE; |
| if (style & WS_POPUP) |
| { |
| /* popup with sysmenu == caption are managed */ |
| if (style & WS_SYSMENU) return TRUE; |
| /* full-screen popup windows are managed */ |
| if ((window_rect->right - window_rect->left) == screen_width && |
| (window_rect->bottom - window_rect->top) == screen_height) |
| return TRUE; |
| } |
| /* default: not managed */ |
| return FALSE; |
| } |
| |
| |
| /*********************************************************************** |
| * X11DRV_is_window_rect_mapped |
| * |
| * Check if the X whole window should be mapped based on its rectangle |
| */ |
| BOOL X11DRV_is_window_rect_mapped( const RECT *rect ) |
| { |
| /* don't map if rect is empty */ |
| if (IsRectEmpty( rect )) return FALSE; |
| |
| /* don't map if rect is off-screen */ |
| if (rect->left >= virtual_screen_rect.right || |
| rect->top >= virtual_screen_rect.bottom || |
| rect->right <= virtual_screen_rect.left || |
| rect->bottom <= virtual_screen_rect.top) |
| return FALSE; |
| |
| return TRUE; |
| } |
| |
| |
| /*********************************************************************** |
| * get_mwm_decorations |
| */ |
| static unsigned long get_mwm_decorations( DWORD style, DWORD ex_style ) |
| { |
| unsigned long ret = 0; |
| |
| if (ex_style & WS_EX_TOOLWINDOW) return 0; |
| |
| if ((style & WS_CAPTION) == WS_CAPTION) |
| { |
| ret |= MWM_DECOR_TITLE | MWM_DECOR_BORDER; |
| if (style & WS_SYSMENU) ret |= MWM_DECOR_MENU; |
| if (style & WS_MINIMIZEBOX) ret |= MWM_DECOR_MINIMIZE; |
| if (style & WS_MAXIMIZEBOX) ret |= MWM_DECOR_MAXIMIZE; |
| } |
| if (ex_style & WS_EX_DLGMODALFRAME) ret |= MWM_DECOR_BORDER; |
| else if (style & WS_THICKFRAME) ret |= MWM_DECOR_BORDER | MWM_DECOR_RESIZEH; |
| else if ((style & (WS_DLGFRAME|WS_BORDER)) == WS_DLGFRAME) ret |= MWM_DECOR_BORDER; |
| return ret; |
| } |
| |
| |
| /*********************************************************************** |
| * get_x11_rect_offset |
| * |
| * Helper for X11DRV_window_to_X_rect and X11DRV_X_to_window_rect. |
| */ |
| static void get_x11_rect_offset( struct x11drv_win_data *data, RECT *rect ) |
| { |
| DWORD style, ex_style, style_mask = 0, ex_style_mask = 0; |
| unsigned long decor; |
| |
| rect->top = rect->bottom = rect->left = rect->right = 0; |
| |
| style = GetWindowLongW( data->hwnd, GWL_STYLE ); |
| ex_style = GetWindowLongW( data->hwnd, GWL_EXSTYLE ); |
| decor = get_mwm_decorations( style, ex_style ); |
| |
| if (decor & MWM_DECOR_TITLE) style_mask |= WS_CAPTION; |
| if (decor & MWM_DECOR_BORDER) |
| { |
| style_mask |= WS_DLGFRAME | WS_THICKFRAME; |
| ex_style_mask |= WS_EX_DLGMODALFRAME; |
| } |
| |
| AdjustWindowRectEx( rect, style & style_mask, FALSE, ex_style & ex_style_mask ); |
| } |
| |
| |
| /*********************************************************************** |
| * get_window_attributes |
| * |
| * Fill the window attributes structure for an X window. |
| */ |
| static int get_window_attributes( Display *display, struct x11drv_win_data *data, |
| XSetWindowAttributes *attr ) |
| { |
| attr->override_redirect = !data->managed; |
| attr->colormap = X11DRV_PALETTE_PaletteXColormap; |
| attr->save_under = ((GetClassLongW( data->hwnd, GCL_STYLE ) & CS_SAVEBITS) != 0); |
| attr->cursor = x11drv_thread_data()->cursor; |
| attr->bit_gravity = NorthWestGravity; |
| attr->backing_store = NotUseful; |
| attr->event_mask = (ExposureMask | PointerMotionMask | |
| ButtonPressMask | ButtonReleaseMask | EnterWindowMask | |
| KeyPressMask | KeyReleaseMask | FocusChangeMask | KeymapStateMask); |
| if (data->managed) attr->event_mask |= StructureNotifyMask; |
| |
| return (CWOverrideRedirect | CWSaveUnder | CWColormap | CWCursor | |
| CWEventMask | CWBitGravity | CWBackingStore); |
| } |
| |
| |
| /*********************************************************************** |
| * X11DRV_sync_window_style |
| * |
| * Change the X window attributes when the window style has changed. |
| */ |
| void X11DRV_sync_window_style( Display *display, struct x11drv_win_data *data ) |
| { |
| if (data->whole_window != root_window) |
| { |
| XSetWindowAttributes attr; |
| int mask = get_window_attributes( display, data, &attr ); |
| |
| wine_tsx11_lock(); |
| XChangeWindowAttributes( display, data->whole_window, mask, &attr ); |
| wine_tsx11_unlock(); |
| } |
| } |
| |
| |
| /*********************************************************************** |
| * X11DRV_set_win_format |
| */ |
| BOOL X11DRV_set_win_format( HWND hwnd, XID fbconfig_id ) |
| { |
| Display *display = thread_display(); |
| struct x11drv_win_data *data; |
| XVisualInfo *vis; |
| Drawable parent; |
| HWND next_hwnd; |
| int w, h; |
| |
| if (!(data = X11DRV_get_win_data(hwnd))) return FALSE; |
| |
| wine_tsx11_lock(); |
| |
| vis = visual_from_fbconfig_id(fbconfig_id); |
| if(!vis) |
| { |
| wine_tsx11_unlock(); |
| return FALSE; |
| } |
| |
| if(data->whole_window && vis->visualid == XVisualIDFromVisual(visual)) |
| { |
| TRACE("Whole window available and visual match, rendering onscreen\n"); |
| goto done; |
| } |
| |
| wine_tsx11_unlock(); |
| |
| parent = data->whole_window; |
| next_hwnd = hwnd; |
| while(!parent) |
| { |
| next_hwnd = GetAncestor(next_hwnd, GA_PARENT); |
| if(!next_hwnd) |
| { |
| ERR("Could not find parent HWND with a drawable!\n"); |
| return FALSE; |
| } |
| parent = X11DRV_get_whole_window(next_hwnd); |
| } |
| |
| w = data->client_rect.right - data->client_rect.left; |
| h = data->client_rect.bottom - data->client_rect.top; |
| |
| if(w <= 0) w = 1; |
| if(h <= 0) h = 1; |
| |
| wine_tsx11_lock(); |
| #ifdef SONAME_LIBXCOMPOSITE |
| if(usexcomposite) |
| { |
| XSetWindowAttributes attrib; |
| |
| attrib.override_redirect = True; |
| attrib.colormap = XCreateColormap(display, parent, vis->visual, |
| (vis->class == PseudoColor || |
| vis->class == GrayScale || |
| vis->class == DirectColor) ? |
| AllocAll : AllocNone); |
| XInstallColormap(gdi_display, attrib.colormap); |
| |
| data->gl_drawable = XCreateWindow(display, parent, -w, 0, w, h, 0, |
| vis->depth, InputOutput, vis->visual, |
| CWColormap | CWOverrideRedirect, |
| &attrib); |
| if(data->gl_drawable) |
| { |
| pXCompositeRedirectWindow(display, data->gl_drawable, |
| CompositeRedirectManual); |
| XMapWindow(display, data->gl_drawable); |
| } |
| } |
| else |
| #endif |
| { |
| WARN("XComposite is not available, using GLXPixmap hack\n"); |
| |
| data->pixmap = XCreatePixmap(display, parent, w, h, vis->depth); |
| if(!data->pixmap) |
| { |
| ERR("Failed to create pixmap for offscreen rendering\n"); |
| XFree(vis); |
| wine_tsx11_unlock(); |
| return FALSE; |
| } |
| |
| data->gl_drawable = create_glxpixmap(display, vis, data->pixmap); |
| if(!data->gl_drawable) |
| { |
| XFreePixmap(display, data->pixmap); |
| data->pixmap = 0; |
| } |
| } |
| |
| if(!data->gl_drawable) |
| { |
| ERR("Failed to create drawable for offscreen rendering\n"); |
| XFree(vis); |
| wine_tsx11_unlock(); |
| return FALSE; |
| } |
| |
| done: |
| XFree(vis); |
| |
| XFlush(display); |
| wine_tsx11_unlock(); |
| |
| TRACE("Created GL drawable 0x%lx, using FBConfigID 0x%lx\n", |
| data->gl_drawable, fbconfig_id); |
| |
| data->fbconfig_id = fbconfig_id; |
| SetPropA(hwnd, fbconfig_id_prop, (HANDLE)data->fbconfig_id); |
| SetPropA(hwnd, gl_drawable_prop, (HANDLE)data->gl_drawable); |
| SetPropA(hwnd, pixmap_prop, (HANDLE)data->pixmap); |
| invalidate_dce( hwnd, &data->window_rect ); |
| return TRUE; |
| } |
| |
| static void update_gl_drawable(Display *display, struct x11drv_win_data *data, const RECT *old_client_rect) |
| { |
| int w = data->client_rect.right - data->client_rect.left; |
| int h = data->client_rect.bottom - data->client_rect.top; |
| XVisualInfo *vis; |
| Drawable parent; |
| HWND next_hwnd; |
| Drawable glxp; |
| Pixmap pix; |
| |
| if((w == old_client_rect->right - old_client_rect->left && |
| h == old_client_rect->bottom - old_client_rect->top) || |
| w <= 0 || h <= 0) |
| { |
| TRACE("No resize needed\n"); |
| return; |
| } |
| |
| TRACE("Resizing GL drawable 0x%lx to %dx%d\n", data->gl_drawable, w, h); |
| #ifdef SONAME_LIBXCOMPOSITE |
| if(usexcomposite) |
| { |
| wine_tsx11_lock(); |
| XMoveResizeWindow(display, data->gl_drawable, -w, 0, w, h); |
| wine_tsx11_unlock(); |
| return; |
| } |
| #endif |
| |
| parent = data->whole_window; |
| next_hwnd = data->hwnd; |
| while(!parent) |
| { |
| next_hwnd = GetAncestor(next_hwnd, GA_PARENT); |
| if(!next_hwnd) |
| { |
| ERR("Could not find parent HWND with a drawable!\n"); |
| return; |
| } |
| parent = X11DRV_get_whole_window(next_hwnd); |
| } |
| |
| wine_tsx11_lock(); |
| |
| vis = visual_from_fbconfig_id(data->fbconfig_id); |
| if(!vis) |
| { |
| wine_tsx11_unlock(); |
| return; |
| } |
| |
| pix = XCreatePixmap(display, parent, w, h, vis->depth); |
| if(!pix) |
| { |
| ERR("Failed to create pixmap for offscreen rendering\n"); |
| XFree(vis); |
| wine_tsx11_unlock(); |
| return; |
| } |
| |
| glxp = create_glxpixmap(display, vis, pix); |
| if(!glxp) |
| { |
| ERR("Failed to create drawable for offscreen rendering\n"); |
| XFreePixmap(display, pix); |
| XFree(vis); |
| wine_tsx11_unlock(); |
| return; |
| } |
| |
| XFree(vis); |
| |
| mark_drawable_dirty(data->gl_drawable, glxp); |
| |
| XFreePixmap(display, data->pixmap); |
| destroy_glxpixmap(display, data->gl_drawable); |
| |
| data->pixmap = pix; |
| data->gl_drawable = glxp; |
| |
| XFlush(display); |
| wine_tsx11_unlock(); |
| |
| SetPropA(data->hwnd, gl_drawable_prop, (HANDLE)data->gl_drawable); |
| SetPropA(data->hwnd, pixmap_prop, (HANDLE)data->pixmap); |
| invalidate_dce( data->hwnd, &data->window_rect ); |
| } |
| |
| |
| /*********************************************************************** |
| * get_window_changes |
| * |
| * fill the window changes structure |
| */ |
| static int get_window_changes( XWindowChanges *changes, const RECT *old, const RECT *new ) |
| { |
| int mask = 0; |
| |
| if (old->right - old->left != new->right - new->left ) |
| { |
| if (!(changes->width = new->right - new->left)) changes->width = 1; |
| mask |= CWWidth; |
| } |
| if (old->bottom - old->top != new->bottom - new->top) |
| { |
| if (!(changes->height = new->bottom - new->top)) changes->height = 1; |
| mask |= CWHeight; |
| } |
| if (old->left != new->left) |
| { |
| changes->x = new->left; |
| mask |= CWX; |
| } |
| if (old->top != new->top) |
| { |
| changes->y = new->top; |
| mask |= CWY; |
| } |
| return mask; |
| } |
| |
| |
| /*********************************************************************** |
| * create_icon_window |
| */ |
| static Window create_icon_window( Display *display, struct x11drv_win_data *data ) |
| { |
| XSetWindowAttributes attr; |
| |
| attr.event_mask = (ExposureMask | KeyPressMask | KeyReleaseMask | PointerMotionMask | |
| ButtonPressMask | ButtonReleaseMask | EnterWindowMask); |
| attr.bit_gravity = NorthWestGravity; |
| attr.backing_store = NotUseful/*WhenMapped*/; |
| attr.colormap = X11DRV_PALETTE_PaletteXColormap; /* Needed due to our visual */ |
| |
| wine_tsx11_lock(); |
| data->icon_window = XCreateWindow( display, root_window, 0, 0, |
| GetSystemMetrics( SM_CXICON ), |
| GetSystemMetrics( SM_CYICON ), |
| 0, screen_depth, |
| InputOutput, visual, |
| CWEventMask | CWBitGravity | CWBackingStore | CWColormap, &attr ); |
| XSaveContext( display, data->icon_window, winContext, (char *)data->hwnd ); |
| wine_tsx11_unlock(); |
| |
| TRACE( "created %lx\n", data->icon_window ); |
| SetPropA( data->hwnd, icon_window_prop, (HANDLE)data->icon_window ); |
| return data->icon_window; |
| } |
| |
| |
| |
| /*********************************************************************** |
| * destroy_icon_window |
| */ |
| static void destroy_icon_window( Display *display, struct x11drv_win_data *data ) |
| { |
| if (!data->icon_window) return; |
| if (x11drv_thread_data()->cursor_window == data->icon_window) |
| x11drv_thread_data()->cursor_window = None; |
| wine_tsx11_lock(); |
| XDeleteContext( display, data->icon_window, winContext ); |
| XDestroyWindow( display, data->icon_window ); |
| data->icon_window = 0; |
| wine_tsx11_unlock(); |
| RemovePropA( data->hwnd, icon_window_prop ); |
| } |
| |
| |
| /*********************************************************************** |
| * set_icon_hints |
| * |
| * Set the icon wm hints |
| */ |
| static void set_icon_hints( Display *display, struct x11drv_win_data *data, HICON hIcon ) |
| { |
| XWMHints *hints = data->wm_hints; |
| |
| if (data->hWMIconBitmap) DeleteObject( data->hWMIconBitmap ); |
| if (data->hWMIconMask) DeleteObject( data->hWMIconMask); |
| data->hWMIconBitmap = 0; |
| data->hWMIconMask = 0; |
| |
| if (!data->managed) |
| { |
| destroy_icon_window( display, data ); |
| hints->flags &= ~(IconPixmapHint | IconMaskHint | IconWindowHint); |
| } |
| else if (!hIcon) |
| { |
| if (!data->icon_window) create_icon_window( display, data ); |
| hints->icon_window = data->icon_window; |
| hints->flags = (hints->flags & ~(IconPixmapHint | IconMaskHint)) | IconWindowHint; |
| } |
| else |
| { |
| HBITMAP hbmOrig; |
| RECT rcMask; |
| BITMAP bmMask; |
| ICONINFO ii; |
| HDC hDC; |
| |
| GetIconInfo(hIcon, &ii); |
| |
| GetObjectA(ii.hbmMask, sizeof(bmMask), &bmMask); |
| rcMask.top = 0; |
| rcMask.left = 0; |
| rcMask.right = bmMask.bmWidth; |
| rcMask.bottom = bmMask.bmHeight; |
| |
| hDC = CreateCompatibleDC(0); |
| hbmOrig = SelectObject(hDC, ii.hbmMask); |
| InvertRect(hDC, &rcMask); |
| SelectObject(hDC, ii.hbmColor); /* force the color bitmap to x11drv mode too */ |
| SelectObject(hDC, hbmOrig); |
| DeleteDC(hDC); |
| |
| data->hWMIconBitmap = ii.hbmColor; |
| data->hWMIconMask = ii.hbmMask; |
| |
| hints->icon_pixmap = X11DRV_get_pixmap(data->hWMIconBitmap); |
| hints->icon_mask = X11DRV_get_pixmap(data->hWMIconMask); |
| destroy_icon_window( display, data ); |
| hints->flags = (hints->flags & ~IconWindowHint) | IconPixmapHint | IconMaskHint; |
| } |
| } |
| |
| /*********************************************************************** |
| * systray_dock_window |
| * |
| * Docks the given X window with the NETWM system tray. |
| */ |
| static void systray_dock_window( Display *display, struct x11drv_win_data *data ) |
| { |
| static Atom systray_atom; |
| Window systray_window; |
| |
| wine_tsx11_lock(); |
| if (!systray_atom) |
| { |
| if (DefaultScreen( display ) == 0) |
| systray_atom = x11drv_atom(_NET_SYSTEM_TRAY_S0); |
| else |
| { |
| char systray_buffer[29]; /* strlen(_NET_SYSTEM_TRAY_S4294967295)+1 */ |
| sprintf( systray_buffer, "_NET_SYSTEM_TRAY_S%u", DefaultScreen( display ) ); |
| systray_atom = XInternAtom( display, systray_buffer, False ); |
| } |
| } |
| systray_window = XGetSelectionOwner( display, systray_atom ); |
| wine_tsx11_unlock(); |
| |
| TRACE("Docking tray icon %p\n", data->hwnd); |
| |
| if (systray_window != None) |
| { |
| XEvent ev; |
| unsigned long info[2]; |
| |
| /* Put the window offscreen so it isn't mapped. The window _cannot_ be |
| * mapped if we intend to dock with an XEMBED tray. If the window is |
| * mapped when we dock, it may become visible as a child of the root |
| * window after it docks, which isn't the proper behavior. |
| * |
| * For more information on this problem, see |
| * http://standards.freedesktop.org/xembed-spec/latest/ar01s04.html */ |
| |
| SetWindowPos( data->hwnd, NULL, virtual_screen_rect.right + 1, virtual_screen_rect.bottom + 1, |
| 0, 0, SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE ); |
| |
| /* set XEMBED protocol data on the window */ |
| info[0] = 0; /* protocol version */ |
| info[1] = 1; /* mapped = true */ |
| |
| wine_tsx11_lock(); |
| XChangeProperty( display, data->whole_window, |
| x11drv_atom(_XEMBED_INFO), |
| x11drv_atom(_XEMBED_INFO), 32, PropModeReplace, |
| (unsigned char*)info, 2 ); |
| wine_tsx11_unlock(); |
| |
| /* send the docking request message */ |
| ZeroMemory( &ev, sizeof(ev) ); |
| ev.xclient.type = ClientMessage; |
| ev.xclient.window = systray_window; |
| ev.xclient.message_type = x11drv_atom( _NET_SYSTEM_TRAY_OPCODE ); |
| ev.xclient.format = 32; |
| ev.xclient.data.l[0] = CurrentTime; |
| ev.xclient.data.l[1] = SYSTEM_TRAY_REQUEST_DOCK; |
| ev.xclient.data.l[2] = data->whole_window; |
| ev.xclient.data.l[3] = 0; |
| ev.xclient.data.l[4] = 0; |
| |
| wine_tsx11_lock(); |
| XSendEvent( display, systray_window, False, NoEventMask, &ev ); |
| wine_tsx11_unlock(); |
| |
| } |
| else |
| { |
| int val = 1; |
| |
| /* fall back to he KDE hints if the WM doesn't support XEMBED'ed |
| * systrays */ |
| |
| wine_tsx11_lock(); |
| XChangeProperty( display, data->whole_window, |
| x11drv_atom(KWM_DOCKWINDOW), |
| x11drv_atom(KWM_DOCKWINDOW), 32, PropModeReplace, |
| (unsigned char*)&val, 1 ); |
| XChangeProperty( display, data->whole_window, |
| x11drv_atom(_KDE_NET_WM_SYSTEM_TRAY_WINDOW_FOR), |
| XA_WINDOW, 32, PropModeReplace, |
| (unsigned char*)&data->whole_window, 1 ); |
| wine_tsx11_unlock(); |
| } |
| } |
| |
| |
| /*********************************************************************** |
| * set_size_hints |
| * |
| * set the window size hints |
| */ |
| static void set_size_hints( Display *display, struct x11drv_win_data *data, DWORD style ) |
| { |
| XSizeHints* size_hints; |
| |
| if ((size_hints = XAllocSizeHints())) |
| { |
| size_hints->flags = 0; |
| |
| if (data->hwnd != GetDesktopWindow()) /* don't force position of desktop */ |
| { |
| size_hints->win_gravity = StaticGravity; |
| size_hints->x = data->whole_rect.left; |
| size_hints->y = data->whole_rect.top; |
| size_hints->flags |= PWinGravity | PPosition; |
| } |
| |
| if ( !(style & WS_THICKFRAME) ) |
| { |
| size_hints->max_width = data->whole_rect.right - data->whole_rect.left; |
| size_hints->max_height = data->whole_rect.bottom - data->whole_rect.top; |
| size_hints->min_width = size_hints->max_width; |
| size_hints->min_height = size_hints->max_height; |
| size_hints->flags |= PMinSize | PMaxSize; |
| } |
| XSetWMNormalHints( display, data->whole_window, size_hints ); |
| XFree( size_hints ); |
| } |
| } |
| |
| |
| /*********************************************************************** |
| * get_process_name |
| * |
| * get the name of the current process for setting class hints |
| */ |
| static char *get_process_name(void) |
| { |
| static char *name; |
| |
| if (!name) |
| { |
| WCHAR module[MAX_PATH]; |
| DWORD len = GetModuleFileNameW( 0, module, MAX_PATH ); |
| if (len && len < MAX_PATH) |
| { |
| char *ptr; |
| WCHAR *p, *appname = module; |
| |
| if ((p = strrchrW( appname, '/' ))) appname = p + 1; |
| if ((p = strrchrW( appname, '\\' ))) appname = p + 1; |
| len = WideCharToMultiByte( CP_UNIXCP, 0, appname, -1, NULL, 0, NULL, NULL ); |
| if ((ptr = HeapAlloc( GetProcessHeap(), 0, len ))) |
| { |
| WideCharToMultiByte( CP_UNIXCP, 0, appname, -1, ptr, len, NULL, NULL ); |
| name = ptr; |
| } |
| } |
| } |
| return name; |
| } |
| |
| |
| /*********************************************************************** |
| * set_initial_wm_hints |
| * |
| * Set the window manager hints that don't change over the lifetime of a window. |
| */ |
| static void set_initial_wm_hints( Display *display, struct x11drv_win_data *data ) |
| { |
| int i; |
| Atom protocols[3]; |
| Atom dndVersion = 4; |
| XClassHint *class_hints; |
| char *process_name = get_process_name(); |
| |
| wine_tsx11_lock(); |
| |
| /* wm protocols */ |
| i = 0; |
| protocols[i++] = x11drv_atom(WM_DELETE_WINDOW); |
| protocols[i++] = x11drv_atom(_NET_WM_PING); |
| if (use_take_focus) protocols[i++] = x11drv_atom(WM_TAKE_FOCUS); |
| XChangeProperty( display, data->whole_window, x11drv_atom(WM_PROTOCOLS), |
| XA_ATOM, 32, PropModeReplace, (unsigned char *)protocols, i ); |
| |
| /* class hints */ |
| if ((class_hints = XAllocClassHint())) |
| { |
| static char wine[] = "Wine"; |
| |
| class_hints->res_name = process_name; |
| class_hints->res_class = wine; |
| XSetClassHint( display, data->whole_window, class_hints ); |
| XFree( class_hints ); |
| } |
| |
| /* set the WM_CLIENT_MACHINE and WM_LOCALE_NAME properties */ |
| XSetWMProperties(display, data->whole_window, NULL, NULL, NULL, 0, NULL, NULL, NULL); |
| /* set the pid. together, these properties are needed so the window manager can kill us if we freeze */ |
| i = getpid(); |
| XChangeProperty(display, data->whole_window, x11drv_atom(_NET_WM_PID), |
| XA_CARDINAL, 32, PropModeReplace, (unsigned char *)&i, 1); |
| |
| XChangeProperty( display, data->whole_window, x11drv_atom(XdndAware), |
| XA_ATOM, 32, PropModeReplace, (unsigned char*)&dndVersion, 1 ); |
| |
| wine_tsx11_unlock(); |
| |
| if (data->wm_hints) |
| { |
| data->wm_hints->flags = 0; |
| set_icon_hints( display, data, (HICON)GetClassLongPtrW( data->hwnd, GCLP_HICON ) ); |
| } |
| } |
| |
| |
| /*********************************************************************** |
| * X11DRV_set_wm_hints |
| * |
| * Set the window manager hints for a newly-created window |
| */ |
| void X11DRV_set_wm_hints( Display *display, struct x11drv_win_data *data ) |
| { |
| Window group_leader; |
| Atom window_type; |
| MwmHints mwm_hints; |
| DWORD style = GetWindowLongW( data->hwnd, GWL_STYLE ); |
| DWORD ex_style = GetWindowLongW( data->hwnd, GWL_EXSTYLE ); |
| HWND owner = GetWindow( data->hwnd, GW_OWNER ); |
| |
| if (data->hwnd == GetDesktopWindow()) |
| { |
| if (data->whole_window == DefaultRootWindow(display)) return; |
| /* force some styles for the desktop to get the correct decorations */ |
| style |= WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX; |
| owner = 0; |
| } |
| |
| /* transient for hint */ |
| if (owner) |
| { |
| Window owner_win = X11DRV_get_whole_window( owner ); |
| wine_tsx11_lock(); |
| XSetTransientForHint( display, data->whole_window, owner_win ); |
| wine_tsx11_unlock(); |
| group_leader = owner_win; |
| } |
| else group_leader = data->whole_window; |
| |
| wine_tsx11_lock(); |
| |
| /* size hints */ |
| set_size_hints( display, data, style ); |
| |
| /* set the WM_WINDOW_TYPE */ |
| window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_NORMAL); |
| if (ex_style & WS_EX_TOOLWINDOW) window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_UTILITY); |
| else if (style & WS_THICKFRAME) window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_NORMAL); |
| else if (style & WS_DLGFRAME) window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_DIALOG); |
| else if (ex_style & WS_EX_DLGMODALFRAME) window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_DIALOG); |
| |
| XChangeProperty(display, data->whole_window, x11drv_atom(_NET_WM_WINDOW_TYPE), |
| XA_ATOM, 32, PropModeReplace, (unsigned char*)&window_type, 1); |
| |
| mwm_hints.flags = MWM_HINTS_FUNCTIONS | MWM_HINTS_DECORATIONS; |
| mwm_hints.decorations = get_mwm_decorations( style, ex_style ); |
| mwm_hints.functions = MWM_FUNC_MOVE; |
| if (style & WS_THICKFRAME) mwm_hints.functions |= MWM_FUNC_RESIZE; |
| if (style & WS_MINIMIZEBOX) mwm_hints.functions |= MWM_FUNC_MINIMIZE; |
| if (style & WS_MAXIMIZEBOX) mwm_hints.functions |= MWM_FUNC_MAXIMIZE; |
| if (style & WS_SYSMENU) mwm_hints.functions |= MWM_FUNC_CLOSE; |
| |
| XChangeProperty( display, data->whole_window, x11drv_atom(_MOTIF_WM_HINTS), |
| x11drv_atom(_MOTIF_WM_HINTS), 32, PropModeReplace, |
| (unsigned char*)&mwm_hints, sizeof(mwm_hints)/sizeof(long) ); |
| |
| /* wm hints */ |
| if (data->wm_hints) |
| { |
| data->wm_hints->flags |= InputHint | StateHint | WindowGroupHint; |
| data->wm_hints->input = !(style & WS_DISABLED); |
| data->wm_hints->initial_state = (style & WS_MINIMIZE) ? IconicState : NormalState; |
| data->wm_hints->window_group = group_leader; |
| XSetWMHints( display, data->whole_window, data->wm_hints ); |
| } |
| |
| wine_tsx11_unlock(); |
| } |
| |
| |
| /*********************************************************************** |
| * X11DRV_set_iconic_state |
| * |
| * Set the X11 iconic state according to the window style. |
| */ |
| void X11DRV_set_iconic_state( HWND hwnd ) |
| { |
| Display *display = thread_display(); |
| struct x11drv_win_data *data; |
| RECT rect; |
| DWORD style = GetWindowLongW( hwnd, GWL_STYLE ); |
| BOOL iconic = (style & WS_MINIMIZE) != 0; |
| |
| if (!(data = X11DRV_get_win_data( hwnd ))) return; |
| if (!data->whole_window || data->whole_window == DefaultRootWindow(display)) return; |
| |
| GetWindowRect( hwnd, &rect ); |
| |
| wine_tsx11_lock(); |
| |
| if (data->wm_hints) |
| { |
| data->wm_hints->flags |= StateHint | IconPositionHint; |
| data->wm_hints->initial_state = iconic ? IconicState : NormalState; |
| data->wm_hints->icon_x = rect.left - virtual_screen_rect.left; |
| data->wm_hints->icon_y = rect.top - virtual_screen_rect.top; |
| XSetWMHints( display, data->whole_window, data->wm_hints ); |
| } |
| |
| if (style & WS_VISIBLE) |
| { |
| if (iconic) |
| XIconifyWindow( display, data->whole_window, DefaultScreen(display) ); |
| else |
| if (X11DRV_is_window_rect_mapped( &rect )) |
| XMapWindow( display, data->whole_window ); |
| } |
| |
| wine_tsx11_unlock(); |
| } |
| |
| |
| /*********************************************************************** |
| * X11DRV_window_to_X_rect |
| * |
| * Convert a rect from client to X window coordinates |
| */ |
| void X11DRV_window_to_X_rect( struct x11drv_win_data *data, RECT *rect ) |
| { |
| RECT rc; |
| |
| if (!data->managed) return; |
| if (IsRectEmpty( rect )) return; |
| |
| get_x11_rect_offset( data, &rc ); |
| |
| rect->left -= rc.left; |
| rect->right -= rc.right; |
| rect->top -= rc.top; |
| rect->bottom -= rc.bottom; |
| if (rect->top >= rect->bottom) rect->bottom = rect->top + 1; |
| if (rect->left >= rect->right) rect->right = rect->left + 1; |
| } |
| |
| |
| /*********************************************************************** |
| * X11DRV_X_to_window_rect |
| * |
| * Opposite of X11DRV_window_to_X_rect |
| */ |
| void X11DRV_X_to_window_rect( struct x11drv_win_data *data, RECT *rect ) |
| { |
| RECT rc; |
| |
| if (!data->managed) return; |
| if (IsRectEmpty( rect )) return; |
| |
| get_x11_rect_offset( data, &rc ); |
| |
| rect->left += rc.left; |
| rect->right += rc.right; |
| rect->top += rc.top; |
| rect->bottom += rc.bottom; |
| if (rect->top >= rect->bottom) rect->bottom = rect->top + 1; |
| if (rect->left >= rect->right) rect->right = rect->left + 1; |
| } |
| |
| |
| /*********************************************************************** |
| * X11DRV_sync_window_position |
| * |
| * Synchronize the X window position with the Windows one |
| */ |
| void X11DRV_sync_window_position( Display *display, struct x11drv_win_data *data, |
| UINT swp_flags, const RECT *new_client_rect, |
| const RECT *new_whole_rect ) |
| { |
| XWindowChanges changes; |
| int mask; |
| RECT old_whole_rect; |
| RECT old_client_rect; |
| |
| old_whole_rect = data->whole_rect; |
| data->whole_rect = *new_whole_rect; |
| |
| old_client_rect = data->client_rect; |
| data->client_rect = *new_client_rect; |
| OffsetRect( &data->client_rect, -data->whole_rect.left, -data->whole_rect.top ); |
| |
| if (data->gl_drawable) |
| update_gl_drawable(display, data, &old_client_rect); |
| |
| if (!data->whole_window || data->lock_changes) return; |
| |
| mask = get_window_changes( &changes, &old_whole_rect, &data->whole_rect ); |
| |
| if (!(swp_flags & SWP_NOZORDER)) |
| { |
| /* find window that this one must be after */ |
| HWND prev = GetWindow( data->hwnd, GW_HWNDPREV ); |
| while (prev && !(GetWindowLongW( prev, GWL_STYLE ) & WS_VISIBLE)) |
| prev = GetWindow( prev, GW_HWNDPREV ); |
| if (!prev) /* top child */ |
| { |
| changes.stack_mode = Above; |
| mask |= CWStackMode; |
| } |
| else |
| { |
| /* should use stack_mode Below but most window managers don't get it right */ |
| /* so move it above the next one in Z order */ |
| HWND next = GetWindow( data->hwnd, GW_HWNDNEXT ); |
| while (next && !(GetWindowLongW( next, GWL_STYLE ) & WS_VISIBLE)) |
| next = GetWindow( next, GW_HWNDNEXT ); |
| if (next) |
| { |
| changes.stack_mode = Above; |
| changes.sibling = X11DRV_get_whole_window(next); |
| mask |= CWStackMode | CWSibling; |
| } |
| } |
| } |
| |
| /* only the size is allowed to change for the desktop window */ |
| if (data->whole_window == root_window) mask &= CWWidth | CWHeight; |
| |
| if (mask) |
| { |
| DWORD style = GetWindowLongW( data->hwnd, GWL_STYLE ); |
| |
| TRACE( "setting win %lx pos %d,%d,%dx%d after %lx changes=%x\n", |
| data->whole_window, data->whole_rect.left, data->whole_rect.top, |
| data->whole_rect.right - data->whole_rect.left, |
| data->whole_rect.bottom - data->whole_rect.top, changes.sibling, mask ); |
| |
| wine_tsx11_lock(); |
| if (mask & (CWWidth|CWHeight)) set_size_hints( display, data, style ); |
| if (mask & CWX) changes.x -= virtual_screen_rect.left; |
| if (mask & CWY) changes.y -= virtual_screen_rect.top; |
| XReconfigureWMWindow( display, data->whole_window, |
| DefaultScreen(display), mask, &changes ); |
| wine_tsx11_unlock(); |
| } |
| } |
| |
| |
| /********************************************************************** |
| * create_whole_window |
| * |
| * Create the whole X window for a given window |
| */ |
| static Window create_whole_window( Display *display, struct x11drv_win_data *data, DWORD style ) |
| { |
| int cx, cy, mask; |
| XSetWindowAttributes attr; |
| XIM xim; |
| |
| if (!(cx = data->window_rect.right - data->window_rect.left)) cx = 1; |
| if (!(cy = data->window_rect.bottom - data->window_rect.top)) cy = 1; |
| |
| mask = get_window_attributes( display, data, &attr ); |
| |
| wine_tsx11_lock(); |
| |
| data->whole_rect = data->window_rect; |
| data->whole_window = XCreateWindow( display, root_window, |
| data->window_rect.left - virtual_screen_rect.left, |
| data->window_rect.top - virtual_screen_rect.top, |
| cx, cy, 0, screen_depth, InputOutput, |
| visual, mask, &attr ); |
| |
| if (!data->whole_window) |
| { |
| wine_tsx11_unlock(); |
| return 0; |
| } |
| XSaveContext( display, data->whole_window, winContext, (char *)data->hwnd ); |
| |
| /* non-maximized child must be at bottom of Z order */ |
| if ((style & (WS_CHILD|WS_MAXIMIZE)) == WS_CHILD) |
| { |
| XWindowChanges changes; |
| changes.stack_mode = Below; |
| XConfigureWindow( display, data->whole_window, CWStackMode, &changes ); |
| } |
| wine_tsx11_unlock(); |
| |
| xim = x11drv_thread_data()->xim; |
| if (xim) data->xic = X11DRV_CreateIC( xim, display, data->whole_window ); |
| |
| set_initial_wm_hints( display, data ); |
| X11DRV_set_wm_hints( display, data ); |
| |
| SetPropA( data->hwnd, whole_window_prop, (HANDLE)data->whole_window ); |
| return data->whole_window; |
| } |
| |
| |
| /********************************************************************** |
| * destroy_whole_window |
| * |
| * Destroy the whole X window for a given window. |
| */ |
| static void destroy_whole_window( Display *display, struct x11drv_win_data *data ) |
| { |
| struct x11drv_thread_data *thread_data = x11drv_thread_data(); |
| |
| if (!data->whole_window) return; |
| |
| TRACE( "win %p xwin %lx\n", data->hwnd, data->whole_window ); |
| if (thread_data->cursor_window == data->whole_window) thread_data->cursor_window = None; |
| wine_tsx11_lock(); |
| XDeleteContext( display, data->whole_window, winContext ); |
| if (data->whole_window != DefaultRootWindow(display)) |
| XDestroyWindow( display, data->whole_window ); |
| data->whole_window = 0; |
| if (data->xic) |
| { |
| XUnsetICFocus( data->xic ); |
| XDestroyIC( data->xic ); |
| } |
| /* Outlook stops processing messages after destroying a dialog, so we need an explicit flush */ |
| XFlush( display ); |
| wine_tsx11_unlock(); |
| RemovePropA( data->hwnd, whole_window_prop ); |
| } |
| |
| |
| /***************************************************************** |
| * SetWindowText (X11DRV.@) |
| */ |
| void X11DRV_SetWindowText( HWND hwnd, LPCWSTR text ) |
| { |
| Display *display = thread_display(); |
| UINT count; |
| char *buffer; |
| char *utf8_buffer; |
| Window win; |
| XTextProperty prop; |
| |
| if ((win = X11DRV_get_whole_window( hwnd )) && win != DefaultRootWindow(display)) |
| { |
| /* allocate new buffer for window text */ |
| count = WideCharToMultiByte(CP_UNIXCP, 0, text, -1, NULL, 0, NULL, NULL); |
| if (!(buffer = HeapAlloc( GetProcessHeap(), 0, count ))) |
| { |
| ERR("Not enough memory for window text\n"); |
| return; |
| } |
| WideCharToMultiByte(CP_UNIXCP, 0, text, -1, buffer, count, NULL, NULL); |
| |
| count = WideCharToMultiByte(CP_UTF8, 0, text, strlenW(text), NULL, 0, NULL, NULL); |
| if (!(utf8_buffer = HeapAlloc( GetProcessHeap(), 0, count ))) |
| { |
| ERR("Not enough memory for window text in UTF-8\n"); |
| HeapFree( GetProcessHeap(), 0, buffer ); |
| return; |
| } |
| WideCharToMultiByte(CP_UTF8, 0, text, strlenW(text), utf8_buffer, count, NULL, NULL); |
| |
| wine_tsx11_lock(); |
| if (XmbTextListToTextProperty( display, &buffer, 1, XStdICCTextStyle, &prop ) == Success) |
| { |
| XSetWMName( display, win, &prop ); |
| XSetWMIconName( display, win, &prop ); |
| XFree( prop.value ); |
| } |
| /* |
| Implements a NET_WM UTF-8 title. It should be without a trailing \0, |
| according to the standard |
| ( http://www.pps.jussieu.fr/~jch/software/UTF8_STRING/UTF8_STRING.text ). |
| */ |
| XChangeProperty( display, win, x11drv_atom(_NET_WM_NAME), x11drv_atom(UTF8_STRING), |
| 8, PropModeReplace, (unsigned char *) utf8_buffer, count); |
| wine_tsx11_unlock(); |
| |
| HeapFree( GetProcessHeap(), 0, utf8_buffer ); |
| HeapFree( GetProcessHeap(), 0, buffer ); |
| } |
| } |
| |
| |
| /*********************************************************************** |
| * DestroyWindow (X11DRV.@) |
| */ |
| void X11DRV_DestroyWindow( HWND hwnd ) |
| { |
| struct x11drv_thread_data *thread_data = x11drv_thread_data(); |
| Display *display = thread_data->display; |
| struct x11drv_win_data *data; |
| |
| if (!(data = X11DRV_get_win_data( hwnd ))) return; |
| |
| if (data->pixmap) |
| { |
| destroy_glxpixmap(display, data->gl_drawable); |
| wine_tsx11_lock(); |
| XFreePixmap(display, data->pixmap); |
| wine_tsx11_unlock(); |
| } |
| else if (data->gl_drawable) |
| { |
| wine_tsx11_lock(); |
| XDestroyWindow(display, data->gl_drawable); |
| wine_tsx11_unlock(); |
| } |
| |
| free_window_dce( data ); |
| destroy_whole_window( display, data ); |
| destroy_icon_window( display, data ); |
| |
| if (thread_data->last_focus == hwnd) thread_data->last_focus = 0; |
| if (data->hWMIconBitmap) DeleteObject( data->hWMIconBitmap ); |
| if (data->hWMIconMask) DeleteObject( data->hWMIconMask); |
| wine_tsx11_lock(); |
| XDeleteContext( display, (XID)hwnd, win_data_context ); |
| XFree( data->wm_hints ); |
| wine_tsx11_unlock(); |
| HeapFree( GetProcessHeap(), 0, data ); |
| } |
| |
| |
| static struct x11drv_win_data *alloc_win_data( Display *display, HWND hwnd ) |
| { |
| struct x11drv_win_data *data; |
| |
| if ((data = HeapAlloc(GetProcessHeap(), 0, sizeof(*data)))) |
| { |
| data->hwnd = hwnd; |
| data->whole_window = 0; |
| data->icon_window = 0; |
| data->fbconfig_id = 0; |
| data->gl_drawable = 0; |
| data->pixmap = 0; |
| data->xic = 0; |
| data->managed = FALSE; |
| data->wm_state = 0; |
| data->dce = NULL; |
| data->lock_changes = 0; |
| data->hWMIconBitmap = 0; |
| data->hWMIconMask = 0; |
| |
| wine_tsx11_lock(); |
| if (!winContext) winContext = XUniqueContext(); |
| if (!win_data_context) win_data_context = XUniqueContext(); |
| XSaveContext( display, (XID)hwnd, win_data_context, (char *)data ); |
| data->wm_hints = XAllocWMHints(); |
| wine_tsx11_unlock(); |
| } |
| return data; |
| } |
| |
| |
| /* initialize the desktop window id in the desktop manager process */ |
| static void get_desktop_xwin( Display *display, struct x11drv_win_data *data ) |
| { |
| data->whole_window = root_window; |
| if (root_window != DefaultRootWindow( display )) |
| { |
| VisualID visualid; |
| |
| wine_tsx11_lock(); |
| visualid = XVisualIDFromVisual(visual); |
| wine_tsx11_unlock(); |
| data->managed = TRUE; |
| SetPropA( data->hwnd, managed_prop, (HANDLE)1 ); |
| SetPropA( data->hwnd, whole_window_prop, (HANDLE)root_window ); |
| SetPropA( data->hwnd, visual_id_prop, (HANDLE)visualid ); |
| set_initial_wm_hints( display, data ); |
| } |
| SetWindowPos( data->hwnd, 0, virtual_screen_rect.left, virtual_screen_rect.top, |
| virtual_screen_rect.right - virtual_screen_rect.left, |
| virtual_screen_rect.bottom - virtual_screen_rect.top, |
| SWP_NOZORDER | SWP_NOACTIVATE ); |
| } |
| |
| /********************************************************************** |
| * CreateDesktopWindow (X11DRV.@) |
| */ |
| BOOL X11DRV_CreateDesktopWindow( HWND hwnd ) |
| { |
| unsigned int width, height; |
| |
| /* retrieve the real size of the desktop */ |
| SERVER_START_REQ( get_window_rectangles ) |
| { |
| req->handle = hwnd; |
| wine_server_call( req ); |
| width = reply->window.right - reply->window.left; |
| height = reply->window.bottom - reply->window.top; |
| } |
| SERVER_END_REQ; |
| |
| if (!width && !height) /* not initialized yet */ |
| { |
| SERVER_START_REQ( set_window_pos ) |
| { |
| req->handle = hwnd; |
| req->previous = 0; |
| req->flags = SWP_NOZORDER; |
| req->window.left = virtual_screen_rect.left; |
| req->window.top = virtual_screen_rect.top; |
| req->window.right = virtual_screen_rect.right; |
| req->window.bottom = virtual_screen_rect.bottom; |
| req->client = req->window; |
| wine_server_call( req ); |
| } |
| SERVER_END_REQ; |
| } |
| else |
| { |
| Window win = (Window)GetPropA( hwnd, whole_window_prop ); |
| if (win && win != root_window) X11DRV_init_desktop( win, width, height ); |
| } |
| return TRUE; |
| } |
| |
| |
| /********************************************************************** |
| * CreateWindow (X11DRV.@) |
| */ |
| BOOL X11DRV_CreateWindow( HWND hwnd, CREATESTRUCTA *cs, BOOL unicode ) |
| { |
| Display *display = thread_display(); |
| WND *wndPtr; |
| struct x11drv_win_data *data; |
| HWND insert_after; |
| RECT rect; |
| DWORD style; |
| CBT_CREATEWNDA cbtc; |
| CREATESTRUCTA cbcs; |
| BOOL ret = FALSE; |
| |
| if (!(data = alloc_win_data( display, hwnd ))) return FALSE; |
| |
| if (cs->cx > 65535) |
| { |
| ERR( "invalid window width %d\n", cs->cx ); |
| cs->cx = 65535; |
| } |
| if (cs->cy > 65535) |
| { |
| ERR( "invalid window height %d\n", cs->cy ); |
| cs->cy = 65535; |
| } |
| if (cs->cx < 0) |
| { |
| ERR( "invalid window width %d\n", cs->cx ); |
| cs->cx = 0; |
| } |
| if (cs->cy < 0) |
| { |
| ERR( "invalid window height %d\n", cs->cy ); |
| cs->cy = 0; |
| } |
| |
| if (hwnd == GetDesktopWindow()) get_desktop_xwin( display, data ); |
| else |
| { |
| /* initialize the dimensions before sending WM_GETMINMAXINFO */ |
| SetRect( &rect, cs->x, cs->y, cs->x + cs->cx, cs->y + cs->cy ); |
| X11DRV_SetWindowPos( hwnd, 0, &rect, &rect, SWP_NOZORDER | SWP_NOACTIVATE, NULL ); |
| |
| /* create an X window if it's a top level window */ |
| if (GetAncestor( hwnd, GA_PARENT ) == GetDesktopWindow()) |
| { |
| if (!create_whole_window( display, data, cs->style )) goto failed; |
| } |
| } |
| |
| /* get class or window DC if needed */ |
| alloc_window_dce( data ); |
| |
| /* Call the WH_CBT hook */ |
| |
| /* the window style passed to the hook must be the real window style, |
| * rather than just the window style that the caller to CreateWindowEx |
| * passed in, so we have to copy the original CREATESTRUCT and get the |
| * the real style. */ |
| cbcs = *cs; |
| cbcs.style = GetWindowLongW(hwnd, GWL_STYLE); |
| |
| cbtc.lpcs = &cbcs; |
| cbtc.hwndInsertAfter = HWND_TOP; |
| if (HOOK_CallHooks( WH_CBT, HCBT_CREATEWND, (WPARAM)hwnd, (LPARAM)&cbtc, unicode )) |
| { |
| TRACE("CBT-hook returned !0\n"); |
| goto failed; |
| } |
| |
| /* Send the WM_GETMINMAXINFO message and fix the size if needed */ |
| if ((cs->style & WS_THICKFRAME) || !(cs->style & (WS_POPUP | WS_CHILD))) |
| { |
| POINT maxSize, maxPos, minTrack, maxTrack; |
| |
| WINPOS_GetMinMaxInfo( hwnd, &maxSize, &maxPos, &minTrack, &maxTrack); |
| if (maxTrack.x < cs->cx) cs->cx = maxTrack.x; |
| if (maxTrack.y < cs->cy) cs->cy = maxTrack.y; |
| if (cs->cx < 0) cs->cx = 0; |
| if (cs->cy < 0) cs->cy = 0; |
| |
| SetRect( &rect, cs->x, cs->y, cs->x + cs->cx, cs->y + cs->cy ); |
| if (!X11DRV_SetWindowPos( hwnd, 0, &rect, &rect, SWP_NOZORDER | SWP_NOACTIVATE, NULL )) |
| return FALSE; |
| } |
| |
| /* send WM_NCCREATE */ |
| TRACE( "hwnd %p cs %d,%d %dx%d\n", hwnd, cs->x, cs->y, cs->cx, cs->cy ); |
| if (unicode) |
| ret = SendMessageW( hwnd, WM_NCCREATE, 0, (LPARAM)cs ); |
| else |
| ret = SendMessageA( hwnd, WM_NCCREATE, 0, (LPARAM)cs ); |
| if (!ret) |
| { |
| WARN("aborted by WM_xxCREATE!\n"); |
| return FALSE; |
| } |
| |
| /* make sure the window is still valid */ |
| if (!(data = X11DRV_get_win_data( hwnd ))) return FALSE; |
| if (data->whole_window) X11DRV_sync_window_style( display, data ); |
| |
| /* send WM_NCCALCSIZE */ |
| rect = data->window_rect; |
| SendMessageW( hwnd, WM_NCCALCSIZE, FALSE, (LPARAM)&rect ); |
| |
| if (!(wndPtr = WIN_GetPtr(hwnd))) return FALSE; |
| |
| /* yes, even if the CBT hook was called with HWND_TOP */ |
| insert_after = (wndPtr->dwStyle & WS_CHILD) ? HWND_BOTTOM : HWND_TOP; |
| |
| X11DRV_SetWindowPos( hwnd, insert_after, &wndPtr->rectWindow, &rect, SWP_NOACTIVATE, NULL ); |
| |
| TRACE( "win %p window %d,%d,%d,%d client %d,%d,%d,%d whole %d,%d,%d,%d X client %d,%d,%d,%d xwin %x\n", |
| hwnd, wndPtr->rectWindow.left, wndPtr->rectWindow.top, |
| wndPtr->rectWindow.right, wndPtr->rectWindow.bottom, |
| wndPtr->rectClient.left, wndPtr->rectClient.top, |
| wndPtr->rectClient.right, wndPtr->rectClient.bottom, |
| data->whole_rect.left, data->whole_rect.top, |
| data->whole_rect.right, data->whole_rect.bottom, |
| data->client_rect.left, data->client_rect.top, |
| data->client_rect.right, data->client_rect.bottom, |
| (unsigned int)data->whole_window ); |
| |
| WIN_ReleasePtr( wndPtr ); |
| |
| if (unicode) |
| ret = (SendMessageW( hwnd, WM_CREATE, 0, (LPARAM)cs ) != -1); |
| else |
| ret = (SendMessageA( hwnd, WM_CREATE, 0, (LPARAM)cs ) != -1); |
| |
| if (!ret) return FALSE; |
| |
| NotifyWinEvent(EVENT_OBJECT_CREATE, hwnd, OBJID_WINDOW, 0); |
| |
| /* Send the size messages */ |
| |
| if (!(wndPtr = WIN_GetPtr(hwnd)) || wndPtr == WND_OTHER_PROCESS) return FALSE; |
| if (!(wndPtr->flags & WIN_NEED_SIZE)) |
| { |
| RECT rect = wndPtr->rectClient; |
| WIN_ReleasePtr( wndPtr ); |
| /* send it anyway */ |
| if (((rect.right-rect.left) <0) ||((rect.bottom-rect.top)<0)) |
| WARN("sending bogus WM_SIZE message 0x%08x\n", |
| MAKELONG(rect.right-rect.left, rect.bottom-rect.top)); |
| SendMessageW( hwnd, WM_SIZE, SIZE_RESTORED, |
| MAKELONG(rect.right-rect.left, rect.bottom-rect.top)); |
| SendMessageW( hwnd, WM_MOVE, 0, MAKELONG( rect.left, rect.top ) ); |
| } |
| else WIN_ReleasePtr( wndPtr ); |
| |
| /* Show the window, maximizing or minimizing if needed */ |
| |
| style = GetWindowLongW( hwnd, GWL_STYLE ); |
| if (style & (WS_MINIMIZE | WS_MAXIMIZE)) |
| { |
| extern UINT WINPOS_MinMaximize( HWND hwnd, UINT cmd, LPRECT rect ); /*FIXME*/ |
| |
| RECT newPos; |
| UINT swFlag = (style & WS_MINIMIZE) ? SW_MINIMIZE : SW_MAXIMIZE; |
| WIN_SetStyle( hwnd, 0, WS_MAXIMIZE | WS_MINIMIZE ); |
| swFlag = WINPOS_MinMaximize( hwnd, swFlag, &newPos ); |
| |
| swFlag |= SWP_FRAMECHANGED; /* Frame always gets changed */ |
| if (!(style & WS_VISIBLE) || (style & WS_CHILD) || GetActiveWindow()) swFlag |= SWP_NOACTIVATE; |
| |
| SetWindowPos( hwnd, 0, newPos.left, newPos.top, |
| newPos.right, newPos.bottom, swFlag ); |
| } |
| |
| /* Dock system tray windows. */ |
| /* Dock after the window is created so we don't have problems calling |
| * SetWindowPos. */ |
| if (GetWindowLongW( hwnd, GWL_EXSTYLE ) & WS_EX_TRAYWINDOW) |
| systray_dock_window( display, data ); |
| |
| return TRUE; |
| |
| failed: |
| X11DRV_DestroyWindow( hwnd ); |
| return FALSE; |
| } |
| |
| |
| /*********************************************************************** |
| * X11DRV_get_win_data |
| * |
| * Return the X11 data structure associated with a window. |
| */ |
| struct x11drv_win_data *X11DRV_get_win_data( HWND hwnd ) |
| { |
| char *data; |
| |
| if (!hwnd || XFindContext( thread_display(), (XID)hwnd, win_data_context, &data )) data = NULL; |
| return (struct x11drv_win_data *)data; |
| } |
| |
| |
| /*********************************************************************** |
| * X11DRV_get_whole_window |
| * |
| * Return the X window associated with the full area of a window |
| */ |
| Window X11DRV_get_whole_window( HWND hwnd ) |
| { |
| struct x11drv_win_data *data = X11DRV_get_win_data( hwnd ); |
| |
| if (!data) |
| { |
| if (hwnd == GetDesktopWindow()) return root_window; |
| return (Window)GetPropA( hwnd, whole_window_prop ); |
| } |
| return data->whole_window; |
| } |
| |
| |
| /*********************************************************************** |
| * X11DRV_get_fbconfig_id |
| * |
| * Return the GLXFBConfig ID of the drawable used by the window for |
| * OpenGL rendering. This is 0 for windows without a pixel format set. |
| */ |
| XID X11DRV_get_fbconfig_id( HWND hwnd ) |
| { |
| struct x11drv_win_data *data = X11DRV_get_win_data( hwnd ); |
| |
| if (!data) return (XID)GetPropA( hwnd, fbconfig_id_prop ); |
| return data->fbconfig_id; |
| } |
| |
| /*********************************************************************** |
| * X11DRV_get_gl_drawable |
| * |
| * Return the GL drawable for this window. |
| */ |
| Drawable X11DRV_get_gl_drawable( HWND hwnd ) |
| { |
| struct x11drv_win_data *data = X11DRV_get_win_data( hwnd ); |
| |
| if (!data) return (Drawable)GetPropA( hwnd, gl_drawable_prop ); |
| return data->gl_drawable; |
| } |
| |
| /*********************************************************************** |
| * X11DRV_get_gl_pixmap |
| * |
| * Return the Pixmap associated with the GL drawable (if any) for this window. |
| */ |
| Pixmap X11DRV_get_gl_pixmap( HWND hwnd ) |
| { |
| struct x11drv_win_data *data = X11DRV_get_win_data( hwnd ); |
| |
| if (!data) return (Pixmap)GetPropA( hwnd, pixmap_prop ); |
| return data->pixmap; |
| } |
| |
| |
| /*********************************************************************** |
| * X11DRV_get_ic |
| * |
| * Return the X input context associated with a window |
| */ |
| XIC X11DRV_get_ic( HWND hwnd ) |
| { |
| struct x11drv_win_data *data = X11DRV_get_win_data( hwnd ); |
| |
| if (!data) return 0; |
| return data->xic; |
| } |
| |
| |
| /***************************************************************** |
| * SetParent (X11DRV.@) |
| */ |
| void X11DRV_SetParent( HWND hwnd, HWND parent, HWND old_parent ) |
| { |
| Display *display = thread_display(); |
| struct x11drv_win_data *data = X11DRV_get_win_data( hwnd ); |
| |
| if (!data) return; |
| if (parent == old_parent) return; |
| |
| if (parent != GetDesktopWindow()) /* a child window */ |
| { |
| if (old_parent == GetDesktopWindow()) |
| { |
| /* destroy the old X windows */ |
| destroy_whole_window( display, data ); |
| destroy_icon_window( display, data ); |
| if (data->managed) |
| { |
| data->managed = FALSE; |
| RemovePropA( data->hwnd, managed_prop ); |
| } |
| } |
| } |
| else /* new top level window */ |
| { |
| /* FIXME: we ignore errors since we can't really recover anyway */ |
| create_whole_window( display, data, GetWindowLongW( hwnd, GWL_STYLE ) ); |
| } |
| } |
| |
| |
| /***************************************************************** |
| * SetFocus (X11DRV.@) |
| * |
| * Set the X focus. |
| * Explicit colormap management seems to work only with OLVWM. |
| */ |
| void X11DRV_SetFocus( HWND hwnd ) |
| { |
| Display *display = thread_display(); |
| struct x11drv_win_data *data; |
| XWindowAttributes win_attr; |
| |
| /* Only mess with the X focus if there's */ |
| /* no desktop window and if the window is not managed by the WM. */ |
| if (root_window != DefaultRootWindow(display)) return; |
| |
| if (!hwnd) /* If setting the focus to 0, uninstall the colormap */ |
| { |
| wine_tsx11_lock(); |
| if (X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_PRIVATE) |
| XUninstallColormap( display, X11DRV_PALETTE_PaletteXColormap ); |
| wine_tsx11_unlock(); |
| return; |
| } |
| |
| hwnd = GetAncestor( hwnd, GA_ROOT ); |
| |
| if (!(data = X11DRV_get_win_data( hwnd ))) return; |
| if (data->managed || !data->whole_window) return; |
| |
| /* Set X focus and install colormap */ |
| wine_tsx11_lock(); |
| if (XGetWindowAttributes( display, data->whole_window, &win_attr ) && |
| (win_attr.map_state == IsViewable)) |
| { |
| /* If window is not viewable, don't change anything */ |
| |
| /* we must not use CurrentTime (ICCCM), so try to use last message time instead */ |
| /* FIXME: this is not entirely correct */ |
| XSetInputFocus( display, data->whole_window, RevertToParent, |
| /* CurrentTime */ |
| GetMessageTime() - EVENT_x11_time_to_win32_time(0)); |
| if (X11DRV_PALETTE_PaletteFlags & X11DRV_PALETTE_PRIVATE) |
| XInstallColormap( display, X11DRV_PALETTE_PaletteXColormap ); |
| } |
| wine_tsx11_unlock(); |
| } |
| |
| |
| /********************************************************************** |
| * SetWindowIcon (X11DRV.@) |
| * |
| * hIcon or hIconSm has changed (or is being initialised for the |
| * first time). Complete the X11 driver-specific initialisation |
| * and set the window hints. |
| * |
| * This is not entirely correct, may need to create |
| * an icon window and set the pixmap as a background |
| */ |
| void X11DRV_SetWindowIcon( HWND hwnd, UINT type, HICON icon ) |
| { |
| Display *display = thread_display(); |
| struct x11drv_win_data *data; |
| |
| if (type != ICON_BIG) return; /* nothing to do here */ |
| |
| if (!(data = X11DRV_get_win_data( hwnd ))) return; |
| if (!data->whole_window) return; |
| if (!data->managed) return; |
| |
| if (data->wm_hints) |
| { |
| set_icon_hints( display, data, icon ); |
| wine_tsx11_lock(); |
| XSetWMHints( display, data->whole_window, data->wm_hints ); |
| wine_tsx11_unlock(); |
| } |
| } |