# -*- coding: utf-8 -*- # Form implementation generated from reading ui file '../pyqt/stabwindow.ui' # # Created by: PyQt5 UI code generator 5.11.3 # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore, QtGui, QtWidgets class Ui_StabWindow(object): def setupUi(self, StabWindow): StabWindow.setObjectName("StabWindow") StabWindow.resize(1338, 713) self.horizontalLayoutWidget = QtWidgets.QWidget(StabWindow) self.horizontalLayoutWidget.setGeometry(QtCore.QRect(10, 10, 461, 31)) self.horizontalLayoutWidget.setObjectName("horizontalLayoutWidget") self.horizontalLayout = QtWidgets.QHBoxLayout(self.horizontalLayoutWidget) self.horizontalLayout.setContentsMargins(0, 0, 0, 0) self.horizontalLayout.setObjectName("horizontalLayout") self.stab_label_instrument = QtWidgets.QLabel(self.horizontalLayoutWidget) self.stab_label_instrument.setMaximumSize(QtCore.QSize(80, 16777215)) self.stab_label_instrument.setObjectName("stab_label_instrument") self.horizontalLayout.addWidget(self.stab_label_instrument) self.stab_combobox_instrument = QtWidgets.QComboBox(self.horizontalLayoutWidget) self.stab_combobox_instrument.setObjectName("stab_combobox_instrument") self.horizontalLayout.addWidget(self.stab_combobox_instrument) self.stab_label_variable = QtWidgets.QLabel(self.horizontalLayoutWidget) self.stab_label_variable.setMaximumSize(QtCore.QSize(70, 16777215)) self.stab_label_variable.setObjectName("stab_label_variable") self.horizontalLayout.addWidget(self.stab_label_variable) self.stab_combobox_variable = QtWidgets.QComboBox(self.horizontalLayoutWidget) self.stab_combobox_variable.setObjectName("stab_combobox_variable") self.horizontalLayout.addWidget(self.stab_combobox_variable) self.stab_graphicsview = PlotWidget(StabWindow) self.stab_graphicsview.setGeometry(QtCore.QRect(10, 50, 1321, 651)) self.stab_graphicsview.setObjectName("stab_graphicsview") self.retranslateUi(StabWindow) QtCore.QMetaObject.connectSlotsByName(StabWindow) def retranslateUi(self, StabWindow): _translate = QtCore.QCoreApplication.translate StabWindow.setWindowTitle(_translate("StabWindow", "Stabilization time analysis")) self.stab_label_instrument.setText(_translate("StabWindow", "Instrument: ")) self.stab_label_variable.setText(_translate("StabWindow", " Variable:")) from pyqtgraph import PlotWidget