2016-05-15 14:39:49 +00:00
|
|
|
from widgets import CenteredWidget
|
|
|
|
from PySide import QtCore, QtGui
|
|
|
|
|
|
|
|
|
|
|
|
class PasswordScreen(CenteredWidget):
|
|
|
|
|
2016-05-15 16:54:44 +00:00
|
|
|
def __init__(self, encrypt, data):
|
2016-05-15 14:39:49 +00:00
|
|
|
super(PasswordScreen, self).__init__()
|
|
|
|
self._encrypt = encrypt
|
2016-05-15 16:54:44 +00:00
|
|
|
self._data = data
|
2016-05-15 14:39:49 +00:00
|
|
|
self.initUI()
|
|
|
|
|
|
|
|
def initUI(self):
|
2016-05-15 16:54:44 +00:00
|
|
|
self.resize(360, 170)
|
|
|
|
self.setMinimumSize(QtCore.QSize(360, 170))
|
|
|
|
self.setMaximumSize(QtCore.QSize(360, 170))
|
2016-05-15 14:39:49 +00:00
|
|
|
|
|
|
|
self.enter_pass = QtGui.QLabel(self)
|
|
|
|
self.enter_pass.setGeometry(QtCore.QRect(30, 10, 300, 30))
|
|
|
|
|
|
|
|
self.password = QtGui.QLineEdit(self)
|
2016-05-15 16:54:44 +00:00
|
|
|
self.password.setGeometry(QtCore.QRect(30, 50, 300, 30))
|
2016-05-15 14:39:49 +00:00
|
|
|
self.password.setEchoMode(QtGui.QLineEdit.EchoMode.Password)
|
|
|
|
|
|
|
|
self.button = QtGui.QPushButton(self)
|
2016-05-15 16:54:44 +00:00
|
|
|
self.button.setGeometry(QtCore.QRect(30, 90, 300, 30))
|
2016-05-15 14:39:49 +00:00
|
|
|
self.button.setText('OK')
|
2016-05-15 16:54:44 +00:00
|
|
|
self.button.clicked.connect(self.button_click)
|
|
|
|
|
|
|
|
self.warning = QtGui.QLabel(self)
|
|
|
|
self.warning.setGeometry(QtCore.QRect(30, 130, 300, 30))
|
|
|
|
self.warning.setStyleSheet('QLabel { color: #F70D1A; }')
|
|
|
|
self.warning.setVisible(False)
|
2016-05-15 14:39:49 +00:00
|
|
|
|
|
|
|
self.retranslateUi()
|
|
|
|
QtCore.QMetaObject.connectSlotsByName(self)
|
|
|
|
|
2016-05-15 16:54:44 +00:00
|
|
|
def button_click(self):
|
|
|
|
if self.password.text():
|
|
|
|
try:
|
|
|
|
self._encrypt.set_password(self.password.text())
|
|
|
|
new_data = self._encrypt.pass_decrypt(self._data[0])
|
|
|
|
except RuntimeError:
|
|
|
|
self.warning.setVisible(True)
|
|
|
|
else:
|
|
|
|
self._data[0] = new_data
|
|
|
|
self.close()
|
|
|
|
|
2016-05-15 14:39:49 +00:00
|
|
|
def retranslateUi(self):
|
|
|
|
self.setWindowTitle(QtGui.QApplication.translate("pass", "Enter password", None, QtGui.QApplication.UnicodeUTF8))
|
|
|
|
self.enter_pass.setText(QtGui.QApplication.translate("pass", "Password:", None, QtGui.QApplication.UnicodeUTF8))
|
2016-05-15 16:54:44 +00:00
|
|
|
self.warning.setText(QtGui.QApplication.translate("pass", "Incorrect password", None, QtGui.QApplication.UnicodeUTF8))
|
2016-05-15 14:39:49 +00:00
|
|
|
|