Difference between revisions of "LazReport Documentation"

From Lazarus wiki
Jump to navigationJump to search
(→‎DOCUMENTATION: add scripting)
(Capitalisation removed.)
Line 1: Line 1:
 
{{LazReport Documentation}}
 
{{LazReport Documentation}}
  
=OVERVIEW=
+
=Overview=
 
LazReport is a group of components to add reporting capabilities to applications. It uses a visual designer to create banded reports and includes a report engine with previewer and an interpreter to run user scripts. The report designer can
 
LazReport is a group of components to add reporting capabilities to applications. It uses a visual designer to create banded reports and includes a report engine with previewer and an interpreter to run user scripts. The report designer can
 
be invoked at runtime.  
 
be invoked at runtime.  
  
=LICENSE=
+
=License=
 
LazReport is based on FreeReport 2.32 and thanks to Fast Reports Inc. it's available under modified LGPL, the same license as the Lazarus LCL.
 
LazReport is based on FreeReport 2.32 and thanks to Fast Reports Inc. it's available under modified LGPL, the same license as the Lazarus LCL.
 
See files lazreport/license.txt, license-rus.txt and license-lazreport.txt for details.
 
See files lazreport/license.txt, license-rus.txt and license-lazreport.txt for details.
  
=AUTHORS=
+
=Authors=
 
FreeReport was created for Fast Reports Inc.
 
FreeReport was created for Fast Reports Inc.
  
Line 18: Line 18:
 
Many contributors, see lazreport/doc/contributors.txt file
 
Many contributors, see lazreport/doc/contributors.txt file
  
=INSTALL=
+
=Install=
 
To install LazReport in the Lazarus IDE:
 
To install LazReport in the Lazarus IDE:
  
Line 27: Line 27:
 
The next time Lazarus is started, it should show a LazReport tab in the component palette.
 
The next time Lazarus is started, it should show a LazReport tab in the component palette.
  
=DOCUMENTATION=
+
=Documentation=
 
Developer's manual and User Guides specific for LazReport are yet to be written. In the mean time, most LazReport features are described in the FreeReport Developer's Manual (see lazreport/doc/fr_eng.sxw in your Lazarus installation). Platform specific things described there like OLE objects are not implemented in LazReport, also some examples or pictures make reference to samples available only on Delphi.  
 
Developer's manual and User Guides specific for LazReport are yet to be written. In the mean time, most LazReport features are described in the FreeReport Developer's Manual (see lazreport/doc/fr_eng.sxw in your Lazarus installation). Platform specific things described there like OLE objects are not implemented in LazReport, also some examples or pictures make reference to samples available only on Delphi.  
  
Line 260: Line 260:
 
* [http://www.pp4s.co.uk/main/tu-db-firebird-demo3.html Creating and printing a report]
 
* [http://www.pp4s.co.uk/main/tu-db-firebird-demo3.html Creating and printing a report]
  
=QUICK START=
+
=Quick Start=
 
==Report Records from a Dataset==
 
==Report Records from a Dataset==
 
In this sample we will design a report to print records from a dataset derived component (TDbf, TSQLQuery, TZTable, TZQuery, Etc.). First it's assumed that LazReport is already installed and the dataset component, called "Dbf1" here, is already configured and active.  
 
In this sample we will design a report to print records from a dataset derived component (TDbf, TSQLQuery, TZTable, TZQuery, Etc.). First it's assumed that LazReport is already installed and the dataset component, called "Dbf1" here, is already configured and active.  
Line 282: Line 282:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
=BUG REPORTS=
+
=Bug reports=
 
Please report problems using the  
 
Please report problems using the  
 
[http://www.freepascal.org/mantis/main_page.php lazarus/freepascal bugtracker], project: "Lazarus Packages", Category
 
[http://www.freepascal.org/mantis/main_page.php lazarus/freepascal bugtracker], project: "Lazarus Packages", Category

Revision as of 19:51, 16 March 2014

Deutsch (de) English (en) español (es) polski (pl)

Overview

LazReport is a group of components to add reporting capabilities to applications. It uses a visual designer to create banded reports and includes a report engine with previewer and an interpreter to run user scripts. The report designer can be invoked at runtime.

License

LazReport is based on FreeReport 2.32 and thanks to Fast Reports Inc. it's available under modified LGPL, the same license as the Lazarus LCL. See files lazreport/license.txt, license-rus.txt and license-lazreport.txt for details.

Authors

FreeReport was created for Fast Reports Inc.

LazReport initial port was made by Olivier Guilbaud.

Lazarus integration and fixes by Jesus Reyes A.

Many contributors, see lazreport/doc/contributors.txt file

Install

To install LazReport in the Lazarus IDE:

  1. Open LazReport Package. Menu: Components->Open package file (.lpk)...
  2. Open file components/lazreport/source/lazreport.lpk
  3. Install

The next time Lazarus is started, it should show a LazReport tab in the component palette.

Documentation

Developer's manual and User Guides specific for LazReport are yet to be written. In the mean time, most LazReport features are described in the FreeReport Developer's Manual (see lazreport/doc/fr_eng.sxw in your Lazarus installation). Platform specific things described there like OLE objects are not implemented in LazReport, also some examples or pictures make reference to samples available only on Delphi.

Until LazReport documentation is elaborated, this Wiki page will be used as a documentation container; maybe in the future the missing documentation could be generated from here. Users are welcomed to add topics that they feel need to be documented.

Operators

The following operators are supported:

Operator type Operators
Logical >, <, BUT, AND, NOT, =, < >, > =, < =
Mathematical -, *, +, MOD, /

Functions

The following functions are available for use:

Statistical functions

SUM(<X >)
Returns the sum of values represented by <X>, which is generally a data field.
AVG(<X >)
Returns the average of <X> values.
COUNT
Count the number of occurrences.
MIN(<X >)
Returns the lowest value of all values represented by <X>
MAX(<X >)
Returns the highest value of all values represented by <X>

Date functions

Light bulb  Note: December 2013: inspection of lr_pars source code seems to indicate these functions work with the current locale date format, which limits interoperability. To do: verify this; extend function with an extra format parameter which defaults to e.g. ISO8601
FORMATDATETIME(<X>, <Y >)
Returns <Y> TDateTime in format <X>. <X> uses the default syntax for Lazarus formats.
FORMATFLOAT(<X>, <Y >)
Returns the numeric value <Y> in format <X>. <<X> uses the default syntax for Lazarus formats.
STRTODATE(<X >)
Returns the TDateTime(? not date?) representation of string < X >. < X > must be formatted correctly.
STRTOTIME(<X >)
Returns the TDateTime time part representation of string < X >. < X > must be formatted correctly.

String functions:

LOWERCASE(<X >)
Returns lowercase <X>
UPPERCASE(<X >)
Returns uppercase <X>
NAMECASE(<X >)
Returns <X> with initial capitals
COPY(<X>, <Y>, <Z >)
Similar to Pascal Copy: returns string <X> from position < Y > for < Z > characters.

Numeric functions

FRAC(<X >)
Returns the decimal part of number < X >
INT(<X >)
Returns the integer part of number < X >
ROUND(<X >)
Returns the number < X > rounded to an integer (up? down? nearest integer? banker's rounding?)
STR(<X >)
Returns the string representation of number < X >

Logical/boolean functions

IF(<X>, <Y>, <Z >)
Returns < Y > if expression < X > is true. If false, returns retorna < Z >.

Adding your own functions

Though it is probably not needed much, LazReport allows you to define your own functions. As mentioned, see LazReport Documentation#Documentation for an overview of existing functions.

To add your own functions:

Add template to definition file

Light bulb  Note: This was taken from the Delphi/FastReport/FreeReport tutorial in Portuguese. It should be verified and probably modified to work with current Lazarus/LazReport

You need to define your functions following the following template in the file FR.lng (is this still the correct name for Lazreprot?):

, FCT = CATEGORY|FCT (<X> <Y>, <z>)|Help

where:

  • FCT is the function name.
  • CATEGORY is the category name.
  • FCT (<X> <Y>, <z>), is the layout of the required parameters, with a maximum of 3 parameters.
  • Help Is a small help text which should allow the user to understand the purpose of the function.
  • | is a separator.

Each parameter is separated by commas and can be an expression, a constant, a variable, a field or data. Alphanumeric type constants should be limited by a character. The variables are delimited by and.

Data fields are limited to the variables and have the following format:

Dataset_Name. "Field_Name"

Let's add the SQRT and POS functions by adding the following lines to FR.lng todo: still the same name?

SQRT = Mathematics and Trigonometry|SQRT(<X>)|Returns the square root of <X>
POS = Strings|POS(<X>,<Y>) Returns the position of string <X> within string <Y>

Add function source code

A function definition is nice, but we haven't specified how these functions work. Therefore, some source code to add the functions POS and SQRT below:

Unit FR_OGFct;
interface 
implementation 
uses FR_Pars, FR_Class; // Standard declarations needed for Lazreport!! Note: FR_pars etc? Are these names ok?
type 
 // Our own functions are declared here.
TfrOGFunctionLibrary = class(TfrFunctionLibrary)
 public  
  constructor Create; override;  
  procedure DoFunction(FNo:integer procedure;  p1, p2,
             p3:Variant; var valley:string); override;  
             p3:Variant; var valley:string);
 end;  
//************************** 
// * TfrOGFunctionLibrary 
constructor TfrOGFunctionLibrary.Create;
begin  
 inherited Create;  
 // Add our functions to the list of available functions:
 with List do 
 begin
  Add('POS');
  Add('SQRT');
 end;
end;

Procedure TfrOGFunctionLibrary.DoFunction(FNo:Integer procedure;  p1,
p2, p3:Variant; Var valley:String); //valley?
Var 
  Par1, Par2:  Varying;
  Result:  Variantying; //variantying? variant?
begin
Try
 Case FNo of  //this is the index of the functions as added in the constructor
  0 : 
	begin   // POS  function
    Par1:=VarToStr(Parser.Calc(p1)); 
    Par2:=VarToStr(Parser.Calc(P2)); 
    Result:=Pos(Par1,Par2);
  end;
  1 :  // SQRT function
	Result:=SQRT(Parser.Calc(P1));
 end;
Except   
 // String with error details
 Result:='Error in function '+List.Strings[FNo];
end;
Val:=VarToStr(Result); // Resulting string
end;

Procedure DoInit;
begin
 frRegisterFunctionLibrary(TfrOGFunctionLibrary);
end;

Save the report then File>List and this window will appear:

imagem21.jpg

You may notice the appearance of a small (...) button, active only in the case of an expression. Click below to open the editor:

imagem22.jpg

You may notice the similarity. If you click the Add button it will load the editor parameters:

imagem23.jpg

Depending on the number of parameters, you have more or less edit areas. The (...) button makes it possible to open the expression generator to set the parameter.

Export Filters

LazReport export filters are invoked using the following code.

  if TheReport.PrepareReport then
    TheReport.ExportTo(TfrHTMExportFilter, 'exportedfile.html');

Where TheReport holds an instance of TfrReport component. In this sample a TfrHTMExportFilter is used to generate a file named 'exportedfile.html'. It's not necessary to prepare the report again if it has been prepared previously.

In order to use TfrHTMExportFilter the developer has to drag and drop an instance of the TfrHTMExportFilter component from the LazReport tab in the component palette to the form in the Form Designer. As an alternative the unit lr_e_htm.pas file can be added to the unit uses clause.

Since LazReport 0.9.6, export filters support has been enhanced: now export filters can take parameters which users can customize either by changing values directly or by presenting the end user some UI. In order to make changes in parameters, the developer can create an event handler for TfrReport.OnExportFilterSetup event, available by selecting the TfrReport component and selecting the Events tab in Object Inspector.

The OnExportFilterSetup (of type TExportFilterSetup) event handler takes an argument sender of type TfrExportFilter, in order to use this type, the lr_class.pas unit must be added to the unit uses clause. All ExportFilter clases share this event and the developer has to type-cast the sender argument to the desired export filter class, for example:

if sender is TfrHTMExportFilter then
begin
  TfrHTMExportFilter(sender).UseCSS := false;
end;

Below a description of available export filters.

TfrExportFilter

is the base class of all export filters, and defines two properties that can be modified by the developer in the OnExportFilterSetup event:

  • BandTypes: TfrBandTypes. this is a set of band types, only bands included in this set are actually exported; the other bands on the report will be ignored. Using this property a developer could for example export only the master band content, leaving titles, headers and footers out of exported output by doing:
sender.BandTypes := [btMasterData];

By default, all bands are processed but TfrCSVExportFilter changes this property to process only master header, column header and master data bands.

  • UseProgressbar: boolean. This property enables or disables showing the progress bar while processing the export filter. This property is false by default.

TfrTextExportFilter

inheritance: TfrExportFilter <- TfrTextExportFilter
located in: lr_e_txt.pas file included with the LazReport package.

is the base class of text based export filters. This export filter tries to make a text representation of a graphical report by fitting the original graphical coordinates into a more coarse grid where each unit is of "UsedFont" pixels, depending on the value of UsedFont value, the exported output may more or less represent the layout of objects in graphical report. Beside the properties inherited from TfrExportFilter class, TfrTextExportFilter define two more properties.

  • UsedFont:integer. this property define the pixel dimensions on the output grid, objects on report are fitted into this grid by reclaculating each x and y position. The default value is 10, if user changes this value to 0 o less, LazReport will show automatically a dialog asking for the UsedFont value, if user enter a invalid value, a 10 value will be used. The 10 value is used because is the value that better fits the usual reports which are made with fonts 10-13 points.
  • UseBOM:boolean. This property enable the inclusion of UTF-8 Byte Order Mark character at the start of text output (see BOM) needed by some editors/viewers, by default no BOM is used in exported output.

TfrCSVExportFilter

inheritance: TfrExportFilter <- TfrTextExportFilter <- TfrCSVExportFilter
located in: lr_e_csv.pas file included in LazReport package.

This special text export filter produces Comma Separated Value output (actually any character can be used as separator), it differs from its ancestor in that it doesn't try to create text layout representation of graphical report, instead, for each record output it tries to guess the fields order from the source report, it then produce a list of fields using a separator defined by the user. Beside the properties inherited from its ancestor classes it defines some properties to customize the generated output.

  • QuoteType:TfrQuoteType. This property controls whether the generated field value should be wrapped using specified quote char or not. Possible values are qtNone, qtQuoteChar and qtAutoQuote. With qtNone the field value is never wrapped, qtQuoteChar will use the character specified by property QuoteChar, any instance of QuoteChar already present in field value is duplicated. qtAutoQuote first try to find if any instance of separator or QuoteChar is already present in field value, if affirmative it behaves as if qtQuoteChar has been specified, on the contrary case, the field value is not wrapped just as if qtNone has been specified. QuoteType property is set to qtQuoteChar by default.
  • QuoteChar:TUTF8Char. This holds the character to be used to wrap the field value in case of QuoteType of value qtQuoteChar has been specified or deduced if qtAutoQuote is set. Any instance of this character in the field value will be duplicated. by default QuoteChar is set to the " character.
  • Separator:TUTF8Char. This is the character used to separate the fields in each record, by default is set to the ',' (COMMA) character but any UTF-8 valid character could be used. Some CSV files are actually TAB separated files, to get this, set Separator:=#9;

The CSV exporter do not use the inherited UsedFont property value so any value set will be ignored. With default property values, TfrCSVExportFilter will produce Excel compatible files, the only caveat is that Excel will not recognize the file as UTF-8 encoded. To force Excel to recognize the encoding automatically, set the property UseBOM to true.

TfrHTMExportFilter

inheritance: TfrExportFilter <- TfrTextExportFilter <- TfrHTMExportFilter.
Located in: lr_e_htm.pas in LazReport package.

This special text export filter produces valid "HTML 4.01 Transitional" output. Currently it defines only one additional property.

  • UseCSS:boolean. This property controls whether or not the produced output include CSS information, this property is set to true by default.

Script

A simple scripting language (interpreter) for a Pascal-like language is included in LazReport.

Some notes:

  • the interpreter seems to expect semicolons after each line
  • the interpreter cannot handle nested if statements

Example: this:

if [[PAY]>0] then begin
if[[LATE_FEE]=1] then Text:=[MSGL2];
else Text:= [MSGL1];
end;

won't compile, while this will:

if[[LATE_FEE]=1] then Text:=[MSGL2];
else Text:= [MSGL1];

Source: forum thread http://forum.lazarus.freepascal.org/index.php/topic,22902.0.html

Examples

You can find some examples in your Lazarus installation under components\lazreport\samples.

Tutorial

Please see LazReport Tutorial.

See also

Quick Start

Report Records from a Dataset

In this sample we will design a report to print records from a dataset derived component (TDbf, TSQLQuery, TZTable, TZQuery, Etc.). First it's assumed that LazReport is already installed and the dataset component, called "Dbf1" here, is already configured and active.

  1. From LazReport tab, select TfrReport component and drop it in Form Designer, it will be named "frReport1".
  2. Drop a TfrDbDataset component, it will be named "frDbDataset1"
  3. Drop a TButton, it will be named Button1, change its name to "btnShowReport"
  4. With frDbDataset1 selected in Object Inspector select "Dbf1" for the "Dataset" property
  5. Now select frReport1 and using the same procedure link its "Dataset" property to "frDbDataset1":

    lrformsetup.png

  6. Right Click frReport1 and select "Design Report" from the menu, LazReport report designer will appear.
  7. From Designer window, select menu Tools->Tools->Insert DB Fields, Insert fields Dialog will appear.
  8. In field list select the fields you want in the report
  9. Check "Include Headers" and "Include Bands" options, the result should be something like this:

    lrinsertfieldsdialog.png

  10. Press the "Ok" button, LazReport will arrange bands and fields like this:

    lrreportwithfields.png

  11. Press the preview button lrprevieweye.png, LazReport will then arrange things and show:

    lrpreviewreport.png

  12. Save the report with Menu File->Save, select the same directory as the current project and name it as listing1.lrf
  13. Close the report designer.
  14. Double click btnShowReport and type the following code:
 frReport1.LoadFromFile('listing1.lrf');
 frReport1.ShowReport;

Bug reports

Please report problems using the lazarus/freepascal bugtracker, project: "Lazarus Packages", Category "LazReport", for patches please submit a bug report and attach the patch to it.