(self)
| 113 | # ── QGraphicsItem interface ─────────────────────────────────────────────── |
| 114 | |
| 115 | def boundingRect(self) -> QRectF: |
| 116 | return QRectF(0, 0, self.display_width, self.display_height) |
| 117 | |
| 118 | def shape(self) -> QPainterPath: |
| 119 | path = QPainterPath() |