summaryrefslogtreecommitdiff
path: root/platform/x11/x11_main.c
AgeCommit message (Collapse)Author
2018-07-05Signature support: add signing support to the windows appPaul Gardiner
2018-07-05Pass rects by value: device and document interface.Tor Andersson
2018-06-22Keep copy of decoded utf8 text string in pdf_obj.Tor Andersson
Removes the need to alloc/free text strings in the API, allowing for simple functions like pdf_dict_get_text_string.
2017-12-13Fix 698787: avoid using "system()" to copy files.Tor Andersson
2017-06-06Declare functions without arguments as taking void.Sebastian Rasmussen
2017-05-31Avoid double literals causing casts to float.Sebastian Rasmussen
2017-04-27Include required system headers.Tor Andersson
2017-02-06Add -I option to mupdf to invert colors.Robin Watts
2017-01-17x11: Add -b flag to x11 viewer.Tor Andersson
2016-11-23Add 'X' option to disable document styles.Tor Andersson
2016-11-16Fix 697334: disable text input in x11 viewer permanently.Tor Andersson
The hacky stdin workaround has never worked satisfactorily. Just nuke it.
2016-09-08Handle too big pixmap by printing error message in X11 viewer.Sebastian Rasmussen
2015-09-15epub: Add -U option to usage message for x11/win32 viewer.Tor Andersson
2015-05-19epub: User stylesheets.Tor Andersson
Add -U option to mupdf and mudraw to set a user stylesheet. Uses a context to store user the stylesheet, just like the AA level.
2015-04-07Add EPUB layout options to mupdf-x11 and mudraw.Tor Andersson
2015-04-06Bug 693688: MuPDF viewer; if reload fails, don't crash out.Robin Watts
Use a placeholder document instead - just a big red 'X'. Supposedly lots of people use MuPDF to view the output of their TeX documents. Sometimes the compilation of the TeX document fails, and reload results in MuPDF closing. This should allow their window to stay open until they fix the problem and reload again.
2015-03-30Bug 695804: Add support for 'Shift-Space' in the viewer.Robin Watts
Update pdfapp_onkey to take modifiers. If shift is held down when space is sent, then back up a page. This involves updating the windows app to actually send modifiers. Previously they were always sent as zero to the onmouse routine.
2015-03-30Add header for waitpid().Tor Andersson
2015-03-30Bug 695558: Fix UTF-8 window titles on X11.Robin Watts
Adopt Guillume Duranceau's patch to set the NET_WM_NAME property for window titles.
2015-03-26Bug 695701: Tweak forking of PDF links to avoid zombie processes.Robin Watts
Adopt a small patch from ooesili@gmail.com to avoid zombie processes that are left around after processes opened from PDF links are terminated.
2015-02-17Rename fz_close_* and fz_free_* to fz_drop_*.Tor Andersson
Rename fz_close to fz_drop_stream. Rename fz_close_archive to fz_drop_archive. Rename fz_close_output to fz_drop_output. Rename fz_free_* to fz_drop_*. Rename pdf_free_* to pdf_drop_*. Rename xps_free_* to xps_drop_*.
2014-08-20Fix uninitialized variable.Tor Andersson
2014-08-20Add full-page color tinting option and key binding to X11 viewer.Tor Andersson
win32 supports tinting, but cannot change the color from the default.
2014-05-27Fix 693494: Support media buttons for navigation on X11.Tor Andersson
2014-05-02Initialize timeout earlier in x11 viewerSebastian Rasmussen
Previously any warning displayed at the top of the page would never disappear because the display timeout being set would be overwritten by the later initialization.
2014-04-11Add all form field flags. Check flags before marking fields dirty.Tor Andersson
NoExport (and ReadOnly) fields shouldn't mark the document for saving.
2013-11-16Increase allocation to include room for string terminator.Robin Watts
Thanks to 'tom' from irc for pointing this out.
2013-08-24Rename varible in pdfapp to relate it to searching.Sebastian Rasmussen
2013-08-24Display warnings in statusbar in x11 viewer.Sebastian Rasmussen
2013-08-24X11 viewer code rearranged for aesthetic reasons.Sebastian Rasmussen
Set display timeout where the page number is shown, not in x11 main.
2013-08-24Add support for showing messages in x11 viewer statusbar.Sebastian Rasmussen
2013-08-24Generalize search blitting in x11 to include page number.Sebastian Rasmussen
2013-08-24Cancel page timeout when searching in x11 viewer.Sebastian Rasmussen
The scenario is that the user first displayed the page number (visible for two seconds) and then searched while the page number was still visible. The page number was automatically cleared when entering search text, but the timeout for clearing the page number was never cancelled. This caused an unnecessary redraw of the window while the search text was still being edited.
2013-07-22Added newlines in error messages for X11 platform.Marcos H. Woehrmann
2013-07-19Add mupdf-curl appRobin Watts
Windows and X11. Allows files to be fetched and displayed as they are downloaded both with and without linearization, using hints if available.
2013-07-04Update pdf_write_document to support incremental updatePaul Gardiner
2013-06-20Rearrange source files.Tor Andersson