2012-03-11 15:59:45 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2012-09-09 23:07:36 +00:00
|
|
|
# Form implementation generated from reading ui file './GraphicsScene/exportDialogTemplate.ui'
|
2012-03-11 15:59:45 +00:00
|
|
|
#
|
2012-09-09 23:07:36 +00:00
|
|
|
# Created: Sun Sep 9 14:41:31 2012
|
|
|
|
# by: pyside-uic 0.2.13 running on PySide 1.1.0
|
2012-03-11 15:59:45 +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-03-11 15:59:45 +00:00
|
|
|
|
|
|
|
class Ui_Form(object):
|
|
|
|
def setupUi(self, Form):
|
2012-09-09 23:07:36 +00:00
|
|
|
Form.setObjectName("Form")
|
2012-03-11 15:59:45 +00:00
|
|
|
Form.resize(241, 367)
|
|
|
|
self.gridLayout = QtGui.QGridLayout(Form)
|
|
|
|
self.gridLayout.setSpacing(0)
|
2012-09-09 23:07:36 +00:00
|
|
|
self.gridLayout.setObjectName("gridLayout")
|
2012-03-11 15:59:45 +00:00
|
|
|
self.label = QtGui.QLabel(Form)
|
2012-09-09 23:07:36 +00:00
|
|
|
self.label.setObjectName("label")
|
2012-03-11 15:59:45 +00:00
|
|
|
self.gridLayout.addWidget(self.label, 0, 0, 1, 3)
|
|
|
|
self.itemTree = QtGui.QTreeWidget(Form)
|
2012-09-09 23:07:36 +00:00
|
|
|
self.itemTree.setObjectName("itemTree")
|
|
|
|
self.itemTree.headerItem().setText(0, "1")
|
2012-03-11 15:59:45 +00:00
|
|
|
self.itemTree.header().setVisible(False)
|
|
|
|
self.gridLayout.addWidget(self.itemTree, 1, 0, 1, 3)
|
|
|
|
self.label_2 = QtGui.QLabel(Form)
|
2012-09-09 23:07:36 +00:00
|
|
|
self.label_2.setObjectName("label_2")
|
2012-03-11 15:59:45 +00:00
|
|
|
self.gridLayout.addWidget(self.label_2, 2, 0, 1, 3)
|
|
|
|
self.formatList = QtGui.QListWidget(Form)
|
2012-09-09 23:07:36 +00:00
|
|
|
self.formatList.setObjectName("formatList")
|
2012-03-11 15:59:45 +00:00
|
|
|
self.gridLayout.addWidget(self.formatList, 3, 0, 1, 3)
|
|
|
|
self.exportBtn = QtGui.QPushButton(Form)
|
2012-09-09 23:07:36 +00:00
|
|
|
self.exportBtn.setObjectName("exportBtn")
|
2012-03-11 15:59:45 +00:00
|
|
|
self.gridLayout.addWidget(self.exportBtn, 6, 1, 1, 1)
|
|
|
|
self.closeBtn = QtGui.QPushButton(Form)
|
2012-09-09 23:07:36 +00:00
|
|
|
self.closeBtn.setObjectName("closeBtn")
|
2012-03-11 15:59:45 +00:00
|
|
|
self.gridLayout.addWidget(self.closeBtn, 6, 2, 1, 1)
|
|
|
|
self.paramTree = ParameterTree(Form)
|
2012-09-09 23:07:36 +00:00
|
|
|
self.paramTree.setObjectName("paramTree")
|
|
|
|
self.paramTree.headerItem().setText(0, "1")
|
2012-03-11 15:59:45 +00:00
|
|
|
self.paramTree.header().setVisible(False)
|
|
|
|
self.gridLayout.addWidget(self.paramTree, 5, 0, 1, 3)
|
|
|
|
self.label_3 = QtGui.QLabel(Form)
|
2012-09-09 23:07:36 +00:00
|
|
|
self.label_3.setObjectName("label_3")
|
2012-03-11 15:59:45 +00:00
|
|
|
self.gridLayout.addWidget(self.label_3, 4, 0, 1, 3)
|
|
|
|
|
|
|
|
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", "Export", None, QtGui.QApplication.UnicodeUTF8))
|
|
|
|
self.label.setText(QtGui.QApplication.translate("Form", "Item to export:", None, QtGui.QApplication.UnicodeUTF8))
|
|
|
|
self.label_2.setText(QtGui.QApplication.translate("Form", "Export format", None, QtGui.QApplication.UnicodeUTF8))
|
|
|
|
self.exportBtn.setText(QtGui.QApplication.translate("Form", "Export", None, QtGui.QApplication.UnicodeUTF8))
|
|
|
|
self.closeBtn.setText(QtGui.QApplication.translate("Form", "Close", None, QtGui.QApplication.UnicodeUTF8))
|
|
|
|
self.label_3.setText(QtGui.QApplication.translate("Form", "Export options", None, QtGui.QApplication.UnicodeUTF8))
|
2012-03-11 15:59:45 +00:00
|
|
|
|
|
|
|
from pyqtgraph.parametertree import ParameterTree
|