Splits min|max width and height limits for Win32 window

Currently, we cannot constraint the window size for only a single direction (width or height): we can either not constraint at all or constraint both width and height.
With this change, the size constraints can be specified for a single direction as well.
This commit is contained in:
CANTENOT Thierry 2024-06-09 09:49:02 +02:00 committed by GitHub
parent b35641f4a3
commit 45d52f4473
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1107,17 +1107,23 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM l
else
AdjustWindowRectEx(&frame, style, FALSE, exStyle);
if (window->minwidth != GLFW_DONT_CARE &&
window->minheight != GLFW_DONT_CARE)
if (window->minwidth != GLFW_DONT_CARE)
{
mmi->ptMinTrackSize.x = window->minwidth + frame.right - frame.left;
}
if (window->minheight != GLFW_DONT_CARE)
{
mmi->ptMinTrackSize.y = window->minheight + frame.bottom - frame.top;
}
if (window->maxwidth != GLFW_DONT_CARE &&
window->maxheight != GLFW_DONT_CARE)
if (window->maxwidth != GLFW_DONT_CARE)
{
mmi->ptMaxTrackSize.x = window->maxwidth + frame.right - frame.left;
}
if (window->maxheight != GLFW_DONT_CARE)
{
mmi->ptMaxTrackSize.y = window->maxheight + frame.bottom - frame.top;
}