mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
109 lines
2.9 KiB
QML
109 lines
2.9 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import qs.Commons
|
|
import qs.Widgets
|
|
|
|
RowLayout {
|
|
id: root
|
|
|
|
property string label: ""
|
|
property string description: ""
|
|
property bool checked: false
|
|
property bool hovering: false
|
|
property int baseSize: Math.round(Style.baseWidgetSize * 0.8 * Style.uiScaleRatio)
|
|
property var defaultValue: undefined
|
|
property string settingsPath: ""
|
|
|
|
signal toggled(bool checked)
|
|
signal entered
|
|
signal exited
|
|
|
|
Layout.fillWidth: true
|
|
|
|
opacity: enabled ? 1.0 : 0.6
|
|
spacing: Style.marginM
|
|
|
|
readonly property bool isValueChanged: (defaultValue !== undefined) && (checked !== defaultValue)
|
|
readonly property string indicatorTooltip: defaultValue !== undefined ? I18n.tr("panels.indicator.default-value", {
|
|
"value": typeof defaultValue === "boolean" ? (defaultValue ? "true" : "false") : String(defaultValue)
|
|
}) : ""
|
|
|
|
NLabel {
|
|
label: root.label
|
|
description: root.description
|
|
visible: root.label !== "" || root.description !== ""
|
|
showIndicator: root.isValueChanged
|
|
indicatorTooltip: root.indicatorTooltip
|
|
}
|
|
|
|
Rectangle {
|
|
id: switcher
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
implicitWidth: Math.round(root.baseSize * .85) * 2
|
|
implicitHeight: Math.round(root.baseSize * .5) * 2
|
|
radius: Math.min(Style.iRadiusL, height / 2)
|
|
color: root.checked ? Color.mPrimary : Color.mSurface
|
|
border.color: Color.mOutline
|
|
border.width: Style.borderS
|
|
|
|
Behavior on color {
|
|
ColorAnimation {
|
|
duration: Style.animationFast
|
|
}
|
|
}
|
|
|
|
Behavior on border.color {
|
|
ColorAnimation {
|
|
duration: Style.animationFast
|
|
}
|
|
}
|
|
|
|
Rectangle {
|
|
|
|
implicitWidth: Math.round(root.baseSize * 0.4) * 2
|
|
implicitHeight: Math.round(root.baseSize * 0.4) * 2
|
|
radius: Math.min(Style.iRadiusL, height / 2)
|
|
color: root.checked ? Color.mOnPrimary : Color.mPrimary
|
|
border.color: root.checked ? Color.mSurface : Color.mSurface
|
|
border.width: Style.borderM
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.verticalCenterOffset: 0
|
|
x: root.checked ? switcher.width - width - 3 : 3
|
|
|
|
Behavior on x {
|
|
NumberAnimation {
|
|
duration: Style.animationFast
|
|
easing.type: Easing.OutCubic
|
|
}
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
enabled: root.enabled
|
|
anchors.fill: parent
|
|
cursorShape: Qt.PointingHandCursor
|
|
hoverEnabled: true
|
|
onEntered: {
|
|
if (!enabled)
|
|
return;
|
|
hovering = true;
|
|
root.entered();
|
|
}
|
|
onExited: {
|
|
if (!enabled)
|
|
return;
|
|
hovering = false;
|
|
root.exited();
|
|
}
|
|
onClicked: {
|
|
if (!enabled)
|
|
return;
|
|
root.toggled(!root.checked);
|
|
}
|
|
}
|
|
}
|
|
}
|