X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/621b405fb5c7d7a64ac6165a04a96745b52e1cc0..4a46a5df879c4f820d0a0a435b34c7d5e4793991:/src/univ/topluniv.cpp diff --git a/src/univ/topluniv.cpp b/src/univ/topluniv.cpp index b324c5ba23..869a53a14a 100644 --- a/src/univ/topluniv.cpp +++ b/src/univ/topluniv.cpp @@ -211,15 +211,7 @@ void wxTopLevelWindow::DoGetClientSize(int *width, int *height) const if ( ms_drawDecorations ) { int w, h; - // VS: we can't use real client area size in 'rect', because - // wxTLWNative::DoGetClientSize calls GetClientAreaOrigin - // under wxMSW which in turn calls DoGetClientSize... - // inifinite recursion - #if 0 wxTopLevelWindowNative::DoGetClientSize(&w, &h); - #else - w = h = 500; - #endif wxRect rect = wxRect(wxTopLevelWindowNative::GetClientAreaOrigin(), wxSize(w, h)); rect = m_renderer->GetFrameClientArea(rect, @@ -277,6 +269,28 @@ long wxTopLevelWindow::HitTest(const wxPoint& pt) const return m_renderer->HitTestFrame(rect, pt+GetClientAreaOrigin(), GetDecorationsStyle()); } +int wxTopLevelWindow::GetMinWidth() const +{ + if ( ms_drawDecorations ) + { + return wxMax(wxTopLevelWindowNative::GetMinWidth(), + m_renderer->GetFrameMinSize(GetDecorationsStyle()).x); + } + else + return wxTopLevelWindowNative::GetMinWidth(); +} + +int wxTopLevelWindow::GetMinHeight() const +{ + if ( ms_drawDecorations ) + { + return wxMax(wxTopLevelWindowNative::GetMinHeight(), + m_renderer->GetFrameMinSize(GetDecorationsStyle()).y); + } + else + return wxTopLevelWindowNative::GetMinHeight(); +} + // ---------------------------------------------------------------------------- // icons // ----------------------------------------------------------------------------