source: dassmodus/trunk/dassmodus/dassmodus/dassmodus/ui/Ui_integrityCheckDialog.py@ 956

Last change on this file since 956 was 956, checked in by pstorz, on Sep 28, 2011 at 11:37:02 AM

ui files

File size: 1.4 KB
Line 
1# -*- coding: utf-8 -*-
2
3# Form implementation generated from reading ui file 'integrityCheckDialog.ui'
4#
5# Created by: PyQt4 UI code generator 4.7.3
6#
7# WARNING! All changes made in this file will be lost!
8
9from PyQt4 import QtCore, QtGui
10
11class Ui_IntegrityCheckForm(object):
12 def setupUi(self, IntegrityCheckForm):
13 IntegrityCheckForm.setObjectName("IntegrityCheckForm")
14 IntegrityCheckForm.resize(600, 300)
15 self.verticalLayout_2 = QtGui.QVBoxLayout(IntegrityCheckForm)
16 self.verticalLayout_2.setObjectName("verticalLayout_2")
17 self.groupBox = QtGui.QGroupBox(IntegrityCheckForm)
18 self.groupBox.setObjectName("groupBox")
19 self.verticalLayout = QtGui.QVBoxLayout(self.groupBox)
20 self.verticalLayout.setObjectName("verticalLayout")
21 self.listWidget = QtGui.QListWidget(self.groupBox)
22 self.listWidget.setObjectName("listWidget")
23 self.verticalLayout.addWidget(self.listWidget)
24 self.verticalLayout_2.addWidget(self.groupBox)
25
26 self.retranslateUi(IntegrityCheckForm)
27 QtCore.QMetaObject.connectSlotsByName(IntegrityCheckForm)
28
29 def retranslateUi(self, IntegrityCheckForm):
30 IntegrityCheckForm.setWindowTitle(QtGui.QApplication.translate("IntegrityCheckForm", "Form", None, QtGui.QApplication.UnicodeUTF8))
31 self.groupBox.setTitle(QtGui.QApplication.translate("IntegrityCheckForm", "Integritycheck results", None, QtGui.QApplication.UnicodeUTF8))
32
Note: See TracBrowser for help on using the repository browser.