2016-12-04 17:47:39 +00:00
|
|
|
unit JvXPCtrlsReg;
|
2007-09-29 00:59:44 +00:00
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
Classes, LResources, SysUtils;
|
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
|
|
|
|
implementation
|
2016-11-30 20:46:04 +00:00
|
|
|
|
|
|
|
uses
|
2016-12-04 22:43:34 +00:00
|
|
|
ComponentEditors, PropEdits, GraphPropEdits, ImgList,
|
2016-12-07 12:23:59 +00:00
|
|
|
JvDsgnConsts, JvXPCore, JvXPPropertyEditors,
|
2016-12-04 22:43:34 +00:00
|
|
|
JvXPBar, JvXPContainer, JvXPButtons, JvXPCheckCtrls;
|
2007-09-29 00:59:44 +00:00
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
begin
|
2019-07-20 17:30:47 +00:00
|
|
|
RegisterComponents(RsPaletteJvclVisual, [ //RsPaletteXPControls, [
|
2016-12-04 16:25:15 +00:00
|
|
|
TJvXPBar,
|
|
|
|
TJvXPContainer,
|
2016-12-04 17:28:50 +00:00
|
|
|
TJvXPButton,
|
2016-12-04 19:22:09 +00:00
|
|
|
TJvXPToolButton,
|
2016-12-04 20:09:30 +00:00
|
|
|
TJvXPCheckbox,
|
|
|
|
TJvXPStyleManager
|
2016-12-04 16:25:15 +00:00
|
|
|
]);
|
2016-12-04 22:43:34 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
RegisterPropertyEditor(TypeInfo(TImageIndex), TJvXPBarItem, 'ImageIndex',
|
|
|
|
TJvXPItemImageIndexProperty);
|
|
|
|
}
|
|
|
|
|
|
|
|
RegisterPropertyEditor(TypeInfo(TImageIndex), TJvXPBarItem, 'ImageIndex',
|
|
|
|
TImageIndexPropertyEditor);
|
|
|
|
|
|
|
|
RegisterComponentEditor(TJvXPBar, TJvXPBarItemEditor);
|
2007-09-29 00:59:44 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
initialization
|
2019-05-25 10:02:59 +00:00
|
|
|
{$I ../resource/jvxpctrlslaz.lrs}
|
2007-09-29 00:59:44 +00:00
|
|
|
|
|
|
|
end.
|
|
|
|
|