2006-11-26 11:13:41 -07:00
|
|
|
/*
|
|
|
|
*Copyright (C) 1994-2000 The XFree86 Project, Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
*Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
*"Software"), to deal in the Software without restriction, including
|
|
|
|
*without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
*distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
*permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
*the following conditions:
|
|
|
|
*
|
|
|
|
*The above copyright notice and this permission notice shall be
|
|
|
|
*included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
*THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
*EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
*MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
*NONINFRINGEMENT. IN NO EVENT SHALL THE XFREE86 PROJECT BE LIABLE FOR
|
|
|
|
*ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
|
|
*CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
*WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*Except as contained in this notice, the name of the XFree86 Project
|
|
|
|
*shall not be used in advertising or otherwise to promote the sale, use
|
|
|
|
*or other dealings in this Software without prior written authorization
|
|
|
|
*from the XFree86 Project.
|
|
|
|
*
|
|
|
|
* Authors: Kensuke Matsuzaki
|
|
|
|
* Earle F. Philhower, III
|
|
|
|
* Harold L Hunt II
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Look at hw/darwin/quartz/xpr/xprFrame.c and hw/darwin/quartz/cr/crFrame.c
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_XWIN_CONFIG_H
|
|
|
|
#include <xwin-config.h>
|
|
|
|
#endif
|
|
|
|
#include "win.h"
|
|
|
|
#include <winuser.h>
|
|
|
|
#define _WINDOWSWM_SERVER_
|
2010-07-27 13:02:24 -06:00
|
|
|
#include <X11/extensions/windowswmstr.h>
|
2006-11-26 11:13:41 -07:00
|
|
|
#include "dixevents.h"
|
|
|
|
#include "winmultiwindowclass.h"
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Constant defines
|
|
|
|
*/
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
#ifndef ULW_COLORKEY
|
2006-11-26 11:13:41 -07:00
|
|
|
#define ULW_COLORKEY 0x00000001
|
2010-07-27 13:02:24 -06:00
|
|
|
#endif
|
|
|
|
#ifndef ULW_ALPHA
|
2006-11-26 11:13:41 -07:00
|
|
|
#define ULW_ALPHA 0x00000002
|
2010-07-27 13:02:24 -06:00
|
|
|
#endif
|
|
|
|
#ifndef ULW_OPAQUE
|
2006-11-26 11:13:41 -07:00
|
|
|
#define ULW_OPAQUE 0x00000004
|
2010-07-27 13:02:24 -06:00
|
|
|
#endif
|
2006-11-26 11:13:41 -07:00
|
|
|
#define AC_SRC_ALPHA 0x01
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local function
|
|
|
|
*/
|
|
|
|
|
|
|
|
DEFINE_ATOM_HELPER(AtmWindowsWmNativeHwnd, WINDOWSWM_NATIVE_HWND)
|
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMSetNativeProperty(RootlessWindowPtr pFrame);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Global variables
|
|
|
|
*/
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
Bool g_fNoConfigureWindow = FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Internal function to get the DIB format that is compatible with the screen
|
|
|
|
* Fixme: Share code with winshadgdi.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
static
|
|
|
|
Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMQueryDIBFormat(win32RootlessWindowPtr pRLWinPriv,
|
|
|
|
BITMAPINFOHEADER * pbmih)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
HBITMAP hbmp;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
LPDWORD pdw = NULL;
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
/* Create a memory bitmap compatible with the screen */
|
|
|
|
hbmp = CreateCompatibleBitmap(pRLWinPriv->hdcScreen, 1, 1);
|
|
|
|
if (hbmp == NULL) {
|
|
|
|
ErrorF("winMWExtWMQueryDIBFormat - CreateCompatibleBitmap failed\n");
|
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
/* Initialize our bitmap info header */
|
|
|
|
ZeroMemory(pbmih, sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
|
|
|
|
pbmih->biSize = sizeof(BITMAPINFOHEADER);
|
|
|
|
|
|
|
|
/* Get the biBitCount */
|
|
|
|
if (!GetDIBits(pRLWinPriv->hdcScreen,
|
|
|
|
hbmp, 0, 1, NULL, (BITMAPINFO *) pbmih, DIB_RGB_COLORS)) {
|
|
|
|
ErrorF("winMWExtWMQueryDIBFormat - First call to GetDIBits failed\n");
|
|
|
|
DeleteObject(hbmp);
|
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Get a pointer to bitfields */
|
|
|
|
pdw = (DWORD *) ((CARD8 *) pbmih + sizeof(BITMAPINFOHEADER));
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winMWExtWMQueryDIBFormat - First call masks: %08x %08x %08x\n",
|
|
|
|
(unsigned int) pdw[0], (unsigned int) pdw[1],
|
|
|
|
(unsigned int) pdw[2]);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Get optimal color table, or the optimal bitfields */
|
|
|
|
if (!GetDIBits(pRLWinPriv->hdcScreen,
|
|
|
|
hbmp, 0, 1, NULL, (BITMAPINFO *) pbmih, DIB_RGB_COLORS)) {
|
|
|
|
ErrorF("winMWExtWMQueryDIBFormat - Second call to GetDIBits "
|
|
|
|
"failed\n");
|
|
|
|
DeleteObject(hbmp);
|
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Free memory */
|
|
|
|
DeleteObject(hbmp);
|
|
|
|
|
|
|
|
return TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRGN
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMCreateRgnFromRegion(RegionPtr pShape)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
int nRects;
|
|
|
|
BoxPtr pRects, pEnd;
|
|
|
|
HRGN hRgn, hRgnRect;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (pShape == NULL)
|
|
|
|
return NULL;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
nRects = RegionNumRects(pShape);
|
|
|
|
pRects = RegionRects(pShape);
|
|
|
|
|
|
|
|
hRgn = CreateRectRgn(0, 0, 0, 0);
|
|
|
|
if (hRgn == NULL) {
|
|
|
|
ErrorF("winReshape - Initial CreateRectRgn (%d, %d, %d, %d) "
|
|
|
|
"failed: %d\n", 0, 0, 0, 0, (int) GetLastError());
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Loop through all rectangles in the X region */
|
|
|
|
for (pEnd = pRects + nRects; pRects < pEnd; pRects++) {
|
|
|
|
/* Create a Windows region for the X rectangle */
|
|
|
|
hRgnRect = CreateRectRgn(pRects->x1,
|
|
|
|
pRects->y1, pRects->x2, pRects->y2);
|
|
|
|
if (hRgnRect == NULL) {
|
|
|
|
ErrorF("winReshape - Loop CreateRectRgn (%d, %d, %d, %d) "
|
|
|
|
"failed: %d\n",
|
|
|
|
pRects->x1,
|
|
|
|
pRects->y1, pRects->x2, pRects->y2, (int) GetLastError());
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Merge the Windows region with the accumulated region */
|
|
|
|
if (CombineRgn(hRgn, hRgn, hRgnRect, RGN_OR) == ERROR) {
|
|
|
|
ErrorF("winReshape - CombineRgn () failed: %d\n",
|
|
|
|
(int) GetLastError());
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Delete the temporary Windows region */
|
|
|
|
DeleteObject(hRgnRect);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
return hRgn;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
InitWin32RootlessEngine(win32RootlessWindowPtr pRLWinPriv)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
pRLWinPriv->hdcScreen = GetDC(pRLWinPriv->hWnd);
|
|
|
|
pRLWinPriv->hdcShadow = CreateCompatibleDC(pRLWinPriv->hdcScreen);
|
|
|
|
pRLWinPriv->hbmpShadow = NULL;
|
|
|
|
|
|
|
|
/* Allocate bitmap info header */
|
|
|
|
pRLWinPriv->pbmihShadow =
|
|
|
|
(BITMAPINFOHEADER *) malloc(sizeof(BITMAPINFOHEADER)
|
|
|
|
+ 256 * sizeof(RGBQUAD));
|
|
|
|
if (pRLWinPriv->pbmihShadow == NULL) {
|
|
|
|
ErrorF("InitWin32RootlessEngine - malloc () failed\n");
|
|
|
|
return;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
/* Query the screen format */
|
|
|
|
winMWExtWMQueryDIBFormat(pRLWinPriv, pRLWinPriv->pbmihShadow);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMCreateFrame(RootlessWindowPtr pFrame, ScreenPtr pScreen,
|
|
|
|
int newX, int newY, RegionPtr pShape)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
#define CLASS_NAME_LENGTH 512
|
2012-06-10 07:21:05 -06:00
|
|
|
Bool fResult = TRUE;
|
|
|
|
win32RootlessWindowPtr pRLWinPriv;
|
|
|
|
WNDCLASSEX wc;
|
|
|
|
char pszClass[CLASS_NAME_LENGTH], pszWindowID[12];
|
|
|
|
HICON hIcon;
|
|
|
|
HICON hIconSmall;
|
|
|
|
char *res_name, *res_class, *res_role;
|
|
|
|
static int s_iWindowID = 0;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winMWExtWMCreateFrame %d %d - %d %d\n",
|
|
|
|
newX, newY, pFrame->width, pFrame->height);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
pRLWinPriv =
|
|
|
|
(win32RootlessWindowPtr) malloc(sizeof(win32RootlessWindowRec));
|
|
|
|
pRLWinPriv->pFrame = pFrame;
|
|
|
|
pRLWinPriv->pfb = NULL;
|
|
|
|
pRLWinPriv->hbmpShadow = NULL;
|
|
|
|
pRLWinPriv->hdcShadow = NULL;
|
|
|
|
pRLWinPriv->hdcScreen = NULL;
|
|
|
|
pRLWinPriv->pbmihShadow = NULL;
|
|
|
|
pRLWinPriv->fResized = TRUE;
|
|
|
|
pRLWinPriv->fClose = FALSE;
|
|
|
|
pRLWinPriv->fRestackingNow = FALSE;
|
|
|
|
pRLWinPriv->fDestroyed = FALSE;
|
|
|
|
pRLWinPriv->fMovingOrSizing = FALSE;
|
|
|
|
|
|
|
|
// Store the implementation private frame ID
|
|
|
|
pFrame->wid = (RootlessFrameID) pRLWinPriv;
|
|
|
|
|
2013-06-07 11:28:45 -06:00
|
|
|
winSelectIcons(&hIcon, &hIconSmall);
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
/* Set standard class name prefix so we can identify window easily */
|
|
|
|
strncpy(pszClass, WINDOW_CLASS_X, sizeof(pszClass));
|
|
|
|
|
|
|
|
if (winMultiWindowGetClassHint(pFrame->win, &res_name, &res_class)) {
|
|
|
|
strncat(pszClass, "-", 1);
|
|
|
|
strncat(pszClass, res_name, CLASS_NAME_LENGTH - strlen(pszClass));
|
|
|
|
strncat(pszClass, "-", 1);
|
|
|
|
strncat(pszClass, res_class, CLASS_NAME_LENGTH - strlen(pszClass));
|
|
|
|
|
|
|
|
/* Check if a window class is provided by the WM_WINDOW_ROLE property,
|
|
|
|
* if not use the WM_CLASS information.
|
|
|
|
* For further information see:
|
|
|
|
* http://tronche.com/gui/x/icccm/sec-5.html
|
|
|
|
*/
|
|
|
|
if (winMultiWindowGetWindowRole(pFrame->win, &res_role)) {
|
|
|
|
strcat(pszClass, "-");
|
|
|
|
strcat(pszClass, res_role);
|
|
|
|
free(res_role);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(res_name);
|
|
|
|
free(res_class);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Add incrementing window ID to make unique class name */
|
|
|
|
snprintf(pszWindowID, sizeof(pszWindowID), "-%x", s_iWindowID++);
|
|
|
|
pszWindowID[sizeof(pszWindowID) - 1] = 0;
|
|
|
|
strcat(pszClass, pszWindowID);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2013-06-07 11:28:45 -06:00
|
|
|
winDebug("winMWExtWMCreateFrame - Creating class: %s\n", pszClass);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Setup our window class */
|
|
|
|
wc.cbSize = sizeof(wc);
|
|
|
|
wc.style = CS_HREDRAW | CS_VREDRAW;
|
|
|
|
wc.lpfnWndProc = winMWExtWMWindowProc;
|
|
|
|
wc.cbClsExtra = 0;
|
|
|
|
wc.cbWndExtra = 0;
|
|
|
|
wc.hInstance = g_hInstance;
|
|
|
|
wc.hIcon = hIcon;
|
|
|
|
wc.hIconSm = hIconSmall;
|
|
|
|
wc.hCursor = 0;
|
|
|
|
wc.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH);
|
|
|
|
wc.lpszMenuName = NULL;
|
|
|
|
wc.lpszClassName = pszClass;
|
|
|
|
RegisterClassEx(&wc);
|
|
|
|
|
|
|
|
/* Create the window */
|
|
|
|
g_fNoConfigureWindow = TRUE;
|
|
|
|
pRLWinPriv->hWnd = CreateWindowExA(WS_EX_TOOLWINDOW, /* Extended styles */
|
|
|
|
pszClass, /* Class name */
|
|
|
|
WINDOW_TITLE_X, /* Window name */
|
|
|
|
WS_POPUP | WS_CLIPCHILDREN, newX, /* Horizontal position */
|
|
|
|
newY, /* Vertical position */
|
|
|
|
pFrame->width, /* Right edge */
|
|
|
|
pFrame->height, /* Bottom edge */
|
|
|
|
(HWND) NULL, /* No parent or owner window */
|
|
|
|
(HMENU) NULL, /* No menu */
|
|
|
|
GetModuleHandle(NULL), /* Instance handle */
|
|
|
|
pRLWinPriv); /* ScreenPrivates */
|
|
|
|
if (pRLWinPriv->hWnd == NULL) {
|
|
|
|
ErrorF("winMWExtWMCreateFrame - CreateWindowExA () failed: %d\n",
|
|
|
|
(int) GetLastError());
|
|
|
|
fResult = FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winMWExtWMCreateFrame - ShowWindow\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
//ShowWindow (pRLWinPriv->hWnd, SW_SHOWNOACTIVATE);
|
|
|
|
g_fNoConfigureWindow = FALSE;
|
|
|
|
|
|
|
|
if (pShape != NULL) {
|
|
|
|
winMWExtWMReshapeFrame(pFrame->wid, pShape);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2014-05-02 13:27:46 -06:00
|
|
|
winDebug("winMWExtWMCreateFrame - (%p) %p\n",
|
|
|
|
pFrame->wid, pRLWinPriv->hWnd);
|
2006-11-26 11:13:41 -07:00
|
|
|
#if 0
|
2012-06-10 07:21:05 -06:00
|
|
|
{
|
|
|
|
WindowPtr pWin2 = NULL;
|
|
|
|
win32RootlessWindowPtr pRLWinPriv2 = NULL;
|
|
|
|
|
|
|
|
/* Check if the Windows window property for our X window pointer is valid */
|
|
|
|
if ((pWin2 =
|
|
|
|
(WindowPtr) GetProp(pRLWinPriv->hWnd, WIN_WINDOW_PROP)) != NULL) {
|
|
|
|
pRLWinPriv2 =
|
|
|
|
(win32RootlessWindowPtr) RootlessFrameForWindow(pWin2, FALSE);
|
|
|
|
}
|
|
|
|
winDebug("winMWExtWMCreateFrame2 (%08x) %08x\n",
|
|
|
|
pRLWinPriv2, pRLWinPriv2->hWnd);
|
|
|
|
if (pRLWinPriv != pRLWinPriv2 || pRLWinPriv->hWnd != pRLWinPriv2->hWnd) {
|
|
|
|
winDebug("Error param missmatch\n");
|
|
|
|
}
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMSetNativeProperty(pFrame);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
return fResult;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMDestroyFrame(RootlessFrameID wid)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
win32RootlessWindowPtr pRLWinPriv = (win32RootlessWindowPtr) wid;
|
|
|
|
HICON hIcon;
|
|
|
|
HICON hIconSm;
|
|
|
|
HMODULE hInstance;
|
|
|
|
int iReturn;
|
|
|
|
char pszClass[CLASS_NAME_LENGTH];
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2014-05-02 13:27:46 -06:00
|
|
|
winDebug("winMWExtWMDestroyFrame (%p) %p\n",
|
|
|
|
pRLWinPriv, pRLWinPriv->hWnd);
|
2006-11-26 11:13:41 -07:00
|
|
|
#if 0
|
2012-06-10 07:21:05 -06:00
|
|
|
{
|
|
|
|
WindowPtr pWin2 = NULL;
|
|
|
|
win32RootlessWindowPtr pRLWinPriv2 = NULL;
|
|
|
|
|
|
|
|
/* Check if the Windows window property for our X window pointer is valid */
|
|
|
|
if ((pWin2 =
|
|
|
|
(WindowPtr) GetProp(pRLWinPriv->hWnd, WIN_WINDOW_PROP)) != NULL) {
|
|
|
|
pRLWinPriv2 =
|
|
|
|
(win32RootlessWindowPtr) RootlessFrameForWindow(pWin2, FALSE);
|
|
|
|
}
|
|
|
|
winDebug("winMWExtWMDestroyFrame2 (%08x) %08x\n",
|
|
|
|
pRLWinPriv2, pRLWinPriv2->hWnd);
|
|
|
|
if (pRLWinPriv != pRLWinPriv2 || pRLWinPriv->hWnd != pRLWinPriv2->hWnd) {
|
|
|
|
winDebug("Error param missmatch\n");
|
|
|
|
*(int *) 0 = 1; //raise exseption
|
|
|
|
}
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Store the info we need to destroy after this window is gone */
|
|
|
|
hInstance = (HINSTANCE) GetClassLongPtr(pRLWinPriv->hWnd, GCLP_HMODULE);
|
|
|
|
hIcon = (HICON) SendMessage(pRLWinPriv->hWnd, WM_GETICON, ICON_BIG, 0);
|
|
|
|
hIconSm = (HICON) SendMessage(pRLWinPriv->hWnd, WM_GETICON, ICON_SMALL, 0);
|
|
|
|
iReturn = GetClassName(pRLWinPriv->hWnd, pszClass, CLASS_NAME_LENGTH);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
pRLWinPriv->fClose = TRUE;
|
|
|
|
pRLWinPriv->fDestroyed = TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Destroy the Windows window */
|
|
|
|
DestroyWindow(pRLWinPriv->hWnd);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Only if we were able to get the name */
|
|
|
|
if (iReturn) {
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winMWExtWMDestroyFrame - Unregistering %s: ", pszClass);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
iReturn = UnregisterClass(pszClass, hInstance);
|
2011-11-05 07:32:40 -06:00
|
|
|
}
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winMWExtWMDestroyFramew - Deleting Icon\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2011-11-05 07:32:40 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
winDestroyIcon(hIcon);
|
|
|
|
winDestroyIcon(hIconSm);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winMWExtWMDestroyFrame - done\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMMoveFrame(RootlessFrameID wid, ScreenPtr pScreen, int iNewX,
|
|
|
|
int iNewY)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
win32RootlessWindowPtr pRLWinPriv = (win32RootlessWindowPtr) wid;
|
|
|
|
RECT rcNew;
|
|
|
|
DWORD dwExStyle;
|
|
|
|
DWORD dwStyle;
|
|
|
|
int iX, iY, iWidth, iHeight;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2014-05-02 13:27:46 -06:00
|
|
|
winDebug("winMWExtWMMoveFrame (%p) (%d %d)\n", pRLWinPriv, iNewX,
|
2012-06-10 07:21:05 -06:00
|
|
|
iNewY);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Get the Windows window style and extended style */
|
|
|
|
dwExStyle = GetWindowLongPtr(pRLWinPriv->hWnd, GWL_EXSTYLE);
|
|
|
|
dwStyle = GetWindowLongPtr(pRLWinPriv->hWnd, GWL_STYLE);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Get the X and Y location of the X window */
|
|
|
|
iX = iNewX + GetSystemMetrics(SM_XVIRTUALSCREEN);
|
|
|
|
iY = iNewY + GetSystemMetrics(SM_YVIRTUALSCREEN);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Get the height and width of the X window */
|
|
|
|
iWidth = pRLWinPriv->pFrame->width;
|
|
|
|
iHeight = pRLWinPriv->pFrame->height;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Store the origin, height, and width in a rectangle structure */
|
|
|
|
SetRect(&rcNew, iX, iY, iX + iWidth, iY + iHeight);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#ifdef CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("\tWindow {%d, %d, %d, %d}, {%d, %d}\n",
|
|
|
|
rcNew.left, rcNew.top, rcNew.right, rcNew.bottom,
|
|
|
|
rcNew.right - rcNew.left, rcNew.bottom - rcNew.top);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
/*
|
|
|
|
* Calculate the required size of the Windows window rectangle,
|
|
|
|
* given the size of the Windows window client area.
|
|
|
|
*/
|
|
|
|
AdjustWindowRectEx(&rcNew, dwStyle, FALSE, dwExStyle);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#ifdef CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("\tAdjusted {%d, %d, %d, %d}, {%d, %d}\n",
|
|
|
|
rcNew.left, rcNew.top, rcNew.right, rcNew.bottom,
|
|
|
|
rcNew.right - rcNew.left, rcNew.bottom - rcNew.top);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
g_fNoConfigureWindow = TRUE;
|
|
|
|
SetWindowPos(pRLWinPriv->hWnd, NULL, rcNew.left, rcNew.top, 0, 0,
|
|
|
|
SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER);
|
|
|
|
g_fNoConfigureWindow = FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2014-05-02 13:27:46 -06:00
|
|
|
winDebug("winMWExtWMMoveFrame (%p) done\n", pRLWinPriv);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMResizeFrame(RootlessFrameID wid, ScreenPtr pScreen,
|
|
|
|
int iNewX, int iNewY,
|
|
|
|
unsigned int uiNewWidth, unsigned int uiNewHeight,
|
|
|
|
unsigned int uiGravity)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
win32RootlessWindowPtr pRLWinPriv = (win32RootlessWindowPtr) wid;
|
|
|
|
RECT rcNew;
|
|
|
|
RECT rcOld;
|
|
|
|
DWORD dwExStyle;
|
|
|
|
DWORD dwStyle;
|
|
|
|
int iX, iY;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2014-05-02 13:27:46 -06:00
|
|
|
winDebug("winMWExtWMResizeFrame (%p) (%d %d)-(%d %d)\n",
|
|
|
|
pRLWinPriv, iNewX, iNewY, uiNewWidth, uiNewHeight);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
pRLWinPriv->fResized = TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Get the Windows window style and extended style */
|
|
|
|
dwExStyle = GetWindowLongPtr(pRLWinPriv->hWnd, GWL_EXSTYLE);
|
|
|
|
dwStyle = GetWindowLongPtr(pRLWinPriv->hWnd, GWL_STYLE);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Get the X and Y location of the X window */
|
|
|
|
iX = iNewX + GetSystemMetrics(SM_XVIRTUALSCREEN);
|
|
|
|
iY = iNewY + GetSystemMetrics(SM_YVIRTUALSCREEN);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Store the origin, height, and width in a rectangle structure */
|
|
|
|
SetRect(&rcNew, iX, iY, iX + uiNewWidth, iY + uiNewHeight);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/*
|
|
|
|
* Calculate the required size of the Windows window rectangle,
|
|
|
|
* given the size of the Windows window client area.
|
|
|
|
*/
|
|
|
|
AdjustWindowRectEx(&rcNew, dwStyle, FALSE, dwExStyle);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Get a rectangle describing the old Windows window */
|
|
|
|
GetWindowRect(pRLWinPriv->hWnd, &rcOld);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Check if the old rectangle and new rectangle are the same */
|
|
|
|
if (!EqualRect(&rcNew, &rcOld)) {
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
g_fNoConfigureWindow = TRUE;
|
|
|
|
MoveWindow(pRLWinPriv->hWnd,
|
|
|
|
rcNew.left, rcNew.top,
|
|
|
|
rcNew.right - rcNew.left, rcNew.bottom - rcNew.top, TRUE);
|
|
|
|
g_fNoConfigureWindow = FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMRestackFrame(RootlessFrameID wid, RootlessFrameID nextWid)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
win32RootlessWindowPtr pRLWinPriv = (win32RootlessWindowPtr) wid;
|
|
|
|
win32RootlessWindowPtr pRLNextWinPriv = (win32RootlessWindowPtr) nextWid;
|
|
|
|
|
|
|
|
winScreenPriv(pRLWinPriv->pFrame->win->drawable.pScreen);
|
|
|
|
winScreenInfo *pScreenInfo = NULL;
|
|
|
|
DWORD dwCurrentProcessID = GetCurrentProcessId();
|
|
|
|
DWORD dwWindowProcessID = 0;
|
|
|
|
HWND hWnd;
|
|
|
|
Bool fFirst = TRUE;
|
|
|
|
Bool fNeedRestack = TRUE;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2014-05-02 13:27:46 -06:00
|
|
|
winDebug("winMWExtWMRestackFrame (%p)\n", pRLWinPriv);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (pScreenPriv && pScreenPriv->fRestacking)
|
|
|
|
return;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (pScreenPriv)
|
|
|
|
pScreenInfo = pScreenPriv->pScreenInfo;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
pRLWinPriv->fRestackingNow = TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Show window */
|
|
|
|
if (!IsWindowVisible(pRLWinPriv->hWnd))
|
|
|
|
ShowWindow(pRLWinPriv->hWnd, SW_SHOWNOACTIVATE);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (pRLNextWinPriv == NULL) {
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("Win %08x is top\n", pRLWinPriv);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
pScreenPriv->widTop = wid;
|
|
|
|
SetWindowPos(pRLWinPriv->hWnd, HWND_TOP,
|
|
|
|
0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
else if (winIsInternalWMRunning(pScreenInfo)) {
|
|
|
|
/* using mulwinidow wm */
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("Win %08x is not top\n", pRLWinPriv);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
for (hWnd = GetNextWindow(pRLWinPriv->hWnd, GW_HWNDPREV);
|
|
|
|
fNeedRestack && hWnd != NULL;
|
|
|
|
hWnd = GetNextWindow(hWnd, GW_HWNDPREV)) {
|
|
|
|
GetWindowThreadProcessId(hWnd, &dwWindowProcessID);
|
|
|
|
|
|
|
|
if ((dwWindowProcessID == dwCurrentProcessID)
|
|
|
|
&& GetProp(hWnd, WIN_WINDOW_PROP)) {
|
|
|
|
if (hWnd == pRLNextWinPriv->hWnd) {
|
|
|
|
/* Enable interleave X window and Windows window */
|
|
|
|
if (!fFirst) {
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("raise: Insert after Win %08x\n",
|
|
|
|
pRLNextWinPriv);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
SetWindowPos(pRLWinPriv->hWnd, pRLNextWinPriv->hWnd,
|
|
|
|
0, 0, 0, 0,
|
|
|
|
SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
|
|
|
|
}
|
|
|
|
else {
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("No change\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
}
|
|
|
|
fNeedRestack = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (fFirst)
|
|
|
|
fFirst = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (hWnd = GetNextWindow(pRLWinPriv->hWnd, GW_HWNDNEXT);
|
|
|
|
fNeedRestack && hWnd != NULL;
|
|
|
|
hWnd = GetNextWindow(hWnd, GW_HWNDNEXT)) {
|
|
|
|
GetWindowThreadProcessId(hWnd, &dwWindowProcessID);
|
|
|
|
|
|
|
|
if ((dwWindowProcessID == dwCurrentProcessID)
|
|
|
|
&& GetProp(hWnd, WIN_WINDOW_PROP)) {
|
|
|
|
if (hWnd == pRLNextWinPriv->hWnd) {
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("lower: Insert after Win %08x\n", pRLNextWinPriv);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
SetWindowPos(pRLWinPriv->hWnd, pRLNextWinPriv->hWnd,
|
|
|
|
0, 0, 0, 0,
|
|
|
|
SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
|
|
|
|
fNeedRestack = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
else {
|
|
|
|
/* using general wm like twm, wmaker etc.
|
|
|
|
Interleave X window and Windows window will cause problem. */
|
|
|
|
SetWindowPos(pRLWinPriv->hWnd, pRLNextWinPriv->hWnd,
|
|
|
|
0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2014-05-02 13:27:46 -06:00
|
|
|
winDebug("winMWExtWMRestackFrame - done (%p)\n", pRLWinPriv);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
pRLWinPriv->fRestackingNow = FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMReshapeFrame(RootlessFrameID wid, RegionPtr pShape)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
win32RootlessWindowPtr pRLWinPriv = (win32RootlessWindowPtr) wid;
|
|
|
|
HRGN hRgn, hRgnWindow, hRgnClient;
|
|
|
|
RECT rcWindow, rcClient;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2014-05-02 13:27:46 -06:00
|
|
|
winDebug("winMWExtWMReshapeFrame (%p)\n", pRLWinPriv);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
hRgn = winMWExtWMCreateRgnFromRegion(pShape);
|
|
|
|
|
|
|
|
/* Create region for non-client area */
|
|
|
|
GetWindowRect(pRLWinPriv->hWnd, &rcWindow);
|
|
|
|
GetClientRect(pRLWinPriv->hWnd, &rcClient);
|
2013-06-07 11:28:45 -06:00
|
|
|
MapWindowPoints(pRLWinPriv->hWnd, HWND_DESKTOP, (LPPOINT) &rcClient, 2);
|
2012-06-10 07:21:05 -06:00
|
|
|
OffsetRgn(hRgn, rcClient.left - rcWindow.left, rcClient.top - rcWindow.top);
|
|
|
|
OffsetRect(&rcClient, -rcWindow.left, -rcWindow.top);
|
|
|
|
OffsetRect(&rcWindow, -rcWindow.left, -rcWindow.top);
|
|
|
|
hRgnWindow = CreateRectRgnIndirect(&rcWindow);
|
|
|
|
hRgnClient = CreateRectRgnIndirect(&rcClient);
|
|
|
|
CombineRgn(hRgnWindow, hRgnWindow, hRgnClient, RGN_DIFF);
|
|
|
|
CombineRgn(hRgn, hRgnWindow, hRgn, RGN_OR);
|
|
|
|
|
|
|
|
SetWindowRgn(pRLWinPriv->hWnd, hRgn, TRUE);
|
|
|
|
|
|
|
|
DeleteObject(hRgnWindow);
|
|
|
|
DeleteObject(hRgnClient);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMUnmapFrame(RootlessFrameID wid)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
win32RootlessWindowPtr pRLWinPriv = (win32RootlessWindowPtr) wid;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2014-05-02 13:27:46 -06:00
|
|
|
winDebug("winMWExtWMUnmapFrame (%p)\n", pRLWinPriv);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
g_fNoConfigureWindow = TRUE;
|
|
|
|
//ShowWindow (pRLWinPriv->hWnd, SW_MINIMIZE);
|
|
|
|
ShowWindow(pRLWinPriv->hWnd, SW_HIDE);
|
|
|
|
g_fNoConfigureWindow = FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fixme: Code sharing with winshadgdi.c and other engine support
|
|
|
|
*/
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMStartDrawing(RootlessFrameID wid, char **pixelData, int *bytesPerRow)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
win32RootlessWindowPtr pRLWinPriv = (win32RootlessWindowPtr) wid;
|
|
|
|
winPrivScreenPtr pScreenPriv = NULL;
|
|
|
|
winScreenInfo *pScreenInfo = NULL;
|
|
|
|
ScreenPtr pScreen = NULL;
|
|
|
|
DIBSECTION dibsection;
|
|
|
|
Bool fReturn = TRUE;
|
|
|
|
HDC hdcNew;
|
|
|
|
HBITMAP hbmpNew;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2014-05-02 13:27:46 -06:00
|
|
|
winDebug("winMWExtWMStartDrawing (%p) %08x\n", pRLWinPriv,
|
2012-06-10 07:21:05 -06:00
|
|
|
pRLWinPriv->fDestroyed);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!pRLWinPriv->fDestroyed) {
|
|
|
|
pScreen = pRLWinPriv->pFrame->win->drawable.pScreen;
|
|
|
|
if (pScreen)
|
|
|
|
pScreenPriv = winGetScreenPriv(pScreen);
|
|
|
|
if (pScreenPriv)
|
|
|
|
pScreenInfo = pScreenPriv->pScreenInfo;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2014-05-02 13:27:46 -06:00
|
|
|
winDebug("\tpScreenPriv %p\n", pScreenPriv);
|
|
|
|
winDebug("\tpScreenInfo %p\n", pScreenInfo);
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("\t(%d, %d)\n", (int) pRLWinPriv->pFrame->width,
|
|
|
|
(int) pRLWinPriv->pFrame->height);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
if (pRLWinPriv->hdcScreen == NULL) {
|
|
|
|
InitWin32RootlessEngine(pRLWinPriv);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pRLWinPriv->fResized) {
|
|
|
|
/* width * bpp must be multiple of 4 to match 32bit alignment */
|
|
|
|
int stridesize;
|
|
|
|
int misalignment;
|
|
|
|
|
|
|
|
pRLWinPriv->pbmihShadow->biWidth = pRLWinPriv->pFrame->width;
|
|
|
|
pRLWinPriv->pbmihShadow->biHeight = -pRLWinPriv->pFrame->height;
|
|
|
|
|
|
|
|
stridesize = pRLWinPriv->pFrame->width * (pScreenInfo->dwBPP >> 3);
|
|
|
|
misalignment = stridesize & 3;
|
|
|
|
if (misalignment != 0) {
|
|
|
|
stridesize += 4 - misalignment;
|
|
|
|
pRLWinPriv->pbmihShadow->biWidth =
|
|
|
|
stridesize / (pScreenInfo->dwBPP >> 3);
|
|
|
|
winDebug("\tresizing to %d (was %d)\n",
|
|
|
|
pRLWinPriv->pbmihShadow->biWidth,
|
|
|
|
pRLWinPriv->pFrame->width);
|
|
|
|
}
|
|
|
|
|
|
|
|
hdcNew = CreateCompatibleDC(pRLWinPriv->hdcScreen);
|
|
|
|
/* Create a DI shadow bitmap with a bit pointer */
|
|
|
|
hbmpNew = CreateDIBSection(pRLWinPriv->hdcScreen,
|
|
|
|
(BITMAPINFO *) pRLWinPriv->pbmihShadow,
|
|
|
|
DIB_RGB_COLORS,
|
2013-06-07 11:28:45 -06:00
|
|
|
(VOID **) &pRLWinPriv->pfb, NULL, 0);
|
2012-06-10 07:21:05 -06:00
|
|
|
if (hbmpNew == NULL || pRLWinPriv->pfb == NULL) {
|
|
|
|
ErrorF("winMWExtWMStartDrawing - CreateDIBSection failed\n");
|
|
|
|
//return FALSE;
|
|
|
|
}
|
|
|
|
else {
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winMWExtWMStartDrawing - Shadow buffer allocated\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get information about the bitmap that was allocated */
|
|
|
|
GetObject(hbmpNew, sizeof(dibsection), &dibsection);
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Print information about bitmap allocated */
|
|
|
|
winDebug("winMWExtWMStartDrawing - Dibsection width: %d height: %d "
|
|
|
|
"depth: %d size image: %d\n",
|
|
|
|
(unsigned int) dibsection.dsBmih.biWidth,
|
|
|
|
(unsigned int) dibsection.dsBmih.biHeight,
|
|
|
|
(unsigned int) dibsection.dsBmih.biBitCount,
|
|
|
|
(unsigned int) dibsection.dsBmih.biSizeImage);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
/* Select the shadow bitmap into the shadow DC */
|
|
|
|
SelectObject(hdcNew, hbmpNew);
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winMWExtWMStartDrawing - Attempting a shadow blit\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
/* Blit from the old shadow to the new shadow */
|
|
|
|
fReturn = BitBlt(hdcNew,
|
|
|
|
0, 0,
|
|
|
|
pRLWinPriv->pFrame->width,
|
|
|
|
pRLWinPriv->pFrame->height, pRLWinPriv->hdcShadow,
|
|
|
|
0, 0, SRCCOPY);
|
|
|
|
if (fReturn) {
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winMWExtWMStartDrawing - Shadow blit success\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
ErrorF("winMWExtWMStartDrawing - Shadow blit failure\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Look for height weirdness */
|
|
|
|
if (dibsection.dsBmih.biHeight < 0) {
|
|
|
|
/* FIXME: Figure out why biHeight is sometimes negative */
|
|
|
|
ErrorF("winMWExtWMStartDrawing - WEIRDNESS - "
|
|
|
|
"biHeight still negative: %d\n",
|
|
|
|
(int) dibsection.dsBmih.biHeight);
|
|
|
|
ErrorF("winMWExtWMStartDrawing - WEIRDNESS - "
|
|
|
|
"Flipping biHeight sign\n");
|
|
|
|
dibsection.dsBmih.biHeight = -dibsection.dsBmih.biHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
pRLWinPriv->dwWidthBytes = dibsection.dsBm.bmWidthBytes;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winMWExtWMStartDrawing - bytesPerRow: %d\n",
|
|
|
|
(unsigned int) dibsection.dsBm.bmWidthBytes);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
/* Free the old shadow bitmap */
|
|
|
|
DeleteObject(pRLWinPriv->hdcShadow);
|
|
|
|
DeleteObject(pRLWinPriv->hbmpShadow);
|
|
|
|
|
|
|
|
pRLWinPriv->hdcShadow = hdcNew;
|
|
|
|
pRLWinPriv->hbmpShadow = hbmpNew;
|
|
|
|
|
|
|
|
pRLWinPriv->fResized = FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG && FALSE
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winMWExtWMStartDrawing - 0x%08x %d\n",
|
|
|
|
(unsigned int) pRLWinPriv->pfb,
|
|
|
|
(unsigned int) dibsection.dsBm.bmWidthBytes);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
else {
|
|
|
|
ErrorF("winMWExtWMStartDrawing - Already window was destroyed \n");
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2014-05-02 13:27:46 -06:00
|
|
|
winDebug("winMWExtWMStartDrawing - done (%p) %p %d\n",
|
|
|
|
pRLWinPriv,
|
|
|
|
pRLWinPriv->pfb,
|
2012-06-10 07:21:05 -06:00
|
|
|
(unsigned int) pRLWinPriv->dwWidthBytes);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
*pixelData = pRLWinPriv->pfb;
|
|
|
|
*bytesPerRow = pRLWinPriv->dwWidthBytes;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMStopDrawing(RootlessFrameID wid, Bool fFlush)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
#if 0
|
2012-06-10 07:21:05 -06:00
|
|
|
win32RootlessWindowPtr pRLWinPriv = (win32RootlessWindowPtr) wid;
|
|
|
|
BLENDFUNCTION bfBlend;
|
|
|
|
SIZE szWin;
|
|
|
|
POINT ptSrc;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG || TRUE
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winMWExtWMStopDrawing (%08x)\n", pRLWinPriv);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
szWin.cx = pRLWinPriv->dwWidth;
|
|
|
|
szWin.cy = pRLWinPriv->dwHeight;
|
|
|
|
ptSrc.x = 0;
|
|
|
|
ptSrc.y = 0;
|
|
|
|
bfBlend.BlendOp = AC_SRC_OVER;
|
|
|
|
bfBlend.BlendFlags = 0;
|
|
|
|
bfBlend.SourceConstantAlpha = 255;
|
|
|
|
bfBlend.AlphaFormat = AC_SRC_ALPHA;
|
|
|
|
|
|
|
|
if (!UpdateLayeredWindow(pRLWinPriv->hWnd,
|
|
|
|
NULL, NULL, &szWin,
|
|
|
|
pRLWinPriv->hdcShadow, &ptSrc,
|
|
|
|
0, &bfBlend, ULW_ALPHA)) {
|
|
|
|
ErrorF("winMWExtWMStopDrawing - UpdateLayeredWindow failed\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMUpdateRegion(RootlessFrameID wid, RegionPtr pDamage)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
win32RootlessWindowPtr pRLWinPriv = (win32RootlessWindowPtr) wid;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if 0
|
2012-06-10 07:21:05 -06:00
|
|
|
BLENDFUNCTION bfBlend;
|
|
|
|
SIZE szWin;
|
|
|
|
POINT ptSrc;
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
#if CYGMULTIWINDOW_DEBUG && 0
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winMWExtWMUpdateRegion (%08x)\n", pRLWinPriv);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
#if 0
|
2012-06-10 07:21:05 -06:00
|
|
|
szWin.cx = pRLWinPriv->dwWidth;
|
|
|
|
szWin.cy = pRLWinPriv->dwHeight;
|
|
|
|
ptSrc.x = 0;
|
|
|
|
ptSrc.y = 0;
|
|
|
|
bfBlend.BlendOp = AC_SRC_OVER;
|
|
|
|
bfBlend.BlendFlags = 0;
|
|
|
|
bfBlend.SourceConstantAlpha = 255;
|
|
|
|
bfBlend.AlphaFormat = AC_SRC_ALPHA;
|
|
|
|
|
|
|
|
if (!UpdateLayeredWindow(pRLWinPriv->hWnd,
|
|
|
|
NULL, NULL, &szWin,
|
|
|
|
pRLWinPriv->hdcShadow, &ptSrc,
|
|
|
|
0, &bfBlend, ULW_ALPHA)) {
|
|
|
|
LPVOID lpMsgBuf;
|
|
|
|
|
|
|
|
/* Display a fancy error message */
|
|
|
|
FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
|
|
|
|
FORMAT_MESSAGE_FROM_SYSTEM |
|
|
|
|
FORMAT_MESSAGE_IGNORE_INSERTS,
|
|
|
|
NULL,
|
|
|
|
GetLastError(),
|
|
|
|
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
|
2013-06-07 11:28:45 -06:00
|
|
|
(LPTSTR) &lpMsgBuf, 0, NULL);
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
ErrorF("winMWExtWMUpdateRegion - UpdateLayeredWindow failed: %s\n",
|
|
|
|
(LPSTR) lpMsgBuf);
|
|
|
|
LocalFree(lpMsgBuf);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!g_fNoConfigureWindow)
|
|
|
|
UpdateWindow(pRLWinPriv->hWnd);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMDamageRects(RootlessFrameID wid, int nCount, const BoxRec * pRects,
|
|
|
|
int shift_x, int shift_y)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
win32RootlessWindowPtr pRLWinPriv = (win32RootlessWindowPtr) wid;
|
|
|
|
const BoxRec *pEnd;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG && 0
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winMWExtWMDamageRects (%08x, %d, %08x, %d, %d)\n",
|
|
|
|
pRLWinPriv, nCount, pRects, shift_x, shift_y);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
for (pEnd = pRects + nCount; pRects < pEnd; pRects++) {
|
2006-11-26 11:13:41 -07:00
|
|
|
RECT rcDmg;
|
2012-06-10 07:21:05 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
rcDmg.left = pRects->x1 + shift_x;
|
|
|
|
rcDmg.top = pRects->y1 + shift_y;
|
|
|
|
rcDmg.right = pRects->x2 + shift_x;
|
|
|
|
rcDmg.bottom = pRects->y2 + shift_y;
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
InvalidateRect(pRLWinPriv->hWnd, &rcDmg, FALSE);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMRootlessSwitchWindow(RootlessWindowPtr pFrame, WindowPtr oldWin)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
win32RootlessWindowPtr pRLWinPriv = (win32RootlessWindowPtr) pFrame->wid;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2014-05-02 13:27:46 -06:00
|
|
|
winDebug("winMWExtWMRootlessSwitchWindow (%p) %p\n",
|
|
|
|
pRLWinPriv, pRLWinPriv->hWnd);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
pRLWinPriv->pFrame = pFrame;
|
|
|
|
pRLWinPriv->fResized = TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Set the window extended style flags */
|
|
|
|
SetWindowLongPtr(pRLWinPriv->hWnd, GWL_EXSTYLE, WS_EX_TOOLWINDOW);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Set the window standard style flags */
|
|
|
|
SetWindowLongPtr(pRLWinPriv->hWnd, GWL_STYLE, WS_POPUP | WS_CLIPCHILDREN);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
DeleteProperty(serverClient, oldWin, AtmWindowsWmNativeHwnd());
|
|
|
|
winMWExtWMSetNativeProperty(pFrame);
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
|
|
|
#if 0
|
2012-06-10 07:21:05 -06:00
|
|
|
{
|
|
|
|
WindowPtr pWin2 = NULL;
|
|
|
|
win32RootlessWindowPtr pRLWinPriv2 = NULL;
|
|
|
|
|
|
|
|
/* Check if the Windows window property for our X window pointer is valid */
|
|
|
|
if ((pWin2 =
|
|
|
|
(WindowPtr) GetProp(pRLWinPriv->hWnd, WIN_WINDOW_PROP)) != NULL) {
|
|
|
|
pRLWinPriv2 =
|
|
|
|
(win32RootlessWindowPtr) RootlessFrameForWindow(pWin2, FALSE);
|
|
|
|
}
|
|
|
|
winDebug("winMWExtWMSwitchFrame2 (%08x) %08x\n",
|
|
|
|
pRLWinPriv2, pRLWinPriv2->hWnd);
|
|
|
|
if (pRLWinPriv != pRLWinPriv2 || pRLWinPriv->hWnd != pRLWinPriv2->hWnd) {
|
|
|
|
winDebug("Error param missmatch\n");
|
|
|
|
}
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMCopyBytes(unsigned int width, unsigned int height,
|
|
|
|
const void *src, unsigned int srcRowBytes,
|
|
|
|
void *dst, unsigned int dstRowBytes)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winMWExtWMCopyBytes - Not implemented\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMCopyWindow(RootlessFrameID wid, int nDstRects,
|
|
|
|
const BoxRec * pDstRects, int nDx, int nDy)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
win32RootlessWindowPtr pRLWinPriv = (win32RootlessWindowPtr) wid;
|
|
|
|
const BoxRec *pEnd;
|
|
|
|
RECT rcDmg;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2014-05-02 13:27:46 -06:00
|
|
|
winDebug("winMWExtWMCopyWindow (%p, %d, %p, %d, %d)\n",
|
|
|
|
pRLWinPriv, nDstRects, pDstRects, nDx, nDy);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
for (pEnd = pDstRects + nDstRects; pDstRects < pEnd; pDstRects++) {
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("BitBlt (%d, %d, %d, %d) (%d, %d)\n",
|
|
|
|
pDstRects->x1, pDstRects->y1,
|
|
|
|
pDstRects->x2 - pDstRects->x1,
|
|
|
|
pDstRects->y2 - pDstRects->y1,
|
|
|
|
pDstRects->x1 + nDx, pDstRects->y1 + nDy);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!BitBlt(pRLWinPriv->hdcShadow,
|
|
|
|
pDstRects->x1, pDstRects->y1,
|
|
|
|
pDstRects->x2 - pDstRects->x1,
|
|
|
|
pDstRects->y2 - pDstRects->y1,
|
|
|
|
pRLWinPriv->hdcShadow,
|
|
|
|
pDstRects->x1 + nDx, pDstRects->y1 + nDy, SRCCOPY)) {
|
|
|
|
ErrorF("winMWExtWMCopyWindow - BitBlt failed.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
rcDmg.left = pDstRects->x1;
|
|
|
|
rcDmg.top = pDstRects->y1;
|
|
|
|
rcDmg.right = pDstRects->x2;
|
|
|
|
rcDmg.bottom = pDstRects->y2;
|
|
|
|
|
|
|
|
InvalidateRect(pRLWinPriv->hWnd, &rcDmg, FALSE);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winMWExtWMCopyWindow - done\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* winMWExtWMSetNativeProperty
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
winMWExtWMSetNativeProperty(RootlessWindowPtr pFrame)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
win32RootlessWindowPtr pRLWinPriv = (win32RootlessWindowPtr) pFrame->wid;
|
|
|
|
long lData;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* FIXME: move this to WindowsWM extension */
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
lData = (long) pRLWinPriv->hWnd;
|
|
|
|
dixChangeWindowProperty(serverClient, pFrame->win, AtmWindowsWmNativeHwnd(),
|
|
|
|
XA_INTEGER, 32, PropModeReplace, 1, &lData, TRUE);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|