23 def __init__(self, project, parent=None, name=None): |
23 def __init__(self, project, parent=None, name=None): |
24 """ |
24 """ |
25 Constructor |
25 Constructor |
26 |
26 |
27 @param project reference to the project object |
27 @param project reference to the project object |
28 @param parent parent widget of this dialog (QWidget) |
28 @type Project |
29 @param name name of this dialog (string) |
29 @param parent parent widget of this dialog |
|
30 @type QWidget |
|
31 @param name name of this dialog |
|
32 @type str |
30 """ |
33 """ |
31 super().__init__(parent) |
34 super().__init__(parent) |
32 if name: |
35 if name: |
33 self.setObjectName(name) |
36 self.setObjectName(name) |
34 self.setupUi(self) |
37 self.setupUi(self) |