-
Notifications
You must be signed in to change notification settings - Fork 2
/
ui_DFCalcProcess.py
52 lines (44 loc) · 2.12 KB
/
ui_DFCalcProcess.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'D:/CalculationProcess.ui'
#
# Created: Mon Mar 11 17:07:40 2013
# by: PyQt4 UI code generator 4.10
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore, QtGui
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
def _fromUtf8(s):
return s
try:
_encoding = QtGui.QApplication.UnicodeUTF8
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig, _encoding)
except AttributeError:
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig)
class Ui_DF_Calculation(object):
def setupUi(self, DF_Calculation):
DF_Calculation.setObjectName(_fromUtf8("DF_Calculation"))
DF_Calculation.resize(316, 147)
self.progressBar = QtGui.QProgressBar(DF_Calculation)
self.progressBar.setGeometry(QtCore.QRect(30, 50, 261, 23))
self.progressBar.setProperty("value", 24)
self.progressBar.setObjectName(_fromUtf8("progressBar"))
self.pushButton = QtGui.QPushButton(DF_Calculation)
self.pushButton.setGeometry(QtCore.QRect(210, 110, 75, 23))
self.pushButton.setObjectName(_fromUtf8("pushButton"))
self.label = QtGui.QLabel(DF_Calculation)
self.label.setGeometry(QtCore.QRect(30, 20, 261, 21))
self.label.setObjectName(_fromUtf8("label"))
self.label_rate = QtGui.QLabel(DF_Calculation)
self.label_rate.setGeometry(QtCore.QRect(30, 80, 141, 16))
self.label_rate.setObjectName(_fromUtf8("label_rate"))
self.retranslateUi(DF_Calculation)
QtCore.QMetaObject.connectSlotsByName(DF_Calculation)
def retranslateUi(self, DF_Calculation):
DF_Calculation.setWindowTitle(_translate("DF_Calculation", "DF Calculation", None))
self.pushButton.setText(_translate("DF_Calculation", "Cancel", None))
self.label.setText(_translate("DF_Calculation", "This may take serval minutes , please wait.", None))
self.label_rate.setText(_translate("DF_Calculation", "TextLabel", None))