| 69 | } |
| 70 | |
| 71 | void ScaleBar::paintEvent(QPaintEvent *event) { |
| 72 | QPainter painter(this); |
| 73 | painter.setPen(QPen(QColor("black"))); |
| 74 | painter.setBrush(QColor(255, 255, 255, 80)); |
| 75 | QRectF bar = QRectF(0, 0, _currentWidth, 20); |
| 76 | painter.drawRect(bar); |
| 77 | painter.drawText(bar, Qt::AlignCenter, _currentLabel); |
| 78 | } |
| 79 | |
| 80 | QSize ScaleBar::sizeHint() const { |
| 81 | QSize size(_currentWidth + 1, 21); |
nothing calls this directly
no outgoing calls
no test coverage detected