Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-03-09 | Adds x86_64 and FreeBSD information in the main include file. | Graeme Geldenhuys | |
2012-03-09 | fixes a spelling mistake in a code comment. | Graeme Geldenhuys | |
2012-03-09 | Fixes the issue with nested comments in Agg2DDemo.dpr | Graeme Geldenhuys | |
Causing syntax highlighting to be screwed. | |||
2012-03-09 | Adds a comment about internal data structure of TfpgImage data. | Graeme Geldenhuys | |
2012-03-09 | aggpas: fixes EOL style and file permissions. | Graeme Geldenhuys | |
2012-03-09 | Removes unused / commented code from fpg_stringutils.pas unit. | Graeme Geldenhuys | |
2012-03-09 | Adds a new property ScanLine[] to TfpgImage. | Graeme Geldenhuys | |
2012-03-07 | docview: unit had missing compiler mode information. | Charlie Root | |
2012-03-07 | agg: changes for 64-bit compatibility | Graeme Geldenhuys | |
The original code used a hard-coded value of 4, for the pointer size. | |||
2012-03-07 | agg-demos: fixes the unit comment about the required compiler unit Path value. | Graeme Geldenhuys | |
2012-03-07 | agg: fix a grammar error in the application output. | Graeme Geldenhuys | |
2012-03-07 | agg: more compiler unit path changes. | Graeme Geldenhuys | |
2012-03-07 | agg: 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-07 | agg-linux: reduce dependency on libc unit. | Graeme Geldenhuys | |
libc unit is really a Kylix dependency unit, and i386 only. | |||
2012-03-07 | Fixes compiler error due to change in xlib binary type definition. | Graeme Geldenhuys | |
This was a change introduced in FPC > v2.2.0 | |||
2012-03-07 | Improved compiler defines - mostly for later use. | Graeme Geldenhuys | |
2012-03-07 | initial import of AggPas 2.4 RM3 | Graeme 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-02 | Adds a fpdoc project file. | Graeme Geldenhuys | |
The new fpdoc from FPC 2.7.1 (Trunk) supports documenation project files. This is it! | |||
2012-03-02 | docs: Added more help | Graeme Geldenhuys | |
2012-03-02 | docs: 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-02 | docs: Basic documentation for the TfpgWindowImpl class. | Graeme Geldenhuys | |
2012-03-02 | docs: new documentation for TfpgComponent | Graeme Geldenhuys | |
2012-02-29 | x11: 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-29 | changed 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-29 | docview docs: fixes a minor spelling mistake in the documentation. | Graeme Geldenhuys | |
2012-02-23 | Adds a short description for TfpgApplication. | Graeme Geldenhuys | |
2012-02-23 | new fpdoc description file for fpg_interface.pas unit. | Graeme Geldenhuys | |
2012-02-23 | Removed empty fpdoc description files. | Graeme Geldenhuys | |
2012-02-21 | fpg_edit: again found some TAB character indentation lines - replaces with ↵ | Graeme Geldenhuys | |
Space indentation. | |||
2012-02-21 | fpg_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-21 | fpg_edit: adjust text color only when the edit box value has changed. | Graeme Geldenhuys | |
2012-02-21 | merge with previous commit. | Graeme Geldenhuys | |
2012-02-21 | fpg_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-21 | fpg_edit: use the existing DoOnChange method instead. Consistency is key. :) | Graeme Geldenhuys | |
2012-02-21 | fpg_edit: setting NegativeColor property at runtime never caused an repaint. | Graeme Geldenhuys | |
2012-02-21 | fpg_edit: Setting TextColor in numeric edit components never updated ↵ | Graeme Geldenhuys | |
OldColor value. | |||
2012-02-21 | fpg_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-21 | minor 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-21 | edit demo: minor property changes caused by a newer UI Designer. | Graeme Geldenhuys | |
2012-02-21 | edit 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-21 | edit demo: Currency Edit's negative values was never set. | Graeme Geldenhuys | |
2012-02-21 | Adds 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-21 | New method GetNodeAt() for TfpgTreeView. | Graeme Geldenhuys | |
This is vital for drag-n-drop support inside a treeview component. | |||
2012-02-21 | Use unicode enabled types for the BMP loading code. | Graeme Geldenhuys | |
2012-02-13 | Added printing of fpgImage from fpgImages list | Jean-Marc Levecque | |
Signed-off-by: Jean-Marc Levecque <jean-marc.levecque@jmlesite.fr> | |||
2012-02-13 | A duplicated image will now be loaded only once | Jean-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-13 | Added image position refering to columns in report tool | Jean-Marc Levecque | |
Signed-off-by: Jean-Marc Levecque <jean-marc.levecque@jmlesite.fr> | |||
2012-02-13 | TOC and Index entries now in UTF-8 encoding | Graeme 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-13 | fixed the name of one of the contributors | Graeme Geldenhuys | |
2012-01-18 | Add modified u_report.pas | Jean-Marc Levecque | |
Signed-off-by: Jean-Marc Levecque <jean-marc.levecque@jmlesite.fr> |