40 lines
832 B
C++
40 lines
832 B
C++
/**
|
|
* SPDX-FileCopyrightText: Tobias Fella <fella@posteo.de>
|
|
*
|
|
* SPDX-LicenseIdentifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include <csapi/definitions/client_device.h>
|
|
|
|
using namespace Quotient;
|
|
|
|
class DevicesModel : public QAbstractListModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum Roles {
|
|
Id,
|
|
DisplayName,
|
|
LastIp,
|
|
LastTimestamp,
|
|
};
|
|
Q_ENUM(Roles);
|
|
|
|
DevicesModel(QObject *parent = nullptr);
|
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
QHash<int, QByteArray> roleNames() const override;
|
|
int rowCount(const QModelIndex &parent) const override;
|
|
|
|
Q_INVOKABLE void logout(int index, const QString &password);
|
|
Q_INVOKABLE void setName(int index, const QString &name);
|
|
|
|
private:
|
|
QVector<Quotient::Device> m_devices;
|
|
};
|