Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-25 | docview: added apptype line for windows platforms | Graeme Geldenhuys | |
2012-03-13 | docview: updated the extrafpc.cfg file compiler options. | Graeme Geldenhuys | |
2012-03-07 | docview: unit had missing compiler mode information. | Charlie Root | |
2012-02-13 | TOC and Index entries now in UTF-8 encoding | Graeme 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-13 | docview: 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-13 | docview: 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-02 | version bump to 0.8 | Graeme Geldenhuys | |
2011-12-02 | Specify a target filename in the docview project file. | Graeme Geldenhuys | |
2011-11-07 | Improves 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-24 | docview: enabled keyboard shortcuts in the File menu. | Graeme Geldenhuys | |
2011-08-11 | richview: fixes right alignment of images | Graeme 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-29 | docview: 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-29 | docview: implemented TBookmark.Save method. | Graeme Geldenhuys | |
2011-07-28 | docview: call DoSearch directly when search is done via -k or -n parameter. | Graeme Geldenhuys | |
2011-07-28 | docview: 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-26 | docview: fixed spelling mistake in code comments | Graeme Geldenhuys | |
2011-07-26 | docview: 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-26 | docview: 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. | |||
2011-07-25 | docview: -n parameter validation | Graeme Geldenhuys | |
We now gracefully handle invalid -n parameter values, and notify the enduser of such a problem - instead of just crashing out. | |||
2011-07-25 | docview: 1st parameter handling improvement | Graeme Geldenhuys | |
We now try and detect if a valid filename was passed as the first parameter. If not (eg: some other -XXX parameter) then we simply ignore it. | |||
2011-07-23 | Major refactoring in the CanvasFontManager unit. Work-in-Progress! | Graeme Geldenhuys | |
The CanvasFontManager unit has totally been reworked to use the native TfpgFont class instead of TLogicalFont, TFontFace etc... The code is a lot more simplified now and DocView can actually display content but there are some width wrapping issues and AV's on changing topics. This will be fixed next. | |||
2011-07-18 | docview: new helper item in Tools menu. Showing environment variables that ↵ | Graeme Geldenhuys | |
DV uses. | |||
2011-07-13 | docview: added various bookmark related methods. eg: Load, Save, Add etc. | Graeme Geldenhuys | |
2011-07-13 | Added a new unit and class to describe a "bookmark" object. | Graeme Geldenhuys | |
2011-04-06 | docdump: fixes the TOC entry offset values in hex and bytes. | Graeme Geldenhuys | |
The offset is now the offset in bytes from the start of the INF file. | |||
2011-04-06 | docdump: make sure all counters are 0-based | Graeme Geldenhuys | |
It might look better for humans if counting is 1-based, but for reference with the INF file structure, lets keep all the docdump output 0-based. | |||
2011-04-06 | docdump: processing of the INF dictionary | Graeme Geldenhuys | |
2011-04-06 | minor code improvements to docview's SearchTable unit. | Graeme Geldenhuys | |
2011-04-06 | Docview: new debug item to dump the INF dictionary to file. | Graeme Geldenhuys | |
2011-04-06 | minor code improvement for readability. | Graeme Geldenhuys | |
2011-04-06 | Cleanup of the unit and code comments. | Graeme Geldenhuys | |
2011-04-06 | Just to make sure us humans understand what must happen. ;-) | Graeme Geldenhuys | |
2011-04-06 | More detailed info about FTS data in INF help files. | Graeme Geldenhuys | |
2011-03-26 | Minor code changes so docview is compilable with FPC 2.5.1 | Graeme Geldenhuys | |
Thanks to Michael van Canneyt for the patch. | |||
2011-02-23 | docview: add missing button hints on toolbar. | Graeme Geldenhuys | |
2011-02-07 | bugfix: Loading user notes lots LineEnding prefixes. | Graeme Geldenhuys | |
Notes are now loaded, exactly like they were saved. | |||
2011-02-03 | temp storage for Encoding implementation in DocView | Graeme Geldenhuys | |
2011-01-12 | docview: incorrect anchors were set for Delete button in Notes form. | Graeme Geldenhuys | |
2011-01-12 | unimportant updates due to ui designer. | Graeme Geldenhuys | |
2011-01-12 | uidesigner: Field variable was in wrong location in code. | Graeme Geldenhuys | |
It's not something that should be managed by the ui designer. | |||
2011-01-11 | Splitter handling improvement in main form | Graeme Geldenhuys | |
* PageControl now has a MinWidth set, so that making it ridiculously small doesn't scew with the widget anchors. * Due to above change the default splitter snapping doesn't occur. So now we worked around that using a new OnDoubleClick event handler, by simply making the pagecontrol visible or not. | |||
2011-01-11 | DocView config dialog fix. A button didn't have its Anchors set. | Graeme Geldenhuys | |
2010-12-30 | Docview: apply min width/height constraints to the main form. | Graeme Geldenhuys | |
2010-12-30 | Docview: Fixed anchors for OK and Save buttons in Config dialog. | Graeme Geldenhuys | |
Also set min width/height constraints for the dialog. | |||
2010-11-11 | docview: about form text change | Graeme Geldenhuys | |
2010-09-30 | docview: configuration of Notes color is now possible. | Graeme Geldenhuys | |
2010-09-30 | docview: Adds annotation/notes support | Graeme Geldenhuys | |
2010-09-30 | docview: removing search highlighting by doing a blank search | Graeme Geldenhuys | |
2010-09-01 | docview settings dialog: fixed tab orders | Graeme Geldenhuys | |
2010-09-01 | docview: introduced user configurable mouse wheel scroll distance. | Graeme Geldenhuys | |