1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: generic/renderg.cpp
3 // Purpose: generic implementation of wxRendererNative (for any platform)
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
9 // License: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
28 #include "wx/string.h"
31 #include "wx/gdicmn.h"
34 #include "wx/settings.h"
35 #include "wx/splitter.h"
37 #include "wx/dcmirror.h"
39 #include "wx/renderer.h"
41 // ----------------------------------------------------------------------------
42 // wxRendererGeneric: our wxRendererNative implementation
43 // ----------------------------------------------------------------------------
45 class WXDLLEXPORT wxRendererGeneric
: public wxRendererNative
50 virtual void DrawHeaderButton(wxWindow
*win
,
55 virtual void DrawTreeItemButton(wxWindow
*win
,
60 virtual void DrawSplitterBorder(wxWindow
*win
,
64 virtual void DrawSplitterSash(wxWindow
*win
,
68 wxOrientation orient
);
71 virtual wxPoint
GetSplitterSashAndBorder(const wxWindow
*win
);
75 // draw the rectange using the first pen for the left and top sides and
76 // the second one for the bottom and right ones
77 void DrawShadedRect(wxDC
& dc
, wxRect
*rect
,
78 const wxPen
& pen1
, const wxPen
& pen2
);
87 // ============================================================================
88 // wxRendererGeneric implementation
89 // ============================================================================
91 // ----------------------------------------------------------------------------
92 // wxRendererGeneric creation
93 // ----------------------------------------------------------------------------
96 wxRendererNative
& wxRendererNative::GetGeneric()
98 static wxRendererGeneric s_rendererGeneric
;
100 return s_rendererGeneric
;
103 wxRendererGeneric::wxRendererGeneric()
104 : m_penBlack(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW
)),
105 m_penDarkGrey(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
)),
106 m_penLightGrey(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
)),
107 m_penHighlight(wxSystemSettings::GetColour(wxSYS_COLOUR_3DHIGHLIGHT
))
111 // ----------------------------------------------------------------------------
112 // wxRendererGeneric helpers
113 // ----------------------------------------------------------------------------
116 wxRendererGeneric::DrawShadedRect(wxDC
& dc
,
121 // draw the rectangle
123 dc
.DrawLine(rect
->GetLeft(), rect
->GetTop(),
124 rect
->GetLeft(), rect
->GetBottom());
125 dc
.DrawLine(rect
->GetLeft() + 1, rect
->GetTop(),
126 rect
->GetRight(), rect
->GetTop());
128 dc
.DrawLine(rect
->GetRight(), rect
->GetTop(),
129 rect
->GetRight(), rect
->GetBottom());
130 dc
.DrawLine(rect
->GetLeft(), rect
->GetBottom(),
131 rect
->GetRight() + 1, rect
->GetBottom());
137 // ----------------------------------------------------------------------------
138 // tree/list ctrl drawing
139 // ----------------------------------------------------------------------------
142 wxRendererGeneric::DrawHeaderButton(wxWindow
* WXUNUSED(win
),
147 const int CORNER
= 1;
149 const wxCoord x
= rect
.x
,
154 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
156 dc
.SetPen(m_penBlack
);
157 dc
.DrawLine( x
+w
-CORNER
+1, y
, x
+w
, y
+h
); // right (outer)
158 dc
.DrawRectangle( x
, y
+h
, w
+1, 1 ); // bottom (outer)
160 dc
.SetPen(m_penDarkGrey
);
161 dc
.DrawLine( x
+w
-CORNER
, y
, x
+w
-1, y
+h
); // right (inner)
162 dc
.DrawRectangle( x
+1, y
+h
-1, w
-2, 1 ); // bottom (inner)
164 dc
.SetPen(m_penHighlight
);
165 dc
.DrawRectangle( x
, y
, w
-CORNER
+1, 1 ); // top (outer)
166 dc
.DrawRectangle( x
, y
, 1, h
); // left (outer)
167 dc
.DrawLine( x
, y
+h
-1, x
+1, y
+h
-1 );
168 dc
.DrawLine( x
+w
-1, y
, x
+w
-1, y
+1 );
171 // draw the plus or minus sign
173 wxRendererGeneric::DrawTreeItemButton(wxWindow
* WXUNUSED(win
),
179 dc
.SetPen(*wxGREY_PEN
);
180 dc
.SetBrush(*wxWHITE_BRUSH
);
181 dc
.DrawRectangle(rect
.Deflate(1, 2));
184 const wxCoord xMiddle
= rect
.x
+ rect
.width
/2;
185 const wxCoord yMiddle
= rect
.y
+ rect
.height
/2;
187 dc
.SetPen(*wxBLACK_PEN
);
188 dc
.DrawLine(xMiddle
- 2, yMiddle
, xMiddle
+ 3, yMiddle
);
189 if ( !(flags
& wxCONTROL_EXPANDED
) )
192 dc
.DrawLine(xMiddle
, yMiddle
- 2, xMiddle
, yMiddle
+ 3);
196 // ----------------------------------------------------------------------------
198 // ----------------------------------------------------------------------------
201 wxRendererGeneric::GetSplitterSashAndBorder(const wxWindow
*win
)
204 return win
->HasFlag(wxSP_3D
) ? wxPoint(7, 2) : wxPoint(3, 0);
208 wxRendererGeneric::DrawSplitterBorder(wxWindow
*win
,
210 const wxRect
& rectOrig
)
212 if ( win
->HasFlag(wxSP_3D
) )
214 wxRect rect
= rectOrig
;
215 DrawShadedRect(dc
, &rect
, m_penDarkGrey
, m_penHighlight
);
216 DrawShadedRect(dc
, &rect
, m_penBlack
, m_penLightGrey
);
221 wxRendererGeneric::DrawSplitterSash(wxWindow
*win
,
223 const wxSize
& sizeReal
,
225 wxOrientation orient
)
227 // to avoid duplicating the same code for horizontal and vertical sashes,
228 // simply mirror the DC instead if needed (i.e. if horz splitter)
229 wxMirrorDC
dc(dcReal
, orient
!= wxVERTICAL
);
230 wxSize size
= dc
.Reflect(sizeReal
);
233 // we draw a Win32-like grey sash with possible 3D border here:
235 // ---- this is position
240 // GWGGGDB where G is light grey (face)
241 // GWGGGDB W white (light)
242 // GWGGGDB D dark grey (shadow)
243 // GWGGGDB B black (dark shadow)
245 // GWGGGDB and lower letters are our border (already drawn)
249 // only the middle 3 columns are drawn unless wxSP_3D is specified
251 const wxCoord h
= size
.y
;
253 // from left to right
254 if ( win
->HasFlag(wxSP_3D
) )
256 dc
.SetPen(m_penLightGrey
);
257 dc
.DrawLine(position
, 1, position
, h
- 1);
259 dc
.SetPen(m_penHighlight
);
260 dc
.DrawLine(position
+ 1, 0, position
+ 1, h
);
263 dc
.SetPen(*wxTRANSPARENT_PEN
);
264 dc
.SetBrush(wxBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
)));
265 dc
.DrawRectangle(position
+ 2, 0, 3, h
);
267 if ( win
->HasFlag(wxSP_3D
) )
269 dc
.SetPen(m_penDarkGrey
);
270 dc
.DrawLine(position
+ 5, 0, position
+ 5, h
);
272 dc
.SetPen(m_penBlack
);
273 dc
.DrawLine(position
+ 6, 1, position
+ 6, h
- 1);