21 def __init__(self, details, parent=None): |
21 def __init__(self, details, parent=None): |
22 """ |
22 """ |
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 @type dict |
|
27 @param parent parent of this dialog |
|
28 @type QWidget |
27 """ |
29 """ |
28 super().__init__(parent) |
30 super().__init__(parent) |
29 self.setupUi(self) |
31 self.setupUi(self) |
30 self.setWindowFlags(Qt.WindowType.Window) |
32 self.setWindowFlags(Qt.WindowType.Window) |
31 |
33 |