--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgClientPromptDialog.py Sun Apr 14 15:09:21 2019 +0200 @@ -0,0 +1,82 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2011 - 2019 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Module implementing a prompt dialog for the Mercurial command server. +""" + +from __future__ import unicode_literals + +from PyQt5.QtCore import pyqtSlot, Qt +from PyQt5.QtGui import QTextCursor +from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QLineEdit + +from .Ui_HgClientPromptDialog import Ui_HgClientPromptDialog + + +class HgClientPromptDialog(QDialog, Ui_HgClientPromptDialog): + """ + Class implementing a prompt dialog for the Mercurial command server. + """ + def __init__(self, size, message, parent=None): + """ + Constructor + + @param size maximum length of the requested input (integer) + @param message message sent by the server (string) + @param parent reference to the parent widget (QWidget) + """ + super(HgClientPromptDialog, self).__init__(parent) + self.setupUi(self) + + self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) + + self.inputEdit.setMaxLength(size) + self.messageEdit.setPlainText(message) + + tc = self.messageEdit.textCursor() + tc.movePosition(QTextCursor.End) + self.messageEdit.setTextCursor(tc) + self.messageEdit.ensureCursorVisible() + + self.inputEdit.setFocus(Qt.OtherFocusReason) + + @pyqtSlot(str) + def on_inputEdit_textChanged(self, txt): + """ + Private slot to handle changes of the user input. + + @param txt text entered by the user (string) + """ + self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(bool(txt)) + + @pyqtSlot(bool) + def on_passwordCheckBox_toggled(self, isOn): + """ + Private slot to handle the password checkbox toggled. + + @param isOn flag indicating the status of the check box (boolean) + """ + if isOn: + self.inputEdit.setEchoMode(QLineEdit.Password) + else: + self.inputEdit.setEchoMode(QLineEdit.Normal) + + def getInput(self): + """ + Public method to get the user input. + + @return user input (string) + """ + return self.inputEdit.text() + + def isPassword(self): + """ + Public method to check, if the input was a password. + + @return flag indicating a password + @rtype bool + """ + return self.passwordCheckBox.isChecked()