2 * Copyright (C) 2015-2016 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 QtQuick.Layouts 1.1
19 import Ubuntu.Components 1.3
20 import ".." as LocalComponents
21 import "../../Components"
24 * See the main passwd-type page for an explanation of why we don't actually
25 * directly set the password here.
28 LocalComponents.Page {
30 objectName: "passcodeDesktopPage"
31 title: i18n.tr("Lock Screen Passcode")
32 forwardButtonSourceComponent: forwardButton
34 readonly property alias password: passwordField.text
35 readonly property alias password2: password2Field.text
40 flickableDirection: Flickable.VerticalFlick
42 anchors.leftMargin: parent.leftMargin
43 anchors.rightMargin: parent.rightMargin
44 anchors.topMargin: customMargin
46 bottomMargin: Qt.inputMethod.keyboardRectangle.height - height - customMargin
48 Behavior on contentY { UbuntuNumberAnimation {} }
52 objectName: "infoLabel"
59 font.weight: Font.Light
61 text: i18n.tr("Enter 4 numbers to setup your passcode")
69 topMargin: units.gu(3)
73 columnSpacing: units.gu(2)
74 rowSpacing: units.gu(2)
77 text: i18n.tr("Choose passcode")
80 LocalComponents.WizardTextField {
81 Layout.fillWidth: true
83 objectName: "passwordField"
84 echoMode: TextInput.Password
85 inputMethodHints: Qt.ImhDigitsOnly
86 validator: RegExpValidator { regExp: /^\d{4}$/ }
88 onAccepted: password2Field.forceActiveFocus()
89 onActiveFocusChanged: {
97 text: i18n.tr("Confirm passcode")
100 LocalComponents.WizardTextField {
101 Layout.fillWidth: true
103 objectName: "password2Field"
104 echoMode: TextInput.Password
105 inputMethodHints: Qt.ImhDigitsOnly
106 validator: RegExpValidator { regExp: /^\d{4}$/ }
108 onActiveFocusChanged: {
119 property bool hasError: password && password != password2
121 color: hasError ? errorColor : UbuntuColors.ash
122 visible: password && password2
126 if (password2.length < password2Field.maximumLength)
127 return i18n.tr("Passcode too short");
128 else if (password == password2)
129 return i18n.tr("Passcodes match");
131 return i18n.tr("Passcodes do not match");
141 LocalComponents.StackButton {
142 text: i18n.tr("Next")
143 enabled: password != "" && password == password2
145 root.password = password;