blob: 22548278b56b93e8f268a483a6f7a40600bfb5c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
// ================================ // Simple abstraction class between backend renderers
// ================================
// Written by Ken Moore: Feb 26, 2018
// Available under the 3-Clause BSD License
// ================================
#ifndef _LUMINA_PDF_BACKEND_RENDERER_H
#define _LUMINA_PDF_BACKEND_RENDERER_H
#include <QString>
#include <QImage>
#include <QDebug>
#include <QJsonObject>
#include "TextData.h"
#include "Bookmark.h"
class Renderer : public QObject {
Q_OBJECT
private:
int pnum; //number of pages - set on loading document
bool needpass;
QString docpath; //save the path for the currently-loaded document
QString doctitle;
QJsonObject jobj;
int degrees;
QList<Bookmark*> bookmarks;
public:
Renderer();
~Renderer();
bool loadMultiThread();
//Information functions (usually needs to be loaded first)
int numPages(){ return pnum; }
bool needPassword(){ return needpass; }
QString title(){ return doctitle; }
QJsonObject properties() { return jobj; }
int hashSize();
QImage imageHash(int pagenum);
int rotatedDegrees() { return degrees; }
QList<Bookmark*> getBookmarks() { return bookmarks; }
//Main access functions
bool loadDocument(QString path, QString password);
void renderPage(int pagenum, QSize DPI, int degrees=0);
QList<TextData*> searchDocument(QString text, bool matchCase);
void traverseOutline(void *, int);
void handleLink(QString);
void clearHash();
//Makes sure degrees is between 0 and 360 then rotates the matrix and
void setDegrees(int degrees) {
//Mods by 360, but adds and remods because of how C++ treats negative mods
this->degrees = ( ( ( this->degrees + degrees ) % 360 ) + 360 ) % 360;
emit reloadPages(this->degrees);
}
bool supportsExtraFeatures();
signals:
void PageLoaded(int);
void OrigSize(QSizeF);
void reloadPages(int);
void goToPosition(int, float, float);
};
#endif
|