return correct client size for child window which are being defer-resized

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36865 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-01-13 22:07:44 +00:00
parent c70ffbdbf0
commit 0d7f75df79

View File

@@ -1511,14 +1511,24 @@ void wxWindowMSW::DoGetSize(int *x, int *y) const
// Get size *available for subwindows* i.e. excluding menu bar etc.
void wxWindowMSW::DoGetClientSize(int *x, int *y) const
{
// this is only for top level windows whose resizing is never deferred, so
// we can safely use the current size here
RECT rect = wxGetClientRect(GetHwnd());
if ( IsTopLevel() || m_pendingSize == wxDefaultSize )
{
// top level windows resizing is never deferred, so we can safely use
// the current size here
RECT rect = wxGetClientRect(GetHwnd());
if ( x )
*x = rect.right;
if ( y )
*y = rect.bottom;
if ( x )
*x = rect.right;
if ( y )
*y = rect.bottom;
}
else // non top level
{
// size is the same as client size for non top level windows, so
// forward to GetSize() to take into account deferred sizing (which
// wxGetClientRect() doesn't)
DoGetSize(x, y);
}
}
void wxWindowMSW::DoGetPosition(int *x, int *y) const