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
23 * See the main passwd-type page for an explanation of why we don't actually
24 * directly set the password here.
27 LocalComponents.Page {
29 objectName: "passcodeDesktopPage"
30 title: i18n.tr("Lock Screen Passcode")
31 forwardButtonSourceComponent: forwardButton
33 readonly property alias password: passwordField.text
34 readonly property alias password2: password2Field.text
39 flickableDirection: Flickable.VerticalFlick
41 anchors.leftMargin: parent.leftMargin
42 anchors.rightMargin: parent.rightMargin
43 anchors.topMargin: customMargin
45 bottomMargin: Qt.inputMethod.keyboardRectangle.height - height - customMargin
47 Behavior on contentY { UbuntuNumberAnimation {} }
51 objectName: "infoLabel"
58 font.weight: Font.Light
60 text: i18n.tr("Enter 4 numbers to setup your passcode")
68 topMargin: units.gu(3)
72 columnSpacing: units.gu(2)
73 rowSpacing: units.gu(2)
76 text: i18n.tr("Choose passcode")
79 LocalComponents.WizardTextField {
80 Layout.fillWidth: true
82 objectName: "passwordField"
83 echoMode: TextInput.Password
84 inputMethodHints: Qt.ImhDigitsOnly
85 validator: RegExpValidator { regExp: /^\d{4}$/ }
87 onAccepted: password2Field.forceActiveFocus()
88 onActiveFocusChanged: {
96 text: i18n.tr("Confirm passcode")
99 LocalComponents.WizardTextField {
100 Layout.fillWidth: true
102 objectName: "password2Field"
103 echoMode: TextInput.Password
104 inputMethodHints: Qt.ImhDigitsOnly
105 validator: RegExpValidator { regExp: /^\d{4}$/ }
107 onActiveFocusChanged: {
118 property bool hasError: password && password != password2
120 color: hasError ? errorColor : UbuntuColors.ash
121 visible: password && password2
125 if (password2.length < password2Field.maximumLength)
126 return i18n.tr("Passcode too short");
127 else if (password == password2)
128 return i18n.tr("Passcodes match");
130 return i18n.tr("Passcodes do not match");
140 LocalComponents.StackButton {
141 text: i18n.tr("Next")
142 enabled: password != "" && password == password2
144 root.password = password;