| 54 | |
| 55 | |
| 56 | class _StatusPixmapLabel(PixmapLabel): |
| 57 | def setFinished(self): |
| 58 | self.setPixmap(QPixmap(":/built-InIcons/ok.svg")) |
| 59 | self.setFixedSize(30, 30) |
| 60 | |
| 61 | def setNotFinished(self): |
| 62 | self.setPixmap(QPixmap(":/built-InIcons/not.svg")) |
| 63 | self.setFixedSize(30, 30) |
| 64 | |
| 65 | |
| 66 | class ImportPageWidget(QWidget): |