mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
fixed hittest code to return HTBORDER if it's not a sizable window frame
svn path=/trunk/; revision=6738
This commit is contained in:
parent
967fd54cdd
commit
0758139146
1 changed files with 11 additions and 0 deletions
|
@ -606,8 +606,13 @@ DefWndNCHitTest(HWND hWnd, POINT Point)
|
|||
YSize = GetSystemMetrics(SM_CYSIZE) * GetSystemMetrics(SM_CYBORDER);
|
||||
if (!PtInRect(&WindowRect, Point))
|
||||
{
|
||||
BOOL ThickFrame;
|
||||
|
||||
ThickFrame = (Style & WS_THICKFRAME);
|
||||
if (Point.y < WindowRect.top)
|
||||
{
|
||||
if(!ThickFrame)
|
||||
return HTBORDER;
|
||||
if (Point.x < (WindowRect.left + XSize))
|
||||
return HTTOPLEFT;
|
||||
if (Point.x >= (WindowRect.right - XSize))
|
||||
|
@ -616,6 +621,8 @@ DefWndNCHitTest(HWND hWnd, POINT Point)
|
|||
}
|
||||
if (Point.y >= WindowRect.bottom)
|
||||
{
|
||||
if(!ThickFrame)
|
||||
return HTBORDER;
|
||||
if (Point.x < (WindowRect.left + XSize))
|
||||
return HTBOTTOMLEFT;
|
||||
if (Point.x >= (WindowRect.right - XSize))
|
||||
|
@ -624,6 +631,8 @@ DefWndNCHitTest(HWND hWnd, POINT Point)
|
|||
}
|
||||
if (Point.x < WindowRect.left)
|
||||
{
|
||||
if(!ThickFrame)
|
||||
return HTBORDER;
|
||||
if (Point.y < (WindowRect.top + YSize))
|
||||
return HTTOPLEFT;
|
||||
if (Point.y >= (WindowRect.bottom - YSize))
|
||||
|
@ -632,6 +641,8 @@ DefWndNCHitTest(HWND hWnd, POINT Point)
|
|||
}
|
||||
if (Point.x >= WindowRect.right)
|
||||
{
|
||||
if(!ThickFrame)
|
||||
return HTBORDER;
|
||||
if (Point.y < (WindowRect.top + YSize))
|
||||
return HTTOPRIGHT;
|
||||
if (Point.y >= (WindowRect.bottom - YSize))
|
||||
|
|
Loading…
Reference in a new issue