git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61448
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
virtual void GTKCreateComboBoxWidget();
virtual void GTKInsertComboBoxTextItem( unsigned int n, const wxString& text );
+ virtual wxSize DoGetBestSize() const;
+
wxSize m_bitmapSize;
int m_bitmapCellIndex;
return wxChoice::GTKGetWindow(windows);
}
+wxSize wxBitmapComboBox::DoGetBestSize() const
+{
+ wxSize best = wxComboBox::DoGetBestSize();
+
+ int delta = GetBitmapSize().y - GetCharHeight();
+ if ( delta > 0 )
+ {
+ best.y += delta;
+ CacheBestSize(best);
+ }
+ return best;
+}
+
// ----------------------------------------------------------------------------
// Item manipulation
// ----------------------------------------------------------------------------