| 32 | } |
| 33 | |
| 34 | void ArrowKey::paint(QPainter &painter) const { |
| 35 | Key::paint(painter); |
| 36 | painter.setPen(Qt::NoPen); |
| 37 | painter.setBrush(mLabelColor); |
| 38 | painter.drawPath(mArrow); |
| 39 | } |
| 40 | |
| 41 | bool ArrowKey::isUnder(const QPainterPath &area) const { |
| 42 | QPainterPath key; |
nothing calls this directly
no outgoing calls
no test coverage detected