summaryrefslogtreecommitdiff
path: root/docview
AgeCommit message (Collapse)Author
2015-09-02Bump version number for the release.Graeme Geldenhuys
2015-09-02docview: new project file for use with MSEide.Graeme Geldenhuys
2015-09-02docview: finally fixed the broken INF image support.Graeme Geldenhuys
It only took 6 years. ;-)
2015-09-02docview: lzw decmopress tweak.Graeme Geldenhuys
Code change after comparing the Pascal implementation to the C implementation. Everything still seems to work as normal after this.
2015-09-02docview: minor code formattingGraeme Geldenhuys
2015-09-02docview: file offset will always be a positive value.Graeme Geldenhuys
2015-09-02docview: Fixes memory leak with processing files from command line parametersGraeme Geldenhuys
2015-09-01docview todo list updateGraeme Geldenhuys
2015-09-01docview: reuse fpgApplication.ShowException() instead.Graeme Geldenhuys
2015-08-22richview: fix bug where varied size fonts didn't start on baseline.Philippe Lévi
2015-08-17docview: Fix bug where centered text setting was kept for longer than neededGraeme Geldenhuys
When you used :lines. and :elines, the :elines was supposed to reset the text alignment to Left. Instead it never reset the text alignment at all, so if you used Centered or Right aligned text in the :lines. tag, any following text had the wrong alignment.
2015-08-17docview: updated code comment to mention missing IPF tag.Graeme Geldenhuys
2015-08-09richview: earmarked TRichTextView.CopyTextToBuffer() to be removedGraeme Geldenhuys
2015-08-09richview: correctly typecast result in TLayoutLineList.GetItem()Philippe Lévi
2015-08-08richview: fixes bug with Italic text adding an extra space at the endGraeme Geldenhuys
I thought I fixed all of these before, but I missed this one.
2015-08-06RichText: fixed the bug where Underlined text didn't work.Graeme Geldenhuys
A simple spelling mistake!
2015-03-09docdump: fixes parameter handling and usage help output.Graeme Geldenhuys
2015-02-19Removed fpgApplication.DefaultFontGraeme Geldenhuys
We really don't need yet another "default font". All references to fpgApplication.DefaultFont has been changed to fpgStyle.DefaultFont - as it should be.
2015-02-12Version bumpGraeme Geldenhuys
2015-02-05docview: minor tweak to project settings for RELEASE buildsGraeme Geldenhuys
2015-02-05docview: added a Maximus IDE project file for DocViewGraeme Geldenhuys
2014-09-22docview: updated green arrows - much less jaggies.Graeme Geldenhuys
2014-09-19docview: Adds an "About..." menu item in the Windows System Menu of the main ↵Graeme Geldenhuys
form. Just for fun and can be disabled if needed.
2014-07-25Bump 'develop' branch to next version numberGraeme Geldenhuys
2014-04-01minor tweak to docview.ipf help fileGraeme Geldenhuys
2014-03-30Richview resize/render speedAndrew Haines
while testing richview I noticed it's fairly slow, though only if there are font changes in the content. So I added a font cache to the richview fontmanager and now there is almost no delay to render content in the richview. Big, big speed improvement.
2013-06-18Updates extrafpc.cfg files so no console window is shown for Windows ↵Graeme Geldenhuys
compiled apps.
2013-05-22docview: DND enabledGraeme Geldenhuys
- dropping one or more files on the Contents treeview will open those files, in addition to what is already open - dropping a file on the richview component will close all existing files and only open that single file.
2013-05-22richview: let the fpgStyle object do the drawing for us.Graeme Geldenhuys
2013-05-13docview: replace some code with convenience function to make it more readableGraeme Geldenhuys
2013-04-30Adds CP1251 to UTF8 encoding conversionGraeme Geldenhuys
2013-04-30docview: Fixes encoding bug introduced in earlier refactoringGraeme 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-29RichView Editor test application.Michael van Canneyt
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: greatly improve scrolling speed when help topic contains imagesGraeme 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-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-08docview help file update.Graeme Geldenhuys
Added a keyboard shortcut section.
2013-04-08Fixes a spelling mistake of a filename (readme)Graeme 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