71 lines
1.8 KiB
QML
71 lines
1.8 KiB
QML
pragma ComponentBehavior: Bound
|
|
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Quickshell
|
|
import Quickshell.Services.Pipewire
|
|
import qs.Modules.Settings.Common
|
|
import qs.Helpers
|
|
import qs.Components
|
|
import ZShell.Config
|
|
import qs.Daemons
|
|
import qs.Services
|
|
|
|
PageBase {
|
|
id: root
|
|
|
|
isSubPage: true
|
|
title: qsTr("App volumes")
|
|
|
|
ColumnLayout {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.top: parent.top
|
|
spacing: Tokens.spacing.extraSmall / 2
|
|
width: root.cappedWidth
|
|
|
|
CustomText {
|
|
Layout.bottomMargin: Tokens.spacing.small
|
|
Layout.fillWidth: true
|
|
Layout.leftMargin: Tokens.padding.small
|
|
color: Colors.palette.m3outline
|
|
font.pointSize: Tokens.font.size.small
|
|
text: qsTr("Adjust the volume of individual apps currently playing audio.")
|
|
wrapMode: Text.WordWrap
|
|
}
|
|
|
|
ItemList {
|
|
id: streamList
|
|
|
|
color: list.count === 0 ? Colors.tPalette.m3surfaceContainer : "transparent"
|
|
first: true
|
|
last: true
|
|
list.spacing: Tokens.spacing.extraSmall / 2
|
|
placeholderIcon: "music_off"
|
|
placeholderText: qsTr("No apps playing audio")
|
|
showList: true
|
|
|
|
delegate: SliderRow {
|
|
id: stream
|
|
|
|
required property int index
|
|
required property PwNode modelData
|
|
|
|
anchors.left: streamList.list.contentItem.left
|
|
anchors.right: streamList.list.contentItem.right
|
|
enabled: !stream.modelData?.audio?.muted
|
|
first: index === 0
|
|
icon: Icons.getVolumeIcon(stream.modelData?.audio?.volume ?? 0, stream.modelData?.audio?.muted ?? false)
|
|
label: Audio.getStreamName(stream.modelData)
|
|
last: index === streamList.list.count - 1
|
|
value: stream.modelData?.audio?.volume ?? 0
|
|
valueLabel: Math.round(value * 100) + "%"
|
|
|
|
onMoved: v => Audio.setStreamVolume(stream.modelData, v)
|
|
}
|
|
model: ScriptModel {
|
|
values: [...Audio.streams]
|
|
}
|
|
}
|
|
}
|
|
}
|