X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2997ca30d66c2dc778ed9a84c8c94fea6ec1c958..63c4f6da730ceaefd852807ee0bb42b66e4fd400:/src/generic/renderg.cpp diff --git a/src/generic/renderg.cpp b/src/generic/renderg.cpp index e6f8b156be..4a9a929eb1 100644 --- a/src/generic/renderg.cpp +++ b/src/generic/renderg.cpp @@ -73,6 +73,10 @@ public: const wxRect& rect, int flags = 0); + virtual void DrawDropArrow(wxWindow *win, + wxDC& dc, + const wxRect& rect, + int flags = 0); virtual wxSplitterRenderParams GetSplitterParams(const wxWindow *win); @@ -343,28 +347,49 @@ wxRendererGeneric::DrawSplitterSash(wxWindow *win, } } +// ---------------------------------------------------------------------------- +// button drawing +// ---------------------------------------------------------------------------- + void wxRendererGeneric::DrawComboBoxDropButton(wxWindow *win, wxDC& dc, const wxRect& rect, int WXUNUSED(flags)) { - dc.SetBrush(wxBrush(win->GetBackgroundColour())); - dc.SetPen(wxPen(win->GetBackgroundColour())); - dc.DrawRectangle(rect); + // FIXME: Is it worth to do a better implementation? + // Generic wxComboDropButton should be drawn using + // combination of wxBitmapButton and DrawDropArrow + // anyway. + DrawDropArrow(win,dc,rect); +} + - wxPoint pt[3] = +void +wxRendererGeneric::DrawDropArrow(wxWindow *win, + wxDC& dc, + const wxRect& rect, + int WXUNUSED(flags)) +{ + // This generic implementation should be good + // enough for Windows platforms (including XP). + + int arrowHalf = rect.width/5; + int rectMid = rect.width / 2; + int arrowTopY = (rect.height/2) - (arrowHalf/2); + + // This should always result in arrow with odd width. + wxPoint pt[] = { - wxPoint(), - wxPoint(rect.width, 0), - wxPoint(rect.width/2, rect.height - 2) + wxPoint(rectMid - arrowHalf, arrowTopY), + wxPoint(rectMid + arrowHalf, arrowTopY), + wxPoint(rectMid, arrowTopY + arrowHalf) }; dc.SetBrush(wxBrush(win->GetForegroundColour())); dc.SetPen(wxPen(win->GetForegroundColour())); - dc.DrawPolygon(3, pt, rect.x, rect.y); + dc.DrawPolygon(WXSIZEOF(pt), pt, rect.x, rect.y); } - // ---------------------------------------------------------------------------- // A module to allow cleanup of generic renderer. // ----------------------------------------------------------------------------