400c800deb
Include a page that allows (de)selecting and configuring plugins This is one of the last missing pieces for feature parity with the KCM.
58 lines
1.3 KiB
C++
58 lines
1.3 KiB
C++
/**
|
|
* SPDX-FileCopyrightText: 2019 Nicolas Fella <nicolas.fella@gmx.de>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#ifndef PLUGINMODEL
|
|
#define PLUGINMODEL
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include <KPluginInfo>
|
|
|
|
#include "interfaces/dbusinterfaces.h"
|
|
#include <KSharedConfig>
|
|
|
|
class KDECONNECTINTERFACES_EXPORT PluginModel
|
|
: public QAbstractListModel
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(QString deviceId READ deviceId WRITE setDeviceId)
|
|
|
|
public:
|
|
|
|
enum ExtraRoles {
|
|
IconRole = Qt::UserRole + 1,
|
|
IdRole,
|
|
ConfigSourceRole
|
|
};
|
|
|
|
Q_ENUM(ExtraRoles)
|
|
|
|
explicit PluginModel(QObject *parent = nullptr);
|
|
~PluginModel() override;
|
|
|
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
QHash<int, QByteArray> roleNames() const override;
|
|
void setDeviceId(const QString& deviceId);
|
|
QString deviceId();
|
|
|
|
Q_SIGNALS:
|
|
void deviceIdChanged(const QString& value);
|
|
void rowsChanged();
|
|
|
|
|
|
private:
|
|
QList<KPluginInfo> m_plugins;
|
|
QString m_deviceId;
|
|
KSharedConfigPtr m_config;
|
|
|
|
};
|
|
|
|
|
|
#endif // KPLUGINSELECTOR_P_H
|
|
|
|
|