diff options
author | ZackaryWelch <welch.zackary@gmail.com> | 2018-03-17 17:31:57 -0400 |
---|---|---|
committer | ZackaryWelch <welch.zackary@gmail.com> | 2018-03-17 17:31:57 -0400 |
commit | 59eba81944d99f7cc1c699609f6ebe36af7db5e8 (patch) | |
tree | 3a69819e29021be83838fc6878535185d341f56f /src-qt5/desktop-utils/lumina-pdf/mainUI.h | |
parent | Cleanup the printing stuff for Qt 5.9+. (diff) | |
download | lumina-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.h | 5 |
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*); |