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) |