12 |
12 |
13 from Ui_PreviewDialog import Ui_PreviewDialog |
13 from Ui_PreviewDialog import Ui_PreviewDialog |
14 |
14 |
15 import Globals |
15 import Globals |
16 |
16 |
|
17 |
17 class PreviewDialogBase(QDialog, Ui_PreviewDialog): |
18 class PreviewDialogBase(QDialog, Ui_PreviewDialog): |
18 """ |
19 """ |
19 Class implementing a dialog base class to preview changes. |
20 Class implementing a dialog base class to preview changes. |
20 """ |
21 """ |
21 def __init__(self, parent = None): |
22 def __init__(self, parent=None): |
22 """ |
23 """ |
23 Constructor |
24 Constructor |
24 |
25 |
25 @param parent reference to the parent widget (QWidget) |
26 @param parent reference to the parent widget (QWidget) |
26 """ |
27 """ |