jvcllaz: Separation of designtime and runtime code and all packages complete. Use package names and location of the Delphi version (WILL BREAK EXISTING CODE). Update examples.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5436 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2016-12-07 12:23:59 +00:00
parent 2209db658d
commit 52d6d0aa6e
68 changed files with 535 additions and 3458 deletions

View File

@ -0,0 +1,28 @@
unit JvPageCompsReg;
{$mode objfpc}{$H+}
interface
uses
Classes, LResources, SysUtils;
procedure Register;
implementation
uses
JvDsgnConsts, JvNavigationPane;
procedure Register;
begin
RegisterComponents(RsPaletteNavPane, [TJvNavigationPane, TJvNavIconButton,
TJvNavPanelButton, TJvNavPanelHeader, TJvNavPanelDivider, TJvOutlookSplitter,
TJvNavPaneStyleManager, TJvNavPaneToolPanel]);
end;
initialization
{$I ..\..\resource\JvNavigationPaneLaz.lrs}
end.