summaryrefslogtreecommitdiff
path: root/docview/src
AgeCommit message (Collapse)Author
2013-04-25docview: Saving topics to IPF now save text as UTF-8 encoded text.Graeme Geldenhuys
Lets promote Unicode (UTF-8) usage as much as possible. It's much easier than he stacks of other "old style" encodings.
2013-04-25docview: fixes some compiler hintsGraeme Geldenhuys
- unused variables - added a note on how to fix another compiler hint (range check error)
2013-04-25docview: minor code formatting changesGraeme Geldenhuys
2013-04-25docview: extended "File Info" output to include font encoding information.Graeme Geldenhuys
2013-04-25docview: When searching, do a text encoding conversion of dictionary words.Graeme Geldenhuys
We forgot to do this before, so sometimes text could not be found. Also added a note on how we could improve the speed.
2013-04-25docview: refactored text encoding versionGraeme Geldenhuys
docview now uses a single fpGUI call to do encoding conversions. This make is much easier to maintaing - a single method needs to be modified if new encoding conversions get added.
2013-04-12docview: To make sure TotalSize is > 0Graeme Geldenhuys
2013-04-09Merge latest fixes from 'release-1.0' branch into developGraeme Geldenhuys
2013-04-09version bump for develop branchGraeme Geldenhuys
2013-04-08docview: added lots of keyboard shortcutsGraeme Geldenhuys
2013-04-06code syntax consistency. Changes << to shlGraeme Geldenhuys
2013-04-05docview: Enabled support for reading images from INF files. (WIP)Graeme Geldenhuys
This is still Work-In-Progress because the images are displayed, but sometimes incorrectly, or with a wrong color palette. Either way, this is progress, and very long overdue. ;-)
2013-04-05docview: debug code to help debug reading images from INF files.Graeme Geldenhuys
2013-04-05docview: removes commented code we don't use or need any more.Graeme Geldenhuys
2013-04-05docview: simple pointer usage issues.Graeme Geldenhuys
The program was overwriting the pointer itself, and not the location the pointer is pointing too. Simple mistake! :-/
2013-04-03docview: Help button in Notes dialog is now functional.Graeme Geldenhuys
2013-04-03docview: update help file - bookmarks functionality is now fully implementedGraeme Geldenhuys
2013-04-03docview: Implements the Bookmark Maintenance form.Graeme Geldenhuys
We can now Jump To bookmark, rename bookmarks, delete bookmarks etc.
2013-04-03docview: assign own help file for future dialog help.Graeme Geldenhuys
2013-04-03Move constants to constants unitGraeme Geldenhuys
2013-04-03docview: removed second constants unit - we only need oneGraeme Geldenhuys
2013-04-03docview: Adds support for external links (links to other INF files)Graeme Geldenhuys
2013-04-02Bump the version numbersGraeme Geldenhuys
2013-03-19docview: fixes grammer error in code commentGraeme Geldenhuys
2013-03-19docview: Fixes a bug where URL links where not handled correctly.Graeme Geldenhuys
When we detected know web browser names, we had to only use the URL part, not the original program+url text. DocView lets the OS choose the web browser.
2013-03-14docview: improved the looks of the topic title panelGraeme Geldenhuys
Later I will probably make this configurable too.
2012-11-26docview: Improved the IPF-to-RichTextView generated tags for colored text.Graeme Geldenhuys
2012-11-26Some docview IPF-to-RichTextView syntax changes.Graeme Geldenhuys
Due to stricter syntax and other mark-up (tag) changes in RichTextView, we need to update DocView accordingly. Not much was needed though.
2012-11-22Fixes line ending issuesGraeme Geldenhuys
2012-11-21Removes verbose logevent() calls from docview.Graeme Geldenhuys
Those many logevent() calls makes other debugging really difficult.
2012-11-19docview todo item already implemented.Graeme Geldenhuys
2012-08-21docview: fixes a memory leak.Graeme Geldenhuys
2012-04-25docview: added apptype line for windows platformsGraeme Geldenhuys
2012-03-13docview: updated the extrafpc.cfg file compiler options.Graeme Geldenhuys
2012-03-07docview: unit had missing compiler mode information.Charlie Root
2012-02-13TOC and Index entries now in UTF-8 encodingGraeme Geldenhuys
I converted the topic content to UTF-8 before displaying it, but I never did so for the TOC text or the Index text. This patch should fix this problem. TODO: Searching for umlauts still is a problem.
2011-12-13docview: adds a title panel above the topic contents area.Graeme Geldenhuys
This makes it even more clear what topic the user is currently reading.
2011-12-13docview: changed target file output path to include CPU and OS.Graeme Geldenhuys
This means we can build multiple versions using a normal and cross-compiler, without overwriting the docview executable.
2011-12-02version bump to 0.8Graeme Geldenhuys
2011-12-02Specify a target filename in the docview project file.Graeme Geldenhuys
2011-11-07Improves command line parameter handling.Graeme Geldenhuys
If a INF file or the path to a INF file contained a '-' character, the file was not opened, because docview thought it was a command line parameter action (eg: -h or -n etc).
2011-08-24docview: enabled keyboard shortcuts in the File menu.Graeme Geldenhuys
2011-08-11richview: fixes right alignment of imagesGraeme Geldenhuys
When we reach the end of a line, we shouldn't always default alignment back to Left - I think. Anyway, this changes makes the output in DocView look the same as IBM's iview program.
2011-07-29docview: implemented saving and loading of bookmarks per file.Graeme Geldenhuys
- A new toolbar button is added in the main form. - The Bookmarks menu is correctly updated - Closing a help file correctly clears the bookmarks menu too.
2011-07-29docview: implemented TBookmark.Save method.Graeme Geldenhuys
2011-07-28docview: call DoSearch directly when search is done via -k or -n parameter.Graeme Geldenhuys
2011-07-28docview: fix status message when no search matches are found.Graeme Geldenhuys
It incorrectly showed "1 match found" due to the message we added to the search result listbox.
2011-07-26docview: fixed spelling mistake in code commentsGraeme Geldenhuys
2011-07-26docview: fixes the AV that occurs when you switch INF files that had notes.Graeme Geldenhuys
The ClearNotes() function was correctly called, I just forgot to implement it. :-(
2011-07-26docview: bug fix in font substitutions.Graeme Geldenhuys
I defined a incorrect default font value. The Fixed Font Substitutes are supposed to reference the fonts as defined in the IPF file, which will then get substituted with the user's selected fixed font.