]> git.saurik.com Git - wxWidgets.git/commitdiff
Make picker control at least as high as the associated text and square.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 19 May 2011 14:14:58 +0000 (14:14 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 19 May 2011 14:14:58 +0000 (14:14 +0000)
Ensure that the height of the picker control is at least as big as the height
of the associated text control and that it's at least as wide as it is high as
it looks bad otherwise.

Closes #13232.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67763 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/pickerbase.cpp

index 1d3dbbc30d1a1d4a128ecbfe3df9a20297440be2..81583028ac5592110f1163592ef9b367c8068d24 100644 (file)
@@ -123,6 +123,16 @@ void wxPickerBase::PostCreation()
     // associated with it - in that case it defaults to 0
     m_sizer->Add(m_picker, HasTextCtrl() ? 0 : 1, GetDefaultPickerCtrlFlag(), 5);
 
+    // For aesthetic reasons, make sure the picker is at least as high as the
+    // associated text control and is always at least square.
+    const wxSize pickerBestSize(m_picker->GetBestSize());
+    const wxSize textBestSize(m_text->GetBestSize());
+    wxSize pickerMinSize;
+    pickerMinSize.y = wxMax(pickerBestSize.y, textBestSize.y);
+    pickerMinSize.x = wxMax(pickerMinSize.x, pickerMinSize.y);
+    if ( pickerMinSize != pickerBestSize )
+        m_picker->SetMinSize(pickerMinSize);
+
     SetSizer(m_sizer);
 
     SetInitialSize( GetMinSize() );