summaryrefslogtreecommitdiff
path: root/extras
AgeCommit message (Collapse)Author
2015-04-02ats: add missing compiler mode and AnsiString directive to unit.Graeme Geldenhuys
Thanks to Echi for reporting this.
2015-04-02ats: readme file updateGraeme Geldenhuys
2015-04-02ats: Added a Test Usage form to show how resource ID values are retrieved.Graeme Geldenhuys
2015-04-02ats: various improvements to the editor formGraeme Geldenhuys
- code reformatting - tidying up a bit - A new Actions menu - keyboard shortcuts for the editing functions - Implemented "New Row" functionality
2015-04-02ats: Updated project file settings so unit output directory is auto createdGraeme Geldenhuys
2015-04-02ats: Made the AddRow() function publicly visibleGraeme Geldenhuys
2015-04-02ats: standardised the name of the event handlerGraeme Geldenhuys
2015-04-02ats: published FocusCol and FocusRow properties for the LangGrid componentGraeme 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.
2014-11-02Disable grid while editing a cellJean-Marc.Levecque
Signed-off-by: Jean-Marc.Levecque <jmarc.levecque@bbox.fr>
2014-10-23nicegrid demo 1 project file for Maximus IDE.Graeme Geldenhuys
2014-10-23nicegrid demo 1: fixed the Alpha values of some define colors.Graeme Geldenhuys
2014-10-23nicegrid: fixed the Alpha value of some colorsGraeme Geldenhuys
2014-10-22nicegrid: adds the missing extrafpc.cfg file to compile from command line.Graeme Geldenhuys
The "extrafpc.cfg" file makes it much easier to compile example projects from the command line. eg: fpc @extrafpc.cfg nicegrid1.lpr This same method is used for all the demos in the "examples" directory tree.
2013-08-27Updated Lazarus IDE code templatesGraeme Geldenhuys
2013-07-12nicegrid: removed unnecessary fpg_types unitGraeme Geldenhuys
* The code introduced in fpg_types.pas are now available in fpg_main - maybe with slightly different names. * replaced all references to fpg_types methods with new ones found in fpg_main
2013-06-18Updates extrafpc.cfg files so no console window is shown for Windows ↵Graeme Geldenhuys
compiled apps.
2013-04-29Merge branch 'nicegrid' into developGraeme Geldenhuys
2013-04-29Adds various useful MSEide code templatesGraeme Geldenhuys
2013-04-28fixes spelling error in code commentGraeme Geldenhuys
2013-04-24nicegrid: Adds project files (for Lazarus IDE) for the three demos.Graeme Geldenhuys
2013-04-24nicegrid: minor change to get unit to compile under 64-bit FPC.Graeme Geldenhuys
2013-04-24Adds new contributed grid widget - NiceGridJean Pierre Anghel
See the readme.txt file for more details.
2013-03-05editgrid: Add functionalities to edit and combo cellsJean-Marc Levecque
2013-03-05Apply grid alternate row color to demoJean-Marc Levecque
2013-03-04Replace duplicated code in KeyPress by common proceduresJean-Marc Levecque
2013-03-04editgrid: Replace AGrid parameter by use of Self in proceduresJean-Marc Levecque
2013-02-23editgrid: fixes keyboard/arrow navigation after an editJean-Marc Levecque
2013-02-22Added related units to editgrid project file.Graeme Geldenhuys
2013-02-22More work done on the editgrid widgetJean-Marc Levecque
2013-02-21Minor change and missing *.lpi file to get project to compile under Lazarus IDE.Graeme Geldenhuys
2013-02-21Experimental EditGrid widget by Jean-Marc Levecque.Graeme Geldenhuys
This is still work in progress. See the readme.txt file for more details.
2012-12-20freetype.dll library for Agg-enabled Canvas and FreeType font engine.Graeme Geldenhuys
2012-11-22Fixes line ending issuesGraeme Geldenhuys
2012-08-02Adds my config file for the Jedi Code Formatter (jcf).Graeme Geldenhuys
JCF is a open source tool available on SourceForge, that does really good code formatting. I use this tool to clean up my code formatting every now and again. This config file contains the rules I use for the fpGUI coding style.
2012-08-01Moves the PDF report engine & demo into the main source tree.Graeme Geldenhuys
2012-07-31pdf: fixes compiler hints about unused local variables.Graeme Geldenhuys
2012-07-31pdf demo: fixed a minor spelling mistake in the text output.Graeme Geldenhuys
2012-07-31pdf demo: extended demo output to mention the position in mm.Graeme Geldenhuys
2012-07-31pdf: The Author metadata is now the result of ApplicationName()Graeme Geldenhuys
2012-07-31Adds *.ttf font support to the PDF report engine.Jean-Marc Levecque
2012-07-17minor header comment update - unit name mentioned was still the old name.Graeme Geldenhuys
2012-05-07pdf reporting: updated lazarus package meta data.Graeme Geldenhuys
2012-05-07pdf reporting: updated copyright notice with latest email addressGraeme Geldenhuys
2012-05-07pdf: mod which allows Column definitions before Section creationJean-Marc Levecque
This is now similar to what is done for fonts.
2012-04-20pdf: adds ability to adjust some settings of the PDF viewerGraeme Geldenhuys
eg: like zoom, two pages display, etc... The patch also modifies the pdf demo to set the new functionality.
2012-04-11pdf: Testing for color values of -1 is not needed any more.Jean-Marc Levecque
2012-04-10pdf: removes two compiler warnings about unused variables.Graeme Geldenhuys
2012-04-10pdf: Use the correct type to represent a color value.Graeme Geldenhuys
Integer is a "unsafe" or alias type which could change between platforms. So rather user TfpgColor type to represent a TfpgColor. :)
2012-04-10pdf: implementation of TfpgColor to PDF Color was outdated.Graeme Geldenhuys
Before TfpgColor did not contain Alpha channel information, but since recently it does. So we rather use the safer fpgGetXXX() methods to extract each color channel value.