-// Draw the equivalent of a wxComboBox
-void wxRendererMSW::DrawComboBox(wxWindow* win, wxDC& dc, const wxRect& rect, int flags)
-{
- // Draw the main part of the control same as TextCtrl
- DrawTextCtrl(win, dc, rect, flags);
-
- // Draw the button inside the border, on the right side
- wxRect br(rect);
- br.height -= 2;
- br.x += br.width - br.height - 1;
- br.width = br.height;
- br.y += 1;
-
- DrawComboBoxDropButton(win, dc, br, flags);
-}
-
-
-void wxRendererMSW::DrawChoice(wxWindow* win, wxDC& dc,
- const wxRect& rect, int flags)
-{
- DrawComboBox(win, dc, rect, flags);
-}
-