| 45 | } |
| 46 | virtual bool isUnder(const QPainterPath &area) const = 0; |
| 47 | void pressOrRelease(bool isPress) { |
| 48 | if (isPress) { |
| 49 | press(); |
| 50 | } else { |
| 51 | release(); |
| 52 | } |
| 53 | } |
| 54 | void press() { |
| 55 | mSelected = true; |
| 56 | } |
nothing calls this directly
no outgoing calls
no test coverage detected