From: Vadim Zeitlin Date: Thu, 22 Jun 2006 17:22:13 +0000 (+0000) Subject: more tweaks to bitmap button borders: X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d381e983ebdc0e3e9b1980c3a3420940476a0e1e more tweaks to bitmap button borders: - we don't seem to need the extra +2 after Jamie's fix for the min size - we shouldn't use margins at all for buttons without border, this looks bad - refactored the code slightly to avoid some duplication git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39819 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/bmpbuttn.cpp b/src/msw/bmpbuttn.cpp index be094dd3c5..8f0acde1a9 100644 --- a/src/msw/bmpbuttn.cpp +++ b/src/msw/bmpbuttn.cpp @@ -592,6 +592,11 @@ wxSize wxBitmapButton::DoGetBestSize() const { if ( m_bmpNormal.Ok() ) { + int width = m_bmpNormal.GetWidth(), + height = m_bmpNormal.GetHeight(); + int marginH = 0, + marginV = 0; + #if wxUSE_UXTHEME if ( wxUxThemeEngine::GetIfActive() ) { @@ -605,17 +610,30 @@ wxSize wxBitmapButton::DoGetBestSize() const // XP doesn't draw themed buttons correctly when the client area is // smaller than 8x8 - enforce this minimum size for small bitmaps - wxSize best(wxMax(8, m_bmpNormal.GetWidth()) + - margins.cxLeftWidth + margins.cxRightWidth + 2, - wxMax(8, m_bmpNormal.GetHeight()) + - margins.cyTopHeight + margins.cyBottomHeight + 2); - CacheBestSize(best); - return best; + if ( width < 8 ) + width = 8; + if ( height < 8 ) + height = 8; + + // don't add margins for the borderless buttons, they don't need + // them and it just makes them appear larger than needed + if ( !HasFlag(wxBORDER_NONE) ) + { + marginH = margins.cxLeftWidth + margins.cxRightWidth; + marginV = margins.cyTopHeight + margins.cyBottomHeight; + } } + else #endif // wxUSE_UXTHEME + { + if ( !HasFlag(wxBORDER_NONE) ) + { + marginH = 2*m_marginX; + marginV = 2*m_marginY; + } + } - wxSize best(m_bmpNormal.GetWidth() + 2*m_marginX, - m_bmpNormal.GetHeight() + 2*m_marginY); + wxSize best(width + marginH, height + marginV); CacheBestSize(best); return best; }