heugh jazz

This commit is contained in:
Dark Steveneq
2025-10-19 02:58:12 +02:00
parent 5c9b0ec49a
commit 902693bd40
9 changed files with 358 additions and 55 deletions

View File

@@ -5,6 +5,8 @@ import QtQuick.Controls.Basic 6.8
Slider {
snapMode: Slider.SnapAlways
property real buffered
implicitWidth: 130
implicitHeight: 20
@@ -26,6 +28,17 @@ Slider {
background: Rectangle {
color: "#555"
radius: 5
Rectangle {
anchors.left: parent.left
anchors.top: parent.top
anchors.bottom: parent.bottom
visible: parent.parent.buffered != 0
width: parent.width * parent.parent.buffered
color: "#888"
radius: 5
}
}
handle: Rectangle {