2012-05-31 20:05:19 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2012-09-09 23:07:36 +00:00
|
|
|
# Form implementation generated from reading ui file './examples/ScatterPlotSpeedTestTemplate.ui'
|
2012-05-31 20:05:19 +00:00
|
|
|
#
|
2012-10-03 01:23:59 +00:00
|
|
|
# Created: Fri Sep 21 15:39:09 2012
|
2012-09-09 23:07:36 +00:00
|
|
|
# by: pyside-uic 0.2.13 running on PySide 1.1.0
|
2012-05-31 20:05:19 +00:00
|
|
|
#
|
|
|
|
# WARNING! All changes made in this file will be lost!
|
|
|
|
|
2012-09-09 23:07:36 +00:00
|
|
|
from PySide import QtCore, QtGui
|
2012-05-31 20:05:19 +00:00
|
|
|
|
|
|
|
class Ui_Form(object):
|
|
|
|
def setupUi(self, Form):
|
2012-09-09 23:07:36 +00:00
|
|
|
Form.setObjectName("Form")
|
2012-05-31 20:05:19 +00:00
|
|
|
Form.resize(400, 300)
|
|
|
|
self.gridLayout = QtGui.QGridLayout(Form)
|
2012-09-09 23:07:36 +00:00
|
|
|
self.gridLayout.setObjectName("gridLayout")
|
2012-10-03 01:23:59 +00:00
|
|
|
self.sizeSpin = QtGui.QSpinBox(Form)
|
|
|
|
self.sizeSpin.setProperty("value", 10)
|
|
|
|
self.sizeSpin.setObjectName("sizeSpin")
|
|
|
|
self.gridLayout.addWidget(self.sizeSpin, 1, 1, 1, 1)
|
2012-05-31 20:05:19 +00:00
|
|
|
self.pixelModeCheck = QtGui.QCheckBox(Form)
|
2012-09-09 23:07:36 +00:00
|
|
|
self.pixelModeCheck.setObjectName("pixelModeCheck")
|
2012-10-03 01:23:59 +00:00
|
|
|
self.gridLayout.addWidget(self.pixelModeCheck, 1, 3, 1, 1)
|
|
|
|
self.label = QtGui.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 = QtGui.QCheckBox(Form)
|
|
|
|
self.randCheck.setObjectName("randCheck")
|
|
|
|
self.gridLayout.addWidget(self.randCheck, 1, 2, 1, 1)
|
2012-05-31 20:05:19 +00:00
|
|
|
|
|
|
|
self.retranslateUi(Form)
|
|
|
|
QtCore.QMetaObject.connectSlotsByName(Form)
|
|
|
|
|
|
|
|
def retranslateUi(self, Form):
|
2012-09-09 23:07:36 +00:00
|
|
|
Form.setWindowTitle(QtGui.QApplication.translate("Form", "Form", None, QtGui.QApplication.UnicodeUTF8))
|
|
|
|
self.pixelModeCheck.setText(QtGui.QApplication.translate("Form", "pixel mode", None, QtGui.QApplication.UnicodeUTF8))
|
2012-10-03 01:23:59 +00:00
|
|
|
self.label.setText(QtGui.QApplication.translate("Form", "Size", None, QtGui.QApplication.UnicodeUTF8))
|
|
|
|
self.randCheck.setText(QtGui.QApplication.translate("Form", "Randomize", None, QtGui.QApplication.UnicodeUTF8))
|
2012-05-31 20:05:19 +00:00
|
|
|
|
|
|
|
from pyqtgraph import PlotWidget
|