jvcllaz: Add TJvPanel (and related infrastructure).

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7001 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2019-06-07 22:25:46 +00:00
parent 6e5f190f01
commit f9f933c01e
16 changed files with 3522 additions and 56 deletions

View File

@ -1,2 +1,3 @@
tjvcheckbox.bmp
tjvpanel.bmp
tjvcalcedit.bmp

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -14,12 +14,14 @@ implementation
{$R ../../resource/jvstdctrlsreg.res}
uses
Classes, Controls, JvDsgnConsts, JvButton, JvCheckbox, JvBaseEdits;
Classes, Controls, PropEdits,
JvDsgnConsts, //JvDsgnEditors,
JvButton, JvCheckbox, JvBaseEdits, JVPanel;
procedure Register;
begin
//RegisterComponents(RsPaletteButton, [TJvButton]);
RegisterComponents(RsPaletteJvcl, [TJvCheckbox, TJvCalcEdit]);
RegisterComponents(RsPaletteJvcl, [TJvCheckbox, TJvPanel, TJvCalcEdit]);
// RegisterPropertyEditor(TypeInfo(TJvArrangeSettings), nil, '', TJvPersistentPropertyEditor);
end;
end.