Use wxDC{Pen,Brush}Changer classes instead of setting/restoring pen and brush
manually.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62156
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
bool is_active = IsControlActive( this->m_controlRef );
if (state == kDataBrowserItemIsSelected)
{
bool is_active = IsControlActive( this->m_controlRef );
if (state == kDataBrowserItemIsSelected)
{
wxColour col( wxMacCreateCGColorFromHITheme( (is_active) ?
kThemeBrushAlternatePrimaryHighlightColor
: kThemeBrushSecondaryHighlightColor ) );
wxColour col( wxMacCreateCGColorFromHITheme( (is_active) ?
kThemeBrushAlternatePrimaryHighlightColor
: kThemeBrushSecondaryHighlightColor ) );
rect.x = itemrect.left-2;
rect.width = itemrect.right-itemrect.left+3;
rect.x = itemrect.left-2;
rect.width = itemrect.right-itemrect.left+3;
- wxBrush selBrush( col );
- wxPen oldpen( dc->GetPen() );
- wxBrush oldbrush( dc->GetBrush() );
- dc->SetPen( *wxTRANSPARENT_PEN );
- dc->SetBrush( selBrush );
+ wxDCPenChanger setPen(*dc, *wxTRANSPARENT_PEN);
+ wxDCBrushChanger setBrush(*dc, col);
- dc->SetBrush( oldbrush );
- dc->SetPen( oldpen );
}
wxDataViewModel *model = dataViewCtrlPtr->GetModel();
}
wxDataViewModel *model = dataViewCtrlPtr->GetModel();