1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/univ/stdrend.h
3 // Purpose: wxStdRenderer class declaration
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2006 Vadim Zeitlin <vadim@wxwindows.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_UNIV_STDREND_H_
12 #define _WX_UNIV_STDREND_H_
14 #include "wx/univ/renderer.h"
17 class WXDLLEXPORT wxColourScheme
;
19 // ----------------------------------------------------------------------------
20 // wxStdRenderer: implements as much of wxRenderer API as possible generically
21 // ----------------------------------------------------------------------------
23 class wxStdRenderer
: public wxRenderer
26 // the renderer will use the given scheme, whose lifetime must be at least
27 // as long as of this object itself, to choose the colours for drawing
28 wxStdRenderer(const wxColourScheme
*scheme
);
30 virtual void DrawBackground(wxDC
& dc
,
34 wxWindow
*window
= NULL
);
35 virtual void DrawButtonSurface(wxDC
& dc
,
41 virtual void DrawFocusRect(wxDC
& dc
, const wxRect
& rect
);
42 virtual void DrawLabel(wxDC
& dc
,
43 const wxString
& label
,
46 int alignment
= wxALIGN_LEFT
| wxALIGN_TOP
,
48 wxRect
*rectBounds
= NULL
);
49 virtual void DrawButtonLabel(wxDC
& dc
,
50 const wxString
& label
,
51 const wxBitmap
& image
,
54 int alignment
= wxALIGN_LEFT
| wxALIGN_TOP
,
56 wxRect
*rectBounds
= NULL
);
59 virtual void DrawBorder(wxDC
& dc
,
63 wxRect
*rectIn
= NULL
);
64 virtual void DrawTextBorder(wxDC
& dc
,
68 wxRect
*rectIn
= NULL
);
70 virtual void DrawHorizontalLine(wxDC
& dc
,
71 wxCoord y
, wxCoord x1
, wxCoord x2
);
72 virtual void DrawVerticalLine(wxDC
& dc
,
73 wxCoord x
, wxCoord y1
, wxCoord y2
);
74 virtual void DrawFrame(wxDC
& dc
,
75 const wxString
& label
,
78 int alignment
= wxALIGN_LEFT
,
82 virtual void DrawItem(wxDC
& dc
,
83 const wxString
& label
,
87 virtual void DrawCheckButton(wxDC
& dc
,
88 const wxString
& label
,
89 const wxBitmap
& bitmap
,
92 wxAlignment align
= wxALIGN_LEFT
,
94 virtual void DrawRadioButton(wxDC
& dc
,
95 const wxString
& label
,
96 const wxBitmap
& bitmap
,
99 wxAlignment align
= wxALIGN_LEFT
,
100 int indexAccel
= -1);
103 virtual void DrawTextLine(wxDC
& dc
,
104 const wxString
& text
,
110 virtual void DrawLineWrapMark(wxDC
& dc
, const wxRect
& rect
);
111 #endif // wxUSE_TEXTCTRL
113 virtual wxRect
GetBorderDimensions(wxBorder border
) const;
115 virtual bool AreScrollbarsInsideBorder() const;
118 virtual wxRect
GetScrollbarRect(const wxScrollBar
*scrollbar
,
119 wxScrollBar::Element elem
,
120 int thumbPos
= -1) const;
122 virtual wxCoord
GetScrollbarSize(const wxScrollBar
*scrollbar
);
124 virtual wxHitTest
HitTestScrollbar(const wxScrollBar
*scrollbar
,
125 const wxPoint
& pt
) const;
127 virtual wxCoord
ScrollbarToPixel(const wxScrollBar
*scrollbar
,
129 virtual int PixelToScrollbar(const wxScrollBar
*scrollbar
, wxCoord coord
);
130 #endif // wxUSE_SCROLLBAR
144 IndicatorState_Normal
,
145 IndicatorState_Pressed
, // this one is for check/radioboxes
146 IndicatorState_Disabled
,
147 IndicatorState_MaxCtrl
,
149 // the rest of the states are valid for menu items only
150 IndicatorState_Selected
= IndicatorState_Pressed
,
151 IndicatorState_SelectedDisabled
= IndicatorState_MaxCtrl
,
152 IndicatorState_MaxMenu
157 IndicatorStatus_Checked
,
158 IndicatorStatus_Unchecked
,
159 IndicatorStatus_Undetermined
,
163 // translate the appropriate bits in flags to the above enum elements
164 static void GetIndicatorsFromFlags(int flags
,
165 IndicatorState
& state
,
166 IndicatorStatus
& status
);
168 // fill the rectangle with a brush of given colour (must be valid)
169 void DrawSolidRect(wxDC
& dc
, const wxColour
& col
, const wxRect
& rect
);
172 // all the functions in this section adjust the rect parameter to
173 // correspond to the interiour of the drawn area
175 // draw complete rectangle
176 void DrawRect(wxDC
& dc
, wxRect
*rect
, const wxPen
& pen
);
178 // draw the rectange using the first pen for the left and top sides
179 // and the second one for the bottom and right ones
180 void DrawShadedRect(wxDC
& dc
, wxRect
*rect
,
181 const wxPen
& pen1
, const wxPen
& pen2
);
183 // border drawing routines, may be overridden in the derived class
184 virtual void DrawRaisedBorder(wxDC
& dc
, wxRect
*rect
);
185 virtual void DrawSunkenBorder(wxDC
& dc
, wxRect
*rect
);
186 virtual void DrawAntiSunkenBorder(wxDC
& dc
, wxRect
*rect
);
189 // draw the frame with non-empty label inside the given rectText
190 virtual void DrawFrameWithLabel(wxDC
& dc
,
191 const wxString
& label
,
192 const wxRect
& rectFrame
,
193 const wxRect
& rectText
,
198 // draw the (static box) frame without the part corresponding to rectLabel
199 void DrawFrameWithoutLabel(wxDC
& dc
,
200 const wxRect
& rectFrame
,
201 const wxRect
& rectLabel
);
204 // common routine for drawing check and radio buttons
205 void DrawCheckOrRadioButton(wxDC
& dc
,
206 const wxString
& label
,
207 const wxBitmap
& bitmap
,
213 // return the check/radio bitmap for the given flags
214 virtual wxBitmap
GetRadioBitmap(int flags
) = 0;
215 virtual wxBitmap
GetCheckBitmap(int flags
) = 0;
218 // return the starting and ending positions, in pixels, of the thumb of a
219 // scrollbar with the given logical position, thumb size and range and the
220 // given physical length
221 static void GetScrollBarThumbSize(wxCoord length
,
228 // GDI objects we often use
234 // the colours we use, they never change currently so we don't have to ever
235 // update m_penXXX objects above
236 const wxColourScheme
* const m_scheme
;
238 DECLARE_NO_COPY_CLASS(wxStdRenderer
)
241 #endif // _WX_UNIV_STDREND_H_