jvcllaz: Add new component JvFormAnimatedIcon

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6736 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2018-11-25 18:46:15 +00:00
parent 9940c604cc
commit c714c4749c
12 changed files with 4560 additions and 0 deletions

View File

@ -0,0 +1 @@
tjvformanimatedicon.bmp

View File

@ -0,0 +1 @@
lazres ../../../resource/jvappfrmreg.res @images.txt

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,29 @@
unit JvAppFrmReg;
{$mode objfpc}{$H+}
interface
uses
SysUtils;
procedure Register;
implementation
{$R ../../resource/jvappfrmreg.res}
uses
Classes, //PropEdits, ComponentEditors,
JvDsgnConsts,
JvFormAnimatedIcon;
procedure Register;
begin
RegisterComponents(RsPaletteJvcl, [
TJvFormAnimatedIcon
]);
end;
end.