mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
86 lines
3.1 KiB
QML
86 lines
3.1 KiB
QML
import "root:/modules/common"
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import Quickshell
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
spacing: 0
|
|
required property var tabButtonList // Something like [{"icon": "notifications", "name": qsTr("Notifications")}, {"icon": "volume_up", "name": qsTr("Volume mixer")}]
|
|
required property var externalTrackedTab
|
|
property bool enableIndicatorAnimation: false
|
|
signal currentIndexChanged(int index)
|
|
|
|
TabBar {
|
|
id: tabBar
|
|
Layout.fillWidth: true
|
|
currentIndex: root.externalTrackedTab
|
|
onCurrentIndexChanged: root.onCurrentIndexChanged(currentIndex)
|
|
|
|
background: Item {
|
|
WheelHandler {
|
|
onWheel: (event) => {
|
|
if (event.angleDelta.y < 0)
|
|
tabBar.currentIndex = Math.min(tabBar.currentIndex + 1, root.tabButtonList.length - 1)
|
|
else if (event.angleDelta.y > 0)
|
|
tabBar.currentIndex = Math.max(tabBar.currentIndex - 1, 0)
|
|
}
|
|
acceptedDevices: PointerDevice.Mouse | PointerDevice.TouchPad
|
|
}
|
|
}
|
|
|
|
Repeater {
|
|
model: root.tabButtonList
|
|
delegate: PrimaryTabButton {
|
|
selected: (index == root.externalTrackedTab)
|
|
buttonText: modelData.name
|
|
buttonIcon: modelData.icon
|
|
}
|
|
}
|
|
}
|
|
|
|
Item { // Tab indicator
|
|
id: tabIndicator
|
|
Layout.fillWidth: true
|
|
height: 3
|
|
Connections {
|
|
target: root
|
|
function onExternalTrackedTabChanged() {
|
|
root.enableIndicatorAnimation = true
|
|
}
|
|
}
|
|
Rectangle {
|
|
color: Appearance.m3colors.m3primary
|
|
radius: Appearance.rounding.full
|
|
z: 2
|
|
|
|
anchors.fill: parent
|
|
anchors.leftMargin: {
|
|
const tabCount = root.tabButtonList.length
|
|
const targetWidth = tabBar.contentItem.children[0].children[tabBar.currentIndex].tabContentWidth
|
|
const fullTabSize = root.width / tabCount;
|
|
return fullTabSize * root.externalTrackedTab + (fullTabSize - targetWidth) / 2;
|
|
}
|
|
anchors.rightMargin: {
|
|
const tabCount = root.tabButtonList.length
|
|
const targetWidth = tabBar.contentItem.children[0].children[tabBar.currentIndex].tabContentWidth
|
|
const fullTabSize = root.width / tabCount;
|
|
return fullTabSize * (tabCount - root.externalTrackedTab - 1) + (fullTabSize - targetWidth) / 2;
|
|
}
|
|
Behavior on anchors.leftMargin {
|
|
enabled: root.enableIndicatorAnimation
|
|
SmoothedAnimation {
|
|
velocity: Appearance.animation.positionShift.velocity
|
|
}
|
|
}
|
|
Behavior on anchors.rightMargin {
|
|
enabled: root.enableIndicatorAnimation
|
|
SmoothedAnimation {
|
|
velocity: Appearance.animation.positionShift.velocity
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|