home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- from PyQt4 import QtCore, QtGui
-
- try:
- _fromUtf8 = QtCore.QString.fromUtf8
- except AttributeError:
-
- _fromUtf8 = lambda s: s
-
-
- class Ui_Dialog(object):
-
- def setupUi(self, Dialog):
- Dialog.setObjectName(_fromUtf8('Dialog'))
- Dialog.resize(542, 418)
- icon = QtGui.QIcon()
- icon.addPixmap(QtGui.QPixmap(_fromUtf8(I('config.png'))), QtGui.QIcon.Normal, QtGui.QIcon.Off)
- Dialog.setWindowIcon(icon)
- self.verticalLayout = QtGui.QVBoxLayout(Dialog)
- self.verticalLayout.setObjectName(_fromUtf8('verticalLayout'))
- self.from_ = QtGui.QLabel(Dialog)
- self.from_.setWordWrap(True)
- self.from_.setObjectName(_fromUtf8('from_'))
- self.verticalLayout.addWidget(self.from_)
- self.to = QtGui.QLineEdit(Dialog)
- self.to.setObjectName(_fromUtf8('to'))
- self.verticalLayout.addWidget(self.to)
- self.label = QtGui.QLabel(Dialog)
- self.label.setText(_fromUtf8(''))
- self.label.setWordWrap(True)
- self.label.setObjectName(_fromUtf8('label'))
- self.verticalLayout.addWidget(self.label)
- self.test_button = QtGui.QPushButton(Dialog)
- self.test_button.setObjectName(_fromUtf8('test_button'))
- self.verticalLayout.addWidget(self.test_button)
- self.log = QtGui.QPlainTextEdit(Dialog)
- self.log.setObjectName(_fromUtf8('log'))
- self.verticalLayout.addWidget(self.log)
- self.buttonBox = QtGui.QDialogButtonBox(Dialog)
- self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
- self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Ok)
- self.buttonBox.setObjectName(_fromUtf8('buttonBox'))
- self.verticalLayout.addWidget(self.buttonBox)
- self.retranslateUi(Dialog)
- QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8('accepted()')), Dialog.accept)
- QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8('rejected()')), Dialog.reject)
- QtCore.QMetaObject.connectSlotsByName(Dialog)
-
-
- def retranslateUi(self, Dialog):
- Dialog.setWindowTitle(_('Test email settings'))
- self.from_.setText(_('Send test mail from %s to:'))
- self.test_button.setText(_('&Test'))
-
-
-