1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/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 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #include "wx/renderer.h"
30 #include "wx/string.h"
32 #include "wx/settings.h"
33 #include "wx/gdicmn.h"
34 #include "wx/module.h"
35 #include "wx/control.h"
38 #include "wx/splitter.h"
39 #include "wx/dcmirror.h"
42 #include "wx/osx/private.h"
45 // ----------------------------------------------------------------------------
46 // wxRendererGeneric: our wxRendererNative implementation
47 // ----------------------------------------------------------------------------
49 class WXDLLEXPORT wxRendererGeneric
: public wxRendererNative
54 virtual int DrawHeaderButton(wxWindow
*win
,
58 wxHeaderSortIconType sortArrow
= wxHDR_SORT_ICON_NONE
,
59 wxHeaderButtonParams
* params
= NULL
);
61 virtual int DrawHeaderButtonContents(wxWindow
*win
,
65 wxHeaderSortIconType sortArrow
= wxHDR_SORT_ICON_NONE
,
66 wxHeaderButtonParams
* params
= NULL
);
68 virtual int GetHeaderButtonHeight(wxWindow
*win
);
70 virtual int GetHeaderButtonMargin(wxWindow
*win
);
72 virtual void DrawTreeItemButton(wxWindow
*win
,
77 virtual void DrawSplitterBorder(wxWindow
*win
,
82 virtual void DrawSplitterSash(wxWindow
*win
,
89 virtual void DrawComboBoxDropButton(wxWindow
*win
,
94 virtual void DrawDropArrow(wxWindow
*win
,
99 virtual void DrawCheckBox(wxWindow
*win
,
104 virtual wxSize
GetCheckBoxSize(wxWindow
*win
);
106 virtual void DrawPushButton(wxWindow
*win
,
111 virtual void DrawItemSelectionRect(wxWindow
*win
,
116 virtual void DrawFocusRect(wxWindow
* win
, wxDC
& dc
, const wxRect
& rect
, int flags
= 0);
118 virtual void DrawChoice(wxWindow
* win
, wxDC
& dc
, const wxRect
& rect
, int flags
=0);
120 virtual void DrawComboBox(wxWindow
* win
, wxDC
& dc
, const wxRect
& rect
, int flags
=0);
122 virtual void DrawTextCtrl(wxWindow
* win
, wxDC
& dc
, const wxRect
& rect
, int flags
=0);
124 virtual void DrawRadioBitmap(wxWindow
* win
, wxDC
& dc
, const wxRect
& rect
, int flags
=0);
126 #ifdef wxHAS_DRAW_TITLE_BAR_BITMAP
127 virtual void DrawTitleBarBitmap(wxWindow
*win
,
130 wxTitleBarButton button
,
132 #endif // wxHAS_DRAW_TITLE_BAR_BITMAP
134 virtual wxSplitterRenderParams
GetSplitterParams(const wxWindow
*win
);
136 virtual wxRendererVersion
GetVersion() const
138 return wxRendererVersion(wxRendererVersion::Current_Version
,
139 wxRendererVersion::Current_Age
);
143 // Cleanup by deleting standard renderer
144 static void Cleanup();
146 // Get the generic object
147 static wxRendererGeneric
* DoGetGeneric();
150 // draw the rectange using the first pen for the left and top sides and
151 // the second one for the bottom and right ones
152 void DrawShadedRect(wxDC
& dc
, wxRect
*rect
,
153 const wxPen
& pen1
, const wxPen
& pen2
);
161 static wxRendererGeneric
* sm_rendererGeneric
;
164 // ============================================================================
165 // wxRendererGeneric implementation
166 // ============================================================================
168 // Get the generic object
169 wxRendererGeneric
* wxRendererGeneric::DoGetGeneric()
171 if (!sm_rendererGeneric
)
172 sm_rendererGeneric
= new wxRendererGeneric
;
173 return sm_rendererGeneric
;
176 // ----------------------------------------------------------------------------
177 // wxRendererGeneric creation
178 // ----------------------------------------------------------------------------
181 wxRendererNative
& wxRendererNative::GetGeneric()
183 return * wxRendererGeneric::DoGetGeneric();
186 void wxRendererGeneric::Cleanup()
188 wxDELETE(sm_rendererGeneric
);
191 wxRendererGeneric
* wxRendererGeneric::sm_rendererGeneric
= NULL
;
193 wxRendererGeneric::wxRendererGeneric()
194 : m_penBlack(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW
)),
195 m_penDarkGrey(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
)),
196 m_penLightGrey(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
)),
197 m_penHighlight(wxSystemSettings::GetColour(wxSYS_COLOUR_3DHIGHLIGHT
))
201 // ----------------------------------------------------------------------------
202 // wxRendererGeneric helpers
203 // ----------------------------------------------------------------------------
206 wxRendererGeneric::DrawShadedRect(wxDC
& dc
,
211 // draw the rectangle
213 dc
.DrawLine(rect
->GetLeft(), rect
->GetTop(),
214 rect
->GetLeft(), rect
->GetBottom());
215 dc
.DrawLine(rect
->GetLeft() + 1, rect
->GetTop(),
216 rect
->GetRight(), rect
->GetTop());
218 dc
.DrawLine(rect
->GetRight(), rect
->GetTop(),
219 rect
->GetRight(), rect
->GetBottom());
220 dc
.DrawLine(rect
->GetLeft(), rect
->GetBottom(),
221 rect
->GetRight() + 1, rect
->GetBottom());
227 // ----------------------------------------------------------------------------
228 // tree/list ctrl drawing
229 // ----------------------------------------------------------------------------
232 wxRendererGeneric::DrawHeaderButton(wxWindow
* win
,
236 wxHeaderSortIconType sortArrow
,
237 wxHeaderButtonParams
* params
)
239 const wxCoord x
= rect
.x
,
244 dc
.SetBrush(wxBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
)));
245 dc
.SetPen(*wxTRANSPARENT_PEN
);
246 dc
.DrawRectangle(rect
);
248 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
250 dc
.SetPen(m_penBlack
);
251 dc
.DrawLine( x
+w
-1, y
, x
+w
-1, y
+h
); // right (outer)
252 dc
.DrawLine( x
, y
+h
-1, x
+w
, y
+h
-1 ); // bottom (outer)
254 dc
.SetPen(m_penDarkGrey
);
255 dc
.DrawLine( x
+w
-2, y
+1, x
+w
-2, y
+h
-1 ); // right (inner)
256 dc
.DrawLine( x
+1, y
+h
-2, x
+w
-1, y
+h
-2 ); // bottom (inner)
258 dc
.SetPen(m_penHighlight
);
259 dc
.DrawLine( x
, y
, x
, y
+h
-1 ); // left (outer)
260 dc
.DrawLine( x
, y
, x
+w
-1, y
); // top (outer)
262 return DrawHeaderButtonContents(win
, dc
, rect
, flags
, sortArrow
, params
);
267 wxRendererGeneric::DrawHeaderButtonContents(wxWindow
*win
,
271 wxHeaderSortIconType sortArrow
,
272 wxHeaderButtonParams
* params
)
276 // Mark this item as selected. For the generic version we'll just draw an
278 if ( flags
& wxCONTROL_SELECTED
)
280 // draw a line at the bottom of the header button, overlaying the
281 // native hot-tracking line (on XP)
282 const int penwidth
= 3;
283 int y
= rect
.y
+ rect
.height
+ 1 - penwidth
;
284 wxColour c
= (params
&& params
->m_selectionColour
.Ok()) ?
285 params
->m_selectionColour
: wxColour(0x66, 0x66, 0x66);
286 wxPen
pen(c
, penwidth
);
287 pen
.SetCap(wxCAP_BUTT
);
289 dc
.DrawLine(rect
.x
, y
, rect
.x
+ rect
.width
, y
);
292 // Draw an up or down arrow
294 if (sortArrow
!= wxHDR_SORT_ICON_NONE
)
298 // make a rect for the arrow
301 ar
.y
+= (rect
.height
- ar
.height
)/2;
302 ar
.x
= ar
.x
+ rect
.width
- 3*ar
.width
/2;
303 arrowSpace
= 3*ar
.width
/2; // space to preserve when drawing the label
306 if ( sortArrow
& wxHDR_SORT_ICON_UP
)
308 triPt
[0].x
= ar
.width
/ 2;
310 triPt
[1].x
= ar
.width
;
311 triPt
[1].y
= ar
.height
;
313 triPt
[2].y
= ar
.height
;
319 triPt
[1].x
= ar
.width
;
321 triPt
[2].x
= ar
.width
/ 2;
322 triPt
[2].y
= ar
.height
;
325 wxColour c
= (params
&& params
->m_arrowColour
.Ok()) ?
326 params
->m_arrowColour
: wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
);
328 wxDCPenChanger
setPen(dc
, c
);
329 wxDCBrushChanger
setBrush(dc
, c
);
331 wxDCClipper
clip(dc
, rect
);
332 dc
.DrawPolygon( 3, triPt
, ar
.x
, ar
.y
);
334 labelWidth
+= arrowSpace
;
338 // draw the bitmap if there is one
339 if ( params
&& params
->m_labelBitmap
.Ok() )
341 int w
= params
->m_labelBitmap
.GetWidth();
342 int h
= params
->m_labelBitmap
.GetHeight();
344 const int margin
= 1; // an extra pixel on either side of the bitmap
346 bmpWidth
= w
+ 2*margin
;
347 labelWidth
+= bmpWidth
;
349 int x
= rect
.x
+ margin
;
350 const int y
= rect
.y
+ wxMax(1, (rect
.height
- h
) / 2);
352 const int extraSpace
= rect
.width
- labelWidth
;
353 if ( params
->m_labelText
.empty() && extraSpace
> 0 )
355 // use the alignment flags
356 switch (params
->m_labelAlignment
)
372 wxDCClipper
clip(dc
, rect
);
373 dc
.DrawBitmap(params
->m_labelBitmap
, x
, y
, true);
376 // Draw a label if one is given
377 if ( params
&& !params
->m_labelText
.empty() )
379 const int margin
= 5; // number of pixels to reserve on either side of the label
380 labelWidth
+= 2*margin
;
382 wxFont font
= params
->m_labelFont
.Ok() ?
383 params
->m_labelFont
: win
->GetFont();
384 wxColour clr
= params
->m_labelColour
.Ok() ?
385 params
->m_labelColour
: win
->GetForegroundColour();
387 wxString
label( params
->m_labelText
);
390 dc
.SetTextForeground(clr
);
391 dc
.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT
);
394 dc
.GetTextExtent( label
, &tw
, &th
, &td
);
396 int x
= rect
.x
+ bmpWidth
+ margin
;
397 const int y
= rect
.y
+ wxMax(0, (rect
.height
- (th
+td
)) / 2);
399 // truncate and add an ellipsis (...) if the text is too wide.
400 const int availWidth
= rect
.width
- labelWidth
;
401 if ( tw
> availWidth
)
403 label
= wxControl::Ellipsize(label
,
407 wxELLIPSIZE_FLAGS_NONE
);
408 tw
= dc
.GetTextExtent(label
).x
;
410 else // enough space, we can respect alignment
412 switch (params
->m_labelAlignment
)
419 x
+= (availWidth
- tw
)/2;
423 x
+= availWidth
- tw
;
428 dc
.DrawText(label
, x
, y
);
437 int wxRendererGeneric::GetHeaderButtonHeight(wxWindow
*win
)
439 // Copied and adapted from src/generic/listctrl.cpp
440 const int HEADER_OFFSET_Y
= 1;
441 const int EXTRA_HEIGHT
= 4;
445 win
->GetTextExtent(wxT("Hg"), &w
, &h
, &d
);
447 return h
+ d
+ 2 * HEADER_OFFSET_Y
+ EXTRA_HEIGHT
;
450 int wxRendererGeneric::GetHeaderButtonMargin(wxWindow
*WXUNUSED(win
))
456 // draw the plus or minus sign
458 wxRendererGeneric::DrawTreeItemButton(wxWindow
* WXUNUSED(win
),
464 wxDCPenChanger
penChanger(dc
, *wxGREY_PEN
);
465 wxDCBrushChanger
brushChanger(dc
, *wxWHITE_BRUSH
);
467 dc
.DrawRectangle(rect
);
470 const wxCoord xMiddle
= rect
.x
+ rect
.width
/2;
471 const wxCoord yMiddle
= rect
.y
+ rect
.height
/2;
473 // half of the length of the horz lines in "-" and "+"
474 const wxCoord halfWidth
= rect
.width
/2 - 2;
475 dc
.SetPen(*wxBLACK_PEN
);
476 dc
.DrawLine(xMiddle
- halfWidth
, yMiddle
,
477 xMiddle
+ halfWidth
+ 1, yMiddle
);
479 if ( !(flags
& wxCONTROL_EXPANDED
) )
482 const wxCoord halfHeight
= rect
.height
/2 - 2;
483 dc
.DrawLine(xMiddle
, yMiddle
- halfHeight
,
484 xMiddle
, yMiddle
+ halfHeight
+ 1);
488 // ----------------------------------------------------------------------------
490 // ----------------------------------------------------------------------------
492 wxSplitterRenderParams
493 wxRendererGeneric::GetSplitterParams(const wxWindow
*win
)
499 if ( win
->HasFlag(wxSP_3DSASH
) )
501 else if ( win
->HasFlag(wxSP_NOSASH
) )
506 if ( win
->HasFlag(wxSP_3DBORDER
) )
511 return wxSplitterRenderParams(sashWidth
, border
, false);
515 wxRendererGeneric::DrawSplitterBorder(wxWindow
*win
,
517 const wxRect
& rectOrig
,
520 if ( win
->HasFlag(wxSP_3DBORDER
) )
522 wxRect rect
= rectOrig
;
523 DrawShadedRect(dc
, &rect
, m_penDarkGrey
, m_penHighlight
);
524 DrawShadedRect(dc
, &rect
, m_penBlack
, m_penLightGrey
);
529 wxRendererGeneric::DrawSplitterSash(wxWindow
*win
,
531 const wxSize
& sizeReal
,
533 wxOrientation orient
,
536 // to avoid duplicating the same code for horizontal and vertical sashes,
537 // simply mirror the DC instead if needed (i.e. if horz splitter)
538 wxMirrorDC
dc(dcReal
, orient
!= wxVERTICAL
);
539 wxSize size
= dc
.Reflect(sizeReal
);
542 // we draw a Win32-like grey sash with possible 3D border here:
544 // ---- this is position
549 // GWGGGDB where G is light grey (face)
550 // GWGGGDB W white (light)
551 // GWGGGDB D dark grey (shadow)
552 // GWGGGDB B black (dark shadow)
554 // GWGGGDB and lower letters are our border (already drawn)
558 // only the middle 3 columns are drawn unless wxSP_3D is specified
560 const wxCoord h
= size
.y
;
563 // If we're drawing the border, draw the sash 3d lines shorter
564 if ( win
->HasFlag(wxSP_3DBORDER
) )
569 dc
.SetPen(*wxTRANSPARENT_PEN
);
570 dc
.SetBrush(wxBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
)));
572 if ( win
->HasFlag(wxSP_3DSASH
) )
575 dc
.DrawRectangle(position
+ 2, 0, 3, h
);
577 dc
.SetPen(m_penLightGrey
);
578 dc
.DrawLine(position
, offset
, position
, h
- offset
);
580 dc
.SetPen(m_penHighlight
);
581 dc
.DrawLine(position
+ 1, 0, position
+ 1, h
);
583 dc
.SetPen(m_penDarkGrey
);
584 dc
.DrawLine(position
+ 5, 0, position
+ 5, h
);
586 dc
.SetPen(m_penBlack
);
587 dc
.DrawLine(position
+ 6, offset
, position
+ 6, h
- offset
);
592 dc
.DrawRectangle(position
, 0, 3, h
);
596 // ----------------------------------------------------------------------------
598 // ----------------------------------------------------------------------------
601 wxRendererGeneric::DrawComboBoxDropButton(wxWindow
*win
,
606 DrawPushButton(win
,dc
,rect
,flags
);
607 DrawDropArrow(win
,dc
,rect
,flags
);
611 wxRendererGeneric::DrawDropArrow(wxWindow
*win
,
616 // This generic implementation should be good
617 // enough for Windows platforms (including XP).
619 int arrowHalf
= rect
.width
/5;
620 int rectMid
= rect
.width
/ 2;
621 int arrowTopY
= (rect
.height
/2) - (arrowHalf
/2);
623 // This should always result in arrow with odd width.
626 wxPoint(rectMid
- arrowHalf
, arrowTopY
),
627 wxPoint(rectMid
+ arrowHalf
, arrowTopY
),
628 wxPoint(rectMid
, arrowTopY
+ arrowHalf
)
630 dc
.SetBrush(wxBrush(win
->GetForegroundColour()));
631 dc
.SetPen(wxPen(win
->GetForegroundColour()));
632 dc
.DrawPolygon(WXSIZEOF(pt
), pt
, rect
.x
, rect
.y
);
636 wxRendererGeneric::DrawCheckBox(wxWindow
*WXUNUSED(win
),
641 dc
.SetPen(*(flags
& wxCONTROL_DISABLED
? wxGREY_PEN
: wxBLACK_PEN
));
642 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
643 dc
.DrawRectangle(rect
);
645 if ( flags
& wxCONTROL_CHECKED
)
647 dc
.DrawCheckMark(rect
.Deflate(2, 2));
651 wxSize
wxRendererGeneric::GetCheckBoxSize(wxWindow
*WXUNUSED(win
))
653 return wxSize(16, 16);
657 wxRendererGeneric::DrawPushButton(wxWindow
*win
,
662 // Don't try anything too fancy. It'll just turn out looking
663 // out-of-place on most platforms.
664 wxColour bgCol
= flags
& wxCONTROL_DISABLED
?
665 wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
) :
666 win
->GetBackgroundColour();
667 dc
.SetBrush(wxBrush(bgCol
));
668 dc
.SetPen(wxPen(bgCol
));
669 dc
.DrawRectangle(rect
);
673 wxRendererGeneric::DrawItemSelectionRect(wxWindow
* win
,
679 if ( flags
& wxCONTROL_SELECTED
)
681 if ( flags
& wxCONTROL_FOCUSED
)
683 brush
= wxBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
));
687 brush
= wxBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNSHADOW
));
692 brush
= *wxTRANSPARENT_BRUSH
;
696 if ((flags
& wxCONTROL_CURRENT
) && (flags
& wxCONTROL_FOCUSED
)
697 #if defined( __WXMAC__ ) && !defined(__WXUNIVERSAL__) && wxOSX_USE_CARBON
698 && IsControlActive( (ControlRef
)win
->GetHandle() )
701 dc
.SetPen( *wxBLACK_PEN
);
703 dc
.SetPen( *wxTRANSPARENT_PEN
);
705 dc
.DrawRectangle( rect
);
707 // it's unused everywhere except in wxOSX/Carbon
712 wxRendererGeneric::DrawFocusRect(wxWindow
* WXUNUSED(win
), wxDC
& dc
, const wxRect
& rect
, int WXUNUSED(flags
))
714 // draw the pixels manually because the "dots" in wxPen with wxDOT style
715 // may be short traits and not really dots
717 // note that to behave in the same manner as DrawRect(), we must exclude
718 // the bottom and right borders from the rectangle
719 wxCoord x1
= rect
.GetLeft(),
721 x2
= rect
.GetRight(),
722 y2
= rect
.GetBottom();
724 dc
.SetPen(m_penBlack
);
727 dc
.SetLogicalFunction(wxCOPY
);
729 // this seems to be closer than what Windows does than wxINVERT although
730 // I'm still not sure if it's correct
731 dc
.SetLogicalFunction(wxAND_REVERSE
);
735 for ( z
= x1
+ 1; z
< x2
; z
+= 2 )
736 dc
.DrawPoint(z
, rect
.GetTop());
738 wxCoord shift
= z
== x2
? 0 : 1;
739 for ( z
= y1
+ shift
; z
< y2
; z
+= 2 )
742 shift
= z
== y2
? 0 : 1;
743 for ( z
= x2
- shift
; z
> x1
; z
-= 2 )
746 shift
= z
== x1
? 0 : 1;
747 for ( z
= y2
- shift
; z
> y1
; z
-= 2 )
750 dc
.SetLogicalFunction(wxCOPY
);
753 void wxRendererGeneric::DrawChoice(wxWindow
* WXUNUSED(win
), wxDC
& WXUNUSED(dc
),
754 const wxRect
& WXUNUSED(rect
), int WXUNUSED(flags
))
756 wxFAIL_MSG("UNIMPLEMENTED: wxRendererGeneric::DrawChoice");
759 void wxRendererGeneric::DrawComboBox(wxWindow
* WXUNUSED(win
), wxDC
& WXUNUSED(dc
),
760 const wxRect
& WXUNUSED(rect
), int WXUNUSED(flags
))
762 wxFAIL_MSG("UNIMPLEMENTED: wxRendererGeneric::DrawComboBox");
765 void wxRendererGeneric::DrawRadioBitmap(wxWindow
* WXUNUSED(win
), wxDC
& WXUNUSED(dc
),
766 const wxRect
& WXUNUSED(rect
), int WXUNUSED(flags
))
768 wxFAIL_MSG("UNIMPLEMENTED: wxRendererGeneric::DrawRadioBitmap");
771 void wxRendererGeneric::DrawTextCtrl(wxWindow
* WXUNUSED(win
), wxDC
& WXUNUSED(dc
),
772 const wxRect
& WXUNUSED(rect
), int WXUNUSED(flags
))
774 wxFAIL_MSG("UNIMPLEMENTED: wxRendererGeneric::DrawTextCtrl");
777 #ifdef wxHAS_DRAW_TITLE_BAR_BITMAP
779 void wxRendererGeneric::DrawTitleBarBitmap(wxWindow
* WXUNUSED(win
),
781 const wxRect
& WXUNUSED(rect
),
782 wxTitleBarButton
WXUNUSED(button
),
785 // no need to fail here, if wxHAS_DRAW_TITLE_BAR_BITMAP is defined this
786 // will be implemented in the native renderer and this version is never
787 // going to be used -- but we still need to define it to allow
788 // instantiation of this class (which would have been pure virtual
792 #endif // wxHAS_DRAW_TITLE_BAR_BITMAP
795 // ----------------------------------------------------------------------------
796 // A module to allow cleanup of generic renderer.
797 // ----------------------------------------------------------------------------
799 class wxGenericRendererModule
: public wxModule
801 DECLARE_DYNAMIC_CLASS(wxGenericRendererModule
)
803 wxGenericRendererModule() {}
804 bool OnInit() { return true; }
805 void OnExit() { wxRendererGeneric::Cleanup(); }
808 IMPLEMENT_DYNAMIC_CLASS(wxGenericRendererModule
, wxModule
)