eric6/E5Gui/E5ProcessDialog.py

changeset 8268
6b8128e0c9d1
parent 8218
7c09585bd960
equal deleted inserted replaced
8267:6baca884c73a 8268:6b8128e0c9d1
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

eric ide

mercurial