Register (package)

From Lazarus wiki
Revision as of 08:07, 3 October 2014 by BigChimp (talk | contribs) (what exactly is registerpackage versus registerunit etc?)
Jump to navigationJump to search

A Lazarus package that is intended to be installed needs a Register procedure which declares

  • all the package components and corresponding files
  • the tab on which the components are to be located.

Related procoedures/functions

unit RegisterMyPackage;

interface

  uses 
    LazarusPackageIntf, MyPackage1, MyPackage2;

implementation

procedure Register;
begin
  RegisterUnit( 'MyTab', @MyPackage1.Register);
  RegisterUnit( 'MyTab', @MyPackage2.Register);
end;

initialization
  RegisterPackage( 'MyTab', @Register );
end.