2016-12-07 12:23:59 +00:00
|
|
|
unit JvCtrlsReg;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
SysUtils;
|
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
2018-03-11 14:55:36 +00:00
|
|
|
{$R ../../resource/jvctrlsreg.res}
|
2016-12-07 12:23:59 +00:00
|
|
|
|
|
|
|
uses
|
2019-05-04 21:53:45 +00:00
|
|
|
Classes, Controls, ActnList, PropEdits, JvDsgnConsts,
|
2019-07-28 16:56:07 +00:00
|
|
|
JvBehaviorLabel, JvBehaviorLabelEditor,
|
2018-09-27 22:12:41 +00:00
|
|
|
JvMovableBevel, JvRuler, JvGroupHeader, JvRollOut,
|
2019-05-20 22:49:48 +00:00
|
|
|
JvHtControls, JvHint, JvHTHintForm, JvComboListBox, JvInstallLabel,
|
2019-06-12 13:21:57 +00:00
|
|
|
JvOfficeColorPanel,
|
2019-05-04 21:53:45 +00:00
|
|
|
JvAutoComplete; // original JVCL has this in package JvCore
|
2016-12-07 12:23:59 +00:00
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
begin
|
2019-07-20 17:30:47 +00:00
|
|
|
RegisterComponents(RsPaletteJvclVisual, [
|
2019-07-28 16:56:07 +00:00
|
|
|
TJvBehaviorLabel,
|
2018-09-27 22:12:41 +00:00
|
|
|
TJvMovableBevel, TJvMovablePanel, TJvRuler, TJvGroupHeader, TJvRollOut,
|
2019-05-04 21:53:45 +00:00
|
|
|
TJvHint, TJvHTLabel, TJvHTListbox, TJvHTCombobox, TJvComboListBox,
|
2019-06-12 13:21:57 +00:00
|
|
|
TJvOfficeColorPanel,
|
2019-05-20 22:49:48 +00:00
|
|
|
TJvLookupAutoComplete, TJvInstallLabel
|
2018-03-11 14:55:36 +00:00
|
|
|
]);
|
2019-07-28 16:56:07 +00:00
|
|
|
RegisterPropertyEditor(TypeInfo(TJvLabelBehaviorName), TJvBehaviorLabel, 'Behavior', TJvLabelBehaviorProperty);
|
2016-12-07 12:23:59 +00:00
|
|
|
RegisterPropertyEditor(TypeInfo(TCaption), TJvHTLabel, 'Caption', TJvHintProperty);
|
2018-09-27 22:12:41 +00:00
|
|
|
RegisterActions(RsJVCLActionsCategory, [TJvRollOutAction], nil);
|
2016-12-07 12:23:59 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|
|
|
|
|