14 |
14 |
15 import Preferences |
15 import Preferences |
16 |
16 |
17 from .Ui_UserPropertiesDialog import Ui_UserPropertiesDialog |
17 from .Ui_UserPropertiesDialog import Ui_UserPropertiesDialog |
18 |
18 |
|
19 |
19 class UserPropertiesDialog(QDialog, Ui_UserPropertiesDialog): |
20 class UserPropertiesDialog(QDialog, Ui_UserPropertiesDialog): |
20 """ |
21 """ |
21 Class implementing the user specific project properties dialog. |
22 Class implementing the user specific project properties dialog. |
22 """ |
23 """ |
23 def __init__(self, project, parent = None, name = None): |
24 def __init__(self, project, parent=None, name=None): |
24 """ |
25 """ |
25 Constructor |
26 Constructor |
26 |
27 |
27 @param project reference to the project object |
28 @param project reference to the project object |
28 @param parent parent widget of this dialog (QWidget) |
29 @param parent parent widget of this dialog (QWidget) |