+#endif // GTK+ 2.x/1.x
+}
+
+void wxRendererGTK::DrawComboBoxDropButton(wxWindow *win,
+ wxDC& dc,
+ const wxRect& rect,
+ int flags)
+{
+ dc.SetBrush(wxBrush(win->GetBackgroundColour()));
+ dc.SetPen(wxPen(win->GetBackgroundColour()));
+ dc.DrawRectangle(rect);
+
+ int x = (rect.GetWidth()-9) / 2;
+ int y = (rect.GetHeight()-10) / 2;
+
+ wxPoint pt[] =
+ {
+ wxPoint(x+2, y+3),
+ wxPoint(x+6, y+3),
+ wxPoint(x+6, y+6),
+ wxPoint(x+8, y+6),
+ wxPoint(x+4, y+10),
+ wxPoint(x+0, y+6),
+ wxPoint(x+2, y+6)
+ };
+ dc.SetBrush(wxBrush(win->GetForegroundColour()));
+ dc.SetPen(wxPen(win->GetForegroundColour()));
+ dc.DrawLine(x, y, x+9, y);
+ dc.DrawPolygon(WXSIZEOF(pt), pt, rect.x, rect.y);