kdeconnect-kde/plugins/mprisremote/mprisremoteplayer.h

81 lines
2 KiB
C
Raw Permalink Normal View History

/**
* SPDX-FileCopyrightText: 2018 Nicolas Fella <nicolas.fella@gmx.de>
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#pragma once
#include "albumart_cache.h"
#include <QDBusConnection>
#include <QString>
#include <QUrl>
2019-02-03 00:44:22 +00:00
class NetworkPacket;
class MprisRemotePlugin;
2019-02-03 00:44:22 +00:00
class MprisRemotePlayer : public QObject
{
Q_OBJECT
public:
explicit MprisRemotePlayer(QString id, MprisRemotePlugin *plugin);
2021-10-27 05:53:06 +01:00
~MprisRemotePlayer() override;
void parseNetworkPacket(const NetworkPacket &np);
long position() const;
void setPosition(long position);
void setLocalAlbumArtUrl(const QSharedPointer<LocalFile> &url);
int volume() const;
long length() const;
bool playing() const;
QString title() const;
QString artist() const;
QString album() const;
QString albumArtUrl() const;
QUrl localAlbumArtUrl() const;
QString identity() const;
bool canSeek() const;
bool canPlay() const;
bool canPause() const;
bool canGoPrevious() const;
bool canGoNext() const;
QDBusConnection &dbus();
Q_SIGNALS:
void controlsChanged();
void trackInfoChanged();
void positionChanged();
void volumeChanged();
void playingChanged();
private:
void albumArtFetched(const QString &player, const QString &remoteUrl, const QSharedPointer<LocalFile> &localPath);
private:
QString id;
bool m_playing;
bool m_canPlay;
bool m_canPause;
bool m_canGoPrevious;
bool m_canGoNext;
int m_volume;
long m_length;
long m_lastPosition;
qint64 m_lastPositionTime;
QString m_title;
QString m_artist;
QString m_album;
QString m_albumArtUrl;
// hold a strong reference so that the file doesn't get deleted while in use
QSharedPointer<LocalFile> m_localAlbumArtUrl;
private:
bool m_canSeek;
// Use an unique connection for every player, otherwise we can't distinguish which mpris player is being controlled
QString m_dbusConnectionName;
QDBusConnection m_dbusConnection;
};