eric6/E5Gui/E5ProgressDialog.py

branch
maintenance
changeset 8043
0acf98cd089a
parent 7924
8a96736d465e
parent 7923
91e843545d9a
child 8273
698ae46f40a4
equal deleted inserted replaced
7991:866adc8c315b 8043:0acf98cd089a
23 23
24 @param labelText text of the dialog label (string) 24 @param labelText text of the dialog label (string)
25 @param cancelButtonText text of the cancel button (string) 25 @param cancelButtonText text of the cancel button (string)
26 @param minimum minimum value (integer) 26 @param minimum minimum value (integer)
27 @param maximum maximum value (integer) 27 @param maximum maximum value (integer)
28 @keyparam labelFormat label format of the progress bar (string) 28 @param labelFormat label format of the progress bar (string)
29 @keyparam parent reference to the parent widget (QWidget) 29 @param parent reference to the parent widget (QWidget)
30 @keyparam flags window flags of the dialog (Qt.WindowFlags) 30 @param flags window flags of the dialog (Qt.WindowFlags)
31 """ 31 """
32 if flags is None: 32 if flags is None:
33 flags = Qt.WindowFlags() 33 flags = Qt.WindowFlags()
34 super(E5ProgressDialog, self).__init__( 34 super(E5ProgressDialog, self).__init__(
35 labelText, cancelButtonText, minimum, maximum, parent, flags) 35 labelText, cancelButtonText, minimum, maximum, parent, flags)

eric ide

mercurial