plot: Add default impl of all paint* functions

This commit is contained in:
Mike Walters
2016-03-04 00:13:48 +00:00
parent d989579d62
commit a1af3fe0be
6 changed files with 13 additions and 15 deletions

View File

@@ -26,4 +26,14 @@ void Plot::paintBack(QPainter &painter, QRect &rect, range_t<off_t> sampleRange)
painter.setPen(pen);
painter.drawLine(rect.left(), rect.center().y(), rect.right(), rect.center().y());
painter.restore();
}
}
void Plot::paintMid(QPainter &painter, QRect &rect, range_t<off_t> sampleRange)
{
}
void Plot::paintFront(QPainter &painter, QRect &rect, range_t<off_t> sampleRange)
{
}