2006-11-26 11:13:41 -07:00
|
|
|
/*
|
|
|
|
*Copyright (C) 1994-2000 The XFree86 Project, Inc. All Rights Reserved.
|
2010-07-27 13:02:24 -06:00
|
|
|
*Copyright (C) Colin Harrison 2005-2008
|
2006-11-26 11:13:41 -07:00
|
|
|
*
|
|
|
|
*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
|
2010-07-27 13:02:24 -06:00
|
|
|
* Colin Harrison
|
2006-11-26 11:13:41 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_XWIN_CONFIG_H
|
|
|
|
#include <xwin-config.h>
|
|
|
|
#endif
|
|
|
|
#include "win.h"
|
|
|
|
#include "dixevents.h"
|
|
|
|
#include "winmultiwindowclass.h"
|
|
|
|
#include "winprefs.h"
|
|
|
|
#include "winmsg.h"
|
2007-11-24 10:55:21 -07:00
|
|
|
#include "inputstr.h"
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2013-06-07 11:28:45 -06:00
|
|
|
extern void winUpdateWindowPosition(HWND hWnd, HWND * zstyle);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Local globals
|
|
|
|
*/
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
static UINT_PTR g_uipMousePollingTimerID = 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Constant defines
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define WIN_MULTIWINDOW_SHAPE YES
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ConstrainSize - Taken from TWM sources - Respects hints for sizing
|
|
|
|
*/
|
|
|
|
#define makemult(a,b) ((b==1) ? (a) : (((int)((a)/(b))) * (b)) )
|
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
ConstrainSize(WinXSizeHints hints, int *widthp, int *heightp)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
int minWidth, minHeight, maxWidth, maxHeight, xinc, yinc, delta;
|
|
|
|
int baseWidth, baseHeight;
|
|
|
|
int dwidth = *widthp, dheight = *heightp;
|
|
|
|
|
|
|
|
if (hints.flags & PMinSize) {
|
|
|
|
minWidth = hints.min_width;
|
|
|
|
minHeight = hints.min_height;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
else if (hints.flags & PBaseSize) {
|
|
|
|
minWidth = hints.base_width;
|
|
|
|
minHeight = hints.base_height;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
else
|
|
|
|
minWidth = minHeight = 1;
|
|
|
|
|
|
|
|
if (hints.flags & PBaseSize) {
|
|
|
|
baseWidth = hints.base_width;
|
|
|
|
baseHeight = hints.base_height;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
else if (hints.flags & PMinSize) {
|
|
|
|
baseWidth = hints.min_width;
|
|
|
|
baseHeight = hints.min_height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
baseWidth = baseHeight = 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (hints.flags & PMaxSize) {
|
|
|
|
maxWidth = hints.max_width;
|
|
|
|
maxHeight = hints.max_height;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
else {
|
|
|
|
maxWidth = MAXINT;
|
|
|
|
maxHeight = MAXINT;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (hints.flags & PResizeInc) {
|
|
|
|
xinc = hints.width_inc;
|
|
|
|
yinc = hints.height_inc;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
else
|
|
|
|
xinc = yinc = 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First, clamp to min and max values
|
|
|
|
*/
|
|
|
|
if (dwidth < minWidth)
|
|
|
|
dwidth = minWidth;
|
|
|
|
if (dheight < minHeight)
|
|
|
|
dheight = minHeight;
|
|
|
|
|
|
|
|
if (dwidth > maxWidth)
|
|
|
|
dwidth = maxWidth;
|
|
|
|
if (dheight > maxHeight)
|
|
|
|
dheight = maxHeight;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Second, fit to base + N * inc
|
|
|
|
*/
|
|
|
|
dwidth = ((dwidth - baseWidth) / xinc * xinc) + baseWidth;
|
|
|
|
dheight = ((dheight - baseHeight) / yinc * yinc) + baseHeight;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Third, adjust for aspect ratio
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The math looks like this:
|
|
|
|
*
|
|
|
|
* minAspectX dwidth maxAspectX
|
|
|
|
* ---------- <= ------- <= ----------
|
|
|
|
* minAspectY dheight maxAspectY
|
|
|
|
*
|
|
|
|
* If that is multiplied out, then the width and height are
|
|
|
|
* invalid in the following situations:
|
|
|
|
*
|
|
|
|
* minAspectX * dheight > minAspectY * dwidth
|
|
|
|
* maxAspectX * dheight < maxAspectY * dwidth
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (hints.flags & PAspect) {
|
|
|
|
if (hints.min_aspect.x * dheight > hints.min_aspect.y * dwidth) {
|
|
|
|
delta =
|
|
|
|
makemult(hints.min_aspect.x * dheight / hints.min_aspect.y -
|
|
|
|
dwidth, xinc);
|
|
|
|
if (dwidth + delta <= maxWidth)
|
|
|
|
dwidth += delta;
|
|
|
|
else {
|
|
|
|
delta =
|
|
|
|
makemult(dheight -
|
|
|
|
dwidth * hints.min_aspect.y / hints.min_aspect.x,
|
|
|
|
yinc);
|
|
|
|
if (dheight - delta >= minHeight)
|
|
|
|
dheight -= delta;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
if (hints.max_aspect.x * dheight < hints.max_aspect.y * dwidth) {
|
|
|
|
delta =
|
|
|
|
makemult(dwidth * hints.max_aspect.y / hints.max_aspect.x -
|
|
|
|
dheight, yinc);
|
|
|
|
if (dheight + delta <= maxHeight)
|
|
|
|
dheight += delta;
|
|
|
|
else {
|
|
|
|
delta =
|
|
|
|
makemult(dwidth -
|
|
|
|
hints.max_aspect.x * dheight / hints.max_aspect.y,
|
|
|
|
xinc);
|
|
|
|
if (dwidth - delta >= minWidth)
|
|
|
|
dwidth -= delta;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Return computed values */
|
|
|
|
*widthp = dwidth;
|
|
|
|
*heightp = dheight;
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
#undef makemult
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ValidateSizing - Ensures size request respects hints
|
|
|
|
*/
|
|
|
|
static int
|
2012-06-10 07:21:05 -06:00
|
|
|
ValidateSizing(HWND hwnd, WindowPtr pWin, WPARAM wParam, LPARAM lParam)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
WinXSizeHints sizeHints;
|
|
|
|
RECT *rect;
|
|
|
|
int iWidth, iHeight;
|
|
|
|
RECT rcClient, rcWindow;
|
|
|
|
int iBorderWidthX, iBorderWidthY;
|
|
|
|
|
|
|
|
/* Invalid input checking */
|
|
|
|
if (pWin == NULL || lParam == 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* No size hints, no checking */
|
|
|
|
if (!winMultiWindowGetWMNormalHints(pWin, &sizeHints))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Avoid divide-by-zero */
|
|
|
|
if (sizeHints.flags & PResizeInc) {
|
|
|
|
if (sizeHints.width_inc == 0)
|
|
|
|
sizeHints.width_inc = 1;
|
|
|
|
if (sizeHints.height_inc == 0)
|
|
|
|
sizeHints.height_inc = 1;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
rect = (RECT *) lParam;
|
|
|
|
|
|
|
|
iWidth = rect->right - rect->left;
|
|
|
|
iHeight = rect->bottom - rect->top;
|
|
|
|
|
|
|
|
/* Now remove size of any borders and title bar */
|
|
|
|
GetClientRect(hwnd, &rcClient);
|
|
|
|
GetWindowRect(hwnd, &rcWindow);
|
|
|
|
iBorderWidthX =
|
|
|
|
(rcWindow.right - rcWindow.left) - (rcClient.right - rcClient.left);
|
|
|
|
iBorderWidthY =
|
|
|
|
(rcWindow.bottom - rcWindow.top) - (rcClient.bottom - rcClient.top);
|
|
|
|
iWidth -= iBorderWidthX;
|
|
|
|
iHeight -= iBorderWidthY;
|
|
|
|
|
|
|
|
/* Constrain the size to legal values */
|
|
|
|
ConstrainSize(sizeHints, &iWidth, &iHeight);
|
|
|
|
|
|
|
|
/* Add back the size of borders and title bar */
|
|
|
|
iWidth += iBorderWidthX;
|
|
|
|
iHeight += iBorderWidthY;
|
|
|
|
|
|
|
|
/* Adjust size according to where we're dragging from */
|
|
|
|
switch (wParam) {
|
|
|
|
case WMSZ_TOP:
|
|
|
|
case WMSZ_TOPRIGHT:
|
|
|
|
case WMSZ_BOTTOM:
|
|
|
|
case WMSZ_BOTTOMRIGHT:
|
|
|
|
case WMSZ_RIGHT:
|
|
|
|
rect->right = rect->left + iWidth;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rect->left = rect->right - iWidth;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch (wParam) {
|
|
|
|
case WMSZ_BOTTOM:
|
|
|
|
case WMSZ_BOTTOMRIGHT:
|
|
|
|
case WMSZ_BOTTOMLEFT:
|
|
|
|
case WMSZ_RIGHT:
|
|
|
|
case WMSZ_LEFT:
|
|
|
|
rect->bottom = rect->top + iHeight;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rect->top = rect->bottom - iHeight;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
extern Bool winInDestroyWindowsWindow;
|
|
|
|
static Bool winInRaiseWindow = FALSE;
|
2012-06-10 07:21:05 -06:00
|
|
|
static void
|
|
|
|
winRaiseWindow(WindowPtr pWin)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!winInDestroyWindowsWindow && !winInRaiseWindow) {
|
|
|
|
BOOL oldstate = winInRaiseWindow;
|
|
|
|
XID vlist[1] = { 0 };
|
|
|
|
winInRaiseWindow = TRUE;
|
|
|
|
/* Call configure window directly to make sure it gets processed
|
|
|
|
* in time
|
|
|
|
*/
|
|
|
|
ConfigureWindow(pWin, CWStackMode, vlist, serverClient);
|
|
|
|
winInRaiseWindow = oldstate;
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
static
|
2012-06-10 07:21:05 -06:00
|
|
|
void
|
|
|
|
winStartMousePolling(winPrivScreenPtr s_pScreenPriv)
|
2010-07-27 13:02:24 -06:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
/*
|
|
|
|
* Timer to poll mouse position. This is needed to make
|
|
|
|
* programs like xeyes follow the mouse properly when the
|
|
|
|
* mouse pointer is outside of any X window.
|
|
|
|
*/
|
|
|
|
if (g_uipMousePollingTimerID == 0)
|
|
|
|
g_uipMousePollingTimerID = SetTimer(s_pScreenPriv->hwndScreen,
|
|
|
|
WIN_POLLING_MOUSE_TIMER_ID,
|
|
|
|
MOUSE_POLLING_INTERVAL, NULL);
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* winTopLevelWindowProc - Window procedure for all top-level Windows windows.
|
|
|
|
*/
|
|
|
|
|
|
|
|
LRESULT CALLBACK
|
2012-06-10 07:21:05 -06:00
|
|
|
winTopLevelWindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
POINT ptMouse;
|
|
|
|
HDC hdcUpdate;
|
|
|
|
PAINTSTRUCT ps;
|
|
|
|
WindowPtr pWin = NULL;
|
|
|
|
winPrivWinPtr pWinPriv = NULL;
|
|
|
|
ScreenPtr s_pScreen = NULL;
|
|
|
|
winPrivScreenPtr s_pScreenPriv = NULL;
|
|
|
|
winScreenInfo *s_pScreenInfo = NULL;
|
|
|
|
HWND hwndScreen = NULL;
|
|
|
|
DrawablePtr pDraw = NULL;
|
|
|
|
winWMMessageRec wmMsg;
|
|
|
|
Bool fWMMsgInitialized = FALSE;
|
|
|
|
static Bool s_fTracking = FALSE;
|
|
|
|
Bool needRestack = FALSE;
|
|
|
|
LRESULT ret;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#if CYGDEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebugWin32Message("winTopLevelWindowProc", hwnd, message, wParam,
|
|
|
|
lParam);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Check if the Windows window property for our X window pointer is valid */
|
|
|
|
if ((pWin = GetProp(hwnd, WIN_WINDOW_PROP)) != NULL) {
|
|
|
|
/* Our X window pointer is valid */
|
|
|
|
|
|
|
|
/* Get pointers to the drawable and the screen */
|
|
|
|
pDraw = &pWin->drawable;
|
|
|
|
s_pScreen = pWin->drawable.pScreen;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Get a pointer to our window privates */
|
|
|
|
pWinPriv = winGetWindowPriv(pWin);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Get pointers to our screen privates and screen info */
|
|
|
|
s_pScreenPriv = pWinPriv->pScreenPriv;
|
|
|
|
s_pScreenInfo = s_pScreenPriv->pScreenInfo;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Get the handle for our screen-sized window */
|
|
|
|
hwndScreen = s_pScreenPriv->hwndScreen;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* */
|
|
|
|
wmMsg.msg = 0;
|
|
|
|
wmMsg.hwndWindow = hwnd;
|
|
|
|
wmMsg.iWindow = (Window) GetProp(hwnd, WIN_WID_PROP);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
wmMsg.iX = pDraw->x;
|
|
|
|
wmMsg.iY = pDraw->y;
|
|
|
|
wmMsg.iWidth = pDraw->width;
|
|
|
|
wmMsg.iHeight = pDraw->height;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
fWMMsgInitialized = TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#if 0
|
2012-06-10 07:21:05 -06:00
|
|
|
/*
|
|
|
|
* Print some debugging information
|
|
|
|
*/
|
|
|
|
|
|
|
|
ErrorF("hWnd %08X\n", hwnd);
|
|
|
|
ErrorF("pWin %08X\n", pWin);
|
|
|
|
ErrorF("pDraw %08X\n", pDraw);
|
|
|
|
ErrorF("\ttype %08X\n", pWin->drawable.type);
|
|
|
|
ErrorF("\tclass %08X\n", pWin->drawable.class);
|
|
|
|
ErrorF("\tdepth %08X\n", pWin->drawable.depth);
|
|
|
|
ErrorF("\tbitsPerPixel %08X\n", pWin->drawable.bitsPerPixel);
|
|
|
|
ErrorF("\tid %08X\n", pWin->drawable.id);
|
|
|
|
ErrorF("\tx %08X\n", pWin->drawable.x);
|
|
|
|
ErrorF("\ty %08X\n", pWin->drawable.y);
|
|
|
|
ErrorF("\twidth %08X\n", pWin->drawable.width);
|
|
|
|
ErrorF("\thenght %08X\n", pWin->drawable.height);
|
|
|
|
ErrorF("\tpScreen %08X\n", pWin->drawable.pScreen);
|
|
|
|
ErrorF("\tserialNumber %08X\n", pWin->drawable.serialNumber);
|
|
|
|
ErrorF("g_iWindowPrivateKey %p\n", g_iWindowPrivateKey);
|
|
|
|
ErrorF("pWinPriv %08X\n", pWinPriv);
|
|
|
|
ErrorF("s_pScreenPriv %08X\n", s_pScreenPriv);
|
|
|
|
ErrorF("s_pScreenInfo %08X\n", s_pScreenInfo);
|
|
|
|
ErrorF("hwndScreen %08X\n", hwndScreen);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Branch on message type */
|
|
|
|
switch (message) {
|
2006-11-26 11:13:41 -07:00
|
|
|
case WM_CREATE:
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* */
|
|
|
|
SetProp(hwnd,
|
|
|
|
WIN_WINDOW_PROP,
|
|
|
|
(HANDLE) ((LPCREATESTRUCT) lParam)->lpCreateParams);
|
|
|
|
|
|
|
|
/* */
|
|
|
|
SetProp(hwnd,
|
|
|
|
WIN_WID_PROP,
|
|
|
|
(HANDLE) winGetWindowID(((LPCREATESTRUCT) lParam)->
|
|
|
|
lpCreateParams));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make X windows' Z orders sync with Windows windows because
|
|
|
|
* there can be AlwaysOnTop windows overlapped on the window
|
|
|
|
* currently being created.
|
|
|
|
*/
|
|
|
|
winReorderWindowsMultiWindow();
|
|
|
|
|
|
|
|
/* Fix a 'round title bar corner background should be transparent not black' problem when first painted */
|
|
|
|
{
|
|
|
|
RECT rWindow;
|
|
|
|
HRGN hRgnWindow;
|
|
|
|
|
|
|
|
GetWindowRect(hwnd, &rWindow);
|
|
|
|
hRgnWindow = CreateRectRgnIndirect(&rWindow);
|
|
|
|
SetWindowRgn(hwnd, hRgnWindow, TRUE);
|
|
|
|
DeleteObject(hRgnWindow);
|
|
|
|
}
|
|
|
|
|
|
|
|
SetWindowLongPtr(hwnd, GWLP_USERDATA, (LONG_PTR) XMING_SIGNATURE);
|
|
|
|
|
|
|
|
return 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_INIT_SYS_MENU:
|
2012-06-10 07:21:05 -06:00
|
|
|
/*
|
|
|
|
* Add whatever the setup file wants to for this window
|
|
|
|
*/
|
|
|
|
SetupSysMenu((unsigned long) hwnd);
|
|
|
|
return 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_SYSCOMMAND:
|
2012-06-10 07:21:05 -06:00
|
|
|
/*
|
|
|
|
* Any window menu items go through here
|
|
|
|
*/
|
|
|
|
if (HandleCustomWM_COMMAND((unsigned long) hwnd, LOWORD(wParam))) {
|
|
|
|
/* Don't pass customized menus to DefWindowProc */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (wParam == SC_RESTORE || wParam == SC_MAXIMIZE) {
|
|
|
|
WINDOWPLACEMENT wndpl;
|
|
|
|
|
|
|
|
wndpl.length = sizeof(wndpl);
|
|
|
|
if (GetWindowPlacement(hwnd, &wndpl) &&
|
|
|
|
wndpl.showCmd == SW_SHOWMINIMIZED)
|
|
|
|
needRestack = TRUE;
|
|
|
|
}
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_INITMENU:
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Checks/Unchecks any menu items before they are displayed */
|
|
|
|
HandleCustomWM_INITMENU((unsigned long) hwnd, wParam);
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
case WM_ERASEBKGND:
|
2012-06-10 07:21:05 -06:00
|
|
|
/*
|
|
|
|
* Pretend that we did erase the background but we don't care,
|
|
|
|
* since we repaint the entire region anyhow
|
|
|
|
* This avoids some flickering when resizing.
|
|
|
|
*/
|
|
|
|
return TRUE;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
case WM_PAINT:
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Only paint if our window handle is valid */
|
|
|
|
if (hwndScreen == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* BeginPaint gives us an hdc that clips to the invalidated region */
|
|
|
|
hdcUpdate = BeginPaint(hwnd, &ps);
|
|
|
|
/* Avoid the BitBlt's if the PAINTSTRUCT is bogus */
|
|
|
|
if (ps.rcPaint.right == 0 && ps.rcPaint.bottom == 0 &&
|
|
|
|
ps.rcPaint.left == 0 && ps.rcPaint.top == 0) {
|
|
|
|
EndPaint(hwnd, &ps);
|
|
|
|
return 0;
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2011-11-05 07:32:40 -06:00
|
|
|
#ifdef XWIN_GLX_WINDOWS
|
2012-06-10 07:21:05 -06:00
|
|
|
if (pWinPriv->fWglUsed) {
|
|
|
|
/*
|
|
|
|
For regions which are being drawn by GL, the shadow framebuffer doesn't have the
|
|
|
|
correct bits, so don't bitblt from the shadow framebuffer
|
|
|
|
|
|
|
|
XXX: For now, just leave it alone, but ideally we want to send an expose event to
|
|
|
|
the window so it really redraws the affected region...
|
|
|
|
*/
|
|
|
|
ValidateRect(hwnd, &(ps.rcPaint));
|
2011-11-05 07:32:40 -06:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
else
|
2011-11-05 07:32:40 -06:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Try to copy from the shadow buffer */
|
|
|
|
if (!BitBlt(hdcUpdate,
|
|
|
|
ps.rcPaint.left, ps.rcPaint.top,
|
|
|
|
ps.rcPaint.right - ps.rcPaint.left,
|
|
|
|
ps.rcPaint.bottom - ps.rcPaint.top,
|
|
|
|
s_pScreenPriv->hdcShadow,
|
|
|
|
ps.rcPaint.left + pWin->drawable.x,
|
|
|
|
ps.rcPaint.top + pWin->drawable.y, SRCCOPY)) {
|
|
|
|
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("winTopLevelWindowProc - BitBlt failed: %s\n",
|
|
|
|
(LPSTR) lpMsgBuf);
|
|
|
|
LocalFree(lpMsgBuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* EndPaint frees the DC */
|
|
|
|
EndPaint(hwnd, &ps);
|
|
|
|
return 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_MOUSEMOVE:
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Unpack the client area mouse coordinates */
|
|
|
|
ptMouse.x = GET_X_LPARAM(lParam);
|
|
|
|
ptMouse.y = GET_Y_LPARAM(lParam);
|
|
|
|
|
|
|
|
/* Translate the client area mouse coordinates to screen coordinates */
|
|
|
|
ClientToScreen(hwnd, &ptMouse);
|
|
|
|
|
|
|
|
/* Screen Coords from (-X, -Y) -> Root Window (0, 0) */
|
|
|
|
ptMouse.x -= GetSystemMetrics(SM_XVIRTUALSCREEN);
|
|
|
|
ptMouse.y -= GetSystemMetrics(SM_YVIRTUALSCREEN);
|
|
|
|
|
|
|
|
/* We can't do anything without privates */
|
|
|
|
if (s_pScreenPriv == NULL || s_pScreenInfo->fIgnoreInput)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Has the mouse pointer crossed screens? */
|
|
|
|
if (s_pScreen != miPointerGetScreen(g_pwinPointer))
|
|
|
|
miPointerSetScreen(g_pwinPointer, s_pScreenInfo->dwScreen,
|
|
|
|
ptMouse.x - s_pScreenInfo->dwXOffset,
|
|
|
|
ptMouse.y - s_pScreenInfo->dwYOffset);
|
|
|
|
|
|
|
|
/* Are we tracking yet? */
|
|
|
|
if (!s_fTracking) {
|
|
|
|
TRACKMOUSEEVENT tme;
|
|
|
|
|
|
|
|
/* Setup data structure */
|
|
|
|
ZeroMemory(&tme, sizeof(tme));
|
|
|
|
tme.cbSize = sizeof(tme);
|
|
|
|
tme.dwFlags = TME_LEAVE;
|
|
|
|
tme.hwndTrack = hwnd;
|
|
|
|
|
|
|
|
/* Call the tracking function */
|
|
|
|
if (!TrackMouseEvent(&tme))
|
|
|
|
ErrorF("winTopLevelWindowProc - TrackMouseEvent failed\n");
|
|
|
|
|
|
|
|
/* Flag that we are tracking now */
|
|
|
|
s_fTracking = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hide or show the Windows mouse cursor */
|
|
|
|
if (g_fSoftwareCursor && g_fCursor) {
|
|
|
|
/* Hide Windows cursor */
|
|
|
|
g_fCursor = FALSE;
|
|
|
|
ShowCursor(FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Kill the timer used to poll mouse events */
|
|
|
|
if (g_uipMousePollingTimerID != 0) {
|
|
|
|
KillTimer(s_pScreenPriv->hwndScreen, WIN_POLLING_MOUSE_TIMER_ID);
|
|
|
|
g_uipMousePollingTimerID = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Deliver absolute cursor position to X Server */
|
|
|
|
winEnqueueMotion(ptMouse.x - s_pScreenInfo->dwXOffset,
|
|
|
|
ptMouse.y - s_pScreenInfo->dwYOffset);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
case WM_NCMOUSEMOVE:
|
2012-06-10 07:21:05 -06:00
|
|
|
/*
|
|
|
|
* We break instead of returning 0 since we need to call
|
|
|
|
* DefWindowProc to get the mouse cursor changes
|
|
|
|
* and min/max/close button highlighting in Windows XP.
|
|
|
|
* The Platform SDK says that you should return 0 if you
|
|
|
|
* process this message, but it fails to mention that you
|
|
|
|
* will give up any default functionality if you do return 0.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* We can't do anything without privates */
|
|
|
|
if (s_pScreenPriv == NULL || s_pScreenInfo->fIgnoreInput)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Non-client mouse movement, show Windows cursor */
|
|
|
|
if (g_fSoftwareCursor && !g_fCursor) {
|
|
|
|
g_fCursor = TRUE;
|
|
|
|
ShowCursor(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
winStartMousePolling(s_pScreenPriv);
|
|
|
|
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_MOUSELEAVE:
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Mouse has left our client area */
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Flag that we are no longer tracking */
|
|
|
|
s_fTracking = FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Show the mouse cursor, if necessary */
|
|
|
|
if (g_fSoftwareCursor && !g_fCursor) {
|
|
|
|
g_fCursor = TRUE;
|
|
|
|
ShowCursor(TRUE);
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
winStartMousePolling(s_pScreenPriv);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
return 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_LBUTTONDBLCLK:
|
|
|
|
case WM_LBUTTONDOWN:
|
2012-06-10 07:21:05 -06:00
|
|
|
if (s_pScreenPriv == NULL || s_pScreenInfo->fIgnoreInput)
|
|
|
|
break;
|
|
|
|
g_fButton[0] = TRUE;
|
|
|
|
SetCapture(hwnd);
|
|
|
|
return winMouseButtonsHandle(s_pScreen, ButtonPress, Button1, wParam);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
case WM_LBUTTONUP:
|
2012-06-10 07:21:05 -06:00
|
|
|
if (s_pScreenPriv == NULL || s_pScreenInfo->fIgnoreInput)
|
|
|
|
break;
|
|
|
|
g_fButton[0] = FALSE;
|
|
|
|
ReleaseCapture();
|
|
|
|
winStartMousePolling(s_pScreenPriv);
|
|
|
|
return winMouseButtonsHandle(s_pScreen, ButtonRelease, Button1, wParam);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_MBUTTONDBLCLK:
|
|
|
|
case WM_MBUTTONDOWN:
|
2012-06-10 07:21:05 -06:00
|
|
|
if (s_pScreenPriv == NULL || s_pScreenInfo->fIgnoreInput)
|
|
|
|
break;
|
|
|
|
g_fButton[1] = TRUE;
|
|
|
|
SetCapture(hwnd);
|
|
|
|
return winMouseButtonsHandle(s_pScreen, ButtonPress, Button2, wParam);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
case WM_MBUTTONUP:
|
2012-06-10 07:21:05 -06:00
|
|
|
if (s_pScreenPriv == NULL || s_pScreenInfo->fIgnoreInput)
|
|
|
|
break;
|
|
|
|
g_fButton[1] = FALSE;
|
|
|
|
ReleaseCapture();
|
|
|
|
winStartMousePolling(s_pScreenPriv);
|
|
|
|
return winMouseButtonsHandle(s_pScreen, ButtonRelease, Button2, wParam);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
case WM_RBUTTONDBLCLK:
|
|
|
|
case WM_RBUTTONDOWN:
|
2012-06-10 07:21:05 -06:00
|
|
|
if (s_pScreenPriv == NULL || s_pScreenInfo->fIgnoreInput)
|
|
|
|
break;
|
|
|
|
g_fButton[2] = TRUE;
|
|
|
|
SetCapture(hwnd);
|
|
|
|
return winMouseButtonsHandle(s_pScreen, ButtonPress, Button3, wParam);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
case WM_RBUTTONUP:
|
2012-06-10 07:21:05 -06:00
|
|
|
if (s_pScreenPriv == NULL || s_pScreenInfo->fIgnoreInput)
|
|
|
|
break;
|
|
|
|
g_fButton[2] = FALSE;
|
|
|
|
ReleaseCapture();
|
|
|
|
winStartMousePolling(s_pScreenPriv);
|
|
|
|
return winMouseButtonsHandle(s_pScreen, ButtonRelease, Button3, wParam);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_XBUTTONDBLCLK:
|
|
|
|
case WM_XBUTTONDOWN:
|
2012-06-10 07:21:05 -06:00
|
|
|
if (s_pScreenPriv == NULL || s_pScreenInfo->fIgnoreInput)
|
|
|
|
break;
|
|
|
|
SetCapture(hwnd);
|
|
|
|
return winMouseButtonsHandle(s_pScreen, ButtonPress, HIWORD(wParam) + 5,
|
|
|
|
wParam);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
case WM_XBUTTONUP:
|
2012-06-10 07:21:05 -06:00
|
|
|
if (s_pScreenPriv == NULL || s_pScreenInfo->fIgnoreInput)
|
|
|
|
break;
|
|
|
|
ReleaseCapture();
|
|
|
|
winStartMousePolling(s_pScreenPriv);
|
|
|
|
return winMouseButtonsHandle(s_pScreen, ButtonRelease,
|
|
|
|
HIWORD(wParam) + 5, wParam);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_MOUSEWHEEL:
|
2012-06-10 07:21:05 -06:00
|
|
|
if (SendMessage
|
|
|
|
(hwnd, WM_NCHITTEST, 0,
|
|
|
|
MAKELONG(GET_X_LPARAM(lParam),
|
|
|
|
GET_Y_LPARAM(lParam))) == HTCLIENT) {
|
|
|
|
/* Pass the message to the root window */
|
|
|
|
SendMessage(hwndScreen, message, wParam, lParam);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_SETFOCUS:
|
2012-06-10 07:21:05 -06:00
|
|
|
if (s_pScreenPriv == NULL || s_pScreenInfo->fIgnoreInput)
|
|
|
|
break;
|
|
|
|
|
|
|
|
{
|
|
|
|
/* Get the parent window for transient handling */
|
|
|
|
HWND hParent = GetParent(hwnd);
|
|
|
|
|
|
|
|
if (hParent && IsIconic(hParent))
|
|
|
|
ShowWindow(hParent, SW_RESTORE);
|
|
|
|
}
|
|
|
|
|
|
|
|
winRestoreModeKeyStates();
|
|
|
|
|
|
|
|
/* Add the keyboard hook if possible */
|
|
|
|
if (g_fKeyboardHookLL)
|
|
|
|
g_fKeyboardHookLL = winInstallKeyboardHookLL();
|
|
|
|
return 0;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
case WM_KILLFOCUS:
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Pop any pressed keys since we are losing keyboard focus */
|
|
|
|
winKeybdReleaseKeys();
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Remove our keyboard hook if it is installed */
|
|
|
|
winRemoveKeyboardHookLL();
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Revert the X focus as well, but only if the Windows focus is going to another window */
|
|
|
|
if (!wParam && pWin)
|
|
|
|
DeleteWindowFromAnyEvents(pWin, FALSE);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case WM_SYSDEADCHAR:
|
2006-11-26 11:13:41 -07:00
|
|
|
case WM_DEADCHAR:
|
2012-06-10 07:21:05 -06:00
|
|
|
/*
|
|
|
|
* NOTE: We do nothing with WM_*CHAR messages,
|
|
|
|
* nor does the root window, so we can just toss these messages.
|
|
|
|
*/
|
|
|
|
return 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_SYSKEYDOWN:
|
|
|
|
case WM_KEYDOWN:
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/*
|
|
|
|
* Don't pass Alt-F4 key combo to root window,
|
|
|
|
* let Windows translate to WM_CLOSE and close this top-level window.
|
|
|
|
*
|
|
|
|
* NOTE: We purposely don't check the fUseWinKillKey setting because
|
|
|
|
* it should only apply to the key handling for the root window,
|
|
|
|
* not for top-level window-manager windows.
|
|
|
|
*
|
|
|
|
* ALSO NOTE: We do pass Ctrl-Alt-Backspace to the root window
|
|
|
|
* because that is a key combo that no X app should be expecting to
|
|
|
|
* receive, since it has historically been used to shutdown the X server.
|
|
|
|
* Passing Ctrl-Alt-Backspace to the root window preserves that
|
|
|
|
* behavior, assuming that -unixkill has been passed as a parameter.
|
|
|
|
*/
|
|
|
|
if (wParam == VK_F4 && (GetKeyState(VK_MENU) & 0x8000))
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#if CYGWINDOWING_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
if (wParam == VK_ESCAPE) {
|
|
|
|
/* Place for debug: put any tests and dumps here */
|
|
|
|
WINDOWPLACEMENT windPlace;
|
|
|
|
RECT rc;
|
|
|
|
LPRECT pRect;
|
|
|
|
|
|
|
|
windPlace.length = sizeof(WINDOWPLACEMENT);
|
|
|
|
GetWindowPlacement(hwnd, &windPlace);
|
|
|
|
pRect = &windPlace.rcNormalPosition;
|
|
|
|
ErrorF("\nCYGWINDOWING Dump:\n"
|
|
|
|
"\tdrawable: (%hd, %hd) - %hdx%hd\n", pDraw->x,
|
|
|
|
pDraw->y, pDraw->width, pDraw->height);
|
|
|
|
ErrorF("\twindPlace: (%ld, %ld) - %ldx%ld\n", pRect->left,
|
|
|
|
pRect->top, pRect->right - pRect->left,
|
|
|
|
pRect->bottom - pRect->top);
|
|
|
|
if (GetClientRect(hwnd, &rc)) {
|
|
|
|
pRect = &rc;
|
|
|
|
ErrorF("\tClientRect: (%ld, %ld) - %ldx%ld\n", pRect->left,
|
|
|
|
pRect->top, pRect->right - pRect->left,
|
|
|
|
pRect->bottom - pRect->top);
|
|
|
|
}
|
|
|
|
if (GetWindowRect(hwnd, &rc)) {
|
|
|
|
pRect = &rc;
|
|
|
|
ErrorF("\tWindowRect: (%ld, %ld) - %ldx%ld\n", pRect->left,
|
|
|
|
pRect->top, pRect->right - pRect->left,
|
|
|
|
pRect->bottom - pRect->top);
|
|
|
|
}
|
|
|
|
ErrorF("\n");
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
/* Pass the message to the root window */
|
|
|
|
return winWindowProc(hwndScreen, message, wParam, lParam);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_SYSKEYUP:
|
|
|
|
case WM_KEYUP:
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Pass the message to the root window */
|
|
|
|
return winWindowProc(hwndScreen, message, wParam, lParam);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_HOTKEY:
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Pass the message to the root window */
|
|
|
|
SendMessage(hwndScreen, message, wParam, lParam);
|
|
|
|
return 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_ACTIVATE:
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Pass the message to the root window */
|
|
|
|
SendMessage(hwndScreen, message, wParam, lParam);
|
|
|
|
|
|
|
|
if (LOWORD(wParam) != WA_INACTIVE) {
|
|
|
|
/* Raise the window to the top in Z order */
|
|
|
|
/* ago: Activate does not mean putting it to front! */
|
|
|
|
/*
|
|
|
|
wmMsg.msg = WM_WM_RAISE;
|
|
|
|
if (fWMMsgInitialized)
|
|
|
|
winSendMessageToWM (s_pScreenPriv->pWMInfo, &wmMsg);
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Tell our Window Manager thread to activate the window */
|
|
|
|
wmMsg.msg = WM_WM_ACTIVATE;
|
|
|
|
if (fWMMsgInitialized)
|
|
|
|
if (!pWin || !pWin->overrideRedirect) /* for OOo menus */
|
|
|
|
winSendMessageToWM(s_pScreenPriv->pWMInfo, &wmMsg);
|
|
|
|
}
|
|
|
|
/* Prevent the mouse wheel from stalling when another window is minimized */
|
|
|
|
if (HIWORD(wParam) == 0 && LOWORD(wParam) == WA_ACTIVE &&
|
|
|
|
(HWND) lParam != NULL && (HWND) lParam != (HWND) GetParent(hwnd))
|
|
|
|
SetFocus(hwnd);
|
|
|
|
return 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_ACTIVATEAPP:
|
2012-06-10 07:21:05 -06:00
|
|
|
/*
|
|
|
|
* This message is also sent to the root window
|
|
|
|
* so we do nothing for individual multiwindow windows
|
|
|
|
*/
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_CLOSE:
|
2013-06-07 11:28:45 -06:00
|
|
|
/* Removep AppUserModelID property */
|
|
|
|
winSetAppUserModelID(hwnd, NULL);
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Branch on if the window was killed in X already */
|
|
|
|
if (pWinPriv->fXKilled) {
|
|
|
|
/* Window was killed, go ahead and destroy the window */
|
|
|
|
DestroyWindow(hwnd);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Tell our Window Manager thread to kill the window */
|
|
|
|
wmMsg.msg = WM_WM_KILL;
|
|
|
|
if (fWMMsgInitialized)
|
|
|
|
winSendMessageToWM(s_pScreenPriv->pWMInfo, &wmMsg);
|
|
|
|
}
|
|
|
|
return 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_DESTROY:
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Branch on if the window was killed in X already */
|
|
|
|
if (pWinPriv && !pWinPriv->fXKilled) {
|
|
|
|
ErrorF("winTopLevelWindowProc - WM_DESTROY - WM_WM_KILL\n");
|
|
|
|
|
|
|
|
/* Tell our Window Manager thread to kill the window */
|
|
|
|
wmMsg.msg = WM_WM_KILL;
|
|
|
|
if (fWMMsgInitialized)
|
|
|
|
winSendMessageToWM(s_pScreenPriv->pWMInfo, &wmMsg);
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
RemoveProp(hwnd, WIN_WINDOW_PROP);
|
|
|
|
RemoveProp(hwnd, WIN_WID_PROP);
|
|
|
|
RemoveProp(hwnd, WIN_NEEDMANAGE_PROP);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_MOVE:
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Adjust the X Window to the moved Windows window */
|
|
|
|
winAdjustXWindow(pWin, hwnd);
|
|
|
|
return 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_SHOWWINDOW:
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Bail out if the window is being hidden */
|
|
|
|
if (!wParam)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* */
|
|
|
|
if (!pWin->overrideRedirect) {
|
2013-06-07 11:28:45 -06:00
|
|
|
HWND zstyle = HWND_NOTOPMOST;
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Flag that this window needs to be made active when clicked */
|
|
|
|
SetProp(hwnd, WIN_NEEDMANAGE_PROP, (HANDLE) 1);
|
|
|
|
|
2013-06-07 11:28:45 -06:00
|
|
|
/* Set the transient style flags */
|
|
|
|
if (GetParent(hwnd))
|
|
|
|
SetWindowLongPtr(hwnd, GWL_STYLE,
|
|
|
|
WS_POPUP | WS_OVERLAPPED | WS_SYSMENU |
|
|
|
|
WS_CLIPCHILDREN | WS_CLIPSIBLINGS);
|
|
|
|
/* Set the window standard style flags */
|
|
|
|
else
|
|
|
|
SetWindowLongPtr(hwnd, GWL_STYLE,
|
|
|
|
(WS_POPUP | WS_OVERLAPPEDWINDOW |
|
|
|
|
WS_CLIPCHILDREN | WS_CLIPSIBLINGS)
|
|
|
|
& ~WS_CAPTION & ~WS_SIZEBOX);
|
|
|
|
|
|
|
|
winUpdateWindowPosition(hwnd, &zstyle);
|
|
|
|
|
|
|
|
{
|
|
|
|
WinXWMHints hints;
|
|
|
|
|
|
|
|
if (winMultiWindowGetWMHints(pWin, &hints)) {
|
|
|
|
/*
|
|
|
|
Give the window focus, unless it has an InputHint
|
|
|
|
which is FALSE (this is used by e.g. glean to
|
|
|
|
avoid every test window grabbing the focus)
|
|
|
|
*/
|
|
|
|
if (!((hints.flags & InputHint) && (!hints.input))) {
|
|
|
|
SetForegroundWindow(hwnd);
|
2012-06-10 07:21:05 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
wmMsg.msg = WM_WM_MAP3;
|
|
|
|
}
|
|
|
|
else { /* It is an overridden window so make it top of Z stack */
|
|
|
|
|
|
|
|
HWND forHwnd = GetForegroundWindow();
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGWINDOWING_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
ErrorF("overridden window is shown\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
if (forHwnd != NULL) {
|
|
|
|
if (GetWindowLongPtr(forHwnd, GWLP_USERDATA) & (LONG_PTR)
|
|
|
|
XMING_SIGNATURE) {
|
|
|
|
if (GetWindowLongPtr(forHwnd, GWL_EXSTYLE) & WS_EX_TOPMOST)
|
|
|
|
SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0,
|
|
|
|
SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
|
|
|
|
else
|
|
|
|
SetWindowPos(hwnd, HWND_NOTOPMOST, 0, 0, 0, 0,
|
|
|
|
SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
wmMsg.msg = WM_WM_MAP2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Tell our Window Manager thread to map the window */
|
|
|
|
if (fWMMsgInitialized)
|
|
|
|
winSendMessageToWM(s_pScreenPriv->pWMInfo, &wmMsg);
|
|
|
|
|
|
|
|
winStartMousePolling(s_pScreenPriv);
|
|
|
|
|
|
|
|
return 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_SIZING:
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Need to legalize the size according to WM_NORMAL_HINTS */
|
|
|
|
/* for applications like xterm */
|
|
|
|
return ValidateSizing(hwnd, pWin, wParam, lParam);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_WINDOWPOSCHANGED:
|
2012-06-10 07:21:05 -06:00
|
|
|
{
|
|
|
|
LPWINDOWPOS pWinPos = (LPWINDOWPOS) lParam;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!(pWinPos->flags & SWP_NOZORDER)) {
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGWINDOWING_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("\twindow z order was changed\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
if (pWinPos->hwndInsertAfter == HWND_TOP
|
|
|
|
|| pWinPos->hwndInsertAfter == HWND_TOPMOST
|
|
|
|
|| pWinPos->hwndInsertAfter == HWND_NOTOPMOST) {
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGWINDOWING_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("\traise to top\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Raise the window to the top in Z order */
|
|
|
|
winRaiseWindow(pWin);
|
|
|
|
}
|
|
|
|
else if (pWinPos->hwndInsertAfter == HWND_BOTTOM) {
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Check if this window is top of X windows. */
|
|
|
|
HWND hWndAbove = NULL;
|
|
|
|
DWORD dwCurrentProcessID = GetCurrentProcessId();
|
|
|
|
DWORD dwWindowProcessID = 0;
|
|
|
|
|
|
|
|
for (hWndAbove = pWinPos->hwndInsertAfter;
|
|
|
|
hWndAbove != NULL;
|
|
|
|
hWndAbove = GetNextWindow(hWndAbove, GW_HWNDPREV)) {
|
|
|
|
/* Ignore other XWin process's window */
|
|
|
|
GetWindowThreadProcessId(hWndAbove, &dwWindowProcessID);
|
|
|
|
|
|
|
|
if ((dwWindowProcessID == dwCurrentProcessID)
|
|
|
|
&& GetProp(hWndAbove, WIN_WINDOW_PROP)
|
|
|
|
&& !IsWindowVisible(hWndAbove)
|
|
|
|
&& !IsIconic(hWndAbove)) /* ignore minimized windows */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* If this is top of X windows in Windows stack,
|
|
|
|
raise it in X stack. */
|
|
|
|
if (hWndAbove == NULL) {
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGWINDOWING_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("\traise to top\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
winRaiseWindow(pWin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Pass the message to DefWindowProc to let the function
|
|
|
|
* break down WM_WINDOWPOSCHANGED to WM_MOVE and WM_SIZE.
|
|
|
|
*/
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_SIZE:
|
2012-06-10 07:21:05 -06:00
|
|
|
/* see dix/window.c */
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGWINDOWING_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
{
|
|
|
|
char buf[64];
|
|
|
|
|
|
|
|
switch (wParam) {
|
|
|
|
case SIZE_MINIMIZED:
|
|
|
|
strcpy(buf, "SIZE_MINIMIZED");
|
|
|
|
break;
|
|
|
|
case SIZE_MAXIMIZED:
|
|
|
|
strcpy(buf, "SIZE_MAXIMIZED");
|
|
|
|
break;
|
|
|
|
case SIZE_RESTORED:
|
|
|
|
strcpy(buf, "SIZE_RESTORED");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
strcpy(buf, "UNKNOWN_FLAG");
|
|
|
|
}
|
|
|
|
ErrorF("winTopLevelWindowProc - WM_SIZE to %dx%d (%s) - %d ms\n",
|
|
|
|
(int) LOWORD(lParam), (int) HIWORD(lParam), buf,
|
|
|
|
(int) (GetTickCount()));
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Adjust the X Window to the moved Windows window */
|
|
|
|
winAdjustXWindow(pWin, hwnd);
|
|
|
|
return 0; /* end of WM_SIZE handler */
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2011-11-05 07:32:40 -06:00
|
|
|
case WM_STYLECHANGING:
|
2012-06-10 07:21:05 -06:00
|
|
|
/*
|
|
|
|
When the style changes, adjust the Windows window size so the client area remains the same size,
|
|
|
|
and adjust the Windows window position so that the client area remains in the same place.
|
|
|
|
*/
|
|
|
|
{
|
2011-11-05 07:32:40 -06:00
|
|
|
RECT newWinRect;
|
|
|
|
DWORD dwExStyle;
|
|
|
|
DWORD dwStyle;
|
2012-06-10 07:21:05 -06:00
|
|
|
DWORD newStyle = ((STYLESTRUCT *) lParam)->styleNew;
|
2011-11-05 07:32:40 -06:00
|
|
|
WINDOWINFO wi;
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
dwExStyle = GetWindowLongPtr(hwnd, GWL_EXSTYLE);
|
|
|
|
dwStyle = GetWindowLongPtr(hwnd, GWL_STYLE);
|
2011-11-05 07:32:40 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winTopLevelWindowProc - WM_STYLECHANGING from %08x %08x\n",
|
|
|
|
dwStyle, dwExStyle);
|
2011-11-05 07:32:40 -06:00
|
|
|
|
|
|
|
if (wParam == GWL_EXSTYLE)
|
2012-06-10 07:21:05 -06:00
|
|
|
dwExStyle = newStyle;
|
2011-11-05 07:32:40 -06:00
|
|
|
|
|
|
|
if (wParam == GWL_STYLE)
|
2012-06-10 07:21:05 -06:00
|
|
|
dwStyle = newStyle;
|
2011-11-05 07:32:40 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug("winTopLevelWindowProc - WM_STYLECHANGING to %08x %08x\n",
|
|
|
|
dwStyle, dwExStyle);
|
2011-11-05 07:32:40 -06:00
|
|
|
|
|
|
|
/* Get client rect in screen coordinates */
|
|
|
|
wi.cbSize = sizeof(WINDOWINFO);
|
|
|
|
GetWindowInfo(hwnd, &wi);
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug
|
|
|
|
("winTopLevelWindowProc - WM_STYLECHANGING client area {%d, %d, %d, %d}, {%d x %d}\n",
|
|
|
|
wi.rcClient.left, wi.rcClient.top, wi.rcClient.right,
|
|
|
|
wi.rcClient.bottom, wi.rcClient.right - wi.rcClient.left,
|
|
|
|
wi.rcClient.bottom - wi.rcClient.top);
|
2011-11-05 07:32:40 -06:00
|
|
|
|
|
|
|
newWinRect = wi.rcClient;
|
|
|
|
if (!AdjustWindowRectEx(&newWinRect, dwStyle, FALSE, dwExStyle))
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug
|
|
|
|
("winTopLevelWindowProc - WM_STYLECHANGING AdjustWindowRectEx failed\n");
|
2011-11-05 07:32:40 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
winDebug
|
|
|
|
("winTopLevelWindowProc - WM_STYLECHANGING window area should be {%d, %d, %d, %d}, {%d x %d}\n",
|
|
|
|
newWinRect.left, newWinRect.top, newWinRect.right,
|
|
|
|
newWinRect.bottom, newWinRect.right - newWinRect.left,
|
|
|
|
newWinRect.bottom - newWinRect.top);
|
2011-11-05 07:32:40 -06:00
|
|
|
|
|
|
|
/*
|
2012-06-10 07:21:05 -06:00
|
|
|
Style change hasn't happened yet, so we can't adjust the window size yet, as the winAdjustXWindow()
|
|
|
|
which WM_SIZE does will use the current (unchanged) style. Instead make a note to change it when
|
|
|
|
WM_STYLECHANGED is received...
|
|
|
|
*/
|
2011-11-05 07:32:40 -06:00
|
|
|
pWinPriv->hDwp = BeginDeferWindowPos(1);
|
2012-06-10 07:21:05 -06:00
|
|
|
pWinPriv->hDwp =
|
|
|
|
DeferWindowPos(pWinPriv->hDwp, hwnd, NULL, newWinRect.left,
|
|
|
|
newWinRect.top, newWinRect.right - newWinRect.left,
|
|
|
|
newWinRect.bottom - newWinRect.top,
|
|
|
|
SWP_NOACTIVATE | SWP_NOZORDER);
|
|
|
|
}
|
|
|
|
return 0;
|
2011-11-05 07:32:40 -06:00
|
|
|
|
|
|
|
case WM_STYLECHANGED:
|
2012-06-10 07:21:05 -06:00
|
|
|
{
|
|
|
|
if (pWinPriv->hDwp) {
|
2011-11-05 07:32:40 -06:00
|
|
|
EndDeferWindowPos(pWinPriv->hDwp);
|
|
|
|
pWinPriv->hDwp = NULL;
|
2012-06-10 07:21:05 -06:00
|
|
|
}
|
2011-11-05 07:32:40 -06:00
|
|
|
winDebug("winTopLevelWindowProc - WM_STYLECHANGED done\n");
|
2012-06-10 07:21:05 -06:00
|
|
|
}
|
|
|
|
return 0;
|
2011-11-05 07:32:40 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
case WM_MOUSEACTIVATE:
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Check if this window needs to be made active when clicked */
|
|
|
|
if (!GetProp(pWinPriv->hWnd, WIN_NEEDMANAGE_PROP)) {
|
2006-11-26 11:13:41 -07:00
|
|
|
#if CYGMULTIWINDOW_DEBUG
|
2012-06-10 07:21:05 -06:00
|
|
|
ErrorF("winTopLevelWindowProc - WM_MOUSEACTIVATE - "
|
|
|
|
"MA_NOACTIVATE\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* */
|
|
|
|
return MA_NOACTIVATE;
|
|
|
|
}
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
case WM_SETCURSOR:
|
2012-06-10 07:21:05 -06:00
|
|
|
if (LOWORD(lParam) == HTCLIENT) {
|
|
|
|
if (!g_fSoftwareCursor)
|
|
|
|
SetCursor(s_pScreenPriv->cursor.handle);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
default:
|
2012-06-10 07:21:05 -06:00
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
ret = DefWindowProc(hwnd, message, wParam, lParam);
|
|
|
|
/*
|
|
|
|
* If the window was minized we get the stack change before the window is restored
|
|
|
|
* and so it gets lost. Ensure there stacking order is correct.
|
|
|
|
*/
|
|
|
|
if (needRestack)
|
|
|
|
winReorderWindowsMultiWindow();
|
|
|
|
return ret;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|