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
,
86 virtual void DrawCheckItem(wxDC
& dc
,
87 const wxString
& label
,
88 const wxBitmap
& bitmap
,
92 virtual void DrawCheckButton(wxDC
& dc
,
93 const wxString
& label
,
94 const wxBitmap
& bitmap
,
97 wxAlignment align
= wxALIGN_LEFT
,
99 virtual void DrawRadioButton(wxDC
& dc
,
100 const wxString
& label
,
101 const wxBitmap
& bitmap
,
104 wxAlignment align
= wxALIGN_LEFT
,
105 int indexAccel
= -1);
108 virtual void DrawTextLine(wxDC
& dc
,
109 const wxString
& text
,
115 virtual void DrawLineWrapMark(wxDC
& dc
, const wxRect
& rect
);
117 virtual wxRect
GetTextTotalArea(const wxTextCtrl
*text
,
118 const wxRect
& rect
) const;
119 virtual wxRect
GetTextClientArea(const wxTextCtrl
*text
,
121 wxCoord
*extraSpaceBeyond
) const;
122 #endif // wxUSE_TEXTCTRL
124 virtual wxRect
GetBorderDimensions(wxBorder border
) const;
126 virtual bool AreScrollbarsInsideBorder() const;
129 virtual wxRect
GetScrollbarRect(const wxScrollBar
*scrollbar
,
130 wxScrollBar::Element elem
,
131 int thumbPos
= -1) const;
133 virtual wxCoord
GetScrollbarSize(const wxScrollBar
*scrollbar
);
135 virtual wxHitTest
HitTestScrollbar(const wxScrollBar
*scrollbar
,
136 const wxPoint
& pt
) const;
138 virtual wxCoord
ScrollbarToPixel(const wxScrollBar
*scrollbar
,
140 virtual int PixelToScrollbar(const wxScrollBar
*scrollbar
, wxCoord coord
);
141 #endif // wxUSE_SCROLLBAR
149 IndicatorType_MaxCtrl
,
150 IndicatorType_Menu
= IndicatorType_MaxCtrl
,
156 IndicatorState_Normal
,
157 IndicatorState_Pressed
, // this one is for check/radioboxes
158 IndicatorState_Disabled
,
159 IndicatorState_MaxCtrl
,
161 // the rest of the states are valid for menu items only
162 IndicatorState_Selected
= IndicatorState_Pressed
,
163 IndicatorState_SelectedDisabled
= IndicatorState_MaxCtrl
,
164 IndicatorState_MaxMenu
169 IndicatorStatus_Checked
,
170 IndicatorStatus_Unchecked
,
171 IndicatorStatus_Undetermined
,
175 // translate the appropriate bits in flags to the above enum elements
176 static void GetIndicatorsFromFlags(int flags
,
177 IndicatorState
& state
,
178 IndicatorStatus
& status
);
180 // fill the rectangle with a brush of given colour (must be valid)
181 void DrawSolidRect(wxDC
& dc
, const wxColour
& col
, const wxRect
& rect
);
184 // all the functions in this section adjust the rect parameter to
185 // correspond to the interiour of the drawn area
187 // draw complete rectangle
188 void DrawRect(wxDC
& dc
, wxRect
*rect
, const wxPen
& pen
);
190 // draw the rectange using the first pen for the left and top sides
191 // and the second one for the bottom and right ones
192 void DrawShadedRect(wxDC
& dc
, wxRect
*rect
,
193 const wxPen
& pen1
, const wxPen
& pen2
);
195 // border drawing routines, may be overridden in the derived class
196 virtual void DrawRaisedBorder(wxDC
& dc
, wxRect
*rect
);
197 virtual void DrawSunkenBorder(wxDC
& dc
, wxRect
*rect
);
198 virtual void DrawAntiSunkenBorder(wxDC
& dc
, wxRect
*rect
);
199 virtual void DrawFrameBorder(wxDC
& dc
, wxRect
*rect
);
202 // draw the frame with non-empty label inside the given rectText
203 virtual void DrawFrameWithLabel(wxDC
& dc
,
204 const wxString
& label
,
205 const wxRect
& rectFrame
,
206 const wxRect
& rectText
,
211 // draw the (static box) frame without the part corresponding to rectLabel
212 void DrawFrameWithoutLabel(wxDC
& dc
,
213 const wxRect
& rectFrame
,
214 const wxRect
& rectLabel
);
217 // draw the bitmap for a check item (which is by default the same as check
218 // box one but may be different)
219 virtual void DrawCheckItemBitmap(wxDC
& dc
,
220 const wxBitmap
& bitmap
,
224 // common routine for drawing check and radio buttons
225 void DrawCheckOrRadioButton(wxDC
& dc
,
226 const wxString
& label
,
227 const wxBitmap
& bitmap
,
233 // return the check/radio bitmap for the given flags
234 virtual wxBitmap
GetRadioBitmap(int flags
) = 0;
235 virtual wxBitmap
GetCheckBitmap(int flags
) = 0;
238 // return the width of the border around the text area in the text control
239 virtual int GetTextBorderWidth(const wxTextCtrl
*text
) const;
240 #endif // wxUSE_TEXTCTRL
242 // return the starting and ending positions, in pixels, of the thumb of a
243 // scrollbar with the given logical position, thumb size and range and the
244 // given physical length
245 static void GetScrollBarThumbSize(wxCoord length
,
252 // GDI objects we often use
258 // the colours we use, they never change currently so we don't have to ever
259 // update m_penXXX objects above
260 const wxColourScheme
* const m_scheme
;
262 DECLARE_NO_COPY_CLASS(wxStdRenderer
)
265 #endif // _WX_UNIV_STDREND_H_