add get screen size

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@825 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-11-28 17:11:21 +00:00
parent 79c9b13862
commit 47f25a93e0
7 changed files with 32 additions and 0 deletions

View File

@@ -54,6 +54,7 @@
MwLLGetClipboard = MwLLGetClipboardImpl; \
\
MwLLGetCursorCoord = MwLLGetCursorCoordImpl; \
MwLLGetScreenSize = MwLLGetScreenSizeImpl; \
\
return 0; \
}

View File

@@ -727,6 +727,15 @@ static void MwLLGetCursorCoordImpl(MwLL handle, MwPoint* point) {
point->y = p.y;
}
static void MwLLGetScreenSizeImpl(MwLL handle, MwRect* rect) {
RECT rc;
GetClientRect(GetDesktopWindow(), &rc);
rect->x = rect->y = 0;
rect->width = rc.right - rc.left;
rect->height = rc.bottom - rc.top;
}
static void MwLLBeginStateChangeImpl(MwLL handle) {
(void)handle;
}

View File

@@ -1001,6 +1001,15 @@ static void MwLLGetCursorCoordImpl(MwLL handle, MwPoint* point) {
point->y = ry;
}
static void MwLLGetScreenSizeImpl(MwLL handle, MwRect* rect) {
XWindowAttributes xwa;
XGetWindowAttributes(handle->x11.display, handle->x11.window, &xwa);
rect->x = rect->y = 0;
rect->width = xwa.width;
rect->height = xwa.height;
}
static void MwLLBeginStateChangeImpl(MwLL handle) {
MwLLShow(handle, 0);
}