Bond graph ports and drawing added
This commit is contained in:
@@ -92,6 +92,7 @@ class Ui_PortOptionsDialog(object):
|
||||
self.orientationCombo = QComboBox(self.portDetailsPanel)
|
||||
self.orientationCombo.addItem("")
|
||||
self.orientationCombo.addItem("")
|
||||
self.orientationCombo.addItem("")
|
||||
self.orientationCombo.setObjectName(u"orientationCombo")
|
||||
|
||||
self.portDetailsForm.setWidget(2, QFormLayout.ItemRole.FieldRole, self.orientationCombo)
|
||||
@@ -185,6 +186,61 @@ class Ui_PortOptionsDialog(object):
|
||||
self.signalOptionsForm.setWidget(4, QFormLayout.ItemRole.FieldRole, self.descriptionEdit)
|
||||
|
||||
self.typeOptionsStack.addWidget(self.signalOptionsPage)
|
||||
self.powerOptionsPage = QWidget()
|
||||
self.powerOptionsPage.setObjectName(u"powerOptionsPage")
|
||||
self.powerOptionsForm = QFormLayout(self.powerOptionsPage)
|
||||
self.powerOptionsForm.setObjectName(u"powerOptionsForm")
|
||||
self.domainLabel = QLabel(self.powerOptionsPage)
|
||||
self.domainLabel.setObjectName(u"domainLabel")
|
||||
|
||||
self.powerOptionsForm.setWidget(0, QFormLayout.ItemRole.LabelRole, self.domainLabel)
|
||||
|
||||
self.domainCombo = QComboBox(self.powerOptionsPage)
|
||||
self.domainCombo.setObjectName(u"domainCombo")
|
||||
|
||||
self.powerOptionsForm.setWidget(0, QFormLayout.ItemRole.FieldRole, self.domainCombo)
|
||||
|
||||
self.effortLabel = QLabel(self.powerOptionsPage)
|
||||
self.effortLabel.setObjectName(u"effortLabel")
|
||||
|
||||
self.powerOptionsForm.setWidget(1, QFormLayout.ItemRole.LabelRole, self.effortLabel)
|
||||
|
||||
self.effortValueLabel = QLabel(self.powerOptionsPage)
|
||||
self.effortValueLabel.setObjectName(u"effortValueLabel")
|
||||
|
||||
self.powerOptionsForm.setWidget(1, QFormLayout.ItemRole.FieldRole, self.effortValueLabel)
|
||||
|
||||
self.flowLabel = QLabel(self.powerOptionsPage)
|
||||
self.flowLabel.setObjectName(u"flowLabel")
|
||||
|
||||
self.powerOptionsForm.setWidget(2, QFormLayout.ItemRole.LabelRole, self.flowLabel)
|
||||
|
||||
self.flowValueLabel = QLabel(self.powerOptionsPage)
|
||||
self.flowValueLabel.setObjectName(u"flowValueLabel")
|
||||
|
||||
self.powerOptionsForm.setWidget(2, QFormLayout.ItemRole.FieldRole, self.flowValueLabel)
|
||||
|
||||
self.causalityLabel = QLabel(self.powerOptionsPage)
|
||||
self.causalityLabel.setObjectName(u"causalityLabel")
|
||||
|
||||
self.powerOptionsForm.setWidget(3, QFormLayout.ItemRole.LabelRole, self.causalityLabel)
|
||||
|
||||
self.causalityCombo = QComboBox(self.powerOptionsPage)
|
||||
self.causalityCombo.setObjectName(u"causalityCombo")
|
||||
|
||||
self.powerOptionsForm.setWidget(3, QFormLayout.ItemRole.FieldRole, self.causalityCombo)
|
||||
|
||||
self.powerDescriptionLabel = QLabel(self.powerOptionsPage)
|
||||
self.powerDescriptionLabel.setObjectName(u"powerDescriptionLabel")
|
||||
|
||||
self.powerOptionsForm.setWidget(4, QFormLayout.ItemRole.LabelRole, self.powerDescriptionLabel)
|
||||
|
||||
self.powerDescriptionEdit = QPlainTextEdit(self.powerOptionsPage)
|
||||
self.powerDescriptionEdit.setObjectName(u"powerDescriptionEdit")
|
||||
|
||||
self.powerOptionsForm.setWidget(4, QFormLayout.ItemRole.FieldRole, self.powerDescriptionEdit)
|
||||
|
||||
self.typeOptionsStack.addWidget(self.powerOptionsPage)
|
||||
self.unsupportedTypePage = QWidget()
|
||||
self.unsupportedTypePage.setObjectName(u"unsupportedTypePage")
|
||||
self.unsupportedTypeLayout = QVBoxLayout(self.unsupportedTypePage)
|
||||
@@ -228,6 +284,7 @@ class Ui_PortOptionsDialog(object):
|
||||
self.orientationLabel.setText(QCoreApplication.translate("PortOptionsDialog", u"Orientation:", None))
|
||||
self.orientationCombo.setItemText(0, QCoreApplication.translate("PortOptionsDialog", u"Input", None))
|
||||
self.orientationCombo.setItemText(1, QCoreApplication.translate("PortOptionsDialog", u"Output", None))
|
||||
self.orientationCombo.setItemText(2, QCoreApplication.translate("PortOptionsDialog", u"Indifferent", None))
|
||||
|
||||
self.multipleConnectionsCheckBox.setText(QCoreApplication.translate("PortOptionsDialog", u"Allow multiple connections", None))
|
||||
self.positionHintLabel.setText(QCoreApplication.translate("PortOptionsDialog", u"New ports start at (0, 0) in the icon editor.", None))
|
||||
@@ -241,6 +298,13 @@ class Ui_PortOptionsDialog(object):
|
||||
self.unitLabel.setText(QCoreApplication.translate("PortOptionsDialog", u"Unit:", None))
|
||||
self.rowsColumnsLabel.setText(QCoreApplication.translate("PortOptionsDialog", u"Matrix size:", None))
|
||||
self.descriptionLabel.setText(QCoreApplication.translate("PortOptionsDialog", u"Description:", None))
|
||||
self.domainLabel.setText(QCoreApplication.translate("PortOptionsDialog", u"Domain:", None))
|
||||
self.effortLabel.setText(QCoreApplication.translate("PortOptionsDialog", u"Effort:", None))
|
||||
self.effortValueLabel.setText(QCoreApplication.translate("PortOptionsDialog", u"p.e", None))
|
||||
self.flowLabel.setText(QCoreApplication.translate("PortOptionsDialog", u"Flow:", None))
|
||||
self.flowValueLabel.setText(QCoreApplication.translate("PortOptionsDialog", u"p.f", None))
|
||||
self.causalityLabel.setText(QCoreApplication.translate("PortOptionsDialog", u"Causality:", None))
|
||||
self.powerDescriptionLabel.setText(QCoreApplication.translate("PortOptionsDialog", u"Description:", None))
|
||||
self.unsupportedTypeLabel.setText(QCoreApplication.translate("PortOptionsDialog", u"This port type does not have an options editor yet.", None))
|
||||
# retranslateUi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user