mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-02 15:45:21 +00:00

如果没有提供默认专辑和歌手信息图标等返回一个默认的图标和文字 如 firefox 播放酷狗音乐只有一个title,其他歌曲信息都没的 Issue: https://github.com/linuxdeepin/developer-center/issues/5786,https://github.com/linuxdeepin/developer-center/issues/4331
146 lines
4.0 KiB
C++
146 lines
4.0 KiB
C++
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#ifndef MEDIAPLAYERMODEL_H
|
|
#define MEDIAPLAYERMODEL_H
|
|
|
|
#include <QObject>
|
|
#include <QDBusAbstractInterface>
|
|
#include <QDBusPendingReply>
|
|
|
|
typedef QMap<QString, QVariant> Dict;
|
|
Q_DECLARE_METATYPE(Dict)
|
|
|
|
class QDBusMessage;
|
|
class QDBusConnection;
|
|
class MediaPlayerInterface;
|
|
|
|
class MediaPlayerModel : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum PlayStatus {
|
|
Unknow = 0,
|
|
Play,
|
|
Pause,
|
|
Stop
|
|
};
|
|
|
|
public:
|
|
explicit MediaPlayerModel(QObject *parent = nullptr);
|
|
~MediaPlayerModel();
|
|
|
|
bool isActived();
|
|
bool canGoNext();
|
|
bool canGoPrevious();
|
|
bool canPause();
|
|
|
|
PlayStatus status();
|
|
const QString name();
|
|
const QString iconUrl();
|
|
const QString album();
|
|
const QString artist();
|
|
|
|
void setStatus(const PlayStatus &stat);
|
|
void playNext();
|
|
|
|
Q_SIGNALS:
|
|
void startStop(bool);
|
|
void statusChanged(const PlayStatus &);
|
|
void metadataChanged();
|
|
|
|
private:
|
|
void initMediaPlayer();
|
|
PlayStatus convertStatus(const QString &stat);
|
|
void onServiceDiscovered(const QString &service);
|
|
void onServiceDisappears(const QString &service);
|
|
void updateMetadata();
|
|
|
|
private:
|
|
bool m_isActived;
|
|
QStringList m_mprisServices;
|
|
QString m_name;
|
|
QString m_icon;
|
|
QString m_album;
|
|
QString m_artist;
|
|
MediaPlayerInterface *m_mediaInter;
|
|
};
|
|
|
|
class MediaPlayerInterface : public QDBusAbstractInterface
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MediaPlayerInterface(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = nullptr);
|
|
~MediaPlayerInterface();
|
|
|
|
public:
|
|
inline QDBusPendingReply<> Play() {
|
|
QList<QVariant> argumentList;
|
|
return asyncCallWithArgumentList(QStringLiteral("Play"), argumentList);
|
|
}
|
|
|
|
inline QDBusPendingReply<> Stop() {
|
|
QList<QVariant> argumentList;
|
|
return asyncCallWithArgumentList(QStringLiteral("Stop"), argumentList);
|
|
}
|
|
|
|
inline QDBusPendingReply<> Pause() {
|
|
QList<QVariant> argumentList;
|
|
return asyncCallWithArgumentList(QStringLiteral("Pause"), argumentList);
|
|
}
|
|
|
|
inline QDBusPendingReply<> Next() {
|
|
QList<QVariant> argumentList;
|
|
return asyncCallWithArgumentList(QStringLiteral("Next"), argumentList);
|
|
}
|
|
|
|
Q_PROPERTY(Dict Metadata READ metadata NOTIFY MetadataChanged)
|
|
inline Dict metadata() const
|
|
{ return qvariant_cast<Dict>(property("Metadata")); }
|
|
|
|
Q_PROPERTY(bool CanControl READ canControl NOTIFY CanControlChanged)
|
|
inline bool canControl() const
|
|
{ return qvariant_cast< bool >(property("CanControl")); }
|
|
|
|
// from dtkwidget dbusmpris.h
|
|
Q_PROPERTY(bool CanShowInUI READ canShowInUI NOTIFY CanShowInUIChanged)
|
|
inline bool canShowInUI() const
|
|
{
|
|
QVariant showInUI = property("CanShowInUI");
|
|
// 属性有效且为假表示不能控制 无效或为真表示可以控制
|
|
return showInUI.isValid() ? showInUI.toBool() : true;
|
|
}
|
|
Q_PROPERTY(bool CanGoNext READ canGoNext NOTIFY CanGoNextChanged)
|
|
inline bool canGoNext() const
|
|
{ return qvariant_cast< bool >(property("CanGoNext")); }
|
|
|
|
Q_PROPERTY(bool CanGoPrevious READ canGoPrevious NOTIFY CanGoPreviousChanged)
|
|
inline bool canGoPrevious() const
|
|
{ return qvariant_cast< bool >(property("CanGoPrevious")); }
|
|
|
|
Q_PROPERTY(bool CanPause READ canPause NOTIFY CanPauseChanged)
|
|
inline bool canPause() const
|
|
{ return qvariant_cast< bool >(property("CanPause")); }
|
|
|
|
Q_PROPERTY(QString PlaybackStatus READ playbackStatus NOTIFY PlaybackStatusChanged)
|
|
inline QString playbackStatus() const
|
|
{ return qvariant_cast< QString >(property("PlaybackStatus")); }
|
|
|
|
Q_SIGNALS:
|
|
void MetadataChanged();
|
|
void CanControlChanged(bool value);
|
|
void CanShowInUIChanged(bool value);
|
|
void CanGoNextChanged();
|
|
void CanGoPreviousChanged();
|
|
void CanPauseChanged();
|
|
void PlaybackStatusChanged();
|
|
|
|
private Q_SLOTS:
|
|
void onPropertyChanged(const QDBusMessage &msg);
|
|
};
|
|
|
|
#endif // MEDIAPLAYERLISTENER_H
|