forked from IPKM/nmreval
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding: utf-8 -*-
 | |
| 
 | |
| # Form implementation generated from reading ui file 'resources/_ui/ftdialog.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_Dialog(object):
 | |
|     def setupUi(self, Dialog):
 | |
|         Dialog.setObjectName("Dialog")
 | |
|         Dialog.resize(400, 300)
 | |
|         self.verticalLayout = QtWidgets.QVBoxLayout(Dialog)
 | |
|         self.verticalLayout.setContentsMargins(3, 3, 3, 3)
 | |
|         self.verticalLayout.setSpacing(3)
 | |
|         self.verticalLayout.setObjectName("verticalLayout")
 | |
|         self.listWidget = QtWidgets.QListWidget(Dialog)
 | |
|         self.listWidget.setObjectName("listWidget")
 | |
|         self.verticalLayout.addWidget(self.listWidget)
 | |
|         self.mode_comboBox = QtWidgets.QComboBox(Dialog)
 | |
|         self.mode_comboBox.setObjectName("mode_comboBox")
 | |
|         self.mode_comboBox.addItem("")
 | |
|         self.mode_comboBox.addItem("")
 | |
|         self.mode_comboBox.addItem("")
 | |
|         self.verticalLayout.addWidget(self.mode_comboBox)
 | |
|         self.horizontalLayout = QtWidgets.QHBoxLayout()
 | |
|         self.horizontalLayout.setContentsMargins(-1, 0, -1, -1)
 | |
|         self.horizontalLayout.setSpacing(3)
 | |
|         self.horizontalLayout.setObjectName("horizontalLayout")
 | |
|         self.graph_checkBox = QtWidgets.QCheckBox(Dialog)
 | |
|         self.graph_checkBox.setObjectName("graph_checkBox")
 | |
|         self.horizontalLayout.addWidget(self.graph_checkBox)
 | |
|         self.graph_comboBox = QtWidgets.QComboBox(Dialog)
 | |
|         self.graph_comboBox.setObjectName("graph_comboBox")
 | |
|         self.horizontalLayout.addWidget(self.graph_comboBox)
 | |
|         self.verticalLayout.addLayout(self.horizontalLayout)
 | |
|         self.buttonBox = QtWidgets.QDialogButtonBox(Dialog)
 | |
|         self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
 | |
|         self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok)
 | |
|         self.buttonBox.setObjectName("buttonBox")
 | |
|         self.verticalLayout.addWidget(self.buttonBox)
 | |
| 
 | |
|         self.retranslateUi(Dialog)
 | |
|         self.buttonBox.accepted.connect(Dialog.accept)
 | |
|         self.buttonBox.rejected.connect(Dialog.reject)
 | |
|         QtCore.QMetaObject.connectSlotsByName(Dialog)
 | |
| 
 | |
|     def retranslateUi(self, Dialog):
 | |
|         _translate = QtCore.QCoreApplication.translate
 | |
|         Dialog.setWindowTitle(_translate("Dialog", "Logarithmic Fourier"))
 | |
|         self.mode_comboBox.setItemText(0, _translate("Dialog", "Real"))
 | |
|         self.mode_comboBox.setItemText(1, _translate("Dialog", "Imag"))
 | |
|         self.mode_comboBox.setItemText(2, _translate("Dialog", "Complex"))
 | |
|         self.graph_checkBox.setText(_translate("Dialog", "New graph"))
 |