forked from IPKM/nmreval
47 lines
2.0 KiB
Python
47 lines
2.0 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Form implementation generated from reading ui file 'resources/_ui/coupling_t1_from_tau.ui'
|
||
|
#
|
||
|
# Created by: PyQt5 UI code generator 5.12.3
|
||
|
#
|
||
|
# WARNING! All changes made in this file will be lost!
|
||
|
|
||
|
|
||
|
from PyQt5 import QtCore, QtGui, QtWidgets
|
||
|
|
||
|
|
||
|
class Ui_couplingForm(object):
|
||
|
def setupUi(self, couplingForm):
|
||
|
couplingForm.setObjectName("couplingForm")
|
||
|
couplingForm.resize(400, 300)
|
||
|
self.horizontalLayout = QtWidgets.QHBoxLayout(couplingForm)
|
||
|
self.horizontalLayout.setObjectName("horizontalLayout")
|
||
|
self.label = QtWidgets.QLabel(couplingForm)
|
||
|
self.label.setObjectName("label")
|
||
|
self.horizontalLayout.addWidget(self.label)
|
||
|
self.lineEdit = LineEdit(couplingForm)
|
||
|
self.lineEdit.setObjectName("lineEdit")
|
||
|
self.horizontalLayout.addWidget(self.lineEdit)
|
||
|
self.radioButton_2 = QtWidgets.QRadioButton(couplingForm)
|
||
|
self.radioButton_2.setChecked(True)
|
||
|
self.radioButton_2.setObjectName("radioButton_2")
|
||
|
self.buttonGroup = QtWidgets.QButtonGroup(couplingForm)
|
||
|
self.buttonGroup.setObjectName("buttonGroup")
|
||
|
self.buttonGroup.addButton(self.radioButton_2)
|
||
|
self.horizontalLayout.addWidget(self.radioButton_2)
|
||
|
self.radioButton = QtWidgets.QRadioButton(couplingForm)
|
||
|
self.radioButton.setObjectName("radioButton")
|
||
|
self.buttonGroup.addButton(self.radioButton)
|
||
|
self.horizontalLayout.addWidget(self.radioButton)
|
||
|
|
||
|
self.retranslateUi(couplingForm)
|
||
|
QtCore.QMetaObject.connectSlotsByName(couplingForm)
|
||
|
|
||
|
def retranslateUi(self, couplingForm):
|
||
|
_translate = QtCore.QCoreApplication.translate
|
||
|
couplingForm.setWindowTitle(_translate("couplingForm", "Form"))
|
||
|
self.label.setText(_translate("couplingForm", "parameter_name"))
|
||
|
self.radioButton_2.setText(_translate("couplingForm", "Value"))
|
||
|
self.radioButton.setText(_translate("couplingForm", "Index"))
|
||
|
from nmrevalgui.lib.forms import LineEdit
|