summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-03-09fixes a spelling mistake in a code comment.Graeme Geldenhuys
2012-03-09Fixes the issue with nested comments in Agg2DDemo.dprGraeme Geldenhuys
Causing syntax highlighting to be screwed.
2012-03-09Adds a comment about internal data structure of TfpgImage data.Graeme Geldenhuys
2012-03-09aggpas: fixes EOL style and file permissions.Graeme Geldenhuys
2012-03-09Removes unused / commented code from fpg_stringutils.pas unit.Graeme Geldenhuys
2012-03-09Adds a new property ScanLine[] to TfpgImage.Graeme Geldenhuys
2012-03-07docview: unit had missing compiler mode information.Charlie Root
2012-03-07agg: changes for 64-bit compatibilityGraeme Geldenhuys
The original code used a hard-coded value of 4, for the pointer size.
2012-03-07agg-demos: fixes the unit comment about the required compiler unit Path value.Graeme Geldenhuys
2012-03-07agg: fix a grammar error in the application output.Graeme Geldenhuys
2012-03-07agg: more compiler unit path changes.Graeme Geldenhuys
2012-03-07agg: fix find_compiler_xxx projects to use corrected path and compiler settings.Graeme Geldenhuys
This was needed due to my different directory layout compared to standard AggPas.
2012-03-07agg-linux: reduce dependency on libc unit.Graeme Geldenhuys
libc unit is really a Kylix dependency unit, and i386 only.
2012-03-07Fixes compiler error due to change in xlib binary type definition.Graeme Geldenhuys
This was a change introduced in FPC > v2.2.0
2012-03-07Improved compiler defines - mostly for later use.Graeme Geldenhuys
2012-03-07initial import of AggPas 2.4 RM3Graeme Geldenhuys
The AggPas demos will not compile at this time, because I have restructured the directories a bit. I wanted a pristine checkin though. The demos will be fixed in the next few commits.
2012-03-02Adds a fpdoc project file.Graeme Geldenhuys
The new fpdoc from FPC 2.7.1 (Trunk) supports documenation project files. This is it!
2012-03-02docs: Added more helpGraeme Geldenhuys
2012-03-02docs: basic docs and removed all template docs.Graeme Geldenhuys
This documentation unit was very out of date, so I removed all the template documentation elements originally created by makeskel. I then added some basic documentation for the fpg_x11 unit itself.
2012-03-02docs: Basic documentation for the TfpgWindowImpl class.Graeme Geldenhuys
2012-03-02docs: new documentation for TfpgComponentGraeme Geldenhuys
2012-02-29x11: changed the bit order.Graeme Geldenhuys
It seems, after reading a lot of documentation, that I got the setting wrong. Lets see what happens.
2012-02-29changed alias class definitions to class descendants.Graeme Geldenhuys
FPC doesn't have a problem with the original code, but other tools like fpdoc does. So to make everybody's life easier, I am making this change. The benefit now is that fpdoc will be able to generate a nice class hierarchy of fpGUI classes - without problems.
2012-02-29docview docs: fixes a minor spelling mistake in the documentation.Graeme Geldenhuys
2012-02-23Adds a short description for TfpgApplication.Graeme Geldenhuys
2012-02-23new fpdoc description file for fpg_interface.pas unit.Graeme Geldenhuys
2012-02-23Removed empty fpdoc description files.Graeme Geldenhuys
2012-02-21fpg_edit: again found some TAB character indentation lines - replaces with ↵Graeme Geldenhuys
Space indentation.
2012-02-21fpg_edit: for text color adjust to work, repainting must occur a bit later.Graeme Geldenhuys
DoOnChange must now occur before any call to RePaint. This gives us time to adjust the text color for possitive or negative values.
2012-02-21fpg_edit: adjust text color only when the edit box value has changed.Graeme Geldenhuys
2012-02-21merge with previous commit.Graeme Geldenhuys
2012-02-21fpg_edit: setting the text color via the field variable instead.Graeme Geldenhuys
If setting the text color via the TextColor property, then FOldColor get overwritten and we loose the real old color.
2012-02-21fpg_edit: use the existing DoOnChange method instead. Consistency is key. :)Graeme Geldenhuys
2012-02-21fpg_edit: setting NegativeColor property at runtime never caused an repaint.Graeme Geldenhuys
2012-02-21fpg_edit: Setting TextColor in numeric edit components never updated ↵Graeme Geldenhuys
OldColor value.
2012-02-21fpg_edit: refactored out the TextColor change due to negative/positive values.Graeme Geldenhuys
This allows use to reuse this bit of code without affecting the internal FText values - as is caused by SetShowThousand in FormatEdit().
2012-02-21minor code formatting in fpg_edit unit.Graeme Geldenhuys
There was tab character indentation for some reason. I converted these to Space character indentation.
2012-02-21edit demo: minor property changes caused by a newer UI Designer.Graeme Geldenhuys
2012-02-21edit demo: use TfpgColor() instead of color constant.Graeme Geldenhuys
This is simply a UI Designer friendly change. The UI Designer doesn't write parse color constants great.
2012-02-21edit demo: Currency Edit's negative values was never set.Graeme Geldenhuys
2012-02-21Adds PNG loading support.Graeme Geldenhuys
The unit uses the fcl-image backend to load the image. This is slightly slower than the native implementations for BMP and JPG. But at least now we have PNG support too.
2012-02-21New method GetNodeAt() for TfpgTreeView.Graeme Geldenhuys
This is vital for drag-n-drop support inside a treeview component.
2012-02-21Use unicode enabled types for the BMP loading code.Graeme Geldenhuys
2012-02-13Added printing of fpgImage from fpgImages listJean-Marc Levecque
Signed-off-by: Jean-Marc Levecque <jean-marc.levecque@jmlesite.fr>
2012-02-13A duplicated image will now be loaded only onceJean-Marc Levecque
Fix a bug in loading duplicated images + minor change in demo Signed-off-by: Jean-Marc Levecque <jean-marc.levecque@jmlesite.fr>
2012-02-13Added image position refering to columns in report toolJean-Marc Levecque
Signed-off-by: Jean-Marc Levecque <jean-marc.levecque@jmlesite.fr>
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.
2012-02-13fixed the name of one of the contributorsGraeme Geldenhuys
2012-01-18Add modified u_report.pasJean-Marc Levecque
Signed-off-by: Jean-Marc Levecque <jean-marc.levecque@jmlesite.fr>
2012-01-18Add image to header and footerJean-Marc Levecque
Add image to header and footer for display/print to each page of a section Signed-off-by: Jean-Marc Levecque <jean-marc.levecque@jmlesite.fr>