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(350, 209)
- icon = QtGui.QIcon()
- icon.addPixmap(QtGui.QPixmap(I('mimetypes/unknown.svg')), QtGui.QIcon.Normal, QtGui.QIcon.Off)
- Dialog.setWindowIcon(icon)
- self.gridlayout = QtGui.QGridLayout(Dialog)
- self.gridlayout.setObjectName('gridlayout')
- self.msg = QtGui.QLabel(Dialog)
- self.msg.setWordWrap(True)
- self.msg.setOpenExternalLinks(True)
- self.msg.setObjectName('msg')
- self.gridlayout.addWidget(self.msg, 0, 1, 1, 1)
- self.label = QtGui.QLabel(Dialog)
- self.label.setObjectName('label')
- self.gridlayout.addWidget(self.label, 1, 0, 1, 1)
- self.gui_username = QtGui.QLineEdit(Dialog)
- self.gui_username.setObjectName('gui_username')
- self.gridlayout.addWidget(self.gui_username, 1, 1, 1, 1)
- self.label_2 = QtGui.QLabel(Dialog)
- self.label_2.setObjectName('label_2')
- self.gridlayout.addWidget(self.label_2, 2, 0, 1, 1)
- self.gui_password = QtGui.QLineEdit(Dialog)
- self.gui_password.setEchoMode(QtGui.QLineEdit.Password)
- self.gui_password.setObjectName('gui_password')
- self.gridlayout.addWidget(self.gui_password, 2, 1, 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, 4, 1, 1, 1)
- self.show_password = QtGui.QCheckBox(Dialog)
- self.show_password.setObjectName('show_password')
- self.gridlayout.addWidget(self.show_password, 3, 1, 1, 1)
- self.label.setBuddy(self.gui_username)
- self.label_2.setBuddy(self.gui_password)
- 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(_('Password needed'))
- self.msg.setText(_('TextLabel'))
- self.label.setText(_('&Username:'))
- self.label_2.setText(_('&Password:'))
- self.show_password.setText(_('&Show password'))
-
-
-