okular/generators/kimgio/generator_kimgio.h
Albert Astals Cid 19d98d6a74 Run clang-format
find . \( -name "*.cpp" -or -name "*.h"  -or -name "*.c"  -or -name "*.cc" \) -exec clang-format -i {} \;

If you reached this file doing a git blame, please see README.clang-format (added 2 commits in the future of this one)
2020-07-11 09:17:33 +02:00

54 lines
2.1 KiB
C++

/***************************************************************************
* Copyright (C) 2005 by Albert Astals Cid <aacid@kde.org> *
* Copyright (C) 2017 Klarälvdalens Datakonsult AB, a KDAB Group *
* company, info@kdab.com. Work sponsored by the *
* LiMux project of the city of Munich *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef _OKULAR_GENERATOR_KIMGIO_H_
#define _OKULAR_GENERATOR_KIMGIO_H_
#include <core/document.h>
#include <core/generator.h>
#include <QImage>
class KIMGIOGenerator : public Okular::Generator
{
Q_OBJECT
Q_INTERFACES(Okular::Generator)
public:
KIMGIOGenerator(QObject *parent, const QVariantList &args);
~KIMGIOGenerator() override;
// [INHERITED] load a document and fill up the pagesVector
bool loadDocument(const QString &fileName, QVector<Okular::Page *> &pagesVector) override;
bool loadDocumentFromData(const QByteArray &fileData, QVector<Okular::Page *> &pagesVector) override;
SwapBackingFileResult swapBackingFile(QString const &newFileName, QVector<Okular::Page *> &newPagesVector) override;
// [INHERITED] print document using already configured kprinter
bool print(QPrinter &printer) override;
// [INHERITED] document information
Okular::DocumentInfo generateDocumentInfo(const QSet<Okular::DocumentInfo::Key> &keys) const override;
protected:
bool doCloseDocument() override;
QImage image(Okular::PixmapRequest *request) override;
private:
bool loadDocumentInternal(const QByteArray &fileData, const QString &fileName, QVector<Okular::Page *> &pagesVector);
private:
QImage m_img;
Okular::DocumentInfo docInfo;
};
#endif