-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathInfoGui.py
executable file
·62 lines (55 loc) · 2.75 KB
/
InfoGui.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
52
53
54
55
56
57
58
59
60
61
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'InfoGui.ui'
#
# Created: Tue Mar 03 23:06:51 2015
# by: PyQt4 UI code generator 4.9.5
#
# 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_InfoWindow(object):
def setupUi(self, InfoWindow):
InfoWindow.setObjectName(_fromUtf8("InfoWindow"))
InfoWindow.resize(896, 747)
self.centralwidget = QtGui.QWidget(InfoWindow)
self.centralwidget.setObjectName(_fromUtf8("centralwidget"))
self.verticalLayout_2 = QtGui.QVBoxLayout(self.centralwidget)
self.verticalLayout_2.setObjectName(_fromUtf8("verticalLayout_2"))
self.horizontalLayout = QtGui.QHBoxLayout()
self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout"))
self.verticalLayout = QtGui.QVBoxLayout()
self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
self.label = QtGui.QLabel(self.centralwidget)
self.label.setAutoFillBackground(True)
self.label.setFrameShape(QtGui.QFrame.WinPanel)
self.label.setFrameShadow(QtGui.QFrame.Sunken)
self.label.setText(_fromUtf8(""))
self.label.setObjectName(_fromUtf8("label"))
self.verticalLayout.addWidget(self.label)
self.lblInfo = QtGui.QLabel(self.centralwidget)
self.lblInfo.setAutoFillBackground(True)
self.lblInfo.setText(_fromUtf8(""))
self.lblInfo.setScaledContents(True)
self.lblInfo.setObjectName(_fromUtf8("lblInfo"))
self.verticalLayout.addWidget(self.lblInfo)
self.horizontalLayout.addLayout(self.verticalLayout)
self.verticalScrollBar = QtGui.QScrollBar(self.centralwidget)
self.verticalScrollBar.setOrientation(QtCore.Qt.Vertical)
self.verticalScrollBar.setObjectName(_fromUtf8("verticalScrollBar"))
self.horizontalLayout.addWidget(self.verticalScrollBar)
self.verticalLayout_2.addLayout(self.horizontalLayout)
InfoWindow.setCentralWidget(self.centralwidget)
self.menubar = QtGui.QMenuBar(InfoWindow)
self.menubar.setGeometry(QtCore.QRect(0, 0, 896, 26))
self.menubar.setObjectName(_fromUtf8("menubar"))
InfoWindow.setMenuBar(self.menubar)
self.statusbar = QtGui.QStatusBar(InfoWindow)
self.statusbar.setObjectName(_fromUtf8("statusbar"))
InfoWindow.setStatusBar(self.statusbar)
self.retranslateUi(InfoWindow)
QtCore.QMetaObject.connectSlotsByName(InfoWindow)
def retranslateUi(self, InfoWindow):
InfoWindow.setWindowTitle(QtGui.QApplication.translate("InfoWindow", "Phantom Viewer Information", None, QtGui.QApplication.UnicodeUTF8))