forked from cametiope/sddm-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserDelegate.qml
186 lines (152 loc) · 4.87 KB
/
UserDelegate.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/*
* Papyros SDDM theme - The SDDM theme for Papyros following Material Design
* Copyright (C) 2015 Michael Spencer <sonrisesoftware@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.0
import QtQuick.Layouts 1.1
import Material 0.1
import Material.Extras 0.1
View {
elevation: 2
radius: Units.dp(2)
anchors.verticalCenter: parent.verticalCenter
width: selectedUser === index ? Units.dp(230) : Units.dp(180)
height: selectedUser === index ? Units.dp(240) : Units.dp(190)
Behavior on width {
NumberAnimation { duration: 250 }
}
Behavior on height {
NumberAnimation { duration: 250 }
}
Connections {
target: sddm
onLoginFailed: {
field.hasError = true
}
}
Ink {
anchors.fill: parent
z: 0
onClicked: {
if (selectedUser === index) {
selectedUser = -1
} else {
selectedUser = index
}
}
}
Column {
id: column
width: parent.width
anchors {
left: parent.left
right: parent.right
top: parent.top
margins: Units.dp(32)
}
CircleImage {
id: image
anchors.horizontalCenter: parent.horizontalCenter
visible: status === Image.Ready && String(source).indexOf("sddm/faces/default.face.icon") === -1
width: Units.dp(80)
height: width/sourceSize.width * sourceSize.height
source: icon
Rectangle {
anchors.fill: parent
color: "transparent"
border.color: Qt.rgba(0,0,0,0.3)
radius: width/2
}
}
Rectangle {
anchors.horizontalCenter: parent.horizontalCenter
visible: !image.visible
width: image.width
height: width
border.color: Qt.darker(color, 1.2)
color: Qt.rgba(0.8,0.8,0.8, 1)
radius: width/2
Icon {
anchors.centerIn: parent
size: parent.width * 2/3
color: "white"
name: "social/person"
}
}
Item {
width: parent.width
height: Units.dp(24)
}
Label {
id: label
text: realName || name
height: visible ? implicitHeight + Units.dp(8) : Units.dp(32)
verticalAlignment: Text.AlignVCenter
//visible: index !== selectedUser
anchors.horizontalCenter: parent.horizontalCenter
font.pixelSize: Units.dp(18)
}
RowLayout {
anchors.horizontalCenter: parent.horizontalCenter
width: Units.dp(250) - parent.anchors.margins * 2
height: visible ? field.height : 0
visible: opacity > 0
opacity: index === selectedUser ? 1 : 0
spacing: Units.dp(8)
Behavior on height {
NumberAnimation { duration: 200 }
}
Behavior on opacity {
NumberAnimation { duration: 200 }
}
onVisibleChanged: {
if (!visible)
field.text = ""
field.hasError = false
}
TextField {
id: field
width: parent.width
placeholderText: qsTr("Password")
helperText: hasError ? qsTr("Password is incorrect.") : ""
echoMode: TextInput.Password
focus: selectedUser === index
Layout.fillWidth: true
Layout.alignment: Qt.AlignVCenter
onAccepted: {
background.open(primaryScreen.width/2, primaryScreen.height/2)
timer.start()
}
}
IconButton {
Layout.alignment: Qt.AlignVCenter
iconName: "content/send"
enabled: field.text !== ""
onClicked: {
field.accepted()
}
}
}
}
Timer {
id: timer
interval: 500
onTriggered: {
sddm.login(name, field.text, selectedSession)
field.text = ""
}
}
}