mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
cccdab9ba6
This was called from config box setup, and is obviously the kind of thing that ought to be a reusable utility function.
21 lines
473 B
C
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);
|
|
}
|