aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-pdf/mainUI.h
diff options
context:
space:
mode:
authorZackaryWelch <welch.zackary@gmail.com>2018-03-17 17:31:57 -0400
committerZackaryWelch <welch.zackary@gmail.com>2018-03-17 17:31:57 -0400
commit59eba81944d99f7cc1c699609f6ebe36af7db5e8 (patch)
tree3a69819e29021be83838fc6878535185d341f56f /src-qt5/desktop-utils/lumina-pdf/mainUI.h
parentCleanup the printing stuff for Qt 5.9+. (diff)
downloadlumina-59eba81944d99f7cc1c699609f6ebe36af7db5e8.tar.gz
lumina-59eba81944d99f7cc1c699609f6ebe36af7db5e8.tar.bz2
lumina-59eba81944d99f7cc1c699609f6ebe36af7db5e8.zip
Overhaul of MuPDF rendering. Fixed bugs and improved the find highlight system. Moved the cache system to the backend. Reenabled the properties and find edit menu by default.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-pdf/mainUI.h')
-rw-r--r--src-qt5/desktop-utils/lumina-pdf/mainUI.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.h b/src-qt5/desktop-utils/lumina-pdf/mainUI.h
index 74badbfd..af12c33c 100644
--- a/src-qt5/desktop-utils/lumina-pdf/mainUI.h
+++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.h
@@ -47,6 +47,7 @@ private:
QString lastdir;
bool matchCase;
QList<TextData*> results;
+ QList<int> loadingQueue;
int currentHighlight;
//Other Interface elements
@@ -60,7 +61,6 @@ private:
//PDF Page Loading cache variables
Renderer *BACKEND;
- QHash<int, QImage> loadingHash;
void loadPage(int num, MainUI *obj, QSize dpi);
@@ -100,9 +100,6 @@ private slots:
void updateContextMenu();
//void setScroll(bool);
-signals:
- void PageLoaded(int);
-
protected:
void keyPressEvent(QKeyEvent*);
void wheelEvent(QWheelEvent*);
bgstack15