]> git.saurik.com Git - wxWidgets.git/commitdiff
applied patch #1044865 (fixes problem: "On Win2K, the month combobox's dropdown heigh...
authorDimitri Schoolwerth <dimitri.schoolwerth@gmail.com>
Mon, 24 Jan 2005 14:30:51 +0000 (14:30 +0000)
committerDimitri Schoolwerth <dimitri.schoolwerth@gmail.com>
Mon, 24 Jan 2005 14:30:51 +0000 (14:30 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31583 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/choice.cpp

index 362f98ccb71f7b3fad21fcad4d0289b140554f2f..b7feab4c5bc490b52e47349a177a2a6abfbf6aac 100644 (file)
@@ -504,6 +504,23 @@ void wxChoice::DoSetSize(int x, int y,
         const int hItem = SendMessage(GetHwnd(), CB_GETITEMHEIGHT, 0, 0);
         height += hItem*(nItems + 1);
     }
+    else
+    {
+        // We cannot pass wxDefaultCoord as height to wxControl. wxControl uses
+        // wxGetWindowRect() to determine the current height of the combobox, 
+        // and then again sets the combobox's height to that value. Unfortunately, 
+        // wxGetWindowRect doesn't include the dropdown list's height (at least 
+        // on Win2K), so this would result in a combobox with dropdown height of 
+        // 1 pixel. We have to determine the default height ourselves and call
+        // wxControl with that value instead.
+        int w, h;
+        RECT r;
+        DoGetSize(&w, &h);
+        if (::SendMessage(GetHwnd(), CB_GETDROPPEDCONTROLRECT, 0, (LPARAM) &r) != 0)
+        {
+            height = h + r.bottom - r.top;       
+        }
+    }
 
     wxControl::DoSetSize(x, y, width, height, sizeFlags);