(self)
| 116 | return QRectF(0, 0, self.display_width, self.display_height) |
| 117 | |
| 118 | def shape(self) -> QPainterPath: |
| 119 | path = QPainterPath() |
| 120 | path.addRect(self.boundingRect()) |
| 121 | return path |
| 122 | |
| 123 | def paint(self, painter: QPainter, option, widget=None) -> None: |
| 124 | r = self.boundingRect() |
nothing calls this directly
no test coverage detected