up vote 2 down vote favorite
share [g+] share [fb]

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(...)
link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

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|improve this answer
feedback

Is this what you are looking for?

ClientToScreen

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

link|improve this answer
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
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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