2023-05-24 17:34:06 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Form implementation generated from reading ui file 'src/resources/_ui/tnmh_dialog.ui'
|
|
|
|
#
|
|
|
|
# Created by: PyQt5 UI code generator 5.15.9
|
|
|
|
#
|
|
|
|
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
|
|
|
|
# run again. Do not edit this file unless you know what you are doing.
|
|
|
|
|
|
|
|
|
|
|
|
from PyQt5 import QtCore, QtGui, QtWidgets
|
|
|
|
|
|
|
|
|
|
|
|
class Ui_Dialog(object):
|
|
|
|
def setupUi(self, Dialog):
|
|
|
|
Dialog.setObjectName("Dialog")
|
2023-06-05 17:57:42 +00:00
|
|
|
Dialog.resize(1042, 683)
|
2023-05-24 17:34:06 +00:00
|
|
|
self.gridLayout = QtWidgets.QGridLayout(Dialog)
|
|
|
|
self.gridLayout.setObjectName("gridLayout")
|
2023-06-13 18:28:37 +00:00
|
|
|
self.buttonBox = QtWidgets.QDialogButtonBox(Dialog)
|
|
|
|
self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
|
2023-06-15 15:24:35 +00:00
|
|
|
self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Close|QtWidgets.QDialogButtonBox.Save)
|
2023-06-13 18:28:37 +00:00
|
|
|
self.buttonBox.setObjectName("buttonBox")
|
2023-06-15 15:24:35 +00:00
|
|
|
self.gridLayout.addWidget(self.buttonBox, 5, 1, 1, 1)
|
2023-06-13 18:28:37 +00:00
|
|
|
self.verticalLayout = QtWidgets.QVBoxLayout()
|
|
|
|
self.verticalLayout.setObjectName("verticalLayout")
|
|
|
|
self.listWidget = QtWidgets.QListWidget(Dialog)
|
|
|
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Maximum, QtWidgets.QSizePolicy.Expanding)
|
|
|
|
sizePolicy.setHorizontalStretch(0)
|
|
|
|
sizePolicy.setVerticalStretch(0)
|
|
|
|
sizePolicy.setHeightForWidth(self.listWidget.sizePolicy().hasHeightForWidth())
|
|
|
|
self.listWidget.setSizePolicy(sizePolicy)
|
|
|
|
self.listWidget.setObjectName("listWidget")
|
|
|
|
self.verticalLayout.addWidget(self.listWidget)
|
|
|
|
self.label = QtWidgets.QLabel(Dialog)
|
|
|
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Maximum)
|
|
|
|
sizePolicy.setHorizontalStretch(0)
|
|
|
|
sizePolicy.setVerticalStretch(0)
|
|
|
|
sizePolicy.setHeightForWidth(self.label.sizePolicy().hasHeightForWidth())
|
|
|
|
self.label.setSizePolicy(sizePolicy)
|
|
|
|
self.label.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignTop)
|
|
|
|
self.label.setObjectName("label")
|
|
|
|
self.verticalLayout.addWidget(self.label)
|
|
|
|
self.tg_value_label = QtWidgets.QLabel(Dialog)
|
2023-06-20 17:09:31 +00:00
|
|
|
self.tg_value_label.setText("")
|
2023-06-13 18:28:37 +00:00
|
|
|
self.tg_value_label.setObjectName("tg_value_label")
|
|
|
|
self.verticalLayout.addWidget(self.tg_value_label)
|
|
|
|
self.label_4 = QtWidgets.QLabel(Dialog)
|
|
|
|
self.label_4.setObjectName("label_4")
|
|
|
|
self.verticalLayout.addWidget(self.label_4)
|
|
|
|
self.label_5 = QtWidgets.QLabel(Dialog)
|
|
|
|
self.label_5.setText("")
|
|
|
|
self.label_5.setObjectName("label_5")
|
|
|
|
self.verticalLayout.addWidget(self.label_5)
|
2023-06-15 15:24:35 +00:00
|
|
|
self.gridLayout.addLayout(self.verticalLayout, 0, 0, 5, 1)
|
2023-06-12 15:20:58 +00:00
|
|
|
self.stackedWidget = QtWidgets.QStackedWidget(Dialog)
|
|
|
|
self.stackedWidget.setFrameShape(QtWidgets.QFrame.StyledPanel)
|
|
|
|
self.stackedWidget.setFrameShadow(QtWidgets.QFrame.Raised)
|
|
|
|
self.stackedWidget.setObjectName("stackedWidget")
|
|
|
|
self.stackedWidgetPage1 = QtWidgets.QWidget()
|
|
|
|
self.stackedWidgetPage1.setObjectName("stackedWidgetPage1")
|
|
|
|
self.gridLayout_3 = QtWidgets.QGridLayout(self.stackedWidgetPage1)
|
|
|
|
self.gridLayout_3.setObjectName("gridLayout_3")
|
2023-06-13 18:28:37 +00:00
|
|
|
self.hodge_selection = CheckCombobox(self.stackedWidgetPage1)
|
|
|
|
self.hodge_selection.setObjectName("hodge_selection")
|
|
|
|
self.hodge_selection.addItem("")
|
|
|
|
self.hodge_selection.addItem("")
|
|
|
|
self.hodge_selection.addItem("")
|
|
|
|
self.hodge_selection.addItem("")
|
|
|
|
self.gridLayout_3.addWidget(self.hodge_selection, 4, 2, 1, 1)
|
|
|
|
self.tau_plot = PlotWidget(self.stackedWidgetPage1)
|
2023-06-12 15:20:58 +00:00
|
|
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.MinimumExpanding)
|
2023-05-24 17:34:06 +00:00
|
|
|
sizePolicy.setHorizontalStretch(0)
|
|
|
|
sizePolicy.setVerticalStretch(0)
|
2023-06-13 18:28:37 +00:00
|
|
|
sizePolicy.setHeightForWidth(self.tau_plot.sizePolicy().hasHeightForWidth())
|
|
|
|
self.tau_plot.setSizePolicy(sizePolicy)
|
|
|
|
self.tau_plot.setObjectName("tau_plot")
|
|
|
|
self.gridLayout_3.addWidget(self.tau_plot, 0, 0, 7, 1)
|
|
|
|
self.tg_export_check = QtWidgets.QCheckBox(self.stackedWidgetPage1)
|
2023-06-20 17:09:31 +00:00
|
|
|
self.tg_export_check.setChecked(True)
|
2023-06-13 18:28:37 +00:00
|
|
|
self.tg_export_check.setObjectName("tg_export_check")
|
|
|
|
self.gridLayout_3.addWidget(self.tg_export_check, 2, 1, 1, 1)
|
|
|
|
self.tglines_export_check = QtWidgets.QCheckBox(self.stackedWidgetPage1)
|
2023-06-20 17:09:31 +00:00
|
|
|
self.tglines_export_check.setChecked(True)
|
2023-06-13 18:28:37 +00:00
|
|
|
self.tglines_export_check.setObjectName("tglines_export_check")
|
|
|
|
self.gridLayout_3.addWidget(self.tglines_export_check, 2, 2, 1, 1)
|
|
|
|
spacerItem = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
|
|
|
|
self.gridLayout_3.addItem(spacerItem, 6, 2, 1, 1)
|
|
|
|
self.new_graph_tau_combo = QtWidgets.QComboBox(self.stackedWidgetPage1)
|
|
|
|
self.new_graph_tau_combo.setObjectName("new_graph_tau_combo")
|
|
|
|
self.gridLayout_3.addWidget(self.new_graph_tau_combo, 5, 2, 1, 1)
|
|
|
|
self.label_6 = QtWidgets.QLabel(self.stackedWidgetPage1)
|
|
|
|
self.label_6.setObjectName("label_6")
|
|
|
|
self.gridLayout_3.addWidget(self.label_6, 4, 1, 1, 1)
|
|
|
|
self.new_graph_tau_check = QtWidgets.QCheckBox(self.stackedWidgetPage1)
|
2023-06-20 17:09:31 +00:00
|
|
|
self.new_graph_tau_check.setChecked(True)
|
2023-06-13 18:28:37 +00:00
|
|
|
self.new_graph_tau_check.setObjectName("new_graph_tau_check")
|
|
|
|
self.gridLayout_3.addWidget(self.new_graph_tau_check, 5, 1, 1, 1)
|
|
|
|
self.line = QtWidgets.QFrame(self.stackedWidgetPage1)
|
|
|
|
self.line.setFrameShape(QtWidgets.QFrame.HLine)
|
|
|
|
self.line.setFrameShadow(QtWidgets.QFrame.Sunken)
|
|
|
|
self.line.setObjectName("line")
|
|
|
|
self.gridLayout_3.addWidget(self.line, 3, 1, 1, 2)
|
2023-06-12 15:20:58 +00:00
|
|
|
self.stackedWidget.addWidget(self.stackedWidgetPage1)
|
|
|
|
self.page = QtWidgets.QWidget()
|
|
|
|
self.page.setObjectName("page")
|
|
|
|
self.gridLayout_2 = QtWidgets.QGridLayout(self.page)
|
|
|
|
self.gridLayout_2.setObjectName("gridLayout_2")
|
2023-06-03 18:27:56 +00:00
|
|
|
self.horizontalLayout = QtWidgets.QHBoxLayout()
|
|
|
|
self.horizontalLayout.setObjectName("horizontalLayout")
|
2023-06-12 15:20:58 +00:00
|
|
|
self.label_2 = QtWidgets.QLabel(self.page)
|
2023-06-03 18:27:56 +00:00
|
|
|
self.label_2.setObjectName("label_2")
|
|
|
|
self.horizontalLayout.addWidget(self.label_2)
|
2023-06-12 15:20:58 +00:00
|
|
|
self.comboBox = QtWidgets.QComboBox(self.page)
|
2023-06-03 18:27:56 +00:00
|
|
|
self.comboBox.setObjectName("comboBox")
|
|
|
|
self.comboBox.addItem("")
|
|
|
|
self.comboBox.addItem("")
|
|
|
|
self.comboBox.addItem("")
|
|
|
|
self.comboBox.addItem("")
|
|
|
|
self.comboBox.addItem("")
|
|
|
|
self.horizontalLayout.addWidget(self.comboBox)
|
2023-06-12 15:20:58 +00:00
|
|
|
self.gridLayout_2.addLayout(self.horizontalLayout, 1, 1, 1, 1)
|
|
|
|
self.pushButton_3 = QtWidgets.QPushButton(self.page)
|
2023-06-03 18:27:56 +00:00
|
|
|
self.pushButton_3.setObjectName("pushButton_3")
|
2023-06-12 15:20:58 +00:00
|
|
|
self.gridLayout_2.addWidget(self.pushButton_3, 2, 1, 1, 1)
|
|
|
|
self.graphicsView_2 = PlotWidget(self.page)
|
|
|
|
self.graphicsView_2.setObjectName("graphicsView_2")
|
|
|
|
self.gridLayout_2.addWidget(self.graphicsView_2, 0, 0, 3, 1)
|
|
|
|
self.stackedWidget.addWidget(self.page)
|
2023-06-15 15:24:35 +00:00
|
|
|
self.gridLayout.addWidget(self.stackedWidget, 4, 1, 1, 1)
|
|
|
|
self.dsc_plot = PlotWidget(Dialog)
|
|
|
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.MinimumExpanding, QtWidgets.QSizePolicy.MinimumExpanding)
|
|
|
|
sizePolicy.setHorizontalStretch(0)
|
|
|
|
sizePolicy.setVerticalStretch(0)
|
|
|
|
sizePolicy.setHeightForWidth(self.dsc_plot.sizePolicy().hasHeightForWidth())
|
|
|
|
self.dsc_plot.setSizePolicy(sizePolicy)
|
|
|
|
self.dsc_plot.setObjectName("dsc_plot")
|
|
|
|
self.gridLayout.addWidget(self.dsc_plot, 0, 1, 1, 1)
|
|
|
|
self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
|
|
|
|
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
|
2023-06-13 18:28:37 +00:00
|
|
|
self.calctg_button = QtWidgets.QPushButton(Dialog)
|
|
|
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Maximum, QtWidgets.QSizePolicy.Fixed)
|
2023-06-12 15:20:58 +00:00
|
|
|
sizePolicy.setHorizontalStretch(0)
|
|
|
|
sizePolicy.setVerticalStretch(0)
|
2023-06-13 18:28:37 +00:00
|
|
|
sizePolicy.setHeightForWidth(self.calctg_button.sizePolicy().hasHeightForWidth())
|
|
|
|
self.calctg_button.setSizePolicy(sizePolicy)
|
|
|
|
self.calctg_button.setObjectName("calctg_button")
|
2023-06-15 15:24:35 +00:00
|
|
|
self.horizontalLayout_2.addWidget(self.calctg_button)
|
|
|
|
self.pushButton_2 = QtWidgets.QPushButton(Dialog)
|
|
|
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Maximum, QtWidgets.QSizePolicy.Fixed)
|
|
|
|
sizePolicy.setHorizontalStretch(0)
|
|
|
|
sizePolicy.setVerticalStretch(0)
|
|
|
|
sizePolicy.setHeightForWidth(self.pushButton_2.sizePolicy().hasHeightForWidth())
|
|
|
|
self.pushButton_2.setSizePolicy(sizePolicy)
|
|
|
|
self.pushButton_2.setObjectName("pushButton_2")
|
|
|
|
self.horizontalLayout_2.addWidget(self.pushButton_2)
|
|
|
|
spacerItem1 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
|
|
self.horizontalLayout_2.addItem(spacerItem1)
|
|
|
|
self.gridLayout.addLayout(self.horizontalLayout_2, 2, 1, 1, 1)
|
2023-05-24 17:34:06 +00:00
|
|
|
|
|
|
|
self.retranslateUi(Dialog)
|
2023-06-12 15:20:58 +00:00
|
|
|
self.stackedWidget.setCurrentIndex(0)
|
2023-05-24 17:34:06 +00:00
|
|
|
self.buttonBox.accepted.connect(Dialog.accept) # type: ignore
|
|
|
|
self.buttonBox.rejected.connect(Dialog.reject) # type: ignore
|
|
|
|
QtCore.QMetaObject.connectSlotsByName(Dialog)
|
|
|
|
|
|
|
|
def retranslateUi(self, Dialog):
|
|
|
|
_translate = QtCore.QCoreApplication.translate
|
2023-06-03 18:27:56 +00:00
|
|
|
Dialog.setWindowTitle(_translate("Dialog", "SImba, everything the light touches is our kingdom"))
|
2023-06-13 18:28:37 +00:00
|
|
|
self.label.setText(_translate("Dialog", "<html><head/><body><p><span style=\" font-weight:600;\">Tg values:</span></p></body></html>"))
|
|
|
|
self.label_4.setText(_translate("Dialog", "<html><head/><body><p><span style=\" font-weight:600;\">TNMH parameter:</span></p></body></html>"))
|
|
|
|
self.hodge_selection.setItemText(0, _translate("Dialog", "Onset"))
|
|
|
|
self.hodge_selection.setItemText(1, _translate("Dialog", "Midpoint"))
|
|
|
|
self.hodge_selection.setItemText(2, _translate("Dialog", "End"))
|
|
|
|
self.hodge_selection.setItemText(3, _translate("Dialog", "Inflection"))
|
|
|
|
self.tg_export_check.setText(_translate("Dialog", "Export Tg"))
|
|
|
|
self.tglines_export_check.setText(_translate("Dialog", "Export lines"))
|
|
|
|
self.label_6.setText(_translate("Dialog", "Hodge:"))
|
|
|
|
self.new_graph_tau_check.setText(_translate("Dialog", "New graph"))
|
2023-06-03 18:27:56 +00:00
|
|
|
self.label_2.setText(_translate("Dialog", "Tg for TNMH"))
|
|
|
|
self.comboBox.setItemText(0, _translate("Dialog", "Fictive"))
|
|
|
|
self.comboBox.setItemText(1, _translate("Dialog", "Onset"))
|
|
|
|
self.comboBox.setItemText(2, _translate("Dialog", "Midpoint"))
|
|
|
|
self.comboBox.setItemText(3, _translate("Dialog", "End"))
|
|
|
|
self.comboBox.setItemText(4, _translate("Dialog", "Inflection"))
|
|
|
|
self.pushButton_3.setText(_translate("Dialog", "Fit TNMH model"))
|
2023-06-13 18:28:37 +00:00
|
|
|
self.calctg_button.setText(_translate("Dialog", "Calculate Tg"))
|
2023-06-15 15:24:35 +00:00
|
|
|
self.pushButton_2.setText(_translate("Dialog", "Calculate fictive Cp"))
|
2023-06-12 15:20:58 +00:00
|
|
|
from ..lib.forms import CheckCombobox
|
2023-05-24 17:34:06 +00:00
|
|
|
from pyqtgraph import PlotWidget
|