Exception for allowing the parent to set the cursor for a child wnd is
authorSusan Farley <susan@codeweavers.com>
Wed, 14 Feb 2001 00:25:53 +0000 (00:25 +0000)
committerAlexandre Julliard <julliard@winehq.org>
Wed, 14 Feb 2001 00:25:53 +0000 (00:25 +0000)
when the cursor is on the border of a resizable wnd.

windows/defwnd.c

index 986917a..992631c 100644 (file)
@@ -499,9 +499,15 @@ static LRESULT DEFWND_DefWinProc( WND *wndPtr, UINT msg, WPARAM wParam,
 
     case WM_SETCURSOR:
        if (wndPtr->dwStyle & WS_CHILD)
-           if (pSendMessage(wndPtr->parent->hwndSelf, WM_SETCURSOR,
-                            wParam, lParam))
-               return TRUE;
+       {
+            /* with the exception of the border around a resizable wnd,
+             * give the parent first chance to set the cursor */
+            if ((LOWORD(lParam) < HTSIZEFIRST) || (LOWORD(lParam) > HTSIZELAST))
+            {
+                if (pSendMessage(wndPtr->parent->hwndSelf, WM_SETCURSOR, wParam, lParam))
+                    return TRUE;
+            }
+        }
        return NC_HandleSetCursor( wndPtr->hwndSelf, wParam, lParam );
 
     case WM_SYSCOMMAND: