Plugin_Project_Django.ProjectDjango.DjangoLoaddataDataDialog

Module implementing a dialog to enter the data for the loaddata command.

Global Attributes

None

Classes

DjangoLoaddataDataDialog Class implementing a dialog to enter the data for the loaddata command.

Functions

None


DjangoLoaddataDataDialog

Class implementing a dialog to enter the data for the loaddata command.

Derived from

QDialog, Ui_DjangoLoaddataDataDialog

Class Attributes

None

Methods

DjangoLoaddataDataDialog Constructor
getData Public method to get the data entered into the dialog.
on_fixtureFileButton_clicked Private slot to select a fixture file via a file selection dialog.
on_fixturesEdit_textChanged Private slot to handle a change of the fixtures text.

DjangoLoaddataDataDialog (Constructor)

DjangoLoaddataDataDialog(project, parent = None)

Constructor

project
reference to the Django project object
parent
parent widget (QWidget)

DjangoLoaddataDataDialog.getData

getData()

Public method to get the data entered into the dialog.

Returns:
list of fixtures (QStringList)

DjangoLoaddataDataDialog.on_fixtureFileButton_clicked

on_fixtureFileButton_clicked()

Private slot to select a fixture file via a file selection dialog.

DjangoLoaddataDataDialog.on_fixturesEdit_textChanged

on_fixturesEdit_textChanged(txt)

Private slot to handle a change of the fixtures text.

Up