2015-06-18 03:01:01 +01:00
|
|
|
/*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2015 Aleix Pol Gonzalez <aleixpol@kde.org>
|
2015-06-18 03:01:01 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2015-06-18 03:01:01 +01:00
|
|
|
*/
|
|
|
|
|
2023-12-23 16:48:04 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Layouts
|
|
|
|
import org.kde.kirigami as Kirigami
|
2015-06-18 03:01:01 +01:00
|
|
|
|
2016-06-05 21:42:19 +01:00
|
|
|
Kirigami.Page
|
2015-06-18 03:01:01 +01:00
|
|
|
{
|
|
|
|
id: root
|
2016-08-21 12:05:43 +01:00
|
|
|
property QtObject pluginInterface
|
2018-11-17 17:53:38 +00:00
|
|
|
property bool muted: false
|
|
|
|
property int volumeUnmuted
|
|
|
|
property var volume: pluginInterface.volume
|
2019-12-21 07:59:36 +00:00
|
|
|
title: i18nd("kdeconnect-app", "Multimedia Controls")
|
2015-06-18 03:01:01 +01:00
|
|
|
|
2018-11-17 17:53:38 +00:00
|
|
|
onVolumeChanged: {
|
|
|
|
if (muted && volume != 0) {
|
|
|
|
toggleMute()
|
|
|
|
volumeUnmuted = volume
|
|
|
|
} else if (!muted) {
|
|
|
|
volumeUnmuted = volume
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function soundState(volume)
|
|
|
|
{
|
|
|
|
if (volume <= 25) {
|
|
|
|
return "audio-volume-low"
|
|
|
|
} else if (volume <= 75) {
|
|
|
|
return "audio-volume-medium"
|
|
|
|
} else {
|
|
|
|
return "audio-volume-high"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-18 01:50:46 +00:00
|
|
|
function toggleMute()
|
|
|
|
{
|
2018-11-17 17:53:38 +00:00
|
|
|
muted = !muted
|
|
|
|
root.pluginInterface.volume = muted ? 0 : volumeUnmuted
|
|
|
|
}
|
|
|
|
|
2023-06-08 22:12:28 +01:00
|
|
|
function padTimeNumber(n) {
|
|
|
|
return (n < 10) ? ("0" + n) : n;
|
|
|
|
}
|
|
|
|
|
|
|
|
function msToTime(totalTimeMs)
|
2018-12-18 01:50:46 +00:00
|
|
|
{
|
2023-06-08 22:12:28 +01:00
|
|
|
let hours = Math.floor(totalTimeMs/(1000*60*60));
|
|
|
|
let minutes = Math.floor((totalTimeMs-(hours*1000*60*60))/(1000*60));
|
|
|
|
let seconds = Math.floor((totalTimeMs-(minutes*1000*60)-(hours*1000*60*60))/1000);
|
|
|
|
if (hours > 0) {
|
|
|
|
return `${padTimeNumber(hours)}:${padTimeNumber(minutes)}:${padTimeNumber(seconds)}`;
|
2018-12-18 01:50:46 +00:00
|
|
|
} else {
|
2023-06-08 22:12:28 +01:00
|
|
|
return `${padTimeNumber(minutes)}:${padTimeNumber(seconds)}`;
|
2018-12-18 01:50:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-01 23:18:22 +01:00
|
|
|
Kirigami.PlaceholderMessage {
|
2018-07-12 14:22:29 +01:00
|
|
|
id: noPlayersText
|
2024-03-12 14:26:37 +00:00
|
|
|
// FIXME: not accessible. screen readers won't read this.
|
|
|
|
// https://invent.kde.org/frameworks/kirigami/-/merge_requests/1482
|
2019-12-21 07:59:36 +00:00
|
|
|
text: i18nd("kdeconnect-app", "No players available")
|
2018-07-12 14:22:29 +01:00
|
|
|
anchors.centerIn: parent
|
|
|
|
visible: pluginInterface.playerList.length == 0
|
|
|
|
}
|
|
|
|
|
2016-06-05 21:42:19 +01:00
|
|
|
ColumnLayout
|
|
|
|
{
|
|
|
|
anchors.fill: parent
|
2018-07-12 14:22:29 +01:00
|
|
|
visible: !noPlayersText.visible
|
2015-06-18 03:01:01 +01:00
|
|
|
|
2016-06-05 21:42:19 +01:00
|
|
|
Component.onCompleted: {
|
2016-08-21 12:05:43 +01:00
|
|
|
pluginInterface.requestPlayerList();
|
2016-06-05 21:42:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Item { Layout.fillHeight: true }
|
|
|
|
ComboBox {
|
2015-06-18 03:01:01 +01:00
|
|
|
Layout.fillWidth: true
|
2016-08-21 12:05:43 +01:00
|
|
|
model: root.pluginInterface.playerList
|
|
|
|
onCurrentTextChanged: root.pluginInterface.player = currentText
|
2015-06-18 03:01:01 +01:00
|
|
|
}
|
2018-05-12 17:04:22 +01:00
|
|
|
Label {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: root.pluginInterface.title
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
}
|
|
|
|
Label {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: root.pluginInterface.artist
|
2023-06-07 19:20:21 +01:00
|
|
|
visible: !artistAlbum.visible && root.pluginInterface.artist.length > 0
|
2018-05-12 17:04:22 +01:00
|
|
|
wrapMode: Text.Wrap
|
|
|
|
}
|
|
|
|
Label {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: root.pluginInterface.album
|
2023-06-07 19:20:21 +01:00
|
|
|
visible: !artistAlbum.visible && root.pluginInterface.album.length > 0
|
2018-05-12 17:04:22 +01:00
|
|
|
wrapMode: Text.Wrap
|
|
|
|
}
|
|
|
|
Label {
|
|
|
|
id: artistAlbum
|
|
|
|
Layout.fillWidth: true
|
2019-12-21 07:59:36 +00:00
|
|
|
text: i18nd("kdeconnect-app", "%1 - %2", root.pluginInterface.artist, root.pluginInterface.album)
|
2023-06-07 19:20:21 +01:00
|
|
|
visible: root.pluginInterface.album.length > 0 && root.pluginInterface.artist.length > 0
|
2018-05-12 17:04:22 +01:00
|
|
|
wrapMode: Text.Wrap
|
2015-07-17 16:20:06 +01:00
|
|
|
}
|
2016-06-05 21:42:19 +01:00
|
|
|
RowLayout {
|
2015-07-17 16:20:06 +01:00
|
|
|
Layout.fillWidth: true
|
2016-06-05 21:42:19 +01:00
|
|
|
Button {
|
|
|
|
Layout.fillWidth: true
|
2018-06-08 00:58:50 +01:00
|
|
|
icon.name: "media-skip-backward"
|
2016-08-21 12:05:43 +01:00
|
|
|
onClicked: root.pluginInterface.sendAction("Previous")
|
2016-06-05 21:42:19 +01:00
|
|
|
}
|
|
|
|
Button {
|
|
|
|
Layout.fillWidth: true
|
2018-06-08 00:58:50 +01:00
|
|
|
icon.name: root.pluginInterface.isPlaying ? "media-playback-pause" : "media-playback-start"
|
2016-08-21 12:05:43 +01:00
|
|
|
onClicked: root.pluginInterface.sendAction("PlayPause");
|
2016-06-05 21:42:19 +01:00
|
|
|
}
|
|
|
|
Button {
|
|
|
|
Layout.fillWidth: true
|
2018-06-08 00:58:50 +01:00
|
|
|
icon.name: "media-skip-forward"
|
2016-08-21 12:05:43 +01:00
|
|
|
onClicked: root.pluginInterface.sendAction("Next")
|
2016-06-05 21:42:19 +01:00
|
|
|
}
|
2015-06-18 03:01:01 +01:00
|
|
|
}
|
2018-12-18 01:50:46 +00:00
|
|
|
RowLayout {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Label {
|
2023-06-08 22:12:28 +01:00
|
|
|
text: msToTime(positionIndicator.item.value)
|
2018-12-18 01:50:46 +00:00
|
|
|
}
|
|
|
|
|
2019-07-17 22:19:53 +01:00
|
|
|
MprisSlider {
|
|
|
|
id: positionIndicator
|
|
|
|
plugin: root.pluginInterface
|
|
|
|
Layout.fillWidth: true
|
2018-12-18 01:50:46 +00:00
|
|
|
}
|
2019-07-17 22:19:53 +01:00
|
|
|
|
2018-12-18 01:50:46 +00:00
|
|
|
Label {
|
2023-06-08 22:12:28 +01:00
|
|
|
text: msToTime(root.pluginInterface.length)
|
2018-12-18 01:50:46 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-05 21:42:19 +01:00
|
|
|
RowLayout {
|
2015-06-18 03:01:01 +01:00
|
|
|
Layout.fillWidth: true
|
2018-11-17 17:53:38 +00:00
|
|
|
Button {
|
|
|
|
id: muteButton
|
2020-07-17 00:48:20 +01:00
|
|
|
icon.name: muted ? "audio-volume-muted" : soundState(root.pluginInterface.volume)
|
2018-11-17 17:53:38 +00:00
|
|
|
onClicked: toggleMute()
|
|
|
|
}
|
2016-06-05 21:42:19 +01:00
|
|
|
Slider {
|
2018-11-17 17:53:38 +00:00
|
|
|
id: volumeSlider
|
|
|
|
value: volumeUnmuted
|
|
|
|
to: 99
|
|
|
|
enabled: !muted
|
2016-06-05 21:42:19 +01:00
|
|
|
Layout.fillWidth: true
|
2018-11-17 17:53:38 +00:00
|
|
|
onValueChanged: {
|
|
|
|
volumeUnmuted = value
|
|
|
|
root.pluginInterface.volume = value
|
|
|
|
}
|
2016-06-05 21:42:19 +01:00
|
|
|
}
|
2015-06-18 03:01:01 +01:00
|
|
|
}
|
2016-06-05 21:42:19 +01:00
|
|
|
Item { Layout.fillHeight: true }
|
2015-06-18 03:01:01 +01:00
|
|
|
}
|
2018-11-17 17:53:38 +00:00
|
|
|
|
|
|
|
Component.onCompleted: volumeUnmuted = root.pluginInterface.volume
|
2015-06-18 03:01:01 +01:00
|
|
|
}
|