| 553 | } |
| 554 | |
| 555 | void PlotViewWidget::drawWhiteBoxesInLabelArea(QPainter &painter, const QRectF &widgetRect) const |
| 556 | { |
| 557 | painter.setBrush(Qt::white); |
| 558 | painter.setPen(Qt::NoPen); |
| 559 | |
| 560 | painter.drawRect(QRectF(this->plotRect.bottomRight(), widgetRect.bottomRight())); |
| 561 | painter.drawRect(QRectF(this->plotRect.topLeft(), widgetRect.topLeft())); |
| 562 | painter.drawRect(QRectF(this->plotRect.bottomLeft(), widgetRect.bottomLeft())); |
| 563 | } |
| 564 | |
| 565 | void PlotViewWidget::drawLimits(QPainter &painter) const |
| 566 | { |