take title of radiobox into account to calculate best size (SF #509963)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14393 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2002-02-24 19:32:11 +00:00
parent 983ceb3d12
commit ae45f98300
2 changed files with 12 additions and 0 deletions

View File

@@ -493,6 +493,12 @@ wxSize wxRadioBox::DoGetBestSize() const
maxWidth = -1;
maxHeight = -1;
// handle radio box title as well
GetTextExtent(GetTitle(), &eachWidth, NULL);
eachWidth = (int)(eachWidth + RADIO_SIZE);
if (maxWidth < eachWidth) maxWidth = eachWidth;
for (int i = 0 ; i < m_noItems; i++)
{
GetTextExtent(GetString(i), &eachWidth, &eachHeight);

View File

@@ -493,6 +493,12 @@ wxSize wxRadioBox::DoGetBestSize() const
maxWidth = -1;
maxHeight = -1;
// handle radio box title as well
GetTextExtent(GetTitle(), &eachWidth, NULL);
eachWidth = (int)(eachWidth + RADIO_SIZE);
if (maxWidth < eachWidth) maxWidth = eachWidth;
for (int i = 0 ; i < m_noItems; i++)
{
GetTextExtent(GetString(i), &eachWidth, &eachHeight);