home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- from PyQt4 import QtCore, QtGui
-
- class Ui_Dialog(object):
-
- def setupUi(self, Dialog):
- Dialog.setObjectName('Dialog')
- Dialog.resize(439, 300)
- icon = QtGui.QIcon()
- icon.addPixmap(QtGui.QPixmap(I('dialog_warning.svg')), QtGui.QIcon.Normal, QtGui.QIcon.Off)
- Dialog.setWindowIcon(icon)
- self.gridLayout = QtGui.QGridLayout(Dialog)
- self.gridLayout.setObjectName('gridLayout')
- self.horizontalLayout = QtGui.QHBoxLayout()
- self.horizontalLayout.setObjectName('horizontalLayout')
- self.label = QtGui.QLabel(Dialog)
- self.label.setPixmap(QtGui.QPixmap(I('dialog_warning.svg')))
- self.label.setObjectName('label')
- self.horizontalLayout.addWidget(self.label)
- self.msg = QtGui.QLabel(Dialog)
- self.msg.setWordWrap(True)
- self.msg.setObjectName('msg')
- self.horizontalLayout.addWidget(self.msg)
- self.gridLayout.addLayout(self.horizontalLayout, 0, 0, 1, 1)
- self.again = QtGui.QCheckBox(Dialog)
- self.again.setChecked(True)
- self.again.setObjectName('again')
- self.gridLayout.addWidget(self.again, 1, 0, 1, 1)
- self.buttonBox = QtGui.QDialogButtonBox(Dialog)
- self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
- self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel | QtGui.QDialogButtonBox.Ok)
- self.buttonBox.setObjectName('buttonBox')
- self.gridLayout.addWidget(self.buttonBox, 2, 0, 1, 1)
- self.retranslateUi(Dialog)
- QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL('accepted()'), Dialog.accept)
- QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL('rejected()'), Dialog.reject)
- QtCore.QMetaObject.connectSlotsByName(Dialog)
-
-
- def retranslateUi(self, Dialog):
- Dialog.setWindowTitle(_('Are you sure?'))
- self.msg.setText(_('TextLabel'))
- self.again.setText(_('&Show this warning again'))
-
-
-