sddm-patema/LoginFrame.qml

237 lines
6.5 KiB
QML
Raw Normal View History

2016-04-04 16:33:08 +02:00
import QtQuick 2.0
import SddmComponents 2.0
Rectangle {
2016-04-05 13:42:21 +02:00
property int m_sessionIndex: sessionModel.lastIndex
2016-04-05 16:19:00 +02:00
property string m_userName: userModel.lastUser
2016-04-05 13:42:21 +02:00
readonly property int m_powerButtonSize: 40
function getIconByName(name) {
for (var i = 0; i < userModel.count; i ++) {
if (userModel.get(i).name === name) {
return userModel.get(i).icon
}
}
return ""
}
2016-04-04 16:33:08 +02:00
Image {
id: powerBackground
anchors.fill: parent
source: "background.jpg"
}
Item {
id: centerArea
anchors.centerIn: parent
width: parent.width
height: parent.height / 3
Item {
id: loginItem
anchors.fill: parent
Rectangle {
id: userIconRec
anchors {
top: parent.top
horizontalCenter: parent.horizontalCenter
}
width: radius
height: radius
radius: 130
border {
width: 3
color: "#ffffff"
}
color: "#999999"
Image {
id: userIcon
2016-04-05 16:19:00 +02:00
source: userFrame.currentIconPath()
2016-04-04 16:33:08 +02:00
anchors.centerIn: parent
width: parent.width
height: parent.height
}
}
Text {
id: userNameText
anchors {
top: userIconRec.bottom
topMargin: 10
horizontalCenter: parent.horizontalCenter
}
2016-04-05 16:19:00 +02:00
text: m_userName
2016-04-04 16:33:08 +02:00
color: textColor
font.pointSize: 15
}
Rectangle {
id: passwdInputRec
anchors {
top: userNameText.bottom
topMargin: 10
horizontalCenter: parent.horizontalCenter
}
width: 300
height: 35
radius: 3
color: "#55000000"
TextInput {
id: passwdInput
anchors.fill: parent
anchors.leftMargin: 8
anchors.rightMargin: 8 + 36
clip: true
focus: true
color: textColor
font.pointSize: 15
selectByMouse: true
selectionColor: "#a8d6ec"
echoMode: TextInput.Password
verticalAlignment: TextInput.AlignVCenter
KeyNavigation.backtab: userButton; KeyNavigation.tab: shutdownButton
Keys.onPressed: {
if (event.key === Qt.Key_Return || event.key === Qt.Key_Enter) {
2016-04-05 13:42:21 +02:00
sddm.login(userNameText.text, passwdInput.text, m_sessionIndex)
2016-04-04 16:33:08 +02:00
event.accepted = true
}
}
}
ImageButton {
id: loginButton
anchors {
right: parent.right
verticalCenter: parent.verticalCenter
}
// Fixme, This is vary strange
source: "icons/login_normal.png"
onClicked: {
2016-04-05 13:42:21 +02:00
sddm.login(userNameText.text, passwdInput.text, m_sessionIndex)
2016-04-04 16:33:08 +02:00
}
}
}
}
}
Item {
id: timeArea
anchors {
bottom: parent.bottom
left: parent.left
}
width: parent.width / 3
height: parent.height / 5
Text {
id: timeText
anchors {
left: parent.left
leftMargin: hMargin
bottom: dateText.top
bottomMargin: 5
}
font.pointSize: 50
color: textColor
function updateTime() {
text = new Date().toLocaleString(Qt.locale("en_US"), "hh:mm")
}
}
Text {
id: dateText
anchors {
left: parent.left
leftMargin: hMargin
bottom: parent.bottom
bottomMargin: vMargin
}
font.pointSize: 18
color: textColor
function updateDate() {
text = new Date().toLocaleString(Qt.locale("en_US"), "yyyy-MM-dd dddd")
}
}
Timer {
interval: 1000
repeat: true
running: true
onTriggered: {
timeText.updateTime()
dateText.updateDate()
}
}
Component.onCompleted: {
timeText.updateTime()
dateText.updateDate()
}
}
Item {
id: powerArea
anchors {
bottom: parent.bottom
right: parent.right
}
width: parent.width / 3
height: parent.height / 5
readonly property int itemSpacing: 20;
2016-04-05 13:42:21 +02:00
Row {
spacing: 20
anchors.right: parent.right
anchors.rightMargin: hMargin
anchors.verticalCenter: parent.verticalCenter
ImageButton {
id: sessionButton
width: m_powerButtonSize
height: m_powerButtonSize
visible: sessionFrame.isMultipleSessions()
source: sessionFrame.getCurrentSessionIconPath()
onClicked: root.state = "stateSession"
2016-04-04 16:33:08 +02:00
}
2016-04-05 13:42:21 +02:00
ImageButton {
id: userButton
width: m_powerButtonSize
height: m_powerButtonSize
2016-04-05 16:19:00 +02:00
visible: userFrame.isMultipleUsers()
2016-04-04 16:33:08 +02:00
2016-04-05 13:42:21 +02:00
source: "icons/switchframe/userswitch_normal.png"
onClicked: {
console.log("Switch User...")
2016-04-05 16:19:00 +02:00
root.state = "stateUser"
2016-04-05 13:42:21 +02:00
}
2016-04-04 16:33:08 +02:00
}
2016-04-05 13:42:21 +02:00
ImageButton {
id: shutdownButton
width: m_powerButtonSize
height: m_powerButtonSize
visible: true//sddm.canPowerOff
source: "icons/switchframe/powermenu.png"
onClicked: {
console.log("Show shutdown menu")
root.state = "statePower"
}
2016-04-04 16:33:08 +02:00
}
}
}
}