added package anchordocking

git-svn-id: trunk@25970 -
This commit is contained in:
mattias 2010-06-08 13:39:01 +00:00
parent 2a40dfe235
commit b6d00760e4
6 changed files with 4498 additions and 0 deletions

5
.gitattributes vendored
View File

@ -2746,6 +2746,10 @@ examples/affinetransforms/unit1.lfm svneol=native#text/plain
examples/affinetransforms/unit1.lrs svneol=native#text/plain
examples/affinetransforms/unit1.pas svneol=native#text/plain
examples/anchordocking/README.txt svneol=native#text/plain
examples/anchordocking/anchordocking.lpk svneol=native#text/plain
examples/anchordocking/anchordocking.pas svneol=native#text/plain
examples/anchordocking/anchordockpkg.pas svneol=native#text/plain
examples/anchordocking/anchordockstorage.pas svneol=native#text/plain
examples/autosize/childsizinglayout/childsizinglayout.lpi svneol=native#text/plain
examples/autosize/childsizinglayout/childsizinglayout.lpr svneol=native#text/plain
examples/autosize/childsizinglayout/mainunit.lfm svneol=native#text/plain
@ -5108,6 +5112,7 @@ packager/confirmpkglistdlg.lfm svneol=native#text/plain
packager/confirmpkglistdlg.pas svneol=native#text/plain
packager/globallinks/README.txt svneol=native#text/plain
packager/globallinks/aggpaslcl-1.lpl svneol=native#text/plain
packager/globallinks/anchordocking-0.lpl svneol=native#text/plain
packager/globallinks/appforms-0.lpl svneol=native#text/plain
packager/globallinks/cgilaz-0.lpl svneol=native#text/plain
packager/globallinks/chmhelppkg-0.lpl svneol=native#text/plain

View File

@ -0,0 +1,53 @@
<?xml version="1.0"?>
<CONFIG>
<Package Version="3">
<Name Value="AnchorDocking"/>
<CompilerOptions>
<Version Value="8"/>
<SearchPaths>
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
<Parsing>
<SyntaxOptions>
<UseAnsiStrings Value="True"/>
</SyntaxOptions>
</Parsing>
<Other>
<CompilerPath Value="$(CompPath)"/>
</Other>
</CompilerOptions>
<Version Minor="4"/>
<Files Count="3">
<Item1>
<Filename Value="anchordockpkg.pas"/>
<Type Value="Main Unit"/>
<UnitName Value="anchordockpkg"/>
</Item1>
<Item2>
<Filename Value="anchordocking.pas"/>
<UnitName Value="AnchorDocking"/>
</Item2>
<Item3>
<Filename Value="anchordockstorage.pas"/>
<UnitName Value="AnchorDockStorage"/>
</Item3>
</Files>
<Type Value="RunAndDesignTime"/>
<RequiredPkgs Count="2">
<Item1>
<PackageName Value="LCL"/>
</Item1>
<Item2>
<PackageName Value="FCL"/>
<MinVersion Major="1" Valid="True"/>
</Item2>
</RequiredPkgs>
<UsageOptions>
<UnitPath Value="$(PkgOutDir)/"/>
</UsageOptions>
<PublishOptions>
<Version Value="2"/>
<IgnoreBinaries Value="False"/>
</PublishOptions>
</Package>
</CONFIG>

File diff suppressed because it is too large Load Diff

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 anchordockpkg;
interface
uses
AnchorDocking, AnchorDockStorage, LazarusPackageIntf;
implementation
procedure Register;
begin
end;
initialization
RegisterPackage('AnchorDocking', @Register);
end.

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
$(LazarusDir)/examples/anchodocking/anchordocking.lpk