You've already forked lazarus-ccr
jvcllaz: Lowercase all remaining unit and package names.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6953 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
57
components/jvcllaz/design/JvJans/jvjansreg.pas
Normal file
57
components/jvcllaz/design/JvJans/jvjansreg.pas
Normal file
@@ -0,0 +1,57 @@
|
||||
unit JvJansReg;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
SysUtils;
|
||||
|
||||
procedure Register;
|
||||
|
||||
implementation
|
||||
|
||||
{$R ../../resource/jvjansreg.res}
|
||||
|
||||
uses
|
||||
Classes, JvDsgnConsts,
|
||||
JvYearGrid,
|
||||
//JvCSVData, JvCSVBaseControls, //JvCsvBaseEditor,
|
||||
JvMarkupViewer, JvMarkupLabel,
|
||||
JvSimScope, JvSimIndicator, JvSimPID, JvSimPIDLinker, JvSimLogic,
|
||||
JvJanLED, JvJanToggle;
|
||||
|
||||
procedure Register;
|
||||
begin
|
||||
RegisterComponents(RsPaletteJvcl, [
|
||||
TJvYearGrid
|
||||
]);
|
||||
|
||||
// Simulator Components
|
||||
RegisterComponents(RsPaletteJvcl, [ // was: RsPaletteJansSim
|
||||
TJvSimScope, TJvSimIndicator, TJvSimPID,
|
||||
TJvSimPIDLinker, TJvSimConnector, TJvLogic, TJvSimButton, TJvSimLight,
|
||||
TJvSimLogicBox, TJvSimReverse,
|
||||
TJvJanLed, TJvJanToggle
|
||||
]);
|
||||
|
||||
// Markup components
|
||||
RegisterComponents(RsPaletteJvcl, [
|
||||
TJvMarkupViewer, TJvMarkupLabel
|
||||
]);
|
||||
|
||||
(*
|
||||
// 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);
|
||||
*)
|
||||
|
||||
end;
|
||||
|
||||
end.
|
||||
|
Reference in New Issue
Block a user