jvcllaz: Add Jan's simulation components (JvJansSim), incl JvSimScope demo.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6242 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2018-03-13 15:25:01 +00:00
parent 67811dddf6
commit 888b7fd2cd
28 changed files with 4674 additions and 15 deletions

View File

@@ -1 +1,11 @@
tjvyeargrid.bmp
tjvsimlogicbox.bmp
tjvsimindicator.bmp
tjvsimconnector.bmp
tjvsimpid.bmp
tjvsimpidlinker.bmp
tjvsimscope.bmp
tjvsimbutton.bmp
tjvsimreverse.bmp
tjvsimlight.bmp
tjvlogic.bmp

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -14,13 +14,22 @@ implementation
{$R ../../resource/jvjansreg.res}
uses
Classes, JvDsgnConsts, JvYearGrid;
Classes, JvDsgnConsts,
JvYearGrid,
JvSimScope, JvSimIndicator, JvSimPID, JvSimPIDLinker, JvSimLogic;
procedure Register;
begin
RegisterComponents(RsPaletteJvcl, [
TJvYearGrid
]);
// Simulator Components
RegisterComponents(RsPaletteJvcl, [ // was: RsPaletteJansSim
TJvSimScope, TJvSimIndicator, TJvSimPID,
TJvSimPIDLinker, TJvSimConnector, TJvLogic, TJvSimButton, TJvSimLight,
TJvSimLogicBox, TJvSimReverse]);
end;
end.