summaryrefslogtreecommitdiff
path: root/docview
AgeCommit message (Collapse)Author
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: updated todo list fileGraeme Geldenhuys
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-19docview: fixes a grammar error in the docsGraeme Geldenhuys
2013-03-14docview: improved the looks of the topic title panelGraeme Geldenhuys
Later I will probably make this configurable too.
2013-03-12richtext: minor improvement to default used colorsGraeme Geldenhuys
2012-12-04RichTextView can now have Text set even in the constructor phase of a form.Graeme Geldenhuys
Before we were forced to only set text in the OnShow or later.
2012-11-26docview: Improved the IPF-to-RichTextView generated tags for colored text.Graeme Geldenhuys
2012-11-26More richtext color tag improvements.Michael van Canneyt
Attached is another patch I made for the richtext edit. Now the red/green/blue/black tags can/must be closed by a correct red/green/blue/black closing tag. That means that except for the margin tags, all tags can/must now be closed with a matching tag.
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-26RichTextView syntax tag improvementsMichael van Canneyt
1) h1, h2 h3 are now ended by /h1 /h2 /h3 2) <wrap yes> and <wrap no> are changed to <nowrap> </nowrap> 3) The size part of the font tag is now optional. I suspect a small change is still needed in order to apply the font size if one is specified anyway. I put a comment in the text for that. 4) I adapted the sample01.txt so it reflects the 1. and 2. changes.
2012-11-22Improves the text formating of the readme file.Graeme Geldenhuys
2012-11-22Fixes the description of the <rightmargin> tag.Graeme Geldenhuys
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-21Adds a small stand-alone test app for the RichTextView component.Graeme Geldenhuys
2012-11-21Removed outdated code comment.Graeme Geldenhuys
2012-11-21richtextview - documentation in readme file is updated.Graeme Geldenhuys
2012-11-21richtext:: Incorrect "normal font" was assigned as default style.Graeme Geldenhuys
Very weird, there was even a code comment saying that it was wrong!! The constructor of TRichTextSettings already sets the "normal font". So by ignoring the ASettings parameter, the end-user couldn't assign a new normal font values. Anyway, this is now fixed.
2012-11-19docview todo item already implemented.Graeme Geldenhuys
2012-10-23richview: Removed the extra margin for text at the top and bottom of the ↵Graeme Geldenhuys
client area There was a hard-coded 2px margin at the top and bottom of the text client area. So when scrolling the text disappeared 2px away from the actual widget border. This was inconsistent with other text widgets in fpGUI, and I simply didn't like it either. So GetTextAreaRect() now returns the same values as GetDrawRect().
2012-10-23richview: Implements a new BorderStyle propertyGraeme Geldenhuys
* Also took into account theming support, so we get the size of the default borders from the theme class. * Improved the method that sets the coordinates of the scrollbar
2012-08-28RichTextView: scrollbar width is now set to the standard size of 16pxGraeme Geldenhuys
2012-08-21docview: fixes a memory leak in font handling.Graeme Geldenhuys
We checked for the same fontdesc, but never for the same instance. So the NewFont instance might not have been freed, causing the memory leak.
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-29docview docs: fixes a minor spelling mistake in the documentation.Graeme Geldenhuys
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-13docview help: updated docs about Bookmarks support.Graeme Geldenhuys
2011-12-13docview help: changed the Note paragraph to a multi-paragraph note.Graeme Geldenhuys
This indents the Note text, making it more pleasing to the eye.
2011-12-13docview help: removed the todo items already implemented.Graeme Geldenhuys
2011-12-13docview help: fixed a spelling mistakeGraeme Geldenhuys
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-29richview: fixed another memory leak.Graeme Geldenhuys
2011-08-29richview: removed DoAllocateWindowHandle() which caused a memory leak.Graeme Geldenhuys
The above mentioned method called CreateWnd() twice, thus causing a memory leak. Now CreateWnd() is simply called once in the constructor.