NiceGrid: Initial commit

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8841 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2023-06-23 15:21:39 +00:00
parent 71a45035c5
commit 9884b87d80
35 changed files with 7140 additions and 0 deletions

View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<Package Version="5">
<PathDelim Value="\"/>
<Name Value="NiceGridLaz"/>
<Type Value="RunAndDesignTime"/>
<AddToProjectUsesSection Value="True"/>
<Author Value="Priyatna"/>
<CompilerOptions>
<Version Value="11"/>
<PathDelim Value="\"/>
<SearchPaths>
<IncludeFiles Value="..\.."/>
<OtherUnitFiles Value="..\.."/>
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
</CompilerOptions>
<Description Value="A component that is aimed to be a standard string grid replacement. It is written from scratch, not descended from TStringGrid. Originally written for Delphi, it is adapted to Lazarus here."/>
<License Value="MPL 1.1"/>
<Version Major="3"/>
<Files Count="2">
<Item1>
<Filename Value="../../source/nicegrid.pas"/>
<UnitName Value="NiceGrid"/>
</Item1>
<Item2>
<Filename Value="../../source/nicegridreg.pas"/>
<HasRegisterProc Value="True"/>
<UnitName Value="NiceGridReg"/>
</Item2>
</Files>
<CompatibilityMode Value="True"/>
<RequiredPkgs Count="2">
<Item1>
<PackageName Value="IDEIntf"/>
</Item1>
<Item2>
<PackageName Value="LCL"/>
<MinVersion Major="1" Valid="True"/>
</Item2>
</RequiredPkgs>
<UsageOptions>
<UnitPath Value="$(PkgOutDir)"/>
</UsageOptions>
<PublishOptions>
<Version Value="2"/>
</PublishOptions>
</Package>
</CONFIG>

View File

@ -0,0 +1,22 @@
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit NiceGridLaz;
{$warn 5023 off : no warning about unused units}
interface
uses
NiceGrid, NiceGridReg, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('NiceGridReg', @NiceGridReg.Register);
end;
initialization
RegisterPackage('NiceGridLaz', @Register);
end.