TAChart: Add TAChartPrint package

git-svn-id: trunk@30524 -
This commit is contained in:
ask 2011-05-02 09:16:59 +00:00
parent 92692eea39
commit db376a11f6
3 changed files with 70 additions and 0 deletions

2
.gitattributes vendored
View File

@ -2473,6 +2473,8 @@ components/tachart/tachartfpvectorial.lpk svneol=native#text/plain
components/tachart/tachartfpvectorial.pas svneol=native#text/pascal
components/tachart/tachartlazaruspkg.lpk 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/tachartwmf.lpk svneol=native#text/plain
components/tachart/tachartwmf.pas svneol=native#text/pascal

View 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>

View 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.