You've already forked lazarus-ccr
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:
45
components/jvcllaz/design/JvXPCtrls/jvxpctrlsreg.pas
Normal file
45
components/jvcllaz/design/JvXPCtrls/jvxpctrlsreg.pas
Normal 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.
|
||||
|
Reference in New Issue
Block a user