35 """ |
35 """ |
36 Constructor |
36 Constructor |
37 |
37 |
38 @param parent The parent widget of this dialog. (QWidget) |
38 @param parent The parent widget of this dialog. (QWidget) |
39 """ |
39 """ |
40 super(ProgramsDialog, self).__init__(parent) |
40 super().__init__(parent) |
41 self.setupUi(self) |
41 self.setupUi(self) |
42 self.setObjectName("ProgramsDialog") |
42 self.setObjectName("ProgramsDialog") |
43 self.setWindowFlags(Qt.WindowType.Window) |
43 self.setWindowFlags(Qt.WindowType.Window) |
44 |
44 |
45 self.__hasSearched = False |
45 self.__hasSearched = False |