114 lines
4.5 KiB
QML
114 lines
4.5 KiB
QML
// SDDM Sugar Candy 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.
|
|
// Config created by https://github.com/MarianArlt
|
|
// Config modified by keyitdev https://github.com/keyitdev
|
|
|
|
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
RowLayout {
|
|
|
|
spacing: root.font.pointSize
|
|
|
|
property var suspend: ["Suspend", config.TranslateSuspend || textConstants.suspend, sddm.canSuspend]
|
|
property var hibernate: ["Hibernate", config.TranslateHibernate || textConstants.hibernate, sddm.canHibernate]
|
|
property var reboot: ["Reboot", config.TranslateReboot || textConstants.reboot, sddm.canReboot]
|
|
property var shutdown: ["Shutdown", config.TranslateShutdown || textConstants.shutdown, sddm.canPowerOff]
|
|
|
|
property Control exposedSession
|
|
|
|
Repeater {
|
|
|
|
id: systemButtons
|
|
model: [suspend, hibernate, reboot, shutdown]
|
|
|
|
RoundButton {
|
|
text: modelData[1]
|
|
font.pointSize: root.font.pointSize * 0.8
|
|
Layout.alignment: Qt.AlignHCenter
|
|
icon.source: modelData ? Qt.resolvedUrl("../Assets/" + modelData[0] + ".svg") : ""
|
|
icon.height: 2 * Math.round((root.font.pointSize * 3) / 2)
|
|
icon.width: 2 * Math.round((root.font.pointSize * 3) / 2)
|
|
icon.color: config.IconColor
|
|
display: AbstractButton.TextUnderIcon
|
|
visible: config.ForceHideSystemButtons != "true" && modelData[2]
|
|
hoverEnabled: true
|
|
palette.buttonText: root.palette.text
|
|
background: Rectangle {
|
|
height: 2
|
|
color: "transparent"
|
|
width: parent.width
|
|
border.width: parent.activeFocus ? 1 : 0
|
|
border.color: "transparent"
|
|
anchors.top: parent.bottom
|
|
}
|
|
Keys.onReturnPressed: clicked()
|
|
onClicked: {
|
|
parent.forceActiveFocus()
|
|
index == 0 ? sddm.suspend() : index == 1 ? sddm.hibernate() : index == 2 ? sddm.reboot() : sddm.powerOff()
|
|
}
|
|
KeyNavigation.up: exposedSession
|
|
KeyNavigation.left: parent.children[index-1]
|
|
|
|
states: [
|
|
State {
|
|
name: "pressed"
|
|
when: parent.children[index].down
|
|
PropertyChanges {
|
|
target: parent.children[index]
|
|
icon.color: root.palette.highlight
|
|
palette.buttonText: Qt.darker(root.palette.highlight, 1.1)
|
|
}
|
|
PropertyChanges {
|
|
target: parent.children[index].background
|
|
icon.color: root.palette.highlight
|
|
border.color: Qt.darker(root.palette.highlight, 1.1)
|
|
}
|
|
},
|
|
State {
|
|
name: "hovered"
|
|
when: parent.children[index].hovered
|
|
PropertyChanges {
|
|
target: parent.children[index]
|
|
icon.color: root.palette.highlight
|
|
palette.buttonText: Qt.lighter(root.palette.highlight, 1.1)
|
|
}
|
|
PropertyChanges {
|
|
target: parent.children[index].background
|
|
icon.color: root.palette.highlight
|
|
border.color: Qt.lighter(root.palette.highlight, 1.1)
|
|
}
|
|
},
|
|
State {
|
|
name: "focused"
|
|
when: parent.children[index].activeFocus
|
|
PropertyChanges {
|
|
target: parent.children[index]
|
|
icon.color: root.palette.highlight
|
|
palette.buttonText: root.palette.highlight
|
|
}
|
|
PropertyChanges {
|
|
target: parent.children[index].background
|
|
icon.color: root.palette.highlight
|
|
border.color: root.palette.highlight
|
|
}
|
|
}
|
|
]
|
|
|
|
transitions: [
|
|
Transition {
|
|
PropertyAnimation {
|
|
properties: "palette.buttonText, border.color"
|
|
duration: 150
|
|
}
|
|
}
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|