2020-05-22 08:12:36 +00:00
|
|
|
unit ExCtrlsReg;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
Classes, SysUtils;
|
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
2022-09-17 17:26:39 +00:00
|
|
|
ExButtons, ExCheckCtrls, ExEditCtrls, ExCombo, ExCheckCombo, ExShape;
|
2020-05-22 08:12:36 +00:00
|
|
|
|
|
|
|
{$R exctrlsreg.res}
|
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
begin
|
|
|
|
RegisterComponents('ExCtrls', [
|
2020-08-16 22:56:26 +00:00
|
|
|
TButtonEx, TCheckboxEx, TRadioButtonEx, TCheckGroupEx, TRadioGroupEx,
|
2020-12-21 15:13:59 +00:00
|
|
|
TFloatSISpinEditEx, TCurrSpinEditEx,
|
2022-09-17 17:26:39 +00:00
|
|
|
TColumnComboBoxEx, TCheckComboBoxEx,
|
|
|
|
TShapeEx
|
2020-05-22 08:12:36 +00:00
|
|
|
]);
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
end.
|
|
|
|
|