mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-05 21:15:38 -05:00
295 lines
10 KiB
QML
295 lines
10 KiB
QML
import QtQuick
|
|
import qs.Common
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
DankOSD {
|
|
id: root
|
|
|
|
readonly property bool useVertical: isVerticalLayout
|
|
|
|
osdWidth: useVertical ? (40 + Theme.spacingS * 2) : Math.min(260, Screen.width - Theme.spacingM * 2)
|
|
osdHeight: useVertical ? Math.min(260, Screen.height - Theme.spacingM * 2) : (40 + Theme.spacingS * 2)
|
|
autoHideInterval: 3000
|
|
enableMouseInteraction: true
|
|
|
|
Connections {
|
|
target: AudioService.sink && AudioService.sink.audio ? AudioService.sink.audio : null
|
|
|
|
function onVolumeChanged() {
|
|
if (SettingsData.osdVolumeEnabled) {
|
|
root.show();
|
|
}
|
|
}
|
|
|
|
function onMutedChanged() {
|
|
if (SettingsData.osdVolumeEnabled) {
|
|
root.show();
|
|
}
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: AudioService
|
|
|
|
function onSinkChanged() {
|
|
if (root.shouldBeVisible && SettingsData.osdVolumeEnabled) {
|
|
root.show();
|
|
}
|
|
}
|
|
}
|
|
|
|
content: Loader {
|
|
anchors.fill: parent
|
|
sourceComponent: useVertical ? verticalContent : horizontalContent
|
|
}
|
|
|
|
Component {
|
|
id: horizontalContent
|
|
|
|
Item {
|
|
property int gap: Theme.spacingS
|
|
|
|
anchors.centerIn: parent
|
|
width: parent.width - Theme.spacingS * 2
|
|
height: 40
|
|
|
|
Rectangle {
|
|
width: Theme.iconSize
|
|
height: Theme.iconSize
|
|
radius: Theme.iconSize / 2
|
|
color: "transparent"
|
|
x: parent.gap
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
DankIcon {
|
|
anchors.centerIn: parent
|
|
name: AudioService.sink && AudioService.sink.audio && AudioService.sink.audio.muted ? "volume_off" : "volume_up"
|
|
size: Theme.iconSize
|
|
color: muteButton.containsMouse ? Theme.primary : Theme.surfaceText
|
|
}
|
|
|
|
MouseArea {
|
|
id: muteButton
|
|
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: {
|
|
AudioService.toggleMute();
|
|
}
|
|
onContainsMouseChanged: {
|
|
setChildHovered(containsMouse || volumeSlider.containsMouse);
|
|
}
|
|
}
|
|
}
|
|
|
|
DankSlider {
|
|
id: volumeSlider
|
|
|
|
readonly property real actualVolumePercent: AudioService.sink && AudioService.sink.audio ? Math.round(AudioService.sink.audio.volume * 100) : 0
|
|
readonly property real displayPercent: actualVolumePercent
|
|
|
|
width: parent.width - Theme.iconSize - parent.gap * 3
|
|
height: 40
|
|
x: parent.gap * 2 + Theme.iconSize
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
minimum: 0
|
|
maximum: 100
|
|
enabled: AudioService.sink && AudioService.sink.audio
|
|
showValue: true
|
|
unit: "%"
|
|
thumbOutlineColor: Theme.surfaceContainer
|
|
valueOverride: displayPercent
|
|
alwaysShowValue: SettingsData.osdAlwaysShowValue
|
|
|
|
Component.onCompleted: {
|
|
if (AudioService.sink && AudioService.sink.audio) {
|
|
value = Math.min(100, Math.round(AudioService.sink.audio.volume * 100));
|
|
}
|
|
}
|
|
|
|
onSliderValueChanged: newValue => {
|
|
if (AudioService.sink && AudioService.sink.audio) {
|
|
SessionData.suppressOSDTemporarily();
|
|
AudioService.sink.audio.volume = newValue / 100;
|
|
resetHideTimer();
|
|
}
|
|
}
|
|
|
|
onContainsMouseChanged: {
|
|
setChildHovered(containsMouse || muteButton.containsMouse);
|
|
}
|
|
|
|
Connections {
|
|
target: AudioService.sink && AudioService.sink.audio ? AudioService.sink.audio : null
|
|
|
|
function onVolumeChanged() {
|
|
if (volumeSlider && !volumeSlider.pressed) {
|
|
volumeSlider.value = Math.min(100, Math.round(AudioService.sink.audio.volume * 100));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: verticalContent
|
|
|
|
Item {
|
|
anchors.fill: parent
|
|
property int gap: Theme.spacingS
|
|
|
|
Rectangle {
|
|
width: Theme.iconSize
|
|
height: Theme.iconSize
|
|
radius: Theme.iconSize / 2
|
|
color: "transparent"
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
y: gap
|
|
|
|
DankIcon {
|
|
anchors.centerIn: parent
|
|
name: AudioService.sink && AudioService.sink.audio && AudioService.sink.audio.muted ? "volume_off" : "volume_up"
|
|
size: Theme.iconSize
|
|
color: muteButtonVert.containsMouse ? Theme.primary : Theme.surfaceText
|
|
}
|
|
|
|
MouseArea {
|
|
id: muteButtonVert
|
|
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: {
|
|
AudioService.toggleMute();
|
|
}
|
|
onContainsMouseChanged: {
|
|
setChildHovered(containsMouse || vertSliderArea.containsMouse);
|
|
}
|
|
}
|
|
}
|
|
|
|
Item {
|
|
id: vertSlider
|
|
width: 12
|
|
height: parent.height - Theme.iconSize - gap * 3 - 24
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
y: gap * 2 + Theme.iconSize
|
|
|
|
property bool dragging: false
|
|
property int value: AudioService.sink && AudioService.sink.audio ? Math.min(100, Math.round(AudioService.sink.audio.volume * 100)) : 0
|
|
|
|
Rectangle {
|
|
id: vertTrack
|
|
width: parent.width
|
|
height: parent.height
|
|
anchors.centerIn: parent
|
|
color: Theme.outline
|
|
radius: Theme.cornerRadius
|
|
}
|
|
|
|
Rectangle {
|
|
id: vertFill
|
|
width: parent.width
|
|
height: (vertSlider.value / 100) * parent.height
|
|
anchors.bottom: parent.bottom
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
color: Theme.primary
|
|
radius: Theme.cornerRadius
|
|
}
|
|
|
|
Rectangle {
|
|
id: vertHandle
|
|
width: 24
|
|
height: 8
|
|
radius: Theme.cornerRadius
|
|
y: {
|
|
const ratio = vertSlider.value / 100;
|
|
const travel = parent.height - height;
|
|
return Math.max(0, Math.min(travel, travel * (1 - ratio)));
|
|
}
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
color: Theme.primary
|
|
border.width: 3
|
|
border.color: Theme.surfaceContainer
|
|
}
|
|
|
|
MouseArea {
|
|
id: vertSliderArea
|
|
anchors.fill: parent
|
|
anchors.margins: -12
|
|
enabled: AudioService.sink && AudioService.sink.audio
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
onContainsMouseChanged: {
|
|
setChildHovered(containsMouse || muteButtonVert.containsMouse);
|
|
}
|
|
|
|
onPressed: mouse => {
|
|
vertSlider.dragging = true;
|
|
updateVolume(mouse);
|
|
}
|
|
|
|
onReleased: {
|
|
vertSlider.dragging = false;
|
|
}
|
|
|
|
onPositionChanged: mouse => {
|
|
if (pressed) {
|
|
updateVolume(mouse);
|
|
}
|
|
}
|
|
|
|
onClicked: mouse => {
|
|
updateVolume(mouse);
|
|
}
|
|
|
|
function updateVolume(mouse) {
|
|
if (AudioService.sink && AudioService.sink.audio) {
|
|
const ratio = 1.0 - (mouse.y / height);
|
|
const volume = Math.max(0, Math.min(100, Math.round(ratio * 100)));
|
|
SessionData.suppressOSDTemporarily();
|
|
AudioService.sink.audio.volume = volume / 100;
|
|
resetHideTimer();
|
|
}
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: AudioService.sink && AudioService.sink.audio ? AudioService.sink.audio : null
|
|
|
|
function onVolumeChanged() {
|
|
if (!vertSlider.dragging) {
|
|
vertSlider.value = Math.min(100, Math.round(AudioService.sink.audio.volume * 100));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
StyledText {
|
|
anchors.bottom: parent.bottom
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.bottomMargin: gap
|
|
text: vertSlider.value + "%"
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.surfaceText
|
|
visible: SettingsData.osdAlwaysShowValue
|
|
}
|
|
}
|
|
}
|
|
|
|
onOsdShown: {
|
|
if (AudioService.sink && AudioService.sink.audio && contentLoader.item && contentLoader.item.item) {
|
|
if (!useVertical) {
|
|
const slider = contentLoader.item.item.children[0].children[1];
|
|
if (slider && slider.value !== undefined) {
|
|
slider.value = Math.min(100, Math.round(AudioService.sink.audio.volume * 100));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|