2018-05-17 16:02:41 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Form implementation generated from reading ui file 'ScatterPlotSpeedTestTemplate.ui'
|
|
|
|
#
|
|
|
|
# Created: Sun Sep 18 19:21:36 2016
|
|
|
|
# by: pyside2-uic running on PySide2 2.0.0~alpha0
|
|
|
|
#
|
|
|
|
# WARNING! All changes made in this file will be lost!
|
|
|
|
|
|
|
|
from PySide2 import QtCore, QtGui, QtWidgets
|
|
|
|
|
|
|
|
class Ui_Form(object):
|
|
|
|
def setupUi(self, Form):
|
|
|
|
Form.setObjectName("Form")
|
|
|
|
Form.resize(400, 300)
|
|
|
|
self.gridLayout = QtWidgets.QGridLayout(Form)
|
|
|
|
self.gridLayout.setObjectName("gridLayout")
|
|
|
|
self.sizeSpin = QtWidgets.QSpinBox(Form)
|
|
|
|
self.sizeSpin.setProperty("value", 10)
|
|
|
|
self.sizeSpin.setObjectName("sizeSpin")
|
|
|
|
self.gridLayout.addWidget(self.sizeSpin, 1, 1, 1, 1)
|
|
|
|
self.pixelModeCheck = QtWidgets.QCheckBox(Form)
|
|
|
|
self.pixelModeCheck.setObjectName("pixelModeCheck")
|
|
|
|
self.gridLayout.addWidget(self.pixelModeCheck, 1, 3, 1, 1)
|
|
|
|
self.label = QtWidgets.QLabel(Form)
|
|
|
|
self.label.setObjectName("label")
|
|
|
|
self.gridLayout.addWidget(self.label, 1, 0, 1, 1)
|
|
|
|
self.plot = PlotWidget(Form)
|
|
|
|
self.plot.setObjectName("plot")
|
|
|
|
self.gridLayout.addWidget(self.plot, 0, 0, 1, 4)
|
|
|
|
self.randCheck = QtWidgets.QCheckBox(Form)
|
|
|
|
self.randCheck.setObjectName("randCheck")
|
|
|
|
self.gridLayout.addWidget(self.randCheck, 1, 2, 1, 1)
|
|
|
|
|
|
|
|
self.retranslateUi(Form)
|
|
|
|
QtCore.QMetaObject.connectSlotsByName(Form)
|
|
|
|
|
|
|
|
def retranslateUi(self, Form):
|
|
|
|
Form.setWindowTitle(QtWidgets.QApplication.translate("Form", "Form", None, -1))
|
|
|
|
self.pixelModeCheck.setText(QtWidgets.QApplication.translate("Form", "pixel mode", None, -1))
|
|
|
|
self.label.setText(QtWidgets.QApplication.translate("Form", "Size", None, -1))
|
|
|
|
self.randCheck.setText(QtWidgets.QApplication.translate("Form", "Randomize", None, -1))
|
|
|
|
|
|
|
|
from pyqtgraph import PlotWidget
|