1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446
|
unit mainLCLReport;
{$mode objfpc}{$H+}
{$define ColorBands}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
fpreportlclexport, ExtCtrls, ComCtrls, fpreport;
const
TESTIMAGE = 'powered_by.png';
type
{ TFrmSimpleReportLCL }
TFrmSimpleReportLCL = class(TForm)
BuRenderCanvas: TButton;
BuRenderPrerview: TButton;
BuRenderPdf: TButton;
lblPage: TLabel;
PanelRender: TPanel;
panelMain: TPanel;
UpDown1: TUpDown;
procedure BuRenderCanvasClick(Sender: TObject);
procedure BuRenderPdfClick(Sender: TObject);
procedure BuRenderPrerviewClick(Sender: TObject);
procedure FormActivate(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure PanelRenderPaint(Sender: TObject);
procedure UpDown1Changing(Sender: TObject; var AllowChange: Boolean);
private
FInit: Boolean;
// Report
FReport: TFPReport;
FDataParent : TComponent;
lReportData : TFPReportUserData;
sl: TStringList;
// canvas Exporter
rptExporter : TFPReportExportCanvas;
procedure CheckReport;
procedure CreateDemoReport;
procedure GetReportDataEOF(Sender: TObject; var IsEOF: Boolean);
procedure GetReportDataFirst(Sender: TObject);
procedure GetReportDataNames(Sender: TObject; List: TStrings);
procedure GetReportDataValue(Sender: TObject; const AValueName: String;
var AValue: Variant);
procedure InitialiseData;
procedure CleanUp;
procedure ButtonSet(state:Boolean);
public
end;
var
FrmSimpleReportLCL: TFrmSimpleReportLCL;
implementation
uses
fpTTF,
fpreportformexport,
fpreportpdfexport;
{$R *.lfm}
procedure TFrmSimpleReportLCL.PanelRenderPaint(Sender: TObject);
begin
rptExporter.Execute;
end;
procedure TFrmSimpleReportLCL.UpDown1Changing(Sender: TObject; var AllowChange: Boolean);
begin
if (UpDown1.Position > UpDown1.Max)
or (UpDown1.Position < UpDown1.Min) then begin
AllowChange:=false;
exit;
end;
TFPReportExportCanvas(rptExporter).PageIndex:=UpDown1.Position;
lblPage.Caption:= 'Page: ' + IntToStr(TFPReportExportCanvas(rptExporter).PageIndex);
Invalidate;
end;
procedure TFrmSimpleReportLCL.BuRenderCanvasClick(Sender: TObject);
begin
ButtonSet(false);
try
CheckReport;
if Not Assigned(rptExporter) then
rptExporter:= TFPReportExportCanvas.Create(nil);
rptExporter.Report:= FReport;
rptExporter.AutoRun:=True;
rptExporter.Canvas:= PanelRender.Canvas;
FReport.RenderReport(rptExporter);
UpDown1.Min:= 0;
UpDown1.Max:= rptExporter.PageCount-1;
UpDown1.Position:= 0;
rptExporter.PageIndex:=UpDown1.Position;
lblPage.Caption:= 'Page: ' + IntToStr(rptExporter.PageIndex);
PanelRender.OnPaint:= @PanelRenderPaint;
Invalidate;
finally
ButtonSet(true);
end;
end;
procedure TFrmSimpleReportLCL.BuRenderPdfClick(Sender: TObject);
Var
P : TFPReportExportPDF;
begin
ButtonSet(false);
try
CheckReport;
P:=TFPReportExportPDF.Create(nil);
P.FileName:= ApplicationName+'-report.pdf';
P.Report:= FReport;
P.AutoRun:=True;
FReport.RenderReport(P);
ShowMessage('PDF created: '+P.FileName);
finally
ButtonSet(true);
end;
end;
procedure TFrmSimpleReportLCL.CheckReport;
begin
if Not Assigned(Freport) then
CreateDemoReport;
if not Freport.Prepared then
FReport.RunReport;
end;
procedure TFrmSimpleReportLCL.BuRenderPrerviewClick(Sender: TObject);
Var
P : TFPreportPreviewExport;
begin
P:=Nil;
ButtonSet(false);
try
CheckReport;
P:=TFPreportPreviewExport.Create(Self);
P.Report:= FReport;
P.AutoRun:=True;
FReport.RenderReport(P);
finally
P.Free;
ButtonSet(true);
end;
end;
procedure TFrmSimpleReportLCL.FormActivate(Sender: TObject);
begin
if not FInit then begin
gTTFontCache.ReadStandardFonts;
gTTFontCache.BuildFontCache;
if PaperManager.PaperCount=0 then
PaperManager.RegisterStandardSizes;
FInit:= true;
end;
end;
procedure TFrmSimpleReportLCL.FormCreate(Sender: TObject);
begin
FReport:= nil;
FDataParent:= nil;
lReportData:= nil;
rptExporter:= nil;
sl:= nil;
FInit:= False;
end;
procedure TFrmSimpleReportLCL.FormDestroy(Sender: TObject);
begin
CleanUp;
end;
procedure TFrmSimpleReportLCL.CleanUp;
begin
if Assigned(rptExporter) then FreeAndNil(rptExporter);
if Assigned(FReport) then FreeAndNil(FReport);
if Assigned(FDataParent) then FreeAndNil(FDataParent);
if Assigned(lReportData) then FreeAndNil(lReportData);
if Assigned(sl) then FreeAndNil(sl);
end;
procedure TFrmSimpleReportLCL.ButtonSet(state: Boolean);
begin
BuRenderCanvas.Enabled:= state;
BuRenderPrerview.Enabled:= state;
BuRenderPdf.Enabled:= state;
Application.ProcessMessages;
end;
procedure TFrmSimpleReportLCL.CreateDemoReport;
const
{$ifdef Windows}
defaultFont = 'ArialMT';
{$else}
defaultFont = 'Ubuntu';
{$endif}
var
p: TFPReportPage;
TitleBand: TFPReportTitleBand;
DataBand: TFPReportDataBand;
Memo: TFPReportMemo;
PageFooter: TFPReportPageFooterBand;
ColumnBand: TFPReportColumnHeaderBand;
DataFooterBand: TFPReportDataFooterBand;
begin
CleanUp;
lReportData := TFPReportUserData.Create(Self);
lReportData.Name:='UserData';
lReportData.OnGetValue := @GetReportDataValue;
lReportData.OnGetEOF := @GetReportDataEOF;
lReportData.OnFirst := @GetReportDataFirst;
lReportData.OnGetNames := @GetReportDataNames;
lReportData.InitFieldDefs;
InitialiseData;
FReport:=TFPReport.Create(Self);
FReport.ReportData.AddReportData(lReportData);
FReport.Author := 'Andreas';
FReport.Title := 'LCL Report Demo';
FReport.Variables.AddVariable('Var1').AsString:='Value1';
FReport.Variables.AddVariable('Var2').AsString:='Value2';
p := TFPReportPage.Create(FReport);
p.Orientation := poPortrait;
p.PageSize.PaperName := 'A4';
{ page margins }
p.Margins.Left := 20;
p.Margins.Top := 20;
p.Margins.Right := 10;
p.Margins.Bottom := 20;
p.Data := lReportData;
p.ColumnCount:= 2;
p.ColumnGap:= 5;
TitleBand := TFPReportTitleBand.Create(p);
TitleBand.Layout.Height := 30;
TitleBand.Frame.Shape := fsRectangle;
TitleBand.Frame.BackgroundColor := clNone;
Memo := TFPReportMemo.Create(TitleBand);
Memo.UseParentFont:=False;
Memo.Layout.Top := 0;
Memo.Layout.Height := 10;
Memo.Layout.Left := Memo.Layout.Height + 5; // to make room for the image
Memo.Layout.Width := TitleBand.Layout.Width - (Memo.Layout.Height + 5);
Memo.Font.Name := defaultFont;
Memo.Font.Size:= 20;
Memo.Text := 'Demo Titleband Memo1';
Memo.StretchMode := smActualHeight;
Memo.TextAlignment.Vertical := tlCenter;
Memo.TextAlignment.Horizontal := taCentered;
Memo.Frame.Shape := fsRectangle;
Memo.Frame.BackgroundColor:= clLtGray;
With TFPReportImage.Create(TitleBand) do
begin
Layout.Left := 0;
Layout.Top := 0;
Layout.Width := Memo.Layout.Height;
Layout.Height := Memo.Layout.Height;
Stretched:=True;
LoadFromFile(ExtractFilePath(ParamStr(0))+TESTIMAGE);
end;
Memo := TFPReportMemo.Create(TitleBand);
Memo.UseParentFont:=False;
Memo.Layout.Left := 0;
Memo.Layout.Top := 10;
Memo.Layout.Width := TitleBand.Layout.Width;
Memo.Layout.Height := 5;
Memo.Font.Name := defaultFont;
Memo.Font.Size:= 12;
Memo.Text := 'Demo Titleband Memo2';
Memo.StretchMode := smActualHeight;
Memo.TextAlignment.Vertical := tlCenter;
Memo.TextAlignment.Horizontal := taLeftJustified;
Memo.Frame.Shape := fsRectangle;
Memo := TFPReportMemo.Create(TitleBand);
Memo.UseParentFont:=False;
Memo.Layout.Left := 0;
Memo.Layout.Top := 15;
Memo.Layout.Width := TitleBand.Layout.Width;
Memo.Layout.Height := 5;
Memo.Font.Name := defaultFont;
Memo.Font.Size:= 12;
Memo.Text := 'Demo Titleband Memo3';
Memo.StretchMode := smActualHeight;
Memo.TextAlignment.Vertical := tlCenter;
Memo.TextAlignment.Horizontal := taLeftJustified;
Memo.Frame.Shape := fsRectangle;
Memo := TFPReportMemo.Create(TitleBand);
Memo.UseParentFont:=False;
Memo.Layout.Left := 0;
Memo.Layout.Top := 20;
Memo.Layout.Width := TitleBand.Layout.Width;
Memo.Layout.Height := 5;
Memo.Font.Name := defaultFont;
Memo.Font.Size:= 12;
Memo.Text := 'Date: ' + FormatDateTime('DD.MM.YYYY HH:MM',now);
Memo.StretchMode := smActualHeight;
Memo.TextAlignment.Vertical := tlCenter;
Memo.TextAlignment.Horizontal := taLeftJustified;
Memo.Frame.Shape := fsRectangle;
ColumnBand:= TFPReportColumnHeaderBand.Create(p);
ColumnBand.Layout.Height := 5;
ColumnBand.Layout.Width:=50;
ColumnBand.Frame.Shape := fsRectangle;
ColumnBand.Frame.BackgroundColor := clNone;
Memo := TFPReportMemo.Create(ColumnBand);
Memo.UseParentFont:=False;
Memo.Layout.Left := 0;
Memo.Layout.Top := 20;
Memo.Layout.Width := 50;
Memo.Layout.Height := 5;
Memo.Font.Name := defaultFont;
Memo.Font.Size:= 12;
Memo.Text := 'Column';
Memo.StretchMode := smActualHeight;
Memo.TextAlignment.Vertical := tlCenter;
Memo.TextAlignment.Horizontal := taLeftJustified;
Memo.Frame.Shape := fsRectangle;
DataBand := TFPReportDataBand.Create(p);
DataBand.Layout.Height := 10;
{$ifdef ColorBands}
DataBand.Frame.Shape := fsRectangle;
DataBand.Frame.BackgroundColor := clDataBand;
{$endif}
Memo := TFPReportMemo.Create(DataBand);
Memo.Layout.Left := 5;
Memo.Layout.Top := 0;
Memo.Layout.Width := 60;
Memo.Layout.Height := 5;
Memo.Font.Name := defaultFont;
Memo.Text := 'Hello world <[userdata.string]>.';
DataFooterBand := TFPReportDataFooterBand.Create(p);
DataFooterBand.Layout.Height := 10;
{$ifdef ColorBands}
DataFooterBand.Frame.Shape := fsRectangle;
DataFooterBand.Frame.BackgroundColor := clNone;
{$endif}
With TFPReportShape.Create(DataFooterBand) do
begin
Layout.Left := 5;
Layout.Top := 15;
Layout.Width := 20;
Layout.Height := 20;
ShapeType:=stCircle;
end;
PageFooter := TFPReportPageFooterBand.Create(p);
PageFooter.Layout.Height := 10;
{$ifdef ColorBands}
PageFooter.Frame.Shape := fsRectangle;
PageFooter.Frame.BackgroundColor := clPageHeaderFooter;
{$endif}
Memo := TFPReportMemo.Create(PageFooter);
Memo.Layout.Left := 135;
Memo.Layout.Top := 13;
Memo.Layout.Width := 15;
Memo.Layout.Height := 5;
Memo.Options:=[moDisableWordWrap];
Memo.Font.Name := defaultFont;
Memo.Text := 'Page [PageNo] ';
end;
procedure TFrmSimpleReportLCL.GetReportDataFirst(Sender: TObject);
begin
// Nothing to do yet, but needed
end;
procedure TFrmSimpleReportLCL.GetReportDataValue(Sender: TObject;
const AValueName: String; var AValue: Variant);
begin
if (AValueName = 'element') or (AValueName = 'string') then
begin
AValue := sl[lReportData.RecNo-1];
end
else
AValue:=AValueName+IntToStr(lReportData.RecNo);
end;
procedure TFrmSimpleReportLCL.GetReportDataEOF(Sender: TObject;
var IsEOF: Boolean);
begin
if lReportData.RecNo > sl.Count then
IsEOF := True
else
IsEOF := False;
end;
procedure TFrmSimpleReportLCL.GetReportDataNames(Sender: TObject;
List: TStrings);
begin
List.Add('element');
List.Add('string');
List.Add('FirstName');
List.Add('LastName');
List.Add('DateOfBirth');
List.Add('Gender');
List.Add('Email');
end;
procedure TFrmSimpleReportLCL.InitialiseData;
var
i: integer;
begin
sl := TStringList.Create;
for i := 1 to 50 do
sl.Add(Format('Item %d', [i]));
end;
end.
|