jvcllaz: Lowercase unit and package files of JvXPCtrls packages. Less hints and warnings.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6939 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2019-05-25 10:02:59 +00:00
parent 9751d4ae8c
commit d048f998c6
17 changed files with 42 additions and 310 deletions

View File

@@ -0,0 +1,45 @@
unit JvXPCtrlsReg;
{$mode objfpc}{$H+}
interface
uses
Classes, LResources, SysUtils;
procedure Register;
implementation
uses
ComponentEditors, PropEdits, GraphPropEdits, ImgList,
JvDsgnConsts, JvXPCore, JvXPPropertyEditors,
JvXPBar, JvXPContainer, JvXPButtons, JvXPCheckCtrls;
procedure Register;
begin
RegisterComponents(RsPaletteJvcl, [ //RsPaletteXPControls, [
TJvXPBar,
TJvXPContainer,
TJvXPButton,
TJvXPToolButton,
TJvXPCheckbox,
TJvXPStyleManager
]);
{
RegisterPropertyEditor(TypeInfo(TImageIndex), TJvXPBarItem, 'ImageIndex',
TJvXPItemImageIndexProperty);
}
RegisterPropertyEditor(TypeInfo(TImageIndex), TJvXPBarItem, 'ImageIndex',
TImageIndexPropertyEditor);
RegisterComponentEditor(TJvXPBar, TJvXPBarItemEditor);
end;
initialization
{$I ../resource/jvxpctrlslaz.lrs}
end.