+ if (item->HasPlus())
+ {
+ if (drawLines)
+ dc.DrawLine( x+5, y, x+15, y );
+ dc.SetPen( *wxGREY_PEN );
+ dc.SetBrush( *wxWHITE_BRUSH );
+ dc.DrawRectangle( x-5, y-4, 11, 9 );
+
+ dc.SetPen( *wxBLACK_PEN );
+ dc.DrawLine( x-2, y, x+3, y );
+ if (!item->IsExpanded())
+ dc.DrawLine( x, y-2, x, y+3 );
+ dc.SetPen( m_dottedPen );
+ }