2018-11-07 19:54:00 +00:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2018 Nicolas Fella <nicolas.fella@gmx.de>
|
2018-11-07 19:54:00 +00: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
|
2018-11-07 19:54:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef REMOTESINKSMODEL_H
|
|
|
|
#define REMOTESINKSMODEL_H
|
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
|
2019-04-30 18:03:24 +01:00
|
|
|
#include "dbusinterfaces.h"
|
2018-11-07 19:54:00 +00:00
|
|
|
|
|
|
|
struct Sink {
|
|
|
|
QString name;
|
|
|
|
QString description;
|
|
|
|
int maxVolume;
|
|
|
|
int volume;
|
|
|
|
bool muted;
|
|
|
|
};
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT RemoteSinksModel : public QAbstractListModel
|
2018-11-07 19:54:00 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QString deviceId READ deviceId WRITE setDeviceId NOTIFY deviceIdChanged)
|
|
|
|
|
|
|
|
public:
|
2024-11-05 22:35:14 +00:00
|
|
|
enum ModelRoles {
|
|
|
|
NameRole,
|
|
|
|
DescriptionRole,
|
|
|
|
MaxVolumeRole,
|
|
|
|
VolumeRole,
|
|
|
|
MutedRole,
|
|
|
|
};
|
2022-09-10 22:23:52 +01:00
|
|
|
|
|
|
|
explicit RemoteSinksModel(QObject *parent = nullptr);
|
2018-11-07 19:54:00 +00:00
|
|
|
~RemoteSinksModel() override;
|
|
|
|
|
|
|
|
QString deviceId() const;
|
2022-09-10 22:23:52 +01:00
|
|
|
void setDeviceId(const QString &deviceId);
|
2018-11-07 19:54:00 +00:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role) override;
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
2018-11-07 19:54:00 +00:00
|
|
|
|
|
|
|
QHash<int, QByteArray> roleNames() const override;
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void refreshSinkList();
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
2022-09-10 22:23:52 +01:00
|
|
|
void deviceIdChanged(const QString &value);
|
2018-11-07 19:54:00 +00:00
|
|
|
void rowsChanged();
|
|
|
|
|
|
|
|
private:
|
2022-09-10 22:23:52 +01:00
|
|
|
RemoteSystemVolumeDbusInterface *m_dbusInterface;
|
2020-08-06 22:15:51 +01:00
|
|
|
QVector<Sink> m_sinkList;
|
2018-11-07 19:54:00 +00:00
|
|
|
QString m_deviceId;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DEVICESMODEL_H
|