Difference between revisions of "Register (package)"

From Lazarus wiki
Jump to navigationJump to search
m (layout)
(what exactly is registerpackage versus registerunit etc?)
Line 3: Line 3:
 
* the tab on which the [[component]]s are to be located.
 
* the tab on which the [[component]]s are to be located.
  
 +
Related procoedures/functions
 
* [[RegisterUnit]]
 
* [[RegisterUnit]]
 
* [[RegisterPackage]]
 
* [[RegisterPackage]]

Revision as of 09:07, 3 October 2014

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.