mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 22:39:11 +02:00
TAChart: Add TAChartPrint package
git-svn-id: trunk@30524 -
This commit is contained in:
parent
92692eea39
commit
db376a11f6
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -2473,6 +2473,8 @@ components/tachart/tachartfpvectorial.lpk svneol=native#text/plain
|
|||||||
components/tachart/tachartfpvectorial.pas svneol=native#text/pascal
|
components/tachart/tachartfpvectorial.pas svneol=native#text/pascal
|
||||||
components/tachart/tachartlazaruspkg.lpk svneol=native#text/plain
|
components/tachart/tachartlazaruspkg.lpk svneol=native#text/plain
|
||||||
components/tachart/tachartlazaruspkg.pas svneol=native#text/plain
|
components/tachart/tachartlazaruspkg.pas svneol=native#text/plain
|
||||||
|
components/tachart/tachartprint.lpk svneol=native#text/plain
|
||||||
|
components/tachart/tachartprint.pas svneol=native#text/pascal
|
||||||
components/tachart/tachartutils.pas svneol=native#text/plain
|
components/tachart/tachartutils.pas svneol=native#text/plain
|
||||||
components/tachart/tachartwmf.lpk svneol=native#text/plain
|
components/tachart/tachartwmf.lpk svneol=native#text/plain
|
||||||
components/tachart/tachartwmf.pas svneol=native#text/pascal
|
components/tachart/tachartwmf.pas svneol=native#text/pascal
|
||||||
|
48
components/tachart/tachartprint.lpk
Normal file
48
components/tachart/tachartprint.lpk
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<CONFIG>
|
||||||
|
<Package Version="3">
|
||||||
|
<PathDelim Value="\"/>
|
||||||
|
<Name Value="TAChartPrint"/>
|
||||||
|
<Author Value="Alexander Klenin"/>
|
||||||
|
<CompilerOptions>
|
||||||
|
<Version Value="10"/>
|
||||||
|
<PathDelim Value="\"/>
|
||||||
|
<SearchPaths>
|
||||||
|
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)\$(LCLWidgetType)"/>
|
||||||
|
</SearchPaths>
|
||||||
|
<Other>
|
||||||
|
<CompilerMessages>
|
||||||
|
<UseMsgFile Value="True"/>
|
||||||
|
</CompilerMessages>
|
||||||
|
<CompilerPath Value="$(CompPath)"/>
|
||||||
|
</Other>
|
||||||
|
</CompilerOptions>
|
||||||
|
<Description Value="Printing back-end for TAChart"/>
|
||||||
|
<Version Major="1"/>
|
||||||
|
<Files Count="1">
|
||||||
|
<Item1>
|
||||||
|
<Filename Value="taprint.pas"/>
|
||||||
|
<UnitName Value="TAPrint"/>
|
||||||
|
</Item1>
|
||||||
|
</Files>
|
||||||
|
<Type Value="RunAndDesignTime"/>
|
||||||
|
<RequiredPkgs Count="3">
|
||||||
|
<Item1>
|
||||||
|
<PackageName Value="TAChartLazarusPkg"/>
|
||||||
|
</Item1>
|
||||||
|
<Item2>
|
||||||
|
<PackageName Value="Printer4Lazarus"/>
|
||||||
|
</Item2>
|
||||||
|
<Item3>
|
||||||
|
<PackageName Value="FCL"/>
|
||||||
|
<MinVersion Major="1" Release="1" Valid="True"/>
|
||||||
|
</Item3>
|
||||||
|
</RequiredPkgs>
|
||||||
|
<UsageOptions>
|
||||||
|
<UnitPath Value="$(PkgOutDir)"/>
|
||||||
|
</UsageOptions>
|
||||||
|
<PublishOptions>
|
||||||
|
<Version Value="2"/>
|
||||||
|
</PublishOptions>
|
||||||
|
</Package>
|
||||||
|
</CONFIG>
|
20
components/tachart/tachartprint.pas
Normal file
20
components/tachart/tachartprint.pas
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ This file was automatically created by Lazarus. Do not edit!
|
||||||
|
This source is only used to compile and install the package.
|
||||||
|
}
|
||||||
|
|
||||||
|
unit TAChartPrint;
|
||||||
|
|
||||||
|
interface
|
||||||
|
|
||||||
|
uses
|
||||||
|
TAPrint, LazarusPackageIntf;
|
||||||
|
|
||||||
|
implementation
|
||||||
|
|
||||||
|
procedure Register;
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
|
||||||
|
initialization
|
||||||
|
RegisterPackage('TAChartPrint', @Register);
|
||||||
|
end.
|
Loading…
Reference in New Issue
Block a user