| 1504 | |
| 1505 | |
| 1506 | void wxShape::Draw(wxDC& dc) |
| 1507 | { |
| 1508 | if (m_visible) |
| 1509 | { |
| 1510 | GetEventHandler()->OnDraw(dc); |
| 1511 | GetEventHandler()->OnDrawContents(dc); |
| 1512 | GetEventHandler()->OnDrawControlPoints(dc); |
| 1513 | GetEventHandler()->OnDrawBranches(dc); |
| 1514 | } |
| 1515 | } |
| 1516 | |
| 1517 | void wxShape::Flash() |
| 1518 | { |
no test coverage detected