eric4.Project.NewDialogClassDialog

Module implementing a dialog to ente the data for a new dialog class file.

Global Attributes

None

Classes

NewDialogClassDialog Class implementing a dialog to ente the data for a new dialog class file.

Functions

None


NewDialogClassDialog

Class implementing a dialog to ente the data for a new dialog class file.

Derived from

QDialog, Ui_NewDialogClassDialog

Class Attributes

None

Class Methods

None

Methods

NewDialogClassDialog Constructor
__enableOkButton Private slot to set the enable state of theok button.
getData Public method to retrieve the data entered into the dialog.
on_classnameEdit_textChanged Private slot called, when thext of the classname edit has changed.
on_filenameEdit_textChanged Private slot called, when thext of the filename edit has changed.
on_pathButton_clicked Private slot called to open a directory selection dialog.
on_pathnameEdit_textChanged Private slot called, when thext of the pathname edit has changed.

Static Methods

None

NewDialogClassDialog (Constructor)

NewDialogClassDialog(defaultClassName, defaultFile, defaultPath, parent = None)

Constructor

defaultClassName
proposed name for the new class (string or QString)
defaultFile
proposed name for the source file (string or QString)
defaultPath
default path for the new file (string or QString)
parent
parent widget if the dialog (QWidget)

NewDialogClassDialog.__enableOkButton

__enableOkButton()

Private slot to set the enable state of theok button.

NewDialogClassDialog.getData

getData()

Public method to retrieve the data entered into the dialog.

Returns:
tuple giving the classname (string) and the file name (string)

NewDialogClassDialog.on_classnameEdit_textChanged

on_classnameEdit_textChanged(text)

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

text
changed text (QString)

NewDialogClassDialog.on_filenameEdit_textChanged

on_filenameEdit_textChanged(text)

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

text
changed text (QString)

NewDialogClassDialog.on_pathButton_clicked

on_pathButton_clicked()

Private slot called to open a directory selection dialog.

NewDialogClassDialog.on_pathnameEdit_textChanged

on_pathnameEdit_textChanged(text)

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

text
changed text (QString)
Up