-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathMain.qml
351 lines (296 loc) · 9.38 KB
/
Main.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
/*
* Copyright (C) 2021 CutefishOS.
*
* Author: Reion Wong <reionwong@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
* 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.12
import QtQuick.Window 2.12
import QtQuick.Controls 2.12 as QQC2
import QtQuick.Layouts 1.12
import QtGraphicalEffects 1.0
import Cutefish.Accounts 1.0 as Accounts
import Cutefish.System 1.0 as System
import FishUI 1.0 as FishUI
import SddmComponents 2.0
import "./"
Item {
id: root
property string notificationMessage
LayoutMirroring.enabled: Qt.locale().textDirection == Qt.RightToLeft
LayoutMirroring.childrenInherit: true
TextConstants { id: textConstants }
Image {
id: wallpaperImage
anchors.fill: parent
source: "file://" + "/usr/share/backgrounds/cutefishos/default.jpg"
sourceSize: Qt.size(width * Screen.devicePixelRatio,
height * Screen.devicePixelRatio)
fillMode: Image.PreserveAspectCrop
asynchronous: false
clip: true
cache: false
smooth: true
}
FastBlur {
id: wallpaperBlur
anchors.fill: parent
radius: 64
source: wallpaperImage
cached: true
visible: true
}
Timer {
repeat: true
running: true
interval: 1000
onTriggered: {
timeLabel.updateInfo()
dateLabel.updateInfo()
}
}
Component.onCompleted: {
timeLabel.updateInfo()
dateLabel.updateInfo()
}
Item {
id: _topItem
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
anchors.bottom: _mainItem.top
anchors.bottomMargin: root.height * 0.1
QQC2.Label {
id: timeLabel
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
Layout.alignment: Qt.AlignHCenter
font.pointSize: 35
color: "white"
function updateInfo() {
timeLabel.text = new Date().toLocaleString(Qt.locale(), "hh:mm")
}
}
QQC2.Label {
id: dateLabel
anchors.top: timeLabel.bottom
anchors.topMargin: FishUI.Units.largeSpacing
anchors.horizontalCenter: parent.horizontalCenter
font.pointSize: 19
color: "white"
function updateInfo() {
dateLabel.text = new Date().toLocaleDateString(Qt.locale(), Locale.LongFormat)
}
}
DropShadow {
anchors.fill: timeLabel
source: timeLabel
z: -1
horizontalOffset: 1
verticalOffset: 1
radius: 10
samples: radius * 4
spread: 0.35
color: Qt.rgba(0, 0, 0, 0.8)
opacity: 0.1
visible: true
}
DropShadow {
anchors.fill: dateLabel
source: dateLabel
z: -1
horizontalOffset: 1
verticalOffset: 1
radius: 10
samples: radius * 4
spread: 0.35
color: Qt.rgba(0, 0, 0, 0.8)
opacity: 0.1
visible: true
}
}
Item {
id: _mainItem
anchors.centerIn: parent
width: 260 + FishUI.Units.largeSpacing * 3
height: _mainLayout.implicitHeight + FishUI.Units.largeSpacing * 4
Layout.alignment: Qt.AlignHCenter
Rectangle {
anchors.fill: parent
radius: FishUI.Theme.bigRadius + 2
color: FishUI.Theme.darkMode ? "#424242" : "white"
opacity: 0.5
}
ColumnLayout {
id: _mainLayout
anchors.fill: parent
anchors.margins: FishUI.Units.largeSpacing * 1.5
spacing: FishUI.Units.smallSpacing * 1.5
UserView {
id: _userView
model: userModel
Layout.fillWidth: true
}
QQC2.TextField {
id: passwordField
Layout.alignment: Qt.AlignHCenter
Layout.preferredHeight: 40
Layout.preferredWidth: 260
placeholderText: qsTr("Password")
focus: true
selectByMouse: true
echoMode: TextInput.Password
background: Rectangle {
color: FishUI.Theme.darkMode ? "#B6B6B6" : "white"
radius: FishUI.Theme.bigRadius
opacity: 0.5
}
Keys.onEnterPressed: root.startLogin()
Keys.onReturnPressed: root.startLogin()
Keys.onEscapePressed: passwordField.text = ""
}
QQC2.Button {
id: unlockBtn
hoverEnabled: true
focusPolicy: Qt.NoFocus
Layout.alignment: Qt.AlignHCenter
Layout.preferredHeight: 40
Layout.preferredWidth: 260
text: qsTr("Login")
onClicked: root.startLogin()
scale: unlockBtn.pressed ? 0.95 : 1.0
Behavior on scale {
NumberAnimation {
duration: 100
}
}
background: Rectangle {
color: FishUI.Theme.darkMode ? "#B6B6B6" : "white"
opacity: unlockBtn.pressed ? 0.3 : unlockBtn.hovered ? 0.4 : 0.5
radius: FishUI.Theme.bigRadius
}
}
}
}
Item {
anchors.left: parent.left
anchors.bottom: parent.bottom
anchors.leftMargin: FishUI.Units.largeSpacing
anchors.bottomMargin: FishUI.Units.largeSpacing
width: sessionMenu.implicitWidth + FishUI.Units.largeSpacing
height: sessionMenu.implicitHeight
SessionMenu {
id: sessionMenu
anchors.fill: parent
rootFontSize: 10
height: 30
Layout.fillWidth: true
}
}
Item {
anchors.right: parent.right
anchors.bottom: parent.bottom
anchors.rightMargin: FishUI.Units.largeSpacing
anchors.bottomMargin: FishUI.Units.smallSpacing * 1.5
width: 50
height: 50 + FishUI.Units.largeSpacing
FishUI.RoundImageButton {
anchors.fill: parent
width: 50
height: 50 + FishUI.Units.largeSpacing
size: 50
source: "system-shutdown-symbolic.svg"
iconMargins: FishUI.Units.largeSpacing
// anchors.top: message.bottom
// anchors.topMargin: FishUI.Units.largeSpacing
// anchors.horizontalCenter: parent.horizontalCenter
onClicked: actionMenu.popup()
}
}
FishUIMenu {
id: actionMenu
QQC2.MenuItem {
text: qsTr("Suspend")
onClicked: sddm.suspend()
visible: sddm.canSuspend
}
QQC2.MenuItem {
text: qsTr("Reboot")
onClicked: sddm.reboot()
visible: sddm.canReboot
}
QQC2.MenuItem {
text: qsTr("Shutdown")
onClicked: sddm.powerOff()
visible: sddm.canPowerOff
}
}
// FishUI.RoundImageButton {
// width: 50
// height: 50
// size: 50
// source: "system-shutdown-symbolic.svg"
// iconMargins: 10
// anchors.top: message.bottom
// anchors.topMargin: FishUI.Units.largeSpacing
// anchors.horizontalCenter: parent.horizontalCenter
// }
QQC2.Label {
id: message
anchors.top: _mainItem.bottom
anchors.topMargin: FishUI.Units.largeSpacing
anchors.horizontalCenter: parent.horizontalCenter
font.bold: true
text: root.notificationMessage
color: "white"
Behavior on opacity {
NumberAnimation {
duration: 250
}
}
opacity: text == "" ? 0 : 1
}
DropShadow {
anchors.fill: message
source: message
z: -1
horizontalOffset: 1
verticalOffset: 1
radius: 10
samples: radius * 4
spread: 0.35
color: Qt.rgba(0, 0, 0, 0.8)
opacity: 0.1
visible: true
}
function startLogin() {
var username = _userView.currentItem.userName
var password = passwordField.text
root.notificationMessage = ""
sddm.login(username, password, sessionMenu.currentIndex)
}
Timer {
id: notificationResetTimer
interval: 3000
onTriggered: root.notificationMessage = ""
}
Connections {
target: sddm
function onLoginFailed() {
notificationMessage = textConstants.loginFailed
notificationResetTimer.start();
}
}
}