nosignal-shell/modules/nexus/pages/panels/taskbar/BarStatusIcons.qml
2026-06-07 18:32:26 +10:00

98 lines
2.7 KiB
QML

pragma ComponentBehavior: Bound
import QtQuick.Layouts
import Caelestia.Config
import qs.modules.nexus.common
PageBase {
id: root
title: qsTr("Status icons")
isSubPage: true
ColumnLayout {
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.top
width: root.cappedWidth
spacing: Tokens.spacing.extraSmall / 2
// Visible icons
SectionHeader {
first: true
text: qsTr("Visible icons")
}
ToggleRow {
Layout.fillWidth: true
first: true
text: qsTr("Speakers")
checked: Config.bar.status.showAudio
onToggled: GlobalConfig.bar.status.showAudio = checked
}
ToggleRow {
Layout.fillWidth: true
text: qsTr("Microphone")
checked: Config.bar.status.showMicrophone
onToggled: GlobalConfig.bar.status.showMicrophone = checked
}
ToggleRow {
Layout.fillWidth: true
text: qsTr("Keyboard layout")
checked: Config.bar.status.showKbLayout
onToggled: GlobalConfig.bar.status.showKbLayout = checked
}
ToggleRow {
Layout.fillWidth: true
text: qsTr("Network")
checked: Config.bar.status.showNetwork
onToggled: GlobalConfig.bar.status.showNetwork = checked
}
ToggleRow {
Layout.fillWidth: true
text: qsTr("Wi-Fi")
checked: Config.bar.status.showWifi
onToggled: GlobalConfig.bar.status.showWifi = checked
}
ToggleRow {
Layout.fillWidth: true
text: qsTr("Bluetooth")
checked: Config.bar.status.showBluetooth
onToggled: GlobalConfig.bar.status.showBluetooth = checked
}
ToggleRow {
Layout.fillWidth: true
text: qsTr("Battery")
checked: Config.bar.status.showBattery
onToggled: GlobalConfig.bar.status.showBattery = checked
}
ToggleRow {
Layout.fillWidth: true
last: true
text: qsTr("Caps lock")
checked: Config.bar.status.showLockStatus
onToggled: GlobalConfig.bar.status.showLockStatus = checked
}
// Behaviour
SectionHeader {
text: qsTr("Behaviour")
}
ToggleRow {
Layout.fillWidth: true
first: true
last: true
text: qsTr("Popout on hover")
subtext: qsTr("Show a details popout when hovering the status icons")
checked: Config.bar.popouts.statusIcons
onToggled: GlobalConfig.bar.popouts.statusIcons = checked
}
}
}