Unity 8
 All Classes Functions Properties
NotificationMenuItemFactory.qml
1 /*
2  * Copyright 2013 Canonical Ltd.
3  *
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.
7  *
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.
12  *
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/>.
15  *
16  * Authors:
17  * Nick Dedekind <nick.dedekind@canonical.com>
18  */
19 
20 import QtQuick 2.0
21 import Ubuntu.Components 0.1
22 import "../Components"
23 import "../Greeter"
24 
25 Loader {
26  id: menuFactory
27 
28  property QtObject menuModel: null
29  property QtObject menuData: null
30  property int menuIndex
31  property int maxHeight
32  readonly property bool fullscreen: menuData.type === "com.canonical.snapdecision.pinlock"
33 
34  property var _map: {
35  "com.canonical.snapdecision.textfield": textfield,
36  "com.canonical.snapdecision.pinlock" : pinLock,
37  }
38 
39  sourceComponent: {
40  if (menuData.type !== undefined) {
41  var component = _map[menuData.type];
42  if (component !== undefined) {
43  return component;
44  }
45  }
46  }
47 
48  Component {
49  id: textfield
50 
51  Column {
52  spacing: units.gu(2)
53 
54  anchors.left: parent.left; anchors.right: parent.right
55 
56  Component.onCompleted: {
57  menuModel.loadExtendedAttributes(menuIndex, {"x-echo-mode-password": "bool"});
58  checkBox.checked = menuData.ext.xEchoModePassword ? false : true
59  checkBoxRow.visible = menuData.ext.xEchoModePassword
60  }
61 
62  Label {
63  text: menuData.label
64  }
65 
66  TextField {
67  id: textfield
68 
69  // TODO using Qt.ImhNoPredictiveText here until lp #1291575 is fixed for ubuntu-ui-toolkit
70  inputMethodHints: Qt.ImhNoAutoUppercase | Qt.ImhNoPredictiveText
71  anchors.left: parent.left; anchors.right: parent.right
72  echoMode: checkBox.checked ? TextInput.Normal : TextInput.Password
73  height: units.gu(5)
74  onTextChanged: {
75  menuModel.changeState(menuIndex, text);
76  }
77  }
78 
79  Row {
80  id: checkBoxRow
81 
82  spacing: units.gu(.5)
83 
84  CheckBox {
85  id: checkBox
86 
87  checked: false
88  }
89 
90  Label {
91  anchors.verticalCenter: checkBox.verticalCenter
92  text: i18n.tr("Show password")
93  }
94  }
95  }
96  }
97 
98  Component {
99  id: pinLock
100 
101  Lockscreen {
102  anchors.left: parent.left; anchors.right: parent.right
103  height: menuFactory.maxHeight
104  placeholderText: i18n.tr("Please enter SIM PIN")
105  background: shell.background
106 
107  onEntered: {
108  menuModel.changeState(menuIndex, passphrase);
109  entryEnabled = false;
110  }
111 
112  onCancel: {
113  menuModel.activate(menuIndex, false);
114  }
115  }
116  }
117 }