lazarus/components/fpreport/design/reportdesign.lpr
michael 91c3879a87 * Rename files to avoid too generic names
git-svn-id: trunk@55935 -
2017-09-27 18:39:19 +00:00

50 lines
1.0 KiB
ObjectPascal

program reportdesign;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms,
runtimetypeinfocontrols,
fpreportdb,
// These configure various designer factories
regfpdesigner,
frmfpreportdesignermain,
// Various report data
frafpreportcsvdata,
frafpreportdbfdata,
frafpreportjsondata,
frafpreportsqldbdata,
frmideselectreportdata,
// Various forms
frmfpreportdataconnectioneditor,
frmconfigreportdata,
frmfpreportvariables,
frmfpreportproperties,
frmfpreportpreviewdata,
cfgfpreportpdfexport,
cfgfpreportimageexport,
cfgfpreporthtmlexport,
//
fpreporthtmlexport,
fpreportpreview,
fpreportformexport;
{$R *.res}
var
FPReportDesignerForm: TFPReportDesignerForm;
begin
RequireDerivedFormResource:=True;
RegisterFPReportPropEditors;
Application.Initialize;
Application.CreateForm(TFPReportDesignerForm,FPReportDesignerForm);
Application.Scaled:=False;
Application.Run;
end.