| 2579 | } |
| 2580 | |
| 2581 | void AdornedRulerPanel::DoDrawSelection( |
| 2582 | wxDC * dc, const wxRect &rectS, const wxRect &rectL, const wxRect &rectR) |
| 2583 | { |
| 2584 | dc->SetBrush( wxBrush{ AlphaBlend( |
| 2585 | TimelineSelectionColor(), TimelineBackgroundColor(), SelectionOpacity) } ); |
| 2586 | dc->SetPen( *wxTRANSPARENT_PEN ); |
| 2587 | dc->DrawRectangle( rectS.Intersect(rectL) ); |
| 2588 | dc->DrawRectangle( rectS.Intersect(rectR) ); |
| 2589 | } |
| 2590 | |
| 2591 | int AdornedRulerPanel::GetRulerHeight(bool showScrubBar) |
| 2592 | { |
nothing calls this directly
no test coverage detected