TAChart: Add TAChartBgra package

git-svn-id: trunk@30148 -
This commit is contained in:
ask 2011-04-03 09:32:57 +00:00
parent d4ba2c99b9
commit 5b42a56a66
6 changed files with 73 additions and 10 deletions

2
.gitattributes vendored
View File

@ -2448,6 +2448,8 @@ components/tachart/icons/tuserdefinedchartsource.png -text svneol=unset#images/p
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/tachartbgra.lpk svneol=native#text/pascal
components/tachart/tachartbgra.pas svneol=native#text/pascal
components/tachart/tachartlazaruspkg.lpk svneol=native#text/plain
components/tachart/tachartlazaruspkg.pas svneol=native#text/plain
components/tachart/tachartutils.pas svneol=native#text/plain

View File

@ -44,7 +44,7 @@
<MinVersion Major="1" Valid="True"/>
</Item4>
</RequiredPackages>
<Units Count="3">
<Units Count="2">
<Unit0>
<Filename Value="bgrademo.lpr"/>
<IsPartOfProject Value="True"/>
@ -57,11 +57,6 @@
<ResourceBaseClass Value="Form"/>
<UnitName Value="Main"/>
</Unit1>
<Unit2>
<Filename Value="..\..\tadrawerbgra.pas"/>
<IsPartOfProject Value="True"/>
<UnitName Value="TADrawerBGRA"/>
</Unit2>
</Units>
</ProjectOptions>
<CompilerOptions>
@ -72,7 +67,6 @@
</Target>
<SearchPaths>
<IncludeFiles Value="$(ProjOutDir)"/>
<OtherUnitFiles Value="..\.."/>
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Linking>

View File

@ -8,8 +8,7 @@ uses
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
bgrabitmappack, tachartlazaruspkg,
Forms, Main, tadrawerbgra
{ you can add units after this };
Forms, Main;
{$R *.res}

View File

@ -8,7 +8,7 @@
<Version Value="10"/>
<PathDelim Value="\"/>
<SearchPaths>
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)\$(LCLWidgetType)"/>
</SearchPaths>
<Other>
<CompilerMessages>

View File

@ -0,0 +1,48 @@
<?xml version="1.0"?>
<CONFIG>
<Package Version="3">
<PathDelim Value="\"/>
<Name Value="TAChartBgra"/>
<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="BGRABitmap drawing back-end for TAChart"/>
<Version Major="1"/>
<Files Count="1">
<Item1>
<Filename Value="tadrawerbgra.pas"/>
<UnitName Value="TADrawerBGRA"/>
</Item1>
</Files>
<Type Value="RunAndDesignTime"/>
<RequiredPkgs Count="3">
<Item1>
<PackageName Value="TAChartLazarusPkg"/>
</Item1>
<Item2>
<PackageName Value="bgrabitmappack"/>
</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 TAChartBgra;
interface
uses
TADrawerBGRA, LazarusPackageIntf;
implementation
procedure Register;
begin
end;
initialization
RegisterPackage('TAChartBgra', @Register);
end.