C++ / fmt (pull_request) Successful in 4s
JS/TS / fmt (pull_request) Successful in 22s
JS/TS / lint (pull_request) Successful in 27s
Python / fmt (pull_request) Successful in 33s
Python / lint (pull_request) Successful in 32s
Python / test (pull_request) Successful in 1m3s
Python / typecheck (pull_request) Failing after 1m4s
Rust / fmt (pull_request) Successful in 41s
Rust / build (pull_request) Successful in 1m39s
C++ / build (pull_request) Successful in 2m33s
Rust / clippy (pull_request) Successful in 1m18s
Python / buildcheck (pull_request) Successful in 2m23s
C++ / clang-tidy (pull_request) Successful in 3m56s
99 lines
1.9 KiB
QML
99 lines
1.9 KiB
QML
pragma ComponentBehavior: Bound
|
|
|
|
import QtQuick.Layouts
|
|
import ZShell.Config
|
|
import qs.Components
|
|
import qs.Modules.Settings.Common
|
|
|
|
PageBase {
|
|
id: root
|
|
|
|
isSubPage: true
|
|
title: qsTr("Taskbar")
|
|
|
|
ColumnLayout {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.top: parent.top
|
|
spacing: Tokens.spacing.extraSmall / 2
|
|
width: root.cappedWidth
|
|
|
|
// Behavior
|
|
SectionHeader {
|
|
first: true
|
|
text: qsTr("Behavior")
|
|
}
|
|
|
|
ToggleRow {
|
|
checked: Config.bar.autoHide
|
|
first: true
|
|
settingAnchor: "bar-autohide"
|
|
subtext: qsTr("Hide the bar, reveal on hover")
|
|
text: qsTr("Auto hide")
|
|
|
|
onToggled: Config.bar.autoHide = checked
|
|
}
|
|
|
|
SelectRow {
|
|
active: Config.bar.position === "top" ? menuItems[0] : Config.bar.position === "left" ? menuItems[1] : menuItems[2]
|
|
last: true
|
|
settingAnchor: "bar-position"
|
|
subtext: qsTr("Change which edge the bar appears on")
|
|
text: qsTr("Position")
|
|
|
|
menuItems: [
|
|
MenuItem {
|
|
icon: "build"
|
|
text: qsTr("Top")
|
|
value: "top"
|
|
},
|
|
MenuItem {
|
|
icon: "rotate_auto"
|
|
text: qsTr("Left")
|
|
value: "left"
|
|
},
|
|
MenuItem {
|
|
icon: "rotate_auto"
|
|
text: qsTr("Bottom")
|
|
value: "bottom"
|
|
}
|
|
]
|
|
|
|
onSelected: item => Config.bar.position = item.value
|
|
}
|
|
|
|
// Components
|
|
SectionHeader {
|
|
text: qsTr("Components")
|
|
}
|
|
|
|
NavRow {
|
|
first: true
|
|
icon: "widgets"
|
|
settingAnchor: "bar-tray"
|
|
status: qsTr("System tray icons")
|
|
text: qsTr("Tray")
|
|
|
|
onClicked: root.sState.openSubPage(6)
|
|
}
|
|
|
|
NavRow {
|
|
icon: "signal_cellular_alt"
|
|
settingAnchor: "bar-statusicons"
|
|
status: qsTr("Visible indicators")
|
|
text: qsTr("Status icons")
|
|
|
|
onClicked: root.sState.openSubPage(7)
|
|
}
|
|
|
|
NavRow {
|
|
icon: "schedule"
|
|
last: true
|
|
settingAnchor: "bar-clock"
|
|
status: qsTr("Date, icon, background")
|
|
text: qsTr("Clock")
|
|
|
|
onClicked: root.sState.openSubPage(8)
|
|
}
|
|
}
|
|
}
|