72 lines
2.4 KiB
Python
72 lines
2.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
################################################################################
|
|
## Form generated from reading UI file 'form.ui'
|
|
##
|
|
## Created by: Qt User Interface Compiler version 6.6.1
|
|
##
|
|
## WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
################################################################################
|
|
|
|
from PySide6.QtCore import (QCoreApplication, QMetaObject)
|
|
from PySide6.QtWidgets import (QGridLayout, QHBoxLayout,
|
|
QLabel, QListView, QToolButton,
|
|
QVBoxLayout)
|
|
|
|
from pyqtgraph import GraphicsLayoutWidget
|
|
|
|
class Ui_Dialog(object):
|
|
def setupUi(self, Dialog):
|
|
if not Dialog.objectName():
|
|
Dialog.setObjectName(u"Dialog")
|
|
Dialog.resize(900, 400)
|
|
self.gridLayout = QGridLayout(Dialog)
|
|
self.gridLayout.setObjectName(u"gridLayout")
|
|
self.horizontalLayout = QHBoxLayout()
|
|
self.horizontalLayout.setSpacing(10)
|
|
self.horizontalLayout.setObjectName(u"horizontalLayout")
|
|
self.verticalLayout = QVBoxLayout()
|
|
self.verticalLayout.setObjectName(u"verticalLayout")
|
|
self.toolButton_operation = QToolButton(Dialog)
|
|
self.toolButton_operation.setObjectName(u"toolButton_operation")
|
|
|
|
self.verticalLayout.addWidget(self.toolButton_operation)
|
|
|
|
self.label = QLabel(Dialog)
|
|
self.label.setObjectName(u"label")
|
|
|
|
self.verticalLayout.addWidget(self.label)
|
|
|
|
self.listView = QListView(Dialog)
|
|
self.listView.setObjectName(u"listView")
|
|
|
|
self.verticalLayout.addWidget(self.listView)
|
|
|
|
self.verticalLayout.setStretch()
|
|
|
|
|
|
self.horizontalLayout.addLayout(self.verticalLayout)
|
|
|
|
self.graphicsView = GraphicsLayoutWidget(Dialog)
|
|
self.graphicsView.setObjectName(u"graphicsView")
|
|
|
|
self.horizontalLayout.addWidget(self.graphicsView)
|
|
|
|
self.horizontalLayout.setStretch(0, 1)
|
|
self.horizontalLayout.setStretch(1, 5)
|
|
|
|
self.gridLayout.addLayout(self.horizontalLayout, 0, 0, 1, 1)
|
|
|
|
|
|
self.retranslateUi(Dialog)
|
|
|
|
QMetaObject.connectSlotsByName(Dialog)
|
|
# setupUi
|
|
|
|
def retranslateUi(self, Dialog):
|
|
Dialog.setWindowTitle(QCoreApplication.translate("Dialog", u"Dialog", None))
|
|
self.toolButton_operation.setText(QCoreApplication.translate("Dialog", u"\u64cd\u4f5c", None))
|
|
self.label.setText(QCoreApplication.translate("Dialog", u"Datasets", None))
|
|
# retranslateUi
|
|
|