You've already forked lazarus-ccr
jvcllaz: Add TJvLED and TJvDialButton (in new package JvHMILazR/D - "human-machine-interface")
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6654 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
3
components/jvcllaz/design/JvHMI/images/images.txt
Normal file
3
components/jvcllaz/design/JvHMI/images/images.txt
Normal file
@ -0,0 +1,3 @@
|
||||
tjvdialbutton.bmp
|
||||
tjvled.bmp
|
||||
tjvsegmentedleddisplay.bmp
|
1
components/jvcllaz/design/JvHMI/images/make_res.bat
Normal file
1
components/jvcllaz/design/JvHMI/images/make_res.bat
Normal file
@ -0,0 +1 @@
|
||||
lazres ../../../resource/jvhmireg.res @images.txt
|
BIN
components/jvcllaz/design/JvHMI/images/tjvdialbutton.bmp
Normal file
BIN
components/jvcllaz/design/JvHMI/images/tjvdialbutton.bmp
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
BIN
components/jvcllaz/design/JvHMI/images/tjvled.bmp
Normal file
BIN
components/jvcllaz/design/JvHMI/images/tjvled.bmp
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
28
components/jvcllaz/design/JvHMI/jvhmireg.pas
Normal file
28
components/jvcllaz/design/JvHMI/jvhmireg.pas
Normal file
@ -0,0 +1,28 @@
|
||||
unit JvHMIReg;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
SysUtils;
|
||||
|
||||
procedure Register;
|
||||
|
||||
implementation
|
||||
|
||||
{$R ../../resource/jvhmireg.res}
|
||||
|
||||
uses
|
||||
Classes, Controls,
|
||||
JvDsgnConsts, JvDialButton, JvLED;
|
||||
|
||||
procedure Register;
|
||||
begin
|
||||
RegisterComponents(RsPaletteJvcl, [
|
||||
TJvDialButton, TJvLED
|
||||
]);
|
||||
end;
|
||||
|
||||
end.
|
||||
|
Reference in New Issue
Block a user