25 |
25 |
26 class E5ProcessDialog(QDialog, Ui_E5ProcessDialog): |
26 class E5ProcessDialog(QDialog, Ui_E5ProcessDialog): |
27 """ |
27 """ |
28 Class implementing a dialog starting a process and showing its output. |
28 Class implementing a dialog starting a process and showing its output. |
29 |
29 |
30 It starts a QProcess and displays a dialog that |
30 It starts a QProcess and displays a dialog that shows the output of the |
31 shows the output of the process. The dialog is modal, |
31 process. The dialog is modal, which causes a synchronized execution of |
32 which causes a synchronized execution of the process. |
32 the process. |
33 """ |
33 """ |
34 def __init__(self, outputTitle="", windowTitle="", showProgress=False, |
34 def __init__(self, outputTitle="", windowTitle="", showProgress=False, |
35 parent=None): |
35 parent=None): |
36 """ |
36 """ |
37 Constructor |
37 Constructor |