2004-08-31 14:40:07 +00:00
|
|
|
{
|
|
|
|
:: Registers the GraphicList components
|
|
|
|
::
|
|
|
|
:: Last changed: $Date$
|
|
|
|
:: Revision: $Rev$
|
|
|
|
:: Author: $Author$
|
|
|
|
}
|
|
|
|
unit X2CLGLReg;
|
|
|
|
|
|
|
|
interface
|
|
|
|
procedure Register;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
uses
|
|
|
|
Classes,
|
2004-09-01 11:19:37 +00:00
|
|
|
DesignIntf,
|
|
|
|
X2CLGraphicList,
|
|
|
|
X2CLGLEditors;
|
|
|
|
|
|
|
|
{$R ..\Resources\GraphicList.dcr}
|
2004-08-31 14:40:07 +00:00
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
begin
|
2006-03-24 05:56:59 +00:00
|
|
|
RegisterComponents('X2Software', [TX2GraphicContainer, TX2GraphicList]);
|
|
|
|
|
2004-09-02 10:36:24 +00:00
|
|
|
RegisterPropertyEditor(TypeInfo(TX2GraphicCollection), TX2GraphicContainer, 'Graphics', TX2GraphicsProperty);
|
2004-09-01 11:19:37 +00:00
|
|
|
RegisterComponentEditor(TX2GraphicContainer, TX2GraphicContainerEditor);
|
|
|
|
RegisterComponentEditor(TX2GraphicList, TX2GraphicListEditor);
|
2004-08-31 14:40:07 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|
|
|
|
|