2018-03-13 00:10:34 +00:00
|
|
|
unit JvJansReg;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
SysUtils;
|
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
{$R ../../resource/jvjansreg.res}
|
|
|
|
|
|
|
|
uses
|
2018-03-13 15:25:01 +00:00
|
|
|
Classes, JvDsgnConsts,
|
|
|
|
JvYearGrid,
|
2018-03-14 16:43:21 +00:00
|
|
|
//JvCSVData, JvCSVBaseControls, //JvCsvBaseEditor,
|
2018-03-18 17:49:53 +00:00
|
|
|
JvMarkupViewer, JvMarkupLabel,
|
2019-10-14 10:35:43 +00:00
|
|
|
JvGridFilter,
|
2018-04-01 19:43:02 +00:00
|
|
|
JvSimScope, JvSimIndicator, JvSimPID, JvSimPIDLinker, JvSimLogic,
|
2018-04-18 22:20:45 +00:00
|
|
|
JvJanLED, JvJanToggle;
|
2018-03-13 00:10:34 +00:00
|
|
|
|
|
|
|
procedure Register;
|
|
|
|
begin
|
2019-07-20 17:30:47 +00:00
|
|
|
RegisterComponents(RsPaletteJvclVisual, [
|
2018-03-13 00:10:34 +00:00
|
|
|
TJvYearGrid
|
|
|
|
]);
|
2018-03-13 15:25:01 +00:00
|
|
|
|
|
|
|
// Simulator Components
|
2019-07-20 17:30:47 +00:00
|
|
|
RegisterComponents(RsPaletteJvclVisual, [ // was: RsPaletteJansSim
|
2018-03-13 15:25:01 +00:00
|
|
|
TJvSimScope, TJvSimIndicator, TJvSimPID,
|
|
|
|
TJvSimPIDLinker, TJvSimConnector, TJvLogic, TJvSimButton, TJvSimLight,
|
2018-04-01 19:43:02 +00:00
|
|
|
TJvSimLogicBox, TJvSimReverse,
|
|
|
|
TJvJanLed, TJvJanToggle
|
|
|
|
]);
|
2018-03-18 17:49:53 +00:00
|
|
|
|
|
|
|
// Markup components
|
2019-07-20 17:30:47 +00:00
|
|
|
RegisterComponents(RsPaletteJvclVisual, [
|
2018-03-18 17:49:53 +00:00
|
|
|
TJvMarkupViewer, TJvMarkupLabel
|
|
|
|
]);
|
|
|
|
|
2019-10-14 10:35:43 +00:00
|
|
|
// Grid-related components
|
|
|
|
RegisterComponents(RsPaletteJvclVisual, [
|
|
|
|
TJvGridFilter
|
|
|
|
]);
|
|
|
|
|
2018-03-14 16:43:21 +00:00
|
|
|
(*
|
|
|
|
// CSV Components
|
|
|
|
RegisterComponents('Data Access', [TJvCSVDataset]);
|
|
|
|
RegisterComponents(RsPaletteJansCsv, [TJvCSVBase, TJvCSVEdit, TJvCSVComboBox,
|
|
|
|
TJvCSVCheckBox, TJvCSVNavigator]);
|
|
|
|
// RegisterPropertyEditor(TypeInfo(string), TJvCSVBase, cCSVFieldName, TJvCSVFileNameProperty);
|
|
|
|
// RegisterPropertyEditor(TypeInfo(string), TJvCSVEdit, cCSVField, TJvCSVFieldProperty);
|
|
|
|
// RegisterPropertyEditor(TypeInfo(string), TJvCSVComboBox, cCSVField, TJvCSVFieldProperty);
|
|
|
|
// RegisterPropertyEditor(TypeInfo(string), TJvCSVCheckBox, cCSVField, TJvCSVFieldProperty);
|
|
|
|
*)
|
2018-03-13 15:25:01 +00:00
|
|
|
|
2018-03-13 00:10:34 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|
|
|
|
|