You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.7 KiB
67 lines
1.7 KiB
/* |
|
SPDX-FileCopyrightText: 2018 Chinmoy Ranjan Pradhan <chinmoyrp65@gmail.com |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#ifndef SIGNATUREMODEL_H |
|
#define SIGNATUREMODEL_H |
|
|
|
#include <QAbstractItemModel> |
|
|
|
namespace Okular |
|
{ |
|
class Document; |
|
} |
|
|
|
class SignatureModelPrivate; |
|
|
|
class SignatureModel : public QAbstractItemModel |
|
{ |
|
Q_OBJECT |
|
|
|
Q_PROPERTY(int count READ count NOTIFY countChanged) |
|
|
|
public: |
|
enum { |
|
FormRole = Qt::UserRole + 1000, |
|
PageRole, |
|
ReadableStatusRole, |
|
ReadableModificationSummary, |
|
SignerNameRole, |
|
SigningTimeRole, |
|
SigningLocationRole, |
|
SigningReasonRole, |
|
CertificateModelRole, |
|
SignatureRevisionIndexRole, |
|
IsUnsignedSignatureRole |
|
}; |
|
|
|
explicit SignatureModel(Okular::Document *doc, QObject *parent = nullptr); |
|
~SignatureModel() override; |
|
|
|
int columnCount(const QModelIndex &parent = QModelIndex()) const override; |
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; |
|
bool hasChildren(const QModelIndex &parent = QModelIndex()) const override; |
|
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override; |
|
QModelIndex parent(const QModelIndex &index) const override; |
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override; |
|
|
|
int count() const |
|
{ |
|
return rowCount(); |
|
} |
|
|
|
QHash<int, QByteArray> roleNames() const override; |
|
|
|
Q_INVOKABLE bool saveSignedVersion(int signatureRevisionIndex, const QUrl &filePath) const; |
|
|
|
Q_SIGNALS: |
|
void countChanged(); |
|
|
|
private: |
|
Q_DECLARE_PRIVATE(SignatureModel) |
|
QScopedPointer<SignatureModelPrivate> d_ptr; |
|
}; |
|
|
|
#endif
|
|
|