84 lines
4.0 KiB
Python
84 lines
4.0 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Form implementation generated from reading ui file 'resources/_ui/integratederive_dialog.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, 308)
|
||
|
self.verticalLayout = QtWidgets.QVBoxLayout(Dialog)
|
||
|
self.verticalLayout.setObjectName("verticalLayout")
|
||
|
self.listWidget = QtWidgets.QListWidget(Dialog)
|
||
|
self.listWidget.setObjectName("listWidget")
|
||
|
self.verticalLayout.addWidget(self.listWidget)
|
||
|
self.widget = QtWidgets.QWidget(Dialog)
|
||
|
self.widget.setObjectName("widget")
|
||
|
self.horizontalLayout = QtWidgets.QHBoxLayout(self.widget)
|
||
|
self.horizontalLayout.setContentsMargins(0, 0, 0, 0)
|
||
|
self.horizontalLayout.setObjectName("horizontalLayout")
|
||
|
self.label = QtWidgets.QLabel(self.widget)
|
||
|
self.label.setObjectName("label")
|
||
|
self.horizontalLayout.addWidget(self.label)
|
||
|
self.start_lineedit = QtWidgets.QLineEdit(self.widget)
|
||
|
self.start_lineedit.setEnabled(False)
|
||
|
self.start_lineedit.setObjectName("start_lineedit")
|
||
|
self.horizontalLayout.addWidget(self.start_lineedit)
|
||
|
self.stop_lineedit = QtWidgets.QLineEdit(self.widget)
|
||
|
self.stop_lineedit.setEnabled(False)
|
||
|
self.stop_lineedit.setObjectName("stop_lineedit")
|
||
|
self.horizontalLayout.addWidget(self.stop_lineedit)
|
||
|
self.range_checkbox = QtWidgets.QCheckBox(self.widget)
|
||
|
self.range_checkbox.setChecked(True)
|
||
|
self.range_checkbox.setObjectName("range_checkbox")
|
||
|
self.horizontalLayout.addWidget(self.range_checkbox)
|
||
|
self.verticalLayout.addWidget(self.widget)
|
||
|
self.ft_comboBox = QtWidgets.QComboBox(Dialog)
|
||
|
self.ft_comboBox.setObjectName("ft_comboBox")
|
||
|
self.ft_comboBox.addItem("")
|
||
|
self.ft_comboBox.addItem("")
|
||
|
self.ft_comboBox.addItem("")
|
||
|
self.verticalLayout.addWidget(self.ft_comboBox)
|
||
|
self.log_checkbox = QtWidgets.QCheckBox(Dialog)
|
||
|
self.log_checkbox.setObjectName("log_checkbox")
|
||
|
self.verticalLayout.addWidget(self.log_checkbox)
|
||
|
self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
|
||
|
self.horizontalLayout_2.setContentsMargins(-1, 0, -1, -1)
|
||
|
self.horizontalLayout_2.setSpacing(3)
|
||
|
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
|
||
|
self.newgraph_checkbox = QtWidgets.QCheckBox(Dialog)
|
||
|
self.newgraph_checkbox.setObjectName("newgraph_checkbox")
|
||
|
self.horizontalLayout_2.addWidget(self.newgraph_checkbox)
|
||
|
self.graph_combobox = QtWidgets.QComboBox(Dialog)
|
||
|
self.graph_combobox.setObjectName("graph_combobox")
|
||
|
self.horizontalLayout_2.addWidget(self.graph_combobox)
|
||
|
self.verticalLayout.addLayout(self.horizontalLayout_2)
|
||
|
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", "Dialog"))
|
||
|
self.label.setText(_translate("Dialog", "Limits"))
|
||
|
self.range_checkbox.setText(_translate("Dialog", "Full"))
|
||
|
self.ft_comboBox.setItemText(0, _translate("Dialog", "Real"))
|
||
|
self.ft_comboBox.setItemText(1, _translate("Dialog", "Imag"))
|
||
|
self.ft_comboBox.setItemText(2, _translate("Dialog", "Complex"))
|
||
|
self.log_checkbox.setText(_translate("Dialog", "use logarithmic x axis"))
|
||
|
self.newgraph_checkbox.setText(_translate("Dialog", "New graph"))
|