summaryrefslogtreecommitdiff
path: root/platform
AgeCommit message (Collapse)Author
2015-12-15muPDF iOS app: properly support 4-inch iPhone.fredrossperry
A new TestFlight build could not be uploaded without making sure that the default launch screen image was getting placed in the app package. <log></log>
2015-12-15muPDF iOS app: add bitcode and UIRequiresFullScreenfredrossperry
Starting with Xcode 7, bit code is enabled by default. This change enables it in the static libraries that are linked, by adding the appropriate compiler switch. Also added UIRequiresFullScreen to the plist; this seems to have no ill effect when uing XCode 6. <log></log>
2015-12-15Rename fz_write_x to fz_save_pixmap_as_x or fz_save_bitmap_as_x.Tor Andersson
Separate naming of functions that save complete files to disk from functions that write data to streams.
2015-12-14Android: Try and minimise warnings in JNI code.Robin Watts
Push the pointer->long and long->pointer casting through 2 static inline functions.
2015-12-11Rename structured text structs and functions to 'stext'.Tor Andersson
Less risk of confusion with the text type used in the device interface.
2015-12-11win32: Always build 'generated' in 32-bit mode.Tor Andersson
Otherwise we can't run file generation tools with a 64-bit target on a 32-bit host.
2015-12-11gl: Move related case clauses together.Tor Andersson
2015-11-12gl: Add x64 target to MSVC project files.Tor Andersson
2015-11-10gl: Use named constants instead of magic numbers.Tor Andersson
2015-10-29gl: Limit shrinkwrap window sizing to fit the primary monitor size.Tor Andersson
2015-10-21Bump version number.Tor Andersson
2015-10-15x11: Add generic pixel conversion function.Tor Andersson
Slow, but at least it won't crash. Fix for bug 695742.
2015-10-15gl: Rename font variables.Tor Andersson
2015-10-15android: Update ThirdParty.mk to work with new freetype version.Tor Andersson
2015-10-14Add 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-14gl: 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-14gl: Add missing icon file.Tor Andersson
2015-10-06gl: Remove stray semicolon in win32 file selection error check.Tor Andersson
2015-10-06gl: Add checks to prevent overruns in the presence of malformed UTF-8.Tor Andersson
2015-10-06Update freetype submodule to version 2.6.1.Tor Andersson
2015-10-06gl: Accept command line arguments.Tor Andersson
2015-10-06gl: Clamp scrollbar when the content is fully visible.Tor Andersson
2015-10-06gl: Cleanups.Tor Andersson
2015-10-06gl: Display metadata information overlay.Tor Andersson
2015-10-06gl: Keep shrinkwrap when toggling outline side panel.Tor Andersson
2015-10-06gl: Fix text selection bug.Tor Andersson
2015-10-06gl: Add scroll wheel support.Tor Andersson
2015-10-06gl: Base UI sizes on line height.Tor Andersson
2015-10-06gl: Add simple (mouse event only) forms support.Tor Andersson
2015-10-06gl: Keep fz_page around for later use with annotations.Tor Andersson
2015-10-06gl: Only compute view transform once.Tor Andersson
2015-10-06gl: Render page contents and annotations to separate textures.Tor Andersson
2015-10-06gl: Use utility functions.Tor Andersson
2015-10-06gl: Bundle page texture info into a struct.Tor Andersson
2015-10-06gl: Windows stuff.Tor Andersson
* Add icons to application and window. * Open file dialog if no command line argument. * Install file type associations.
2015-10-06gl: Cut, copy, and paste in text fields.Tor Andersson
2015-10-06gl: Use UTF-8 string internally in text field.Tor Andersson
2015-10-06gl: Don't try searching outside the document.Tor Andersson
2015-10-06gl: Use upper control characters for special keys.Tor Andersson
2015-10-06gl: Split text field handling into separate file and add keyboard focus.Tor Andersson
2015-10-06gl: Handle keyboard events in main loop.Tor Andersson
Also fix event loop and refreshing the display at the correct times.
2015-10-06gl: Don't require ARB_texture_non_power_of_two extension.Tor Andersson
2015-10-06gl: Add an internal header file for GL application.Tor Andersson
2015-10-06gl: Remove unneeded fz_malloc return value test.Tor Andersson
2015-10-06gl: Remove unneeded printf message.Tor Andersson
2015-10-06gl: Rename some variables for clarity.Tor Andersson
2015-10-06gl: Fix MSVC warnings.Tor Andersson
2015-10-06gl: Fix event/display loop.Tor Andersson
Now should behave more like the old glutPostRedisplay code did.
2015-10-06gl: Don't zero 'number' on all keypresses.Tor Andersson
Bug casued by difference between GLUT and GLFW event interfaces.
2015-10-06gl: Use GLFW instead of GLUT.Tor Andersson
Add OpenGL text rendering using textured quads, instead of using glut bitmap fonts.