Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-16 | Add colorspace context. | Tor Andersson | |
To prepare for color management, we have to make the device colorspaces per-context and able to be overridden by users. | |||
2013-05-16 | Reorder #ifdef's in base_time.c | Tor Andersson | |
2013-05-16 | Only link with X11 for X11 viewer. | Tor Andersson | |
2013-05-16 | winrt: Strip trailing whitespace. | Tor Andersson | |
2013-05-16 | Merge branch 'winRT2' | Robin Watts | |
2013-05-16 | Addition of progress bar code with cancel during text search. | Michael Vrhel | |
Also place holders for password support and initial work towards keyboard based zooming. | |||
2013-05-16 | Mutex fix | Robin Watts | |
2013-05-16 | Miscellaneous tidying. | Robin Watts | |
Remove stray win32 changes. Update indentation style. | |||
2013-05-16 | Minor fixes to winRT project and text search code to account for changes in ↵ | Michael Vrhel | |
golden | |||
2013-05-16 | Code cleanup and removal of c++ if def in fitz headers | Michael Vrhel | |
2013-05-16 | Implemented zooming and fixed and simplified the binding of several objects ↵ | Michael Vrhel | |
to the UI XAML | |||
2013-05-16 | Fix for some memory leaks as well as a stack growth issue in the text search. | Michael Vrhel | |
Also made text search a bit more robust in the viewer code. | |||
2013-05-16 | Fix to ensure thumbnails that are rendered asynchronously out of order get ↵ | Michael Vrhel | |
placed in order into the thumbnail structure. Also fix to remove race condition between when the page view is updated with a full res image and the links are displayed. Previously the thumbnail was getting the link on occasion | |||
2013-05-16 | Text search working now. This is done in a similar fashion the the links | Michael Vrhel | |
Still need a to fix a few minor issues including a progress bar | |||
2013-05-16 | Support for going to the links. | Michael Vrhel | |
Used tag attribute in rectangle object to store the index value into the collection of rectangles to get back the page number or uri. | |||
2013-05-16 | Display of link in document reworked. | Michael Vrhel | |
They are now bound to the UI xaml as a collection of rectangle coordinate and color. | |||
2013-05-16 | Fix for crash with rotation of devices. Added rescale for thumb images with ↵ | Michael Vrhel | |
device rotation. | |||
2013-05-16 | Rework of background task set up for rendering the thumbnails of the pages ↵ | Michael Vrhel | |
in the background. these are stored and swapped in and out of the page collection that is viewed as the user goes through the flip view. had some issues with respect to getting the background tasks shut down and mupdf cleaned up when someone opens a new file. that is now all resolved. This all simplified the code significantly. | |||
2013-05-16 | Fix so that we can open a new document after already opening one | Michael Vrhel | |
2013-05-16 | Code cleanup | Michael Vrhel | |
2013-05-16 | Removal of old winapp project | Michael Vrhel | |
2013-05-16 | Addition of html viewing with winRT library call | Michael Vrhel | |
2013-05-16 | Addition of content display into WinRT library | Michael Vrhel | |
2013-05-16 | Major changes in the entire design. | Michael Vrhel | |
Initial commit of this and it has several issues that have to be worked through. Lots of broken stuff but I needed to get it in place. Added 2 new classes. One is muctx which contains all the interfacing to mupdf and uses standard c++ types. The other is mudocument which interfaces between muctx and the WinRT world. It passes WinRT objects to and from applications which can be written in C++, C#, Visual Basic, Javascript etc. mudocument and muctx will reside in a winRT DLL. The Viewer application (c++ version) is now in mupdf_cpp project and now has a flip view structure that includes a scroll viewer which has data binding to a collection. This enables much easier zooming and updating, however I am still trying how to bind the canvas elements that contain the text search or link information. | |||
2013-05-16 | Fix for issues in links as well as search. Also some general clean up. | Michael Vrhel | |
2013-05-16 | Addition of reflow page view. Also fix for crash when opening new document. | Michael Vrhel | |
2013-05-16 | Add missing files related to contents list view. | Michael Vrhel | |
2013-05-16 | Rename winRT to winrt | Robin Watts | |
2013-05-16 | Fix for merge of golden commits as well as initial attempt at html viewing. ↵ | Robin Watts | |
Issues exist though in the xaml WebView object used in the windows UI. | |||
2013-05-16 | Finish of content menu and control | Michael Vrhel | |
2013-05-16 | Addition of link highlighting. Next they need to be navigable | Michael Vrhel | |
2013-05-16 | Fix issues related to search, new project open, rendered image freeing, and ↵ | Michael Vrhel | |
more task fixes | |||
2013-05-16 | Fix a number of crashing issues dealing with create_task | Michael Vrhel | |
2013-05-16 | Fix issues with slow zoom as well as orientation changes while in zoom mode | Michael Vrhel | |
2013-05-16 | Disable currently unused binding definitions | Michael Vrhel | |
2013-05-16 | Major clean up of winRT visual studio project. | Robin Watts | |
Now works with ARM, x64, Win32 plus Memento | |||
2013-05-16 | Addition of vertical scrolling for portrait view | Michael Vrhel | |
2013-05-16 | Add in a few things with respect to searching | Michael Vrhel | |
2013-05-16 | Addition of XPS, fix of rotation, enable slide selector | Michael Vrhel | |
2013-05-16 | More cleanup. Move flipview UI element into xaml code | Michael Vrhel | |
2013-05-16 | More clean up and also some work on getting things working for different ↵ | Michael Vrhel | |
orientation and scaling | |||
2013-05-16 | Code clean up plus bug fix so we dont crash when opening a new file | Michael Vrhel | |
2013-05-16 | Some progress on the search results | Michael Vrhel | |
2013-05-16 | Addition of preliminary search code and also addition of canvas in flipview item | Michael Vrhel | |
2013-05-16 | Initial commit of windowsRT viewer code. | Michael Vrhel | |
Lots of issues to resolve still and plenty of requirements to do but it is a start. | |||
2013-05-16 | Add PWG raster output to mudraw. | Robin Watts | |
2013-05-16 | Fix off by one error in xref resizing. | Robin Watts | |
Found by zeniko in his fuzzing tests. Many thanks! | |||
2013-05-15 | PDF Pattern gstate fix. | Robin Watts | |
The PDF Reference manual is very confusing about what gstate should be used to run patterns in. Essentially, my experiments seem to suggest that as we run through a PDF page, at the start of executing each stream, we should remember the current gstate as the 'parent' gstate. Then whenever we instantiate a pattern (via scn etc), we should set the pattern to remember that gstate. When we come to render the pattern, the pattern should be rendered using the remembered gstate, not the current one. This causes many progressions in our tests. | |||
2013-05-14 | svgwrite: First attempt at an SVG output device. | Robin Watts | |
No font support (just font names are sent through). No group support. No shading support. No image mask support. Line art, text position/size, bitmaps, clipping all seem to work though. | |||
2013-05-10 | Tweak png outputting functions. | Robin Watts | |
Allow us to get an image as a png in a buffer. |