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"
36 #include "wx/dcmirror.h"
37 #include "wx/module.h"
38 #include "wx/renderer.h"
40 // ----------------------------------------------------------------------------
41 // wxRendererGeneric: our wxRendererNative implementation
42 // ----------------------------------------------------------------------------
44 class WXDLLEXPORT wxRendererGeneric
: public wxRendererNative
49 virtual void DrawHeaderButton(wxWindow
*win
,
54 virtual void DrawTreeItemButton(wxWindow
*win
,
59 virtual void DrawSplitterBorder(wxWindow
*win
,
64 virtual void DrawSplitterSash(wxWindow
*win
,
72 virtual wxSplitterRenderParams
GetSplitterParams(const wxWindow
*win
);
74 // Cleanup by deleting standard renderer
75 static void Cleanup();
77 // Get the generic object
78 static wxRendererGeneric
* DoGetGeneric();
81 // draw the rectange using the first pen for the left and top sides and
82 // the second one for the bottom and right ones
83 void DrawShadedRect(wxDC
& dc
, wxRect
*rect
,
84 const wxPen
& pen1
, const wxPen
& pen2
);
92 static wxRendererGeneric
* sm_rendererGeneric
;
95 // ============================================================================
96 // wxRendererGeneric implementation
97 // ============================================================================
99 // Get the generic object
100 wxRendererGeneric
* wxRendererGeneric::DoGetGeneric()
102 if (!sm_rendererGeneric
)
103 sm_rendererGeneric
= new wxRendererGeneric
;
104 return sm_rendererGeneric
;
107 // ----------------------------------------------------------------------------
108 // wxRendererGeneric creation
109 // ----------------------------------------------------------------------------
112 wxRendererNative
& wxRendererNative::GetGeneric()
114 return * wxRendererGeneric::DoGetGeneric();
117 void wxRendererGeneric::Cleanup()
119 if (sm_rendererGeneric
)
120 delete sm_rendererGeneric
;
122 sm_rendererGeneric
= NULL
;
125 wxRendererGeneric
* wxRendererGeneric::sm_rendererGeneric
= NULL
;
127 wxRendererGeneric::wxRendererGeneric()
128 : m_penBlack(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW
)),
129 m_penDarkGrey(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
)),
130 m_penLightGrey(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
)),
131 m_penHighlight(wxSystemSettings::GetColour(wxSYS_COLOUR_3DHIGHLIGHT
))
135 // ----------------------------------------------------------------------------
136 // wxRendererGeneric helpers
137 // ----------------------------------------------------------------------------
140 wxRendererGeneric::DrawShadedRect(wxDC
& dc
,
145 // draw the rectangle
147 dc
.DrawLine(rect
->GetLeft(), rect
->GetTop(),
148 rect
->GetLeft(), rect
->GetBottom());
149 dc
.DrawLine(rect
->GetLeft() + 1, rect
->GetTop(),
150 rect
->GetRight(), rect
->GetTop());
152 dc
.DrawLine(rect
->GetRight(), rect
->GetTop(),
153 rect
->GetRight(), rect
->GetBottom());
154 dc
.DrawLine(rect
->GetLeft(), rect
->GetBottom(),
155 rect
->GetRight() + 1, rect
->GetBottom());
161 // ----------------------------------------------------------------------------
162 // tree/list ctrl drawing
163 // ----------------------------------------------------------------------------
166 wxRendererGeneric::DrawHeaderButton(wxWindow
* WXUNUSED(win
),
171 const int CORNER
= 1;
173 const wxCoord x
= rect
.x
,
178 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
180 dc
.SetPen(m_penBlack
);
181 dc
.DrawLine( x
+w
-CORNER
+1, y
, x
+w
, y
+h
); // right (outer)
182 dc
.DrawRectangle( x
, y
+h
, w
+1, 1 ); // bottom (outer)
184 dc
.SetPen(m_penDarkGrey
);
185 dc
.DrawLine( x
+w
-CORNER
, y
, x
+w
-1, y
+h
); // right (inner)
186 dc
.DrawRectangle( x
+1, y
+h
-1, w
-2, 1 ); // bottom (inner)
188 dc
.SetPen(m_penHighlight
);
189 dc
.DrawRectangle( x
, y
, w
-CORNER
+1, 1 ); // top (outer)
190 dc
.DrawRectangle( x
, y
, 1, h
); // left (outer)
191 dc
.DrawLine( x
, y
+h
-1, x
+1, y
+h
-1 );
192 dc
.DrawLine( x
+w
-1, y
, x
+w
-1, y
+1 );
195 // draw the plus or minus sign
197 wxRendererGeneric::DrawTreeItemButton(wxWindow
* WXUNUSED(win
),
203 dc
.SetPen(*wxGREY_PEN
);
204 dc
.SetBrush(*wxWHITE_BRUSH
);
205 dc
.DrawRectangle(rect
.Deflate(1, 2));
208 const wxCoord xMiddle
= rect
.x
+ rect
.width
/2;
209 const wxCoord yMiddle
= rect
.y
+ rect
.height
/2;
211 dc
.SetPen(*wxBLACK_PEN
);
212 dc
.DrawLine(xMiddle
- 2, yMiddle
, xMiddle
+ 3, yMiddle
);
213 if ( !(flags
& wxCONTROL_EXPANDED
) )
216 dc
.DrawLine(xMiddle
, yMiddle
- 2, xMiddle
, yMiddle
+ 3);
220 // ----------------------------------------------------------------------------
222 // ----------------------------------------------------------------------------
224 wxSplitterRenderParams
225 wxRendererGeneric::GetSplitterParams(const wxWindow
*win
)
231 if ( win
->HasFlag(wxSP_3D
) )
242 return wxSplitterRenderParams(sashWidth
, border
, false);
246 wxRendererGeneric::DrawSplitterBorder(wxWindow
*win
,
248 const wxRect
& rectOrig
,
251 if ( win
->HasFlag(wxSP_3D
) )
253 wxRect rect
= rectOrig
;
254 DrawShadedRect(dc
, &rect
, m_penDarkGrey
, m_penHighlight
);
255 DrawShadedRect(dc
, &rect
, m_penBlack
, m_penLightGrey
);
260 wxRendererGeneric::DrawSplitterSash(wxWindow
*win
,
262 const wxSize
& sizeReal
,
264 wxOrientation orient
,
267 // to avoid duplicating the same code for horizontal and vertical sashes,
268 // simply mirror the DC instead if needed (i.e. if horz splitter)
269 wxMirrorDC
dc(dcReal
, orient
!= wxVERTICAL
);
270 wxSize size
= dc
.Reflect(sizeReal
);
273 // we draw a Win32-like grey sash with possible 3D border here:
275 // ---- this is position
280 // GWGGGDB where G is light grey (face)
281 // GWGGGDB W white (light)
282 // GWGGGDB D dark grey (shadow)
283 // GWGGGDB B black (dark shadow)
285 // GWGGGDB and lower letters are our border (already drawn)
289 // only the middle 3 columns are drawn unless wxSP_3D is specified
291 const wxCoord h
= size
.y
;
294 // If we're not drawing the border, droppings will
295 // be left unless we make the sash shorter
296 if ( !win
->HasFlag(wxSP_3DBORDER
) )
301 // from left to right
302 if ( win
->HasFlag(wxSP_3D
) )
304 dc
.SetPen(m_penLightGrey
);
305 dc
.DrawLine(position
, 1 + offset
, position
, h
- 1 - offset
);
307 dc
.SetPen(m_penHighlight
);
308 dc
.DrawLine(position
+ 1, offset
, position
+ 1, h
- offset
);
311 dc
.SetPen(*wxTRANSPARENT_PEN
);
312 dc
.SetBrush(wxBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
)));
313 dc
.DrawRectangle(position
+ 2, offset
, 3, h
- 2*offset
);
315 if ( win
->HasFlag(wxSP_3D
) )
317 dc
.SetPen(m_penDarkGrey
);
318 dc
.DrawLine(position
+ 5, offset
, position
+ 5, h
- offset
);
320 dc
.SetPen(m_penBlack
);
321 dc
.DrawLine(position
+ 6, offset
, position
+ 6, h
- 1 - offset
);
325 // A module to allow cleanup of generic renderer.
326 class wxGenericRendererModule
: public wxModule
328 DECLARE_DYNAMIC_CLASS(wxGenericRendererModule
)
330 wxGenericRendererModule() {}
331 bool OnInit() { return true; };
332 void OnExit() { wxRendererGeneric::Cleanup(); };
335 IMPLEMENT_DYNAMIC_CLASS(wxGenericRendererModule
, wxModule
)