diff options
author | Graeme Geldenhuys <graemeg@gmail.com> | 2014-07-27 00:23:10 +0100 |
---|---|---|
committer | Graeme Geldenhuys <graemeg@gmail.com> | 2014-07-27 00:23:10 +0100 |
commit | b01b72f0886583100830cb42e2001d477f22976d (patch) | |
tree | 1a8cdd7c9b61185a3c55ffd964317418c6a54131 /src/corelib/x11 | |
parent | 2266588694286ed74181ca3cf7d22127fc29e7f6 (diff) | |
download | fpGUI-b01b72f0886583100830cb42e2001d477f22976d.tar.xz |
2 new units: fpg_CSVParser and fpg_StringGridBuilder
fpg_CSVParser contains a class and singleton method to allow parsing
CSV files.
fpg_StringGridBuilder is a class that allows you to load a CSV file
and automatically populate a StringGrid with its content.
Diffstat (limited to 'src/corelib/x11')
-rw-r--r-- | src/corelib/x11/fpgui_toolkit.lpk | 10 | ||||
-rw-r--r-- | src/corelib/x11/fpgui_toolkit.pas | 3 |
2 files changed, 11 insertions, 2 deletions
diff --git a/src/corelib/x11/fpgui_toolkit.lpk b/src/corelib/x11/fpgui_toolkit.lpk index b46195d4..e59e4617 100644 --- a/src/corelib/x11/fpgui_toolkit.lpk +++ b/src/corelib/x11/fpgui_toolkit.lpk @@ -29,7 +29,7 @@ <Description Value="fpGUI Toolkit"/> <License Value="LGPL 2 with static linking exception."/> <Version Major="1" Minor="3"/> - <Files Count="108"> + <Files Count="110"> <Item1> <Filename Value="../stdimages.inc"/> <Type Value="Include"/> @@ -462,6 +462,14 @@ <Filename Value="../../gui/fpg_toggle.pas"/> <UnitName Value="fpg_toggle"/> </Item108> + <Item109> + <Filename Value="../../gui/fpg_stringgridbuilder.pas"/> + <UnitName Value="fpg_StringGridBuilder"/> + </Item109> + <Item110> + <Filename Value="../fpg_csvparser.pas"/> + <UnitName Value="fpg_CSVParser"/> + </Item110> </Files> <LazDoc Paths="../../../docs/xml/corelib;../../../docs/xml/corelib/x11;../../../docs/xml/corelib/gdi;../../../docs/xml/gui"/> <RequiredPkgs Count="1"> diff --git a/src/corelib/x11/fpgui_toolkit.pas b/src/corelib/x11/fpgui_toolkit.pas index 429d3497..be9f3b5a 100644 --- a/src/corelib/x11/fpgui_toolkit.pas +++ b/src/corelib/x11/fpgui_toolkit.pas @@ -23,7 +23,8 @@ uses fpg_style_bluecurve, fpg_style_bitmap, fpg_readonly, fpg_imgfmt_png, U_Command, U_Pdf, U_Report, U_ReportImages, U_Visu, fpg_trayicon, Agg2D, fpg_dbugintf, fpg_dbugmsg, fpg_fontcache, fpg_style_carbon, - fpg_style_plastic, fpg_style_win8, fpg_scrollframe, fpg_toggle; + fpg_style_plastic, fpg_style_win8, fpg_scrollframe, fpg_toggle, + fpg_StringGridBuilder, fpg_CSVParser; implementation |