56 lines
2.2 KiB
Python
56 lines
2.2 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Form implementation generated from reading ui file 'exampleLoaderTemplate.ui'
|
||
|
#
|
||
|
# Created: Sat Dec 17 23:46:27 2011
|
||
|
# by: PyQt4 UI code generator 4.8.3
|
||
|
#
|
||
|
# WARNING! All changes made in this file will be lost!
|
||
|
|
||
|
from PyQt4 import QtCore, QtGui
|
||
|
|
||
|
try:
|
||
|
_fromUtf8 = QtCore.QString.fromUtf8
|
||
|
except AttributeError:
|
||
|
_fromUtf8 = lambda s: s
|
||
|
|
||
|
class Ui_Form(object):
|
||
|
def setupUi(self, Form):
|
||
|
Form.setObjectName(_fromUtf8("Form"))
|
||
|
Form.resize(762, 302)
|
||
|
self.gridLayout = QtGui.QGridLayout(Form)
|
||
|
self.gridLayout.setMargin(0)
|
||
|
self.gridLayout.setSpacing(0)
|
||
|
self.gridLayout.setObjectName(_fromUtf8("gridLayout"))
|
||
|
self.splitter = QtGui.QSplitter(Form)
|
||
|
self.splitter.setOrientation(QtCore.Qt.Horizontal)
|
||
|
self.splitter.setObjectName(_fromUtf8("splitter"))
|
||
|
self.layoutWidget = QtGui.QWidget(self.splitter)
|
||
|
self.layoutWidget.setObjectName(_fromUtf8("layoutWidget"))
|
||
|
self.verticalLayout = QtGui.QVBoxLayout(self.layoutWidget)
|
||
|
self.verticalLayout.setMargin(0)
|
||
|
self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
|
||
|
self.exampleTree = QtGui.QTreeWidget(self.layoutWidget)
|
||
|
self.exampleTree.setObjectName(_fromUtf8("exampleTree"))
|
||
|
self.exampleTree.headerItem().setText(0, _fromUtf8("1"))
|
||
|
self.exampleTree.header().setVisible(False)
|
||
|
self.verticalLayout.addWidget(self.exampleTree)
|
||
|
self.loadBtn = QtGui.QPushButton(self.layoutWidget)
|
||
|
self.loadBtn.setObjectName(_fromUtf8("loadBtn"))
|
||
|
self.verticalLayout.addWidget(self.loadBtn)
|
||
|
self.codeView = QtGui.QTextBrowser(self.splitter)
|
||
|
font = QtGui.QFont()
|
||
|
font.setFamily(_fromUtf8("Monospace"))
|
||
|
font.setPointSize(10)
|
||
|
self.codeView.setFont(font)
|
||
|
self.codeView.setObjectName(_fromUtf8("codeView"))
|
||
|
self.gridLayout.addWidget(self.splitter, 0, 0, 1, 1)
|
||
|
|
||
|
self.retranslateUi(Form)
|
||
|
QtCore.QMetaObject.connectSlotsByName(Form)
|
||
|
|
||
|
def retranslateUi(self, Form):
|
||
|
Form.setWindowTitle(QtGui.QApplication.translate("Form", "Form", None, QtGui.QApplication.UnicodeUTF8))
|
||
|
self.loadBtn.setText(QtGui.QApplication.translate("Form", "Load Example", None, QtGui.QApplication.UnicodeUTF8))
|
||
|
|