Plugin_Project_Pylons.ProjectPylons.CreateParametersDialog

Module implementing a dialog for entering the create parameters.

Global Attributes

None

Classes

CreateParametersDialog Class implementing a dialog for entering the create parameters

Functions

None


CreateParametersDialog

Class implementing a dialog for entering the create parameters

Derived from

QDialog, Ui_CreateParametersDialog

Class Attributes

None

Methods

CreateParametersDialog Constructor
__updateUi Private slot to update the dialog.
getData Public method to get the data.
on_nameEdit_textChanged Private slot to handle changes of the project name.
on_templateCombo_textChanged Private slot to handle changes of the entered template.

CreateParametersDialog (Constructor)

CreateParametersDialog(parent = None)

Constructor

parent
reference to the parent widget (QWidget)

CreateParametersDialog.__updateUi

__updateUi()

Private slot to update the dialog.

CreateParametersDialog.getData

getData()

Public method to get the data.

Returns:
tuple giving the template (string) and the project name (string)

CreateParametersDialog.on_nameEdit_textChanged

on_nameEdit_textChanged(text)

Private slot to handle changes of the project name.

text
text of the combo box (QString)

CreateParametersDialog.on_templateCombo_textChanged

on_templateCombo_textChanged(text)

Private slot to handle changes of the entered template.

text
text of the combo box (QString)
Up