# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'threading_gui.ui' # # Created: Wed Apr 30 16:13:00 2008 # by: PyQt4 UI code generator 4.3.3 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui class Ui_Dialog(object): def setupUi(self, Dialog): Dialog.setObjectName("Dialog") Dialog.resize(QtCore.QSize(QtCore.QRect(0,0,617,172).size()).expandedTo(Dialog.minimumSizeHint())) Dialog.setWindowIcon(QtGui.QIcon(":/threading.png")) self.gridlayout = QtGui.QGridLayout(Dialog) self.gridlayout.setObjectName("gridlayout") self.control = QtGui.QGroupBox(Dialog) self.control.setObjectName("control") self.hboxlayout = QtGui.QHBoxLayout(self.control) self.hboxlayout.setObjectName("hboxlayout") self.progressBar = QtGui.QProgressBar(self.control) self.progressBar.setProperty("value",QtCore.QVariant(24)) self.progressBar.setObjectName("progressBar") self.hboxlayout.addWidget(self.progressBar) self.gridlayout.addWidget(self.control,0,0,1,1) self.widget_3 = QtGui.QWidget(Dialog) self.widget_3.setMaximumSize(QtCore.QSize(16777215,40)) self.widget_3.setObjectName("widget_3") self.hboxlayout1 = QtGui.QHBoxLayout(self.widget_3) self.hboxlayout1.setObjectName("hboxlayout1") spacerItem = QtGui.QSpacerItem(391,31,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum) self.hboxlayout1.addItem(spacerItem) self.pushButton = QtGui.QPushButton(self.widget_3) self.pushButton.setObjectName("pushButton") self.hboxlayout1.addWidget(self.pushButton) self.btnCancel = QtGui.QPushButton(self.widget_3) self.btnCancel.setObjectName("btnCancel") self.hboxlayout1.addWidget(self.btnCancel) self.gridlayout.addWidget(self.widget_3,1,0,1,1) self.retranslateUi(Dialog) QtCore.QMetaObject.connectSlotsByName(Dialog) def retranslateUi(self, Dialog): Dialog.setWindowTitle(QtGui.QApplication.translate("Dialog", "Threading Plugin", None, QtGui.QApplication.UnicodeUTF8)) self.control.setTitle(QtGui.QApplication.translate("Dialog", "Thread Output", None, QtGui.QApplication.UnicodeUTF8)) self.pushButton.setText(QtGui.QApplication.translate("Dialog", "Start", None, QtGui.QApplication.UnicodeUTF8)) self.btnCancel.setText(QtGui.QApplication.translate("Dialog", "Cancel", None, QtGui.QApplication.UnicodeUTF8)) import resources_rc