2 * Copyright 2013 Canonical Ltd.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 * Nick Dedekind <nick.dedekind@canonical.com>
21 import Ubuntu.Components 0.1
22 import "../Components"
27 property QtObject menuModel: null
28 property QtObject menuData: null
29 property int menuIndex
30 property int maxHeight
31 readonly property bool fullscreen: menuData.type === "com.canonical.snapdecision.pinlock"
36 "com.canonical.snapdecision.textfield": textfield,
37 "com.canonical.snapdecision.pinlock" : pinLock,
41 if (menuData.type !== undefined) {
42 var component = _map[menuData.type];
43 if (component !== undefined) {
61 Component.onCompleted: {
62 menuModel.loadExtendedAttributes(menuIndex, {"x-echo-mode-password": "bool"});
63 checkBox.checked = menuData.ext.xEchoModePassword ? false : true
64 checkBoxRow.visible = menuData.ext.xEchoModePassword
69 color: notification.sdFontColor
75 // TODO using Qt.ImhNoPredictiveText here until lp #1291575 is fixed for ubuntu-ui-toolkit
76 inputMethodHints: Qt.ImhNoAutoUppercase | Qt.ImhNoPredictiveText
81 echoMode: checkBox.checked ? TextInput.Normal : TextInput.Password
83 Component.onCompleted: {
87 menuModel.changeState(menuIndex, text);
90 menuFactory.accepted()
103 activeFocusOnPress: false
107 anchors.verticalCenter: checkBox.verticalCenter
108 text: i18n.tr("Show password")
109 color: notification.sdFontColor
123 height: menuFactory.maxHeight
124 infoText: i18n.tr("Enter SIM PIN")
125 errorText: i18n.tr("Sorry, incorrect PIN")
128 background: shell.background
131 menuModel.changeState(menuIndex, passphrase);
135 menuModel.activate(menuIndex, false);
139 shell.activateApplication("dialer-app")
140 menuModel.activate(menuIndex, false)