]> git.saurik.com Git - wxWidgets.git/commitdiff
Added wxGTK wxBitmapComboBox::DoGetBestSize() implementation that takes bitmap size...
authorJaakko Salli <jaakko.salli@dnainternet.net>
Sat, 18 Jul 2009 08:33:55 +0000 (08:33 +0000)
committerJaakko Salli <jaakko.salli@dnainternet.net>
Sat, 18 Jul 2009 08:33:55 +0000 (08:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61448 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gtk/bmpcbox.h
src/gtk/bmpcbox.cpp

index 95e3e873c0a917346f67d5ae7de91250ab8b4b6c..bfa3399b3b38a14036896b3b954d05fb9b0ae828 100644 (file)
@@ -133,6 +133,8 @@ protected:
     virtual void GTKCreateComboBoxWidget();
     virtual void GTKInsertComboBoxTextItem( unsigned int n, const wxString& text );
 
+    virtual wxSize DoGetBestSize() const;
+
     wxSize                  m_bitmapSize;
     int                     m_bitmapCellIndex;
 
index 4b42a746ab8e819810a81afdb576aaf4f1a49c21..7743cd14657cf71273846fe1b28890350a360427 100644 (file)
@@ -164,6 +164,19 @@ GdkWindow *wxBitmapComboBox::GTKGetWindow(wxArrayGdkWindows& windows) const
     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
 // ----------------------------------------------------------------------------