jvcllaz: Add TJvMarkupViewer and TJvMarkupLabel. Add designtime package for JvCmp (JvSpellChecker).

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6254 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2018-03-18 17:49:53 +00:00
parent 45b89294c8
commit 2c7564c314
18 changed files with 1609 additions and 14 deletions

View File

@@ -0,0 +1,2 @@
tjvspellchecker.bmp
tjventerastab.bmp

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,31 @@
unit JvCmpReg;
{$mode objfpc}{$H+}
interface
uses
SysUtils;
procedure Register;
implementation
{$R ../../resource/jvcmpreg.res}
uses
Classes, PropEdits,
JvDsgnConsts,
// JvEnterTab,
JvSpellChecker;
procedure Register;
begin
RegisterComponents(RsPaletteJvcl, [
// TJvEnterAsTab,
TJvSpellChecker
]);
end;
end.