eric4.Project.CreateDialogCodeDialog

Module implementing a dialog to generate code for a Qt4 dialog.

Global Attributes

pyqtSignatureRole
pythonSignatureRole
rubySignatureRole

Classes

CreateDialogCodeDialog Class implementing a dialog to generate code for a Qt4 dialog.

Functions

None


CreateDialogCodeDialog

Class implementing a dialog to generate code for a Qt4 dialog.

Derived from

QDialog, Ui_CreateDialogCodeDialog

Class Attributes

DialogClasses

Class Methods

None

Methods

CreateDialogCodeDialog Constructor
__className Private method to get the class name of the dialog.
__generateCode Private slot to generate the code as requested by the user.
__generatePythonCode Private slot to generate Python code as requested by the user.
__mapType Private method to map a type as reported by Qt's meta object to the correct Python type.
__objectName Private method to get the object name of the dialog.
__signatures Private slot to get the signatures.
__updateSlotsModel Private slot to update the slots tree display.
initError Public method to determine, if there was an initialzation error.
on_buttonBox_clicked Private slot to handle the buttonBox clicked signal.
on_classNameCombo_activated Private slot to handle the activated signal of the classname combo.
on_clearFilterButton_clicked Private slot called by a click of the clear filter button.
on_filterEdit_textChanged Private slot called, when thext of the filter edit has changed.
on_newButton_clicked Private slot called to enter the data for a new dialog class.

Static Methods

None

CreateDialogCodeDialog (Constructor)

CreateDialogCodeDialog(formName, project, parent = None)

Constructor

formName
name of the file containing the form (string or QString)
project
reference to the project object
parent
parent widget if the dialog (QWidget)

CreateDialogCodeDialog.__className

__className()

Private method to get the class name of the dialog.

Returns:
class name (QSting)

CreateDialogCodeDialog.__generateCode

__generateCode()

Private slot to generate the code as requested by the user.

CreateDialogCodeDialog.__generatePythonCode

__generatePythonCode()

Private slot to generate Python code as requested by the user.

CreateDialogCodeDialog.__mapType

__mapType(type_)

Private method to map a type as reported by Qt's meta object to the correct Python type.

type_
type as reported by Qt (QByteArray)
Returns:
mapped Python type (string)

CreateDialogCodeDialog.__objectName

__objectName()

Private method to get the object name of the dialog.

Returns:
object name (QString)

CreateDialogCodeDialog.__signatures

__signatures()

Private slot to get the signatures.

Returns:
list of signatures (list of strings)

CreateDialogCodeDialog.__updateSlotsModel

__updateSlotsModel()

Private slot to update the slots tree display.

CreateDialogCodeDialog.initError

initError()

Public method to determine, if there was an initialzation error.

Returns:
flag indicating an initialzation error (boolean)

CreateDialogCodeDialog.on_buttonBox_clicked

on_buttonBox_clicked(button)

Private slot to handle the buttonBox clicked signal.

button
reference to the button that was clicked (QAbstractButton)

CreateDialogCodeDialog.on_classNameCombo_activated

on_classNameCombo_activated(index)

Private slot to handle the activated signal of the classname combo.

index
index of the activated item (integer)

CreateDialogCodeDialog.on_clearFilterButton_clicked

on_clearFilterButton_clicked()

Private slot called by a click of the clear filter button.

CreateDialogCodeDialog.on_filterEdit_textChanged

on_filterEdit_textChanged(text)

Private slot called, when thext of the filter edit has changed.

text
changed text (QString)

CreateDialogCodeDialog.on_newButton_clicked

on_newButton_clicked()

Private slot called to enter the data for a new dialog class.

Up