2 * Copyright (C) 2013 Canonical, Ltd.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 3.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 import Ubuntu.Components 0.1
19 import "../Components"
23 height: highlightItem.height
25 property string infoText
26 property string username: ""
27 property bool entryEnabled: true
29 signal entered(string passphrase)
32 function clear(playAnimation) {
33 pinentryField.text = "";
35 wrongPasswordAnimation.start();
36 pinentryField.forceActiveFocus();
38 pinentryField.focus = false
46 anchors.centerIn: parent
47 color: Qt.rgba(0.1, 0.1, 0.1, 0.4)
48 border.color: Qt.rgba(0.4, 0.4, 0.4, 0.4)
49 border.width: units.dp(1)
54 objectName: "greeterLabel"
59 margins: units.gu(1.5)
61 text: root.username.length > 0 ? i18n.tr("Hello %1").arg(root.username) : i18n.tr("Hello")
67 objectName: "pinentryField"
69 horizontalCenter: parent.horizontalCenter
74 width: parent.width - units.gu(2)
75 echoMode: TextInput.Password
78 enabled: root.entryEnabled
79 placeholderText: root.infoText
82 if (pinentryField.text) {
83 root.entered(pinentryField.text);
89 WrongPasswordAnimation {
90 id: wrongPasswordAnimation
91 objectName: "wrongPasswordAnimation"