17 from .Ui_E5MessageBoxWizardDialog import Ui_E5MessageBoxWizardDialog |
17 from .Ui_E5MessageBoxWizardDialog import Ui_E5MessageBoxWizardDialog |
18 |
18 |
19 |
19 |
20 class E5MessageBoxWizardDialog(QDialog, Ui_E5MessageBoxWizardDialog): |
20 class E5MessageBoxWizardDialog(QDialog, Ui_E5MessageBoxWizardDialog): |
21 """ |
21 """ |
22 Class implementing the eric6 message box wizard dialog. |
22 Class implementing the eric message box wizard dialog. |
23 |
23 |
24 It displays a dialog for entering the parameters |
24 It displays a dialog for entering the parameters |
25 for the E5MessageBox code generator. |
25 for the E5MessageBox code generator. |
26 """ |
26 """ |
27 def __init__(self, parent=None): |
27 def __init__(self, parent=None): |
380 """ |
380 """ |
381 Private method to generate the button code for the standard buttons. |
381 Private method to generate the button code for the standard buttons. |
382 |
382 |
383 @param istring indentation string (string) |
383 @param istring indentation string (string) |
384 @param indString string used for indentation (space or tab) (string) |
384 @param indString string used for indentation (space or tab) (string) |
385 @keyparam withIntro flag indicating to generate a first line |
385 @param withIntro flag indicating to generate a first line |
386 with introductory text (boolean) |
386 with introductory text (boolean) |
387 @return the button code (string) |
387 @return the button code (string) |
388 """ |
388 """ |
389 buttons = [] |
389 buttons = [] |
390 if self.abortCheck.isChecked(): |
390 if self.abortCheck.isChecked(): |