1 | { This file was automatically created by Lazarus. Do not edit!
|
---|
2 | This source is only used to compile and install the package.
|
---|
3 | }
|
---|
4 |
|
---|
5 | unit bgracontrols;
|
---|
6 |
|
---|
7 | interface
|
---|
8 |
|
---|
9 | uses
|
---|
10 | BCTools, BCBaseCtrls, BCButton, BCLabel, BCPanel, bgrabitmapthemeutils,
|
---|
11 | BGRAFlashProgressBar, BGRAGraphicControl, BGRAImageButton, BGRAImageList,
|
---|
12 | BGRAImageManipulation, BGRAKnob, BGRALabelFX, BGRANeoButton, bgrasamples,
|
---|
13 | BGRAShape, BGRASpeedButton, BGRASpriteAnimation, BGRAVirtualScreen,
|
---|
14 | BGRAWin7ToolBar, BCRTTI, BCStylesForm, BGRAButton, BGRALabel, BGRAPanel,
|
---|
15 | LazarusPackageIntf;
|
---|
16 |
|
---|
17 | implementation
|
---|
18 |
|
---|
19 | procedure Register;
|
---|
20 | begin
|
---|
21 | RegisterUnit('BCButton', @BCButton.Register);
|
---|
22 | RegisterUnit('BCLabel', @BCLabel.Register);
|
---|
23 | RegisterUnit('BCPanel', @BCPanel.Register);
|
---|
24 | RegisterUnit('BGRAFlashProgressBar', @BGRAFlashProgressBar.Register);
|
---|
25 | RegisterUnit('BGRAGraphicControl', @BGRAGraphicControl.Register);
|
---|
26 | RegisterUnit('BGRAImageButton', @BGRAImageButton.Register);
|
---|
27 | RegisterUnit('BGRAImageList', @BGRAImageList.Register);
|
---|
28 | RegisterUnit('BGRAImageManipulation', @BGRAImageManipulation.Register);
|
---|
29 | RegisterUnit('BGRAKnob', @BGRAKnob.Register);
|
---|
30 | RegisterUnit('BGRALabelFX', @BGRALabelFX.Register);
|
---|
31 | RegisterUnit('BGRANeoButton', @BGRANeoButton.Register);
|
---|
32 | RegisterUnit('BGRAShape', @BGRAShape.Register);
|
---|
33 | RegisterUnit('BGRASpeedButton', @BGRASpeedButton.Register);
|
---|
34 | RegisterUnit('BGRASpriteAnimation', @BGRASpriteAnimation.Register);
|
---|
35 | RegisterUnit('BGRAVirtualScreen', @BGRAVirtualScreen.Register);
|
---|
36 | RegisterUnit('BGRAWin7ToolBar', @BGRAWin7ToolBar.Register);
|
---|
37 | RegisterUnit('BGRAButton', @BGRAButton.Register);
|
---|
38 | RegisterUnit('BGRALabel', @BGRALabel.Register);
|
---|
39 | RegisterUnit('BGRAPanel', @BGRAPanel.Register);
|
---|
40 | end;
|
---|
41 |
|
---|
42 | initialization
|
---|
43 | RegisterPackage('bgracontrols', @Register);
|
---|
44 | end.
|
---|