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.
51 lines
1.3 KiB
51 lines
1.3 KiB
/* |
|
SPDX-FileCopyrightText: 2007 Tobias Koenig <tokoe@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#ifndef _OKULAR_GENERATOR_PLUCKER_H_ |
|
#define _OKULAR_GENERATOR_PLUCKER_H_ |
|
|
|
#include <core/document.h> |
|
#include <core/generator.h> |
|
|
|
#include <QTextBlock> |
|
|
|
#include "qunpluck.h" |
|
|
|
class QTextDocument; |
|
|
|
class PluckerGenerator : public Okular::Generator |
|
{ |
|
Q_OBJECT |
|
Q_INTERFACES(Okular::Generator) |
|
|
|
public: |
|
PluckerGenerator(QObject *parent, const QVariantList &args); |
|
~PluckerGenerator() override; |
|
|
|
// [INHERITED] load a document and fill up the pagesVector |
|
bool loadDocument(const QString &fileName, QVector<Okular::Page *> &pagesVector) override; |
|
|
|
// [INHERITED] document information |
|
Okular::DocumentInfo generateDocumentInfo(const QSet<Okular::DocumentInfo::Key> &keys) const override; |
|
|
|
// [INHERITED] perform actions on document / pages |
|
QImage image(Okular::PixmapRequest *request) override; |
|
|
|
// [INHERITED] text exporting |
|
Okular::ExportFormat::List exportFormats() const override; |
|
bool exportTo(const QString &fileName, const Okular::ExportFormat &format) override; |
|
|
|
protected: |
|
bool doCloseDocument() override; |
|
|
|
private: |
|
QList<QTextDocument *> mPages; |
|
QSet<int> mLinkAdded; |
|
Link::List mLinks; |
|
Okular::DocumentInfo mDocumentInfo; |
|
}; |
|
|
|
#endif
|
|
|