+// ----------------------------------------------------------------------------
+// sash drawing
+// ----------------------------------------------------------------------------
+
+wxPoint
+wxRendererGeneric::GetSplitterSashAndBorder(const wxWindow *win)
+{
+ // see below
+ return win->HasFlag(wxSP_3D) ? wxPoint(7, 2) : wxPoint(3, 0);
+}
+
+void
+wxRendererGeneric::DrawSplitterBorder(wxWindow *win,
+ wxDC& dc,
+ const wxRect& rectOrig)
+{
+ if ( win->HasFlag(wxSP_3D) )
+ {
+ wxRect rect = rectOrig;
+ DrawShadedRect(dc, &rect, m_penDarkGrey, m_penHighlight);
+ DrawShadedRect(dc, &rect, m_penBlack, m_penLightGrey);
+ }
+}
+
+void
+wxRendererGeneric::DrawSplitterSash(wxWindow *win,
+ wxDC& dcReal,
+ const wxSize& sizeReal,
+ wxCoord position,
+ wxOrientation orient)
+{
+ // to avoid duplicating the same code for horizontal and vertical sashes,
+ // simply mirror the DC instead if needed (i.e. if horz splitter)
+ wxMirrorDC dc(dcReal, orient != wxVERTICAL);
+ wxSize size = dc.Reflect(sizeReal);
+
+
+ // we draw a Win32-like grey sash with possible 3D border here:
+ //
+ // ---- this is position
+ // /
+ // v
+ // dWGGGDd
+ // GWGGGDB
+ // GWGGGDB where G is light grey (face)
+ // GWGGGDB W white (light)
+ // GWGGGDB D dark grey (shadow)
+ // GWGGGDB B black (dark shadow)
+ // GWGGGDB
+ // GWGGGDB and lower letters are our border (already drawn)
+ // GWGGGDB
+ // wWGGGDd
+ //
+ // only the middle 3 columns are drawn unless wxSP_3D is specified
+
+ const wxCoord h = size.y;
+
+ // from left to right
+ if ( win->HasFlag(wxSP_3D) )
+ {
+ dc.SetPen(m_penLightGrey);
+ dc.DrawLine(position, 1, position, h - 1);
+
+ dc.SetPen(m_penHighlight);
+ dc.DrawLine(position + 1, 0, position + 1, h);
+ }
+
+ dc.SetPen(*wxTRANSPARENT_PEN);
+ dc.SetBrush(wxBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE)));
+ dc.DrawRectangle(position + 2, 0, 3, h);
+
+ if ( win->HasFlag(wxSP_3D) )
+ {
+ dc.SetPen(m_penDarkGrey);
+ dc.DrawLine(position + 5, 0, position + 5, h);
+
+ dc.SetPen(m_penBlack);
+ dc.DrawLine(position + 6, 1, position + 6, h - 1);
+ }
+}