TAChart: Add TAChartAggPas package

git-svn-id: trunk@30147 -
This commit is contained in:
ask 2011-04-03 09:12:12 +00:00
parent 35a3f8195f
commit d4ba2c99b9
5 changed files with 74 additions and 6 deletions

2
.gitattributes vendored
View File

@ -2445,6 +2445,8 @@ components/tachart/icons/tdbchartsource.png -text svneol=unset#images/png
components/tachart/icons/tlistchartsource.png -text svneol=unset#images/png
components/tachart/icons/trandomchartsource.png -text svneol=unset#images/png
components/tachart/icons/tuserdefinedchartsource.png -text svneol=unset#images/png
components/tachart/tachartaggpas.lpk svneol=native#text/pascal
components/tachart/tachartaggpas.pas svneol=native#text/pascal
components/tachart/tachartaxis.pas svneol=native#text/pascal
components/tachart/tachartlazaruspkg.lpk svneol=native#text/plain
components/tachart/tachartlazaruspkg.pas svneol=native#text/plain

View File

@ -34,8 +34,7 @@
<MinVersion Major="1" Release="1" Valid="True"/>
</Item1>
<Item2>
<PackageName Value="LazOpenGLContext"/>
<MinVersion Release="1" Valid="True"/>
<PackageName Value="LCL"/>
</Item2>
<Item3>
<PackageName Value="TAChartLazarusPkg"/>
@ -46,7 +45,7 @@
<MinVersion Major="1" Valid="True"/>
</Item4>
<Item5>
<PackageName Value="LCL"/>
<PackageName Value="TAChartAggPas"/>
</Item5>
</RequiredPackages>
<Units Count="2">
@ -72,7 +71,6 @@
</Target>
<SearchPaths>
<IncludeFiles Value="$(ProjOutDir)"/>
<OtherUnitFiles Value="$(LazarusDir)\components\tachart"/>
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Linking>

View File

@ -6,8 +6,8 @@ uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
aggpaslcl, Interfaces, // this includes the LCL widgetset
Forms, Main, tachartlazaruspkg;
aggpaslcl, tachartaggpas, tachartlazaruspkg, Interfaces, // this includes the LCL widgetset
Forms, Main;
{$R *.res}

View File

@ -0,0 +1,48 @@
<?xml version="1.0"?>
<CONFIG>
<Package Version="3">
<PathDelim Value="\"/>
<Name Value="TAChartAggPas"/>
<Author Value="Alexander Klenin"/>
<CompilerOptions>
<Version Value="10"/>
<PathDelim Value="\"/>
<SearchPaths>
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Other>
<CompilerMessages>
<UseMsgFile Value="True"/>
</CompilerMessages>
<CompilerPath Value="$(CompPath)"/>
</Other>
</CompilerOptions>
<Description Value="AggPas drawing back-end for TAChart"/>
<Version Major="1"/>
<Files Count="1">
<Item1>
<Filename Value="tadraweraggpas.pas"/>
<UnitName Value="TADrawerAggPas"/>
</Item1>
</Files>
<Type Value="RunAndDesignTime"/>
<RequiredPkgs Count="3">
<Item1>
<PackageName Value="TAChartLazarusPkg"/>
</Item1>
<Item2>
<PackageName Value="AggPasLCL"/>
</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 TAChartAggPas;
interface
uses
TADrawerAggPas, LazarusPackageIntf;
implementation
procedure Register;
begin
end;
initialization
RegisterPackage('TAChartAggPas', @Register);
end.