You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7082 8e941d3f-bd1b-0410-a28a-d453659cc2b4
40 lines
1.0 KiB
ObjectPascal
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.
|
|
|