Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-10-15 | Fix 696241: fix bracketing of begin_group/end_group for text objects. | Tor Andersson | |
2015-10-14 | Remove unused variable. | Michael Vrhel | |
2015-10-14 | Add proper support for when a combobox widget has options that are 2-element ↵ | Michael Vrhel | |
arrays The list box and combo box can have values that are 2-element arrays. The first element is the "export" value and the second element is the value that should be shown in the list box UI. This fix ensures that we get the proper value to show in the UI. Also, it adds the option to get the export values. These are needed if you wish to update the field dictionary's V (value) entry, which is the currently selected values(s). This fix works well with gsview. The other viewers will now display the proper content in their UI, (unlike before this fix) but may need a bit more work to ensure that the proper V (value) is updated with changes in the selections. In addition, we add selection rectangles to the selected list box items. | |||
2015-10-14 | Update CHANGES file. | Tor Andersson | |
2015-10-14 | Scale colors of JPEG2000 images with bit depths less than eight. | Tor Andersson | |
2015-10-14 | Fix incremental xref stream. | Simon Reinhardt | |
When writing incremental xref streams, the opts->use_list entry of the last object, i.e. of the xref stream object itself, was left uninitialized. This resulted in a random value, 0 or 1, being written into the xref stream. Also, always write a newline before the endstream keyword, as that shall be done for xref streams and should be done for all other streams. | |||
2015-10-14 | Fix pdf_create_document. | Simon Reinhardt | |
In pdf_create_document set disallow_new_increments to 1. Without this, the calls to pdf_new_ref in pdf_create_document create an incremental xref section. The following call to pdf_set_populating_xref_trailer then does not set the trailer of the final xref section. | |||
2015-10-14 | Add FZ_UNUSED macro for use with public static inline functions. | Tor Andersson | |
We should allow client code to build without warnings even with the -Wunused-parameters flag. Thanks to Simon Reinhardt for the patch. | |||
2015-10-14 | Merge DroidSans into DroidSansFallback family. | Tor Andersson | |
Improve the Latin character set, and add Cyrillic and Greek. | |||
2015-10-14 | pdf: Handle surrogate pairs in pdf_to_utf8. | Tor Andersson | |
2015-10-14 | pdf: Flush text if content stream processing is cut short by errors. | Tor Andersson | |
2015-10-14 | gl: Fix win32 release mode build. | Tor Andersson | |
Always build with the 'windows' subsystem and use WinMain. Turn on USE_OUTPUT_DEBUG_STRING to capture fz_warn and fz_throw error messages. | |||
2015-10-14 | gl: Add missing icon file. | Tor Andersson | |
2015-10-06 | gl: Remove stray semicolon in win32 file selection error check. | Tor Andersson | |
2015-10-06 | gl: Add checks to prevent overruns in the presence of malformed UTF-8. | Tor Andersson | |
2015-10-06 | Update freetype submodule to version 2.6.1. | Tor Andersson | |
2015-10-06 | epub: Implement style 'visibility' attribute. | Tor Andersson | |
2015-10-06 | gl: Accept command line arguments. | Tor Andersson | |
2015-10-06 | gl: Clamp scrollbar when the content is fully visible. | Tor Andersson | |
2015-10-06 | gl: Cleanups. | Tor Andersson | |
2015-10-06 | gl: Update GLFW thirdparty library to include our fixes. | Tor Andersson | |
2015-10-06 | gl: Display metadata information overlay. | Tor Andersson | |
2015-10-06 | gl: Keep shrinkwrap when toggling outline side panel. | Tor Andersson | |
2015-10-06 | gl: Fix text selection bug. | Tor Andersson | |
2015-10-06 | gl: Add scroll wheel support. | Tor Andersson | |
2015-10-06 | gl: Base UI sizes on line height. | Tor Andersson | |
2015-10-06 | gl: Add simple (mouse event only) forms support. | Tor Andersson | |
2015-10-06 | gl: Keep fz_page around for later use with annotations. | Tor Andersson | |
2015-10-06 | gl: Only compute view transform once. | Tor Andersson | |
2015-10-06 | gl: Render page contents and annotations to separate textures. | Tor Andersson | |
2015-10-06 | gl: Use utility functions. | Tor Andersson | |
2015-10-06 | gl: Bundle page texture info into a struct. | Tor Andersson | |
2015-10-06 | gl: Windows stuff. | Tor Andersson | |
* Add icons to application and window. * Open file dialog if no command line argument. * Install file type associations. | |||
2015-10-06 | gl: Cut, copy, and paste in text fields. | Tor Andersson | |
2015-10-06 | gl: Use UTF-8 string internally in text field. | Tor Andersson | |
2015-10-06 | gl: Don't try searching outside the document. | Tor Andersson | |
2015-10-06 | gl: Use upper control characters for special keys. | Tor Andersson | |
2015-10-06 | gl: Split text field handling into separate file and add keyboard focus. | Tor Andersson | |
2015-10-06 | gl: Handle keyboard events in main loop. | Tor Andersson | |
Also fix event loop and refreshing the display at the correct times. | |||
2015-10-06 | gl: Don't require ARB_texture_non_power_of_two extension. | Tor Andersson | |
2015-10-06 | gl: Add an internal header file for GL application. | Tor Andersson | |
2015-10-06 | gl: Remove unneeded fz_malloc return value test. | Tor Andersson | |
2015-10-06 | gl: Remove unneeded printf message. | Tor Andersson | |
2015-10-06 | gl: Rename some variables for clarity. | Tor Andersson | |
2015-10-06 | gl: Fix MSVC warnings. | Tor Andersson | |
2015-10-06 | gl: Fix event/display loop. | Tor Andersson | |
Now should behave more like the old glutPostRedisplay code did. | |||
2015-10-06 | gl: Don't zero 'number' on all keypresses. | Tor Andersson | |
Bug casued by difference between GLUT and GLFW event interfaces. | |||
2015-10-06 | gl: Use GLFW instead of GLUT. | Tor Andersson | |
Add OpenGL text rendering using textured quads, instead of using glut bitmap fonts. | |||
2015-10-06 | gl: Add GLFW thirdparty submodule. | Tor Andersson | |
2015-10-06 | glut: Select rectangle with right mouse and extract text. | Tor Andersson | |