Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-30 | Adds CP1251 to UTF8 encoding conversion | Graeme Geldenhuys | |
2013-04-30 | docview: Fixes encoding bug introduced in earlier refactoring | Graeme Geldenhuys | |
When I refactored the encoding conversion code, I accidentally write HelpFile.Encoding, instead of Settings.Encoding. This meant that changing the Encoding combobox in the docview main form had no affect. | |||
2013-04-29 | RichView Editor test application. | Michael van Canneyt | |
2013-04-25 | docview: 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-25 | docview: greatly improve scrolling speed when help topic contains images | Graeme Geldenhuys | |
We always did StretchDraw() which is rather CPU intensive. Now we check the image dimensions first, then decide if StretchDraw() is really needed or not. If not, then do the much faster DrawImage() call. | |||
2013-04-25 | docview: fixes some compiler hints | Graeme Geldenhuys | |
- unused variables - added a note on how to fix another compiler hint (range check error) | |||
2013-04-25 | docview: minor code formatting changes | Graeme Geldenhuys | |
2013-04-25 | docview: extended "File Info" output to include font encoding information. | Graeme Geldenhuys | |
2013-04-25 | docview: 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-25 | docview: refactored text encoding version | Graeme 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-12 | docview: To make sure TotalSize is > 0 | Graeme Geldenhuys | |
2013-04-09 | Merge latest fixes from 'release-1.0' branch into develop | Graeme Geldenhuys | |
2013-04-09 | version bump for develop branch | Graeme Geldenhuys | |
2013-04-08 | docview: added lots of keyboard shortcuts | Graeme Geldenhuys | |
2013-04-08 | docview help file update. | Graeme Geldenhuys | |
Added a keyboard shortcut section. | |||
2013-04-08 | Fixes a spelling mistake of a filename (readme) | Graeme Geldenhuys | |
2013-04-06 | code syntax consistency. Changes << to shl | Graeme Geldenhuys | |
2013-04-05 | docview: 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-05 | docview: debug code to help debug reading images from INF files. | Graeme Geldenhuys | |
2013-04-05 | docview: removes commented code we don't use or need any more. | Graeme Geldenhuys | |
2013-04-05 | docview: 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-03 | docview: Help button in Notes dialog is now functional. | Graeme Geldenhuys | |
2013-04-03 | docview: update help file - bookmarks functionality is now fully implemented | Graeme Geldenhuys | |
2013-04-03 | docview: Implements the Bookmark Maintenance form. | Graeme Geldenhuys | |
We can now Jump To bookmark, rename bookmarks, delete bookmarks etc. | |||
2013-04-03 | docview: updated todo list file | Graeme Geldenhuys | |
2013-04-03 | docview: assign own help file for future dialog help. | Graeme Geldenhuys | |
2013-04-03 | Move constants to constants unit | Graeme Geldenhuys | |
2013-04-03 | docview: removed second constants unit - we only need one | Graeme Geldenhuys | |
2013-04-03 | docview: Adds support for external links (links to other INF files) | Graeme Geldenhuys | |
2013-04-02 | Bump the version numbers | Graeme Geldenhuys | |
2013-03-19 | docview: fixes grammer error in code comment | Graeme Geldenhuys | |
2013-03-19 | docview: 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-19 | docview: fixes a grammar error in the docs | Graeme Geldenhuys | |
2013-03-14 | docview: improved the looks of the topic title panel | Graeme Geldenhuys | |
Later I will probably make this configurable too. | |||
2013-03-12 | richtext: minor improvement to default used colors | Graeme Geldenhuys | |
2012-12-04 | RichTextView 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-26 | docview: Improved the IPF-to-RichTextView generated tags for colored text. | Graeme Geldenhuys | |
2012-11-26 | More 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-26 | Some 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-26 | RichTextView syntax tag improvements | Michael 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-22 | Improves the text formating of the readme file. | Graeme Geldenhuys | |
2012-11-22 | Fixes the description of the <rightmargin> tag. | Graeme Geldenhuys | |
2012-11-22 | Fixes line ending issues | Graeme Geldenhuys | |
2012-11-21 | Removes verbose logevent() calls from docview. | Graeme Geldenhuys | |
Those many logevent() calls makes other debugging really difficult. | |||
2012-11-21 | Adds a small stand-alone test app for the RichTextView component. | Graeme Geldenhuys | |
2012-11-21 | Removed outdated code comment. | Graeme Geldenhuys | |
2012-11-21 | richtextview - documentation in readme file is updated. | Graeme Geldenhuys | |
2012-11-21 | richtext:: 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-19 | docview todo item already implemented. | Graeme Geldenhuys | |
2012-10-23 | richview: 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(). |