NiceSidebar: new package by Priyatna

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8849 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2023-06-24 22:41:48 +00:00
parent 9f5674152f
commit 87836a7f2b
32 changed files with 6461 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<Package Version="5">
<PathDelim Value="\"/>
<Name Value="NiceSidebarLaz"/>
<Type Value="RunAndDesignTime"/>
<Author Value="Priyatna"/>
<CompilerOptions>
<Version Value="11"/>
<PathDelim Value="\"/>
<SearchPaths>
<OtherUnitFiles Value="..\..\source"/>
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
</SearchPaths>
</CompilerOptions>
<Description Value="NiceSideBar is a visual component for Delphi and Lazarus that can be used as a menu. It mimics a side menu that usually used in websites. It has a flat design and is highly customizable. It supports two menu levels (menu and sub menu). Each menu can have a glyph that is supplied by an image list. It has hover state effect, too."/>
<License Value="MPL 1.1"/>
<Version Major="2"/>
<Files>
<Item>
<Filename Value="..\..\source\NiceSideBar.pas"/>
<UnitName Value="NiceSideBar"/>
</Item>
<Item>
<Filename Value="..\..\source\NiceSideBarReg.pas"/>
<HasRegisterProc Value="True"/>
<UnitName Value="NiceSideBarReg"/>
</Item>
</Files>
<RequiredPkgs>
<Item>
<PackageName Value="IDEIntf"/>
</Item>
<Item>
<PackageName Value="LCL"/>
</Item>
</RequiredPkgs>
<UsageOptions>
<UnitPath Value="$(PkgOutDir)"/>
</UsageOptions>
<PublishOptions>
<Version Value="2"/>
<UseFileFilters Value="True"/>
</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 NiceSidebarLaz;
{$warn 5023 off : no warning about unused units}
interface
uses
NiceSideBar, NiceSideBarReg, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('NiceSideBarReg', @NiceSideBarReg.Register);
end;
initialization
RegisterPackage('NiceSidebarLaz', @Register);
end.