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
This commit is contained in:
Vadim Zeitlin
2006-06-22 17:22:13 +00:00
parent 0a292d0de4
commit d381e983eb

View File

@@ -592,6 +592,11 @@ wxSize wxBitmapButton::DoGetBestSize() const
{ {
if ( m_bmpNormal.Ok() ) if ( m_bmpNormal.Ok() )
{ {
int width = m_bmpNormal.GetWidth(),
height = m_bmpNormal.GetHeight();
int marginH = 0,
marginV = 0;
#if wxUSE_UXTHEME #if wxUSE_UXTHEME
if ( wxUxThemeEngine::GetIfActive() ) if ( wxUxThemeEngine::GetIfActive() )
{ {
@@ -605,17 +610,30 @@ wxSize wxBitmapButton::DoGetBestSize() const
// XP doesn't draw themed buttons correctly when the client area is // XP doesn't draw themed buttons correctly when the client area is
// smaller than 8x8 - enforce this minimum size for small bitmaps // smaller than 8x8 - enforce this minimum size for small bitmaps
wxSize best(wxMax(8, m_bmpNormal.GetWidth()) + if ( width < 8 )
margins.cxLeftWidth + margins.cxRightWidth + 2, width = 8;
wxMax(8, m_bmpNormal.GetHeight()) + if ( height < 8 )
margins.cyTopHeight + margins.cyBottomHeight + 2); height = 8;
CacheBestSize(best);
return best;
}
#endif // wxUSE_UXTHEME
wxSize best(m_bmpNormal.GetWidth() + 2*m_marginX, // don't add margins for the borderless buttons, they don't need
m_bmpNormal.GetHeight() + 2*m_marginY); // 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(width + marginH, height + marginV);
CacheBestSize(best); CacheBestSize(best);
return best; return best;
} }