23 Constructor |
23 Constructor |
24 |
24 |
25 @param details dictionary containing the info to be displayed |
25 @param details dictionary containing the info to be displayed |
26 @param parent parent of this dialog (QWidget) |
26 @param parent parent of this dialog (QWidget) |
27 """ |
27 """ |
28 QDialog.__init__(self, parent) |
28 super().__init__(parent) |
29 self.setupUi(self) |
29 self.setupUi(self) |
30 |
30 |
31 self.__autoactivate = details["autoactivate"] |
31 self.__autoactivate = details["autoactivate"] |
32 self.__active = details["active"] |
32 self.__active = details["active"] |
33 |
33 |