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"
36 #include "wx/renderer.h"
38 // ----------------------------------------------------------------------------
39 // wxRendererGeneric: our wxRendererNative implementation
40 // ----------------------------------------------------------------------------
42 class WXDLLEXPORT wxRendererGeneric
: public wxRendererNative
45 // draw the header control button (used by wxListCtrl)
46 virtual void DrawHeaderButton(wxWindow
*win
,
51 // draw the expanded/collapsed icon for a tree control item
52 virtual void DrawTreeItemButton(wxWindow
*win
,
58 // ============================================================================
60 // ============================================================================
62 // ----------------------------------------------------------------------------
63 // wxRendererGeneric creation
64 // ----------------------------------------------------------------------------
67 wxRendererNative
& wxRendererNative::GetGeneric()
69 static wxRendererGeneric s_rendererGeneric
;
71 return s_rendererGeneric
;
74 // some platforms have their own renderers
75 #if !defined(__WXMSW__) && !defined(__WXMAC__) && !defined(__WXGTK__)
78 wxRendererNative
& wxRendererNative::Get()
83 #endif // platforms using their own renderers
85 // ----------------------------------------------------------------------------
86 // wxRendererGeneric drawing functions
87 // ----------------------------------------------------------------------------
90 wxRendererGeneric::DrawHeaderButton(wxWindow
*win
,
97 const wxCoord x
= rect
.x
,
102 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
104 dc
.SetPen( *wxBLACK_PEN
);
105 dc
.DrawLine( x
+w
-CORNER
+1, y
, x
+w
, y
+h
); // right (outer)
106 dc
.DrawRectangle( x
, y
+h
, w
+1, 1 ); // bottom (outer)
108 wxPen
pen( wxSystemSettings::GetColour( wxSYS_COLOUR_BTNSHADOW
), 1, wxSOLID
);
111 dc
.DrawLine( x
+w
-CORNER
, y
, x
+w
-1, y
+h
); // right (inner)
112 dc
.DrawRectangle( x
+1, y
+h
-1, w
-2, 1 ); // bottom (inner)
114 dc
.SetPen( *wxWHITE_PEN
);
115 dc
.DrawRectangle( x
, y
, w
-CORNER
+1, 1 ); // top (outer)
116 dc
.DrawRectangle( x
, y
, 1, h
); // left (outer)
117 dc
.DrawLine( x
, y
+h
-1, x
+1, y
+h
-1 );
118 dc
.DrawLine( x
+w
-1, y
, x
+w
-1, y
+1 );
121 // draw the plus or minus sign
123 wxRendererGeneric::DrawTreeItemButton(wxWindow
*win
,
129 dc
.SetPen(*wxGREY_PEN
);
130 dc
.SetBrush(*wxWHITE_BRUSH
);
131 dc
.DrawRectangle(rect
.Deflate(1, 2));
134 const wxCoord xMiddle
= rect
.x
+ rect
.width
/2;
135 const wxCoord yMiddle
= rect
.y
+ rect
.height
/2;
137 dc
.SetPen(*wxBLACK_PEN
);
138 dc
.DrawLine(xMiddle
- 2, yMiddle
, xMiddle
+ 3, yMiddle
);
139 if ( !(flags
& wxCONTROL_EXPANDED
) )
142 dc
.DrawLine(xMiddle
, yMiddle
- 2, xMiddle
, yMiddle
+ 3);