2015-06-18 03:01:01 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2015 Aleix Pol Gonzalez <aleixpol@kde.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License or (at your option) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import QtQuick 2.2
|
2018-06-08 00:58:50 +01:00
|
|
|
import QtQuick.Controls 2.2
|
2015-07-22 11:05:16 +01:00
|
|
|
import QtQuick.Layouts 1.1
|
2017-05-09 10:41:55 +01:00
|
|
|
import org.kde.kirigami 2.0 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
|
2016-06-05 21:42:19 +01:00
|
|
|
title: i18n("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"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleMute() {
|
|
|
|
muted = !muted
|
|
|
|
root.pluginInterface.volume = muted ? 0 : volumeUnmuted
|
|
|
|
muteButton.icon.name = muted ? "audio-volume-muted" : soundState(root.pluginInterface.volume)
|
|
|
|
}
|
|
|
|
|
2018-07-12 14:22:29 +01:00
|
|
|
Label {
|
|
|
|
id: noPlayersText
|
|
|
|
text: i18n("No players available")
|
|
|
|
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
|
|
|
}
|
2016-06-05 21:42:19 +01:00
|
|
|
Label {
|
2018-05-12 17:04:22 +01:00
|
|
|
id: nowPlaying
|
2015-06-18 03:01:01 +01:00
|
|
|
Layout.fillWidth: true
|
2016-08-21 12:05:43 +01:00
|
|
|
text: root.pluginInterface.nowPlaying
|
2018-05-12 17:04:22 +01:00
|
|
|
visible: root.pluginInterface.title.length == 0
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
}
|
|
|
|
Label {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: root.pluginInterface.title
|
|
|
|
visible: !nowPlaying.visible
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
}
|
|
|
|
Label {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: root.pluginInterface.artist
|
|
|
|
visible: !nowPlaying.visible && !artistAlbum.visible && root.pluginInterface.artist.length > 0
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
}
|
|
|
|
Label {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: root.pluginInterface.album
|
|
|
|
visible: !nowPlaying.visible && !artistAlbum.visible && root.pluginInterface.album.length > 0
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
}
|
|
|
|
Label {
|
|
|
|
id: artistAlbum
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: i18n("%1 - %2", root.pluginInterface.artist, root.pluginInterface.album)
|
|
|
|
visible: !nowPlaying.visible && root.pluginInterface.album.length > 0 && root.pluginInterface.artist.length > 0
|
|
|
|
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
|
|
|
}
|
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
|
|
|
|
icon.name: soundState(root.pluginInterface.volume)
|
|
|
|
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
|
|
|
|
muteButton.icon.name = soundState(root.pluginInterface.volume)
|
|
|
|
}
|
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
|
|
|
}
|