eric6/Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py

branch
maintenance
changeset 8043
0acf98cd089a
parent 7924
8a96736d465e
parent 7960
e8fc383322f7
child 8176
31965986ecd1
equal deleted inserted replaced
7991:866adc8c315b 8043:0acf98cd089a
2 2
3 # Copyright (c) 2010 - 2021 Detlev Offenbach <detlev@die-offenbachs.de> 3 # Copyright (c) 2010 - 2021 Detlev Offenbach <detlev@die-offenbachs.de>
4 # 4 #
5 5
6 """ 6 """
7 Module implementing the eric6 message box wizard dialog. 7 Module implementing the eric message box wizard dialog.
8 """ 8 """
9 9
10 import os 10 import os
11 11
12 from PyQt5.QtCore import pyqtSlot 12 from PyQt5.QtCore import pyqtSlot
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():

eric ide

mercurial