mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
Win32 - Safer WM_EXITSIZEMOVE
This commit is contained in:
parent
4c8fc25b2d
commit
1f80350564
34
src/webui.c
34
src/webui.c
@ -11310,21 +11310,25 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpReserved) {
|
||||
break;
|
||||
}
|
||||
case WM_EXITSIZEMOVE: {
|
||||
if (_webui_mutex_is_connected(win, WEBUI_MUTEX_GET_STATUS)) {
|
||||
RECT rect;
|
||||
GetClientRect(hwnd, &rect);
|
||||
WINDOWPLACEMENT wp;
|
||||
wp.length = sizeof(WINDOWPLACEMENT);
|
||||
GetWindowPlacement(hwnd, &wp);
|
||||
// Send new positions and dimensions
|
||||
char buffer[512] = {0x00};
|
||||
WEBUI_SN_PRINTF_STATIC(buffer, sizeof(buffer), "%ld,%ld,%ld,%ld",
|
||||
wp.rcNormalPosition.left, wp.rcNormalPosition.top, rect.right, rect.bottom);
|
||||
// Packet Protocol Format:
|
||||
// [...]
|
||||
// [CMD]
|
||||
// Send the packet
|
||||
_webui_send_all(win, 0, WEBUI_CMD_WIN_RESIZED, buffer, _webui_strlen(buffer));
|
||||
if (win) {
|
||||
// Update drag positions and dimensions
|
||||
if (_webui_mutex_is_connected(win, WEBUI_MUTEX_GET_STATUS)) {
|
||||
RECT rect;
|
||||
GetClientRect(hwnd, &rect);
|
||||
WINDOWPLACEMENT wp;
|
||||
wp.length = sizeof(WINDOWPLACEMENT);
|
||||
GetWindowPlacement(hwnd, &wp);
|
||||
// Send new positions and dimensions
|
||||
char buffer[512] = {0x00};
|
||||
WEBUI_SN_PRINTF_STATIC(buffer, sizeof(buffer), "%ld,%ld,%ld,%ld",
|
||||
wp.rcNormalPosition.left, wp.rcNormalPosition.top, rect.right, rect.bottom);
|
||||
// Packet Protocol Format:
|
||||
// [...]
|
||||
// [CMD]
|
||||
// [x,y,width,height]
|
||||
// Send the packet
|
||||
_webui_send_all(win, 0, WEBUI_CMD_WIN_RESIZED, buffer, _webui_strlen(buffer));
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user