vote up 1 vote down star

I know there is a function somewhere that will accept a client rect and it will convert it into a window rect for you. I just can't find / remember it!

Does anyone know what it is?

It will do something similar to:

const CRect client(0, 0, 200, 200);
const CRect window = ClientRectToWindowRect(client);
SetWindowPos(...)
flag

65% accept rate

4 Answers

vote up 2 vote down check

You're probably thinking of AdjustWindowRectEx(). Keep in mind, this is intended for use when creating a window - there's no guarantee that it will produce an accurate set of window dimensions for an existing window; for that, use GetWindowRect().

link|flag
vote up 0 vote down

I've found it!

AdjustWindowRect(LPRECT lpRect, DWORD style, BOOL bMenu)

link|flag
Why not accept Shog9's answer? – Aardvark Sep 26 '08 at 17:37
You'll notice we posted the answer at the same time. And the reason I haven't accepted is because I haven't come back to the site until now. – Mark Ingram Sep 27 '08 at 10:14
vote up 0 vote down

Is this what you are looking for?

ClientToScreen

http://msdn.microsoft.com/en-us/library/ms532670(VS.85).aspx

link|flag
Nope, that takes client coordinates and converts them to screen coordinates. – Mark Ingram Sep 26 '08 at 15:55
This doesn't account for the window borders. I had the same answer until I realized my mistake. – Mark Ransom Sep 26 '08 at 15:58
vote up 0 vote down

If you want to map client co-ordinates to window co-ordinates use the ClientToWindow API.

If you want to map client co-ordinates to screen co-ordinates use the ClientToScreen API.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.