jvcllaz: Add LookupAutoComplete component.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6890 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2019-05-04 21:53:45 +00:00
parent 2e29cc575c
commit de0f60e1a8
13 changed files with 1191 additions and 8 deletions

View File

@ -26,3 +26,4 @@ tjvrollout.png
tjvrollout_150.png
tjvrollout_200.png
tjvcombolistbox.bmp
tjvlookupautocomplete.bmp

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -14,16 +14,17 @@ implementation
{$R ../../resource/jvctrlsreg.res}
uses
Classes, ActnList, JvDsgnConsts,
Classes, Controls, ActnList, PropEdits, JvDsgnConsts,
JvMovableBevel, JvRuler, JvGroupHeader, JvRollOut,
JvHtControls, {JvDBHTLabel,} JvHint, JvHTHintForm, JvComboListBox,
PropEdits, Controls;
JvHtControls, JvHint, JvHTHintForm, JvComboListBox,
JvAutoComplete; // original JVCL has this in package JvCore
procedure Register;
begin
RegisterComponents(RsPaletteJvcl, [
TJvMovableBevel, TJvMovablePanel, TJvRuler, TJvGroupHeader, TJvRollOut,
TJvHint, TJvHTLabel, TJvHTListbox, TJvHTCombobox, TJvComboListBox
TJvHint, TJvHTLabel, TJvHTListbox, TJvHTCombobox, TJvComboListBox,
TJvLookupAutoComplete
]);
RegisterPropertyEditor(TypeInfo(TCaption), TJvHTLabel, 'Caption', TJvHintProperty);
RegisterActions(RsJVCLActionsCategory, [TJvRollOutAction], nil);