summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-12-20freetype.dll library for Agg-enabled Canvas and FreeType font engine.Graeme Geldenhuys
2012-12-20agg: comments about the difference between FreeType and Win32 font engine.Graeme Geldenhuys
2012-12-20Minor changes for AggPas-Canvas under X11.Graeme Geldenhuys
2012-12-20fixes spelling mistake in code commentGraeme Geldenhuys
2012-12-20AggPas Canvas can now render to the screen under Windows too.Graeme Geldenhuys
2012-12-20menus: No need to call BeginDraw/EndDrawGraeme Geldenhuys
The whole HandlePaint() method is already covered by BeginDraw/EndDraw in a parent class.
2012-12-20Minor tweaks to demo: fixes alignment and size constraintsGraeme Geldenhuys
2012-12-18Completed some method signatures in implementation section.Graeme Geldenhuys
Lazarus IDE had some issues navigating them otherwise.
2012-12-18Removed unused units from uses clause. Preventing compiler hints.Graeme Geldenhuys
2012-12-14Minor mods to TfpgTrackbar to make it more flexible for descendants.Graeme Geldenhuys
eg: These changes were needed to create a descendant TrackBar that has a "transparent" background.
2012-12-11Update French translationJean-Marc Levecque
2012-12-10Fully updated the Afrikaans translation of fpgui.af.poGraeme Geldenhuys
2012-12-10Replace text strings in the reporting units with resource strings - for ↵Graeme Geldenhuys
localization. I also updated all language files to include the latest resource string constants.
2012-12-10Removed old constants not needed any more - they are now standard in FPC's RTL.Graeme Geldenhuys
2012-12-04Re-ordered units in the fpdoc project file to reduce output warnings.Graeme Geldenhuys
It wasn't really a problem, fpdoc would parse the dependant units anyway, but now we get a cleaner console output. ;-)
2012-12-04fpgui documentation updates.Graeme Geldenhuys
2012-12-04fpdoc project file updates.Graeme 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-12-03docs: minor grammar improvement to the fpg_x11 docsGraeme Geldenhuys
2012-12-03Updates the classes naming convension fro TGfx to TfpgGraeme Geldenhuys
How the hell has this been around for so long and went undetected. :-/
2012-12-03docs: fixes a small spelling mistake in the fpg_tree docsGraeme Geldenhuys
2012-12-03docs: fixes some spelling mistakes in the fpg_button docsGraeme Geldenhuys
2012-12-03docs: small addition to the docs for the fpg_widget unit.Graeme Geldenhuys
2012-12-03docs: Small addition to the docs for the fpg_main unit.Graeme Geldenhuys
2012-12-03Added more documentation units to the fpdoc project file.Graeme Geldenhuys
2012-11-30Silence the compiler about range checking.Graeme Geldenhuys
We manualy do the range checking before we access the string array. So disable the compiler range checking around the affected code.
2012-11-30Minor optimisation for UTF8Insert()Graeme Geldenhuys
Length() is a more 'lite" version than UTF8Length(), and in that code we don't need the functionality of the latter.
2012-11-30Fixes UTF8 functions for 64-bit compliance.Graeme Geldenhuys
2012-11-30optimised UTF8CStringToUTF8StringGraeme Geldenhuys
2012-11-30Fixes compiler warning about using a deprecated type... TFPColorGraeme Geldenhuys
2012-11-30Fixes compiler hint about unused unitGraeme Geldenhuys
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-22Adds alpha channel values to all the named colors.Graeme Geldenhuys
We already done this for all the predefined colors, but somehow forgot about these.
2012-11-22Fixes bug #163 - SelectionText returns all text if there was no selection.Graeme Geldenhuys
2012-11-22Memo.SelectionText is now a read/write propertyMichael van Canneyt
Selected text can now be replaced with new text, or text could be inserted at the current cursor position by setting SelectionText.
2012-11-22Converted miglayout unit test project to the FPTest (DUnit2) testing framework.Graeme Geldenhuys
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-22Updated test projects so they can compile again.Graeme Geldenhuys
2012-11-22Normalizing line endings.Graeme Geldenhuys
2012-11-22Adds a .gitattributes fileGraeme Geldenhuys
This lets git know how to handle certain files, and overrides the developers own settings to a project specific setting.
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.