mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-01 21:20:28 +02:00
added package anchordocking
git-svn-id: trunk@25970 -
This commit is contained in:
parent
2a40dfe235
commit
b6d00760e4
5
.gitattributes
vendored
5
.gitattributes
vendored
@ -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
|
||||
|
53
examples/anchordocking/anchordocking.lpk
Normal file
53
examples/anchordocking/anchordocking.lpk
Normal 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>
|
2917
examples/anchordocking/anchordocking.pas
Normal file
2917
examples/anchordocking/anchordocking.pas
Normal file
File diff suppressed because it is too large
Load Diff
20
examples/anchordocking/anchordockpkg.pas
Normal file
20
examples/anchordocking/anchordockpkg.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 anchordockpkg;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
AnchorDocking, AnchorDockStorage, LazarusPackageIntf;
|
||||
|
||||
implementation
|
||||
|
||||
procedure Register;
|
||||
begin
|
||||
end;
|
||||
|
||||
initialization
|
||||
RegisterPackage('AnchorDocking', @Register);
|
||||
end.
|
1502
examples/anchordocking/anchordockstorage.pas
Normal file
1502
examples/anchordocking/anchordockstorage.pas
Normal file
File diff suppressed because it is too large
Load Diff
1
packager/globallinks/anchordocking-0.lpl
Normal file
1
packager/globallinks/anchordocking-0.lpl
Normal file
@ -0,0 +1 @@
|
||||
$(LazarusDir)/examples/anchodocking/anchordocking.lpk
|
Loading…
Reference in New Issue
Block a user