18 import Ubuntu.Components 0.1
19 import LightDM 0.1 as LightDM
20 import "../Components"
25 property alias userList: userList
26 property alias model: userList.model
27 property alias currentIndex: userList.currentIndex
29 readonly
property int numAboveBelow: 4
30 readonly
property int cellHeight: units.gu(5)
31 readonly
property int highlightedHeight: units.gu(10)
32 readonly
property int moveDuration: 200
33 property bool wasPrompted:
false
35 signal selected(
int uid)
36 signal unlocked(
int uid)
38 Keys.onEscapePressed: root.resetAuthentication()
45 verticalCenter: parent.verticalCenter
47 height: root.highlightedHeight
48 color: Qt.rgba(0.1, 0.1, 0.1, 0.4)
49 border.color: Qt.rgba(0.4, 0.4, 0.4, 0.4)
50 border.width: units.dp(1)
57 objectName:
"userList"
61 preferredHighlightBegin: userList.height / 2 - root.highlightedHeight / 2
62 preferredHighlightEnd: userList.height / 2 - root.highlightedHeight / 2
63 highlightRangeMode: ListView.StrictlyEnforceRange
64 highlightMoveDuration: root.moveDuration
65 flickDeceleration: 10000
67 readonly
property bool movingInternally: moveTimer.running || userList.moving
69 onCurrentIndexChanged: {
70 if (LightDM.Greeter.authenticationUser != userList.model.data(currentIndex, LightDM.UserRoles.NameRole)) {
71 root.resetAuthentication();
75 onMovingInternallyChanged: {
77 if (!movingInternally) {
78 root.selected(userList.currentIndex);
84 height: root.cellHeight
86 readonly
property bool belowHighlight: (userList.currentIndex < 0 && index > 0) || (userList.currentIndex >= 0 && index > userList.currentIndex)
87 readonly
property int belowOffset: root.highlightedHeight - root.cellHeight
94 var highlightDist = 0;
95 var realY = y - userList.contentY;
98 if (realY + height <= highlightItem.y)
99 highlightDist = realY + height - highlightItem.y;
100 else if (realY >= highlightItem.y + root.highlightedHeight)
101 highlightDist = realY - highlightItem.y - root.highlightedHeight;
104 return 1 - Math.min(1, (Math.abs(highlightDist) + root.cellHeight) / ((root.numAboveBelow + 1) * root.cellHeight))
108 objectName:
"username" + index
112 leftMargin: units.gu(2)
114 rightMargin: units.gu(2)
117 topMargin: units.gu(1) + (parent.belowHighlight ? parent.belowOffset : 0)
121 elide: Text.ElideRight
123 Behavior on anchors.topMargin { NumberAnimation { duration: root.moveDuration; easing.type: Easing.InOutQuad; } }
132 topMargin: parent.belowHighlight ? parent.belowOffset : 0
134 height: parent.height
135 enabled: userList.currentIndex !== index
138 userList.currentIndex = index;
141 Behavior on anchors.topMargin { NumberAnimation { duration: root.moveDuration; easing.type: Easing.InOutQuad; } }
151 interval: root.moveDuration
157 objectName:
"infoLabel"
159 bottom: passwordInput.top
161 topMargin: units.gu(1)
162 bottomMargin: units.gu(1)
163 leftMargin: units.gu(2)
164 rightMargin: units.gu(1)
168 width: root.width - anchors.leftMargin - anchors.rightMargin
170 textFormat: Text.StyledText
173 opacity: (userList.movingInternally || text ==
"") ? 0 : 1
174 Behavior on opacity {
175 NumberAnimation { duration: 100 }
181 objectName:
"passwordInput"
183 bottom: highlightItem.bottom
184 horizontalCenter: parent.horizontalCenter
187 height: units.gu(4.5)
188 width: parent.width - anchors.margins * 2
189 opacity: userList.movingInternally ? 0 : 1
191 Behavior on opacity {
192 NumberAnimation { duration: 100 }
200 LightDM.Greeter.respond(text);
202 Keys.onEscapePressed: root.resetAuthentication()
207 rightMargin: units.gu(2)
208 verticalCenter: parent.verticalCenter
210 visible: LightDM.Greeter.promptless
211 source:
"graphics/icon_arrow.png"
214 WrongPasswordAnimation {
215 id: wrongPasswordAnimation
216 target: passwordInput
220 target: Qt.inputMethod
222 if (!Qt.inputMethod.visible) {
223 passwordInput.focus =
false;
231 anchors.fill: passwordInput
232 enabled: LightDM.Greeter.promptless
234 if (LightDM.Greeter.authenticated)
235 root.unlocked(userList.currentIndex);
237 root.resetAuthentication();
241 function resetAuthentication() {
242 if (!userList.currentItem) {
246 passwordInput.placeholderText =
"";
247 passwordInput.text =
"";
248 passwordInput.focus =
false;
249 passwordInput.enabled =
true;
250 root.wasPrompted =
false;
251 LightDM.Greeter.authenticate(userList.model.data(currentIndex, LightDM.UserRoles.NameRole));
255 target: LightDM.Greeter
259 text = text.replace(/&/g,
"&").replace(/</g,
"<").replace(/>/g,
">").replace(/\n/g,
"<br>");
261 text =
"<font color=\"#df382c\">" + text +
"</font>"
262 if (infoLabel.text ==
"")
263 infoLabel.text = text;
265 infoLabel.text = infoLabel.text +
"<br>" + text;
269 passwordInput.text =
"";
270 passwordInput.placeholderText = text;
271 passwordInput.enabled =
true;
272 passwordInput.echoMode = isSecret ? TextInput.Password : TextInput.Normal;
273 if (root.wasPrompted)
274 passwordInput.focus =
true;
275 root.wasPrompted =
true;
278 onAuthenticationComplete: {
279 if (LightDM.Greeter.promptless) {
280 passwordInput.placeholderText = LightDM.Greeter.authenticated ?
"Tap to unlock" :
"Retry";
283 if (LightDM.Greeter.authenticated) {
284 root.unlocked(userList.currentIndex);
286 wrongPasswordAnimation.start();
287 root.resetAuthentication();
288 passwordInput.focus =
true;
290 passwordInput.text =
"";
293 onRequestAuthenticationUser: {
295 for (var i = 0; i < userList.model.count; i++) {
296 if (user == userList.model.data(i, LightDM.UserRoles.NameRole)) {
298 userList.currentIndex = i;