source: dassmodus/trunk/dassmodus/dassmodus/dassmodus/Ui_fetchDCdialog.py@ 955

Last change on this file since 955 was 955, checked in by pstorz, on Sep 28, 2011 at 11:35:12 AM

forgotten files

File size: 1.9 KB
Line 
1# -*- coding: utf-8 -*-
2
3# Form implementation generated from reading ui file 'fetchDCdialog.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_fetchDCdialog(object):
12 def setupUi(self, fetchDCdialog):
13 fetchDCdialog.setObjectName("fetchDCdialog")
14 fetchDCdialog.resize(327, 193)
15 self.verticalLayout = QtGui.QVBoxLayout(fetchDCdialog)
16 self.verticalLayout.setObjectName("verticalLayout")
17 self.groupBox = QtGui.QGroupBox(fetchDCdialog)
18 self.groupBox.setObjectName("groupBox")
19 self.verticalLayout_2 = QtGui.QVBoxLayout(self.groupBox)
20 self.verticalLayout_2.setObjectName("verticalLayout_2")
21 self.listWidget = QtGui.QListWidget(self.groupBox)
22 self.listWidget.setObjectName("listWidget")
23 self.verticalLayout_2.addWidget(self.listWidget)
24 self.verticalLayout.addWidget(self.groupBox)
25 self.buttonBox = QtGui.QDialogButtonBox(fetchDCdialog)
26 self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
27 self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
28 self.buttonBox.setObjectName("buttonBox")
29 self.verticalLayout.addWidget(self.buttonBox)
30
31 self.retranslateUi(fetchDCdialog)
32 QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("accepted()"), fetchDCdialog.accept)
33 QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("rejected()"), fetchDCdialog.reject)
34 QtCore.QMetaObject.connectSlotsByName(fetchDCdialog)
35
36 def retranslateUi(self, fetchDCdialog):
37 fetchDCdialog.setWindowTitle(QtGui.QApplication.translate("fetchDCdialog", "Dialog", None, QtGui.QApplication.UnicodeUTF8))
38 self.groupBox.setTitle(QtGui.QApplication.translate("fetchDCdialog", "available datacenter configurations", None, QtGui.QApplication.UnicodeUTF8))
39
Note: See TracBrowser for help on using the repository browser.