aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-pdf/Renderer-poppler.cpp
Commit message (Collapse)AuthorAge
* Remove lumina-calculator and lumina-pdf from the lumina repo.Ken Moore2019-04-03
| | | | They have their own repos now (https://github.com/lumina-desktop/lumina-[pdf/calculator])
* Finish cleaning up lumina-pdf with poppler.Ken Moore2019-03-08
| | | | Ensure that the smart-cache system is working fine now (either backend)
* Get lumina-pdf working with the poppler backend once again.Ken Moore2019-03-08
| | | | | Also have it dynamically keep up to 5 pages in the cache at once. Load on demand as page number changes instead. Still have some debugging enabled for further testing.
* Get lumina-pdf fixed up quite a bit:Ken Moore2019-01-12
| | | | | | | 1. Fix MUPDF compilation 2. Fix single-page, dual-column, and grid-view modes. 3. Fix presentation view mode 4. Fix page transitions with keyboard shortcuts.
* Switches from keeping links in a QHash to a std::vector. This fixes some ↵joe berner2018-12-18
| | | | race conditions on key insertion from multiple threads.
* Changes the UI interface so that only the current page is rendered on screen ↵joe berner2018-12-18
| | | | at a time. This has significant memory benefits for large PDF files. This also implements a least-recently used cache of tunable size, which improves responsiveness if you're hopping between two specific pages.
* Fix up the categories that the lumina utilities show up in.Ken Moore2018-06-08
|
* Added more annotation and widget support. Currently incomplete. Updated to ↵ZackaryWelch2018-04-27
| | | | MuPDF 1.13.
* Muted unused variable warnings in the Poppler backendZackaryWelch2018-04-06
|
* Removed dangling codeZackaryWelch2018-04-04
|
* Added propper text annotation handling and changed how links and annotations ↵ZackaryWelch2018-04-04
| | | | are shown
* Added support for internal links. Code added for Poppler backend but not ↵ZackaryWelch2018-03-30
| | | | enabled. Code enabled for MuPDF. Does not support extrnal links yet.
* Improved Bookmarks layout and made MuPDF the default backendZackaryWelch2018-03-21
|
* Added a bookmarks menu, enabled on the MuPDF side.ZackaryWelch2018-03-21
|
* Disabled Properties, Find, and Bookmarks for Poppler but enabled by default ↵ZackaryWelch2018-03-20
| | | | for MuPDF
* Moved rotation to the Backend. Fixed memory issues in MuPDF but caused other ↵ZackaryWelch2018-03-17
| | | | in Poppler. Poppler consumes a lot of memory already and should no long be default once all memory issuse are sorted out in MuPDF.
* Replaced tabs with spaces and removed some unneeded commentsZackaryWelch2018-03-17
|
* Overhaul of MuPDF rendering. Fixed bugs and improved the find highlight ↵ZackaryWelch2018-03-17
| | | | system. Moved the cache system to the backend. Reenabled the properties and find edit menu by default.
* Added multithreading support for the MuPDF backend and fixed rendering errorsZackaryWelch2018-03-11
|
* Get lumina-pdf all up and running again.Ken Moore2018-02-27
1. Abstract out the backend renderer into a new class 2. The Renderer can be selected at build time by setting the "USE_MUPDF" build flag to use mupdf instead of poppler (default).
bgstack15