(self, stepCount: int, title: str, btnText: str, parent=None)
| 501 | finishSignal = pyqtSignal(bool) |
| 502 | |
| 503 | def __init__(self, stepCount: int, title: str, btnText: str, parent=None): |
| 504 | super().__init__(parent) |
| 505 | self.file: str = "" |
| 506 | self._setUpUI() |
| 507 | self._initView(stepCount, title, btnText) |
| 508 | self._connectSlots() |
| 509 | self.setNotFinished() |
| 510 | |
| 511 | def setFinished(self): |
| 512 | self.statusIcon.setFinished() |
nothing calls this directly
no test coverage detected