9 |
9 |
10 from PyQt4.QtGui import QDialog |
10 from PyQt4.QtGui import QDialog |
11 |
11 |
12 from .Ui_PropertiesDialog import Ui_PropertiesDialog |
12 from .Ui_PropertiesDialog import Ui_PropertiesDialog |
13 |
13 |
|
14 |
14 class PropertiesDialog(QDialog, Ui_PropertiesDialog): |
15 class PropertiesDialog(QDialog, Ui_PropertiesDialog): |
15 """ |
16 """ |
16 Class implementing the multi project properties dialog. |
17 Class implementing the multi project properties dialog. |
17 """ |
18 """ |
18 def __init__(self, multiProject, new = True, parent = None): |
19 def __init__(self, multiProject, new=True, parent=None): |
19 """ |
20 """ |
20 Constructor |
21 Constructor |
21 |
22 |
22 @param multiProject reference to the multi project object |
23 @param multiProject reference to the multi project object |
23 @param new flag indicating the generation of a new multi project |
24 @param new flag indicating the generation of a new multi project |