Files
lazarus-ccr/components/jvcllaz/design/JvCtrls/jvctrlsreg.pas
wp_xxyyzz 447d867a99 jvcllaz: Add new component TJvBehaviorLabel
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7082 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2019-07-28 16:56:07 +00:00

40 lines
1.0 KiB
ObjectPascal

unit JvCtrlsReg;
{$mode objfpc}{$H+}
interface
uses
SysUtils;
procedure Register;
implementation
{$R ../../resource/jvctrlsreg.res}
uses
Classes, Controls, ActnList, PropEdits, JvDsgnConsts,
JvBehaviorLabel, JvBehaviorLabelEditor,
JvMovableBevel, JvRuler, JvGroupHeader, JvRollOut,
JvHtControls, JvHint, JvHTHintForm, JvComboListBox, JvInstallLabel,
JvOfficeColorPanel,
JvAutoComplete; // original JVCL has this in package JvCore
procedure Register;
begin
RegisterComponents(RsPaletteJvclVisual, [
TJvBehaviorLabel,
TJvMovableBevel, TJvMovablePanel, TJvRuler, TJvGroupHeader, TJvRollOut,
TJvHint, TJvHTLabel, TJvHTListbox, TJvHTCombobox, TJvComboListBox,
TJvOfficeColorPanel,
TJvLookupAutoComplete, TJvInstallLabel
]);
RegisterPropertyEditor(TypeInfo(TJvLabelBehaviorName), TJvBehaviorLabel, 'Behavior', TJvLabelBehaviorProperty);
RegisterPropertyEditor(TypeInfo(TCaption), TJvHTLabel, 'Caption', TJvHintProperty);
RegisterActions(RsJVCLActionsCategory, [TJvRollOutAction], nil);
end;
end.