1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00
putty-source/windows/utils/centre_window.c
Simon Tatham cccdab9ba6 Windows: utility function to centre a window.
This was called from config box setup, and is obviously the kind of
thing that ought to be a reusable utility function.
2022-04-25 14:10:16 +01:00

21 lines
473 B
C

/*
* Centre a window on the screen. Used to position the main config box.
*/
#include "putty.h"
void centre_window(HWND win)
{
RECT rd, rw;
if (!GetWindowRect(GetDesktopWindow(), &rd))
return;
if (!GetWindowRect(win, &rw))
return;
MoveWindow(win,
(rd.right + rd.left + rw.left - rw.right) / 2,
(rd.bottom + rd.top + rw.top - rw.bottom) / 2,
rw.right - rw.left, rw.bottom - rw.top, true);
}