mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 18:58:12 +02:00
Components, DataDict: removed LRS files and cleaned up, part of bug #22214
git-svn-id: trunk@37600 -
This commit is contained in:
parent
2c25700ca7
commit
0b7e28e17a
8
.gitattributes
vendored
8
.gitattributes
vendored
@ -696,23 +696,15 @@ components/daemon/lazdaemonapp.pp svneol=native#text/plain
|
||||
components/daemon/reglazdaemon.pp svneol=native#text/plain
|
||||
components/datadict/README.txt svneol=native#text/plain
|
||||
components/datadict/fpcodegenerator.pp svneol=native#text/plain
|
||||
components/datadict/frmapplydatadict.lfm svneol=native#text/plain
|
||||
components/datadict/frmapplydatadict.lrs svneol=native#text/pascal
|
||||
components/datadict/frmapplydatadict.pp svneol=native#text/plain
|
||||
components/datadict/frmbaseconfigcodegenerator.lfm svneol=native#text/plain
|
||||
components/datadict/frmbaseconfigcodegenerator.lrs svneol=native#text/pascal
|
||||
components/datadict/frmbaseconfigcodegenerator.pp svneol=native#text/plain
|
||||
components/datadict/frmconfdatadict.lfm svneol=native#text/plain
|
||||
components/datadict/frmconfdatadict.lrs svneol=native#text/pascal
|
||||
components/datadict/frmconfdatadict.pp svneol=native#text/plain
|
||||
components/datadict/frmconfprojdatadict.lfm svneol=native#text/plain
|
||||
components/datadict/frmconfprojdatadict.lrs svneol=native#text/pascal
|
||||
components/datadict/frmconfprojdatadict.pp svneol=native#text/plain
|
||||
components/datadict/frmgeneratedcode.lfm svneol=native#text/plain
|
||||
components/datadict/frmgeneratedcode.lrs svneol=native#text/pascal
|
||||
components/datadict/frmgeneratedcode.pp svneol=native#text/plain
|
||||
components/datadict/frmselectcodegenerator.lfm svneol=native#text/plain
|
||||
components/datadict/frmselectcodegenerator.lrs svneol=native#text/pascal
|
||||
components/datadict/frmselectcodegenerator.pp svneol=native#text/plain
|
||||
components/datadict/idedatadict.pp svneol=native#text/plain
|
||||
components/datadict/languages/ldd_consts.de.po svneol=native#text/plain
|
||||
|
@ -1,34 +0,0 @@
|
||||
object ApplyDataDictionaryForm: TApplyDataDictionaryForm
|
||||
Left = 549
|
||||
Height = 265
|
||||
Top = 208
|
||||
Width = 373
|
||||
HorzScrollBar.Page = 372
|
||||
VertScrollBar.Page = 264
|
||||
Caption = 'Applying data dictionary'
|
||||
ClientHeight = 265
|
||||
ClientWidth = 373
|
||||
object BOK: TButton
|
||||
Left = 288
|
||||
Height = 25
|
||||
Top = 236
|
||||
Width = 75
|
||||
Anchors = [akRight, akBottom]
|
||||
BorderSpacing.InnerBorder = 4
|
||||
Caption = '&Close'
|
||||
Default = True
|
||||
OnClick = BOKClick
|
||||
TabOrder = 0
|
||||
end
|
||||
object MLog: TMemo
|
||||
Left = 8
|
||||
Height = 224
|
||||
Top = 8
|
||||
Width = 353
|
||||
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||
Lines.Strings = (
|
||||
''
|
||||
)
|
||||
TabOrder = 1
|
||||
end
|
||||
end
|
@ -1,13 +0,0 @@
|
||||
{ This is an automatically generated lazarus resource file }
|
||||
|
||||
LazarusResources.Add('TApplyDataDictionaryForm','FORMDATA',[
|
||||
'TPF0'#24'TApplyDataDictionaryForm'#23'ApplyDataDictionaryForm'#4'Left'#3'%'#2
|
||||
+#6'Height'#3#9#1#3'Top'#3#208#0#5'Width'#3'u'#1#18'HorzScrollBar.Page'#3't'#1
|
||||
+#18'VertScrollBar.Page'#3#8#1#7'Caption'#6#24'Applying data dictionary'#12'C'
|
||||
+'lientHeight'#3#9#1#11'ClientWidth'#3'u'#1#0#7'TButton'#3'BOK'#4'Left'#3' '#1
|
||||
+#6'Height'#2#25#3'Top'#3#236#0#5'Width'#2'K'#7'Anchors'#11#7'akRight'#8'akBo'
|
||||
+'ttom'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#6'&Close'#7'Default'
|
||||
+#9#7'OnClick'#7#8'BOKClick'#8'TabOrder'#2#0#0#0#5'TMemo'#4'MLog'#4'Left'#2#8
|
||||
+#6'Height'#3#224#0#3'Top'#2#8#5'Width'#3'a'#1#7'Anchors'#11#5'akTop'#6'akLef'
|
||||
+'t'#7'akRight'#8'akBottom'#0#13'Lines.Strings'#1#6#0#0#8'TabOrder'#2#1#0#0#0
|
||||
]);
|
@ -1,40 +0,0 @@
|
||||
unit frmapplydatadict;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, StdCtrls;
|
||||
|
||||
type
|
||||
|
||||
{ TApplyDataDictionaryForm }
|
||||
|
||||
TApplyDataDictionaryForm = class(TForm)
|
||||
BOK: TButton;
|
||||
MLog: TMemo;
|
||||
procedure BOKClick(Sender: TObject);
|
||||
private
|
||||
{ private declarations }
|
||||
public
|
||||
{ public declarations }
|
||||
end;
|
||||
|
||||
var
|
||||
ApplyDataDictionaryForm: TApplyDataDictionaryForm;
|
||||
|
||||
implementation
|
||||
|
||||
{ TApplyDataDictionaryForm }
|
||||
|
||||
procedure TApplyDataDictionaryForm.BOKClick(Sender: TObject);
|
||||
begin
|
||||
Close;
|
||||
end;
|
||||
|
||||
initialization
|
||||
{$I frmapplydatadict.lrs}
|
||||
|
||||
end.
|
||||
|
@ -1,318 +0,0 @@
|
||||
{ This is an automatically generated lazarus resource file }
|
||||
|
||||
LazarusResources.Add('TBaseConfigGeneratorForm','FORMDATA',[
|
||||
'TPF0'#24'TBaseConfigGeneratorForm'#23'BaseConfigGeneratorForm'#4'Left'#3'R'#1
|
||||
+#6'Height'#3'z'#1#3'Top'#3#207#0#5'Width'#3#206#1#13'ActiveControl'#7#6'FEFi'
|
||||
+'le'#7'Caption'#6#24'Configure generated code'#12'ClientHeight'#3'z'#1#11'Cl'
|
||||
+'ientWidth'#3#206#1#8'OnCreate'#7#10'FormCreate'#9'OnDestroy'#7#11'FormDestr'
|
||||
+'oy'#10'LCLVersion'#6#6'0.9.27'#0#6'TPanel'#10'PGenerator'#4'Left'#2#0#6'Hei'
|
||||
+'ght'#2'8'#3'Top'#2#0#5'Width'#3#206#1#5'Align'#7#5'alTop'#10'BevelOuter'#7#6
|
||||
+'bvNone'#12'ClientHeight'#2'8'#11'ClientWidth'#3#206#1#8'TabOrder'#2#0#0#6'T'
|
||||
+'Label'#5'LSave'#4'Left'#2#8#6'Height'#2#22#3'Top'#2#5#5'Width'#2'5'#9'Align'
|
||||
+'ment'#7#14'taRightJustify'#8'AutoSize'#8#7'Caption'#6#8'&Save to'#12'FocusC'
|
||||
+'ontrol'#7#6'FEFile'#6'Layout'#7#8'tlCenter'#11'ParentColor'#8#0#0#13'TFileN'
|
||||
+'ameEdit'#6'FEFile'#4'Left'#2'H'#6'Height'#2#27#3'Top'#2#5#5'Width'#3'^'#1#13
|
||||
+'DialogOptions'#11#0#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidt'
|
||||
+'h'#2#23#9'NumGlyphs'#2#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#8'Ta'
|
||||
+'bOrder'#2#0#0#0#9'TCheckBox'#12'CBShowDialog'#4'Left'#2'H'#6'Height'#2#21#3
|
||||
+'Top'#2'!'#5'Width'#3#156#0#7'Caption'#6#20'Sho&w generated code'#8'TabOrder'
|
||||
+#2#1#0#0#0#12'TPageControl'#6'PCConf'#4'Left'#2#0#6'Height'#3#19#1#3'Top'#2
|
||||
+'8'#5'Width'#3#206#1#10'ActivePage'#7#8'TSFields'#5'Align'#7#8'alClient'#8'T'
|
||||
+'abIndex'#2#0#8'TabOrder'#2#1#0#9'TTabSheet'#8'TSFields'#7'Caption'#6#6'Fiel'
|
||||
+'ds'#12'ClientHeight'#3#245#0#11'ClientWidth'#3#198#1#0#6'TPanel'#6'Panel2'#4
|
||||
+'Left'#2#0#6'Height'#2#28#3'Top'#2#0#5'Width'#3#198#1#5'Align'#7#5'alTop'#10
|
||||
+'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2#28#11'ClientWidth'#3#198#1#8'Tab'
|
||||
+'Order'#2#0#0#6'TLabel'#7'LFields'#4'Left'#2#0#6'Height'#2#28#3'Top'#2#0#5'W'
|
||||
+'idth'#3#170#0#5'Align'#7#6'alLeft'#9'Alignment'#7#8'taCenter'#8'AutoSize'#8
|
||||
+#7'Caption'#6#27'Fields to generate code for'#6'Layout'#7#8'tlCenter'#11'Par'
|
||||
+'entColor'#8#0#0#6'TLabel'#11'LProperties'#4'Left'#3#170#0#6'Height'#2#28#3
|
||||
+'Top'#2#0#5'Width'#3#28#1#5'Align'#7#8'alClient'#9'Alignment'#7#8'taCenter'#8
|
||||
+'AutoSize'#8#7'Caption'#6#29'Properties for selected field'#6'Layout'#7#8'tl'
|
||||
+'Center'#11'ParentColor'#8#0#0#0#6'TPanel'#10'PFieldList'#4'Left'#2#0#6'Heig'
|
||||
+'ht'#3#217#0#3'Top'#2#28#5'Width'#3#170#0#5'Align'#7#6'alLeft'#10'BevelOuter'
|
||||
+#7#6'bvNone'#12'ClientHeight'#3#217#0#11'ClientWidth'#3#170#0#8'TabOrder'#2#1
|
||||
+#0#13'TCheckListBox'#9'CLBFields'#4'Left'#2'#'#6'Height'#3#217#0#3'Top'#2#0#5
|
||||
+'Width'#3#135#0#5'Align'#7#8'alClient'#10'ItemHeight'#2#0#7'OnClick'#7#14'CL'
|
||||
+'BFieldsClick'#11'OnItemClick'#7#18'CLBFieldsItemClick'#7'OnKeyUp'#7#14'CLBF'
|
||||
+'ieldsKeyUp'#8'TabOrder'#2#0#0#0#6'TPanel'#8'PButtons'#4'Left'#2#0#6'Height'
|
||||
+#3#217#0#3'Top'#2#0#5'Width'#2'#'#5'Align'#7#6'alLeft'#10'BevelOuter'#7#6'bv'
|
||||
+'None'#12'ClientHeight'#3#217#0#11'ClientWidth'#2'#'#8'TabOrder'#2#1#0#12'TS'
|
||||
+'peedButton'#4'SBup'#4'Left'#2#4#6'Height'#2#27#3'Top'#2#12#5'Width'#2#27#5
|
||||
+'Color'#7#9'clBtnFace'#4'Flat'#9#10'Glyph.Data'#10#254#9#0#0#250#9#0#0'BM'
|
||||
+#250#9#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#25#0#0#0#25#0#0#0#1#0' '#0#0#0#0#0#196#9
|
||||
+#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#224#224#224#255#187#187#187#255#138
|
||||
+#138#138#255#137#137#137#255#134#134#134#255#133#133#133#255#129#129#129#255
|
||||
+#135#135#135#255#133#133#133#255#139#139#139#255#134#134#134#255#134#134#134
|
||||
+#255#133#133#133#255#132#132#132#255#139#139#139#255#136#136#136#255#139#139
|
||||
+#139#255#139#139#139#255#141#141#141#255#144#144#144#255#145#145#145#255#141
|
||||
+#141#141#255#137#137#137#255#142#142#142#255#176#176#176#255#241#241#241#255
|
||||
+#182#182#182#255'XXX'#255'...'#255'000'#255'000'#255'///'#255'...'#255'111'
|
||||
+#255'000'#255'000'#255'111'#255'333'#255'222'#255'000'#255'...'#255'000'#255
|
||||
+'///'#255'111'#255'111'#255'000'#255'///'#255'222'#255'888'#255#134#134#134
|
||||
+#255#255#255#255#255#250#250#250#255#202#202#202#255#130#130#130#255#131#131
|
||||
+#131#255#131#131#131#255#131#131#131#255#132#132#132#255#131#131#131#255#137
|
||||
+#137#137#255#142#142#142#255#139#139#139#255#134#134#134#255#130#130#130#255
|
||||
+#131#131#131#255#133#133#133#255#135#135#135#255#133#133#133#255#134#134#134
|
||||
+#255#133#133#133#255#135#135#135#255#137#137#137#255'kkk'#255'111'#255#132
|
||||
+#132#132#255#255#255#255#255#255#255#255#255#255#255#255#255#226#226#226#255
|
||||
+#224#224#224#255#226#226#226#255#232#232#232#255#236#236#236#255#243#243#243
|
||||
+#255#241#241#241#255#240#240#240#255#240#240#240#255#238#238#238#255#233#233
|
||||
+#233#255#229#229#229#255#229#229#229#255#233#233#233#255#234#234#234#255#240
|
||||
+#240#240#255#236#236#236#255#235#235#235#255#237#237#237#255#130#130#130#255
|
||||
+'---'#255#131#131#131#255#255#255#255#255#255#255#255#255#255#255#255#255#226
|
||||
+#226#226#255#222#222#222#255#225#225#225#255#242#242#242#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#252#252#252#255#251#251#251#255#255#255#255#255#253#253#253#255#248#248
|
||||
+#248#255#255#255#255#255#254#254#254#255#234#234#234#255#227#227#227#255''
|
||||
+#255'///'#255#132#132#132#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
,#227#227#227#255#223#223#223#255#212#212#212#255#224#224#224#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#229#229#229#255#227#227#227#255
|
||||
+''#255'///'#255#136#136#136#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#229#229#229#255#226#226#226#255#184#184#184#255#147#147#147#255#213
|
||||
+#213#213#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#248#248#248#255#222#222#222#255#230#230
|
||||
+#230#255#131#131#131#255'000'#255#132#132#132#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#230#230#230#255#229#229#229#255#176#176#176#255'HHH'#255
|
||||
+'WWW'#255#206#206#206#255#234#234#234#255#234#234#234#255#234#234#234#255#234
|
||||
+#234#234#255#234#234#234#255#234#234#234#255#234#234#234#255#234#234#234#255
|
||||
+#255#255#255#255#255#255#255#255#227#227#227#255#223#223#223#255#231#231#231
|
||||
+#255#135#135#135#255'222'#255#132#132#132#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#231#231#231#255#230#230#230#255#216#216#216#255'SSS'#255#23
|
||||
+#23#23#255'\\\'#255#174#174#174#255#176#176#176#255#179#179#179#255#178#178
|
||||
+#178#255#170#170#170#255#167#167#167#255#169#169#169#255#179#179#179#255#211
|
||||
+#211#211#255#210#210#210#255#223#223#223#255#232#232#232#255#236#236#236#255
|
||||
+#134#134#134#255'222'#255#143#143#143#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#225#225#225#255#232#232#232#255#240#240#240#255#152#152#152#255
|
||||
+#30#30#30#255'...'#255#147#147#147#255#175#175#175#255#172#172#172#255#169
|
||||
+#169#169#255#167#167#167#255#169#169#169#255#172#172#172#255#212#212#212#255
|
||||
+#229#229#229#255#225#225#225#255#231#231#231#255#231#231#231#255#236#236#236
|
||||
+#255#131#131#131#255'111'#255#136#136#136#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#225#225#225#255#230#230#230#255#238#238#238#255#210#210#210
|
||||
+#255'BBB'#255#21#21#21#255'[[['#255#173#173#173#255#176#176#176#255#175#175
|
||||
+#175#255#172#172#172#255#172#172#172#255#199#199#199#255#227#227#227#255#228
|
||||
+#228#228#255#221#221#221#255#227#227#227#255#229#229#229#255#234#234#234#255
|
||||
+#130#130#130#255'///'#255#142#142#142#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#221#221#221#255#225#225#225#255#234#234#234#255#234#234#234#255
|
||||
+#137#137#137#255#24#24#24#255'///'#255#152#152#152#255#180#180#180#255#178
|
||||
+#178#178#255#175#175#175#255#168#168#168#255#220#220#220#255#225#225#225#255
|
||||
+#230#230#230#255#224#224#224#255#231#231#231#255#234#234#234#255#241#241#241
|
||||
+#255#133#133#133#255'000'#255#140#140#140#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#220#220#220#255#226#226#226#255#235#235#235#255#236#236#236
|
||||
+#255#214#214#214#255'AAA'#255#26#26#26#255'jjj'#255#179#179#179#255#177#177
|
||||
+#177#255#174#174#174#255#190#190#190#255#224#224#224#255#216#216#216#255#226
|
||||
+#226#226#255#222#222#222#255#230#230#230#255#231#231#231#255#238#238#238#255
|
||||
+#134#134#134#255'000'#255#136#136#136#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#227#227#227#255#233#233#233#255#241#241#241#255#240#240#240#255
|
||||
+#244#244#244#255#129#129#129#255#22#22#22#255'<<<'#255#157#157#157#255#172
|
||||
+#172#172#255#173#173#173#255#225#225#225#255#224#224#224#255#224#224#224#255
|
||||
+#229#229#229#255#228#228#228#255#235#235#235#255#229#229#229#255#236#236#236
|
||||
+#255#134#134#134#255'111'#255#141#141#141#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#230#230#230#255#235#235#235#255#241#241#241#255#238#238#238
|
||||
+#255#240#240#240#255#198#198#198#255'111'#255#25#25#25#255'iii'#255#172#172
|
||||
+#172#255#199#199#199#255#228#228#228#255#226#226#226#255#234#234#234#255#235
|
||||
+#235#235#255#234#234#234#255#240#240#240#255#230#230#230#255#237#237#237#255
|
||||
+#136#136#136#255'111'#255#144#144#144#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#229#229#229#255#233#233#233#255#239#239#239#255#234#234#234#255
|
||||
+#236#236#236#255#236#236#236#255'qqq'#255#20#20#20#255'999'#255#158#158#158
|
||||
+#255#223#223#223#255#222#222#222#255#226#226#226#255#232#232#232#255#230#230
|
||||
+#230#255#228#228#228#255#234#234#234#255#224#224#224#255#233#233#233#255#134
|
||||
+#134#134#255'000'#255#141#141#141#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#230#230#230#255#235#235#235#255#241#241#241#255#237#237#237#255#239
|
||||
+#239#239#255#240#240#240#255#184#184#184#255')))'#255'$$$'#255#166#166#166
|
||||
+#255#220#220#220#255#220#220#220#255#222#222#222#255#234#234#234#255#229#229
|
||||
+#229#255#227#227#227#255#234#234#234#255#227#227#227#255#238#238#238#255#138
|
||||
+#138#138#255'111'#255#139#139#139#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#230#230#230#255#233#233#233#255#227#227#227#255#233#233#233#255#235
|
||||
+#235#235#255#237#237#237#255#230#230#230#255'[[['#255'666'#255#170#170#170
|
||||
+#255#227#227#227#255#233#233#233#255#221#221#221#255#220#220#220#255#229#229
|
||||
+#229#255#230#230#230#255#242#242#242#255#234#234#234#255#243#243#243#255#136
|
||||
,#136#136#255'222'#255#138#138#138#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#223#223#223#255#236#236#236#255#233#233#233#255#230#230#230#255#241
|
||||
+#241#241#255#236#236#236#255#235#235#235#255#156#156#156#255#131#131#131#255
|
||||
+#184#184#184#255#217#217#217#255#227#227#227#255#230#230#230#255#232#232#232
|
||||
+#255#231#231#231#255#234#234#234#255#234#234#234#255#238#238#238#255#237#237
|
||||
+#237#255#137#137#137#255'111'#255#129#129#129#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#230#230#230#255#225#225#225#255#239#239#239#255#224#224
|
||||
+#224#255#241#241#241#255#236#236#236#255#237#237#237#255#217#217#217#255#217
|
||||
+#217#217#255#216#216#216#255#223#223#223#255#232#232#232#255#237#237#237#255
|
||||
+#239#239#239#255#232#232#232#255#239#239#239#255#231#231#231#255#245#245#245
|
||||
+#255#236#236#236#255#137#137#137#255'///'#255#132#132#132#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#223#223#223#255#240#240#240#255#221#221#221
|
||||
+#255#237#237#237#255#232#232#232#255#235#235#235#255#237#237#237#255#232#232
|
||||
+#232#255#238#238#238#255#232#232#232#255#241#241#241#255#240#240#240#255#235
|
||||
+#235#235#255#237#237#237#255#234#234#234#255#241#241#241#255#239#239#239#255
|
||||
+#250#250#250#255#243#243#243#255#137#137#137#255'///'#255#136#136#136#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#241#241#241#255#232#232#232#255
|
||||
+#236#236#236#255#233#233#233#255#235#235#235#255#236#236#236#255#228#228#228
|
||||
+#255#226#226#226#255#237#237#237#255#234#234#234#255#241#241#241#255#235#235
|
||||
+#235#255#236#236#236#255#236#236#236#255#240#240#240#255#239#239#239#255#249
|
||||
+#249#249#255#244#244#244#255#248#248#248#255#136#136#136#255'000'#255#141#141
|
||||
+#141#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#211#211#211#255'___'
|
||||
+#255#136#136#136#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#187#187#187#255#178#178#178#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#229#229#229#255#227#227#227#255#9'NumGlyphs'#2#0
|
||||
+#0#0#12'TSpeedButton'#6'SBDown'#4'Left'#2#4#6'Height'#2#27#3'Top'#2''''#5'Wi'
|
||||
+'dth'#2#27#5'Color'#7#9'clBtnFace'#4'Flat'#9#10'Glyph.Data'#10#254#9#0#0#250
|
||||
+#9#0#0'BM'#250#9#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#25#0#0#0#25#0#0#0#1#0' '#0#0#0
|
||||
+#0#0#196#9#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#224#224#224#255#187#187#187
|
||||
+#255#138#138#138#255#137#137#137#255#134#134#134#255#133#133#133#255#129#129
|
||||
+#129#255#135#135#135#255#133#133#133#255#139#139#139#255#134#134#134#255#134
|
||||
+#134#134#255#133#133#133#255#132#132#132#255#139#139#139#255#136#136#136#255
|
||||
+#139#139#139#255#139#139#139#255#141#141#141#255#144#144#144#255#145#145#145
|
||||
+#255#141#141#141#255#137#137#137#255#142#142#142#255#176#176#176#255#241#241
|
||||
+#241#255#182#182#182#255'XXX'#255'...'#255'000'#255'000'#255'///'#255'...'
|
||||
+#255'111'#255'000'#255'000'#255'111'#255'333'#255'222'#255'000'#255'...'#255
|
||||
+'000'#255'///'#255'111'#255'111'#255'000'#255'///'#255'222'#255'888'#255#134
|
||||
+#134#134#255#255#255#255#255#250#250#250#255#202#202#202#255#130#130#130#255
|
||||
+#131#131#131#255#131#131#131#255#131#131#131#255#132#132#132#255#131#131#131
|
||||
+#255#137#137#137#255#142#142#142#255#139#139#139#255#134#134#134#255#130#130
|
||||
+#130#255#131#131#131#255#133#133#133#255#135#135#135#255#133#133#133#255#134
|
||||
+#134#134#255#133#133#133#255#135#135#135#255#137#137#137#255'kkk'#255'111'
|
||||
+#255#132#132#132#255#255#255#255#255#255#255#255#255#255#255#255#255#226#226
|
||||
+#226#255#224#224#224#255#226#226#226#255#232#232#232#255#236#236#236#255#243
|
||||
+#243#243#255#241#241#241#255#240#240#240#255#240#240#240#255#238#238#238#255
|
||||
+#233#233#233#255#229#229#229#255#229#229#229#255#233#233#233#255#234#234#234
|
||||
+#255#240#240#240#255#236#236#236#255#235#235#235#255#237#237#237#255#130#130
|
||||
+#130#255'---'#255#131#131#131#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#226#226#226#255#222#222#222#255#226#226#226#255#235#235#235#255#240#240
|
||||
+#240#255#248#248#248#255#240#240#240#255#238#238#238#255#243#243#243#255#239
|
||||
+#239#239#255#229#229#229#255#228#228#228#255#237#237#237#255#230#230#230#255
|
||||
+#225#225#225#255#234#234#234#255#237#237#237#255#234#234#234#255#227#227#227
|
||||
,#255''#255'///'#255#132#132#132#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#227#227#227#255#223#223#223#255#227#227#227#255#234#234#234#255
|
||||
+#238#238#238#255#243#243#243#255#240#240#240#255#236#236#236#255#240#240#240
|
||||
+#255#251#251#251#255#245#245#245#255#232#232#232#255#233#233#233#255#232#232
|
||||
+#232#255#220#220#220#255#221#221#221#255#226#226#226#255#229#229#229#255#227
|
||||
+#227#227#255''#255'///'#255#136#136#136#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#229#229#229#255#226#226#226#255#228#228#228#255#232#232
|
||||
+#232#255#235#235#235#255#239#239#239#255#246#246#246#255#226#226#226#255#232
|
||||
+#232#232#255#255#255#255#255#255#255#255#255#239#239#239#255#226#226#226#255
|
||||
+#229#229#229#255#228#228#228#255#231#231#231#255#223#223#223#255#222#222#222
|
||||
+#255#230#230#230#255#131#131#131#255'000'#255#132#132#132#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#230#230#230#255#229#229#229#255#228#228#228
|
||||
+#255#232#232#232#255#238#238#238#255#233#233#233#255#248#248#248#255#183#183
|
||||
+#183#255#199#199#199#255#255#255#255#255#255#255#255#255#255#255#255#255#234
|
||||
+#234#234#255#228#228#228#255#231#231#231#255#236#236#236#255#227#227#227#255
|
||||
+#223#223#223#255#231#231#231#255#135#135#135#255'222'#255#132#132#132#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#231#231#231#255#230#230#230#255
|
||||
+#229#229#229#255#235#235#235#255#243#243#243#255#247#247#247#255#230#230#230
|
||||
+#255'ppp'#255#147#147#147#255#241#241#241#255#255#255#255#255#255#255#255#255
|
||||
+#225#225#225#255#233#233#233#255#218#218#218#255#218#218#218#255#224#224#224
|
||||
+#255#232#232#232#255#236#236#236#255#134#134#134#255'222'#255#143#143#143#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#225#225#225#255#232#232#232
|
||||
+#255#240#240#240#255#236#236#236#255#237#237#237#255#237#237#237#255#191#191
|
||||
+#191#255'YYY'#255#132#132#132#255#206#206#206#255#255#255#255#255#255#255#255
|
||||
+#255#253#253#253#255#228#228#228#255#235#235#235#255#227#227#227#255#231#231
|
||||
+#231#255#231#231#231#255#236#236#236#255#131#131#131#255'111'#255#136#136#136
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#225#225#225#255#230#230
|
||||
+#230#255#238#238#238#255#236#236#236#255#238#238#238#255#234#234#234#255#136
|
||||
+#136#136#255'hhh'#255#157#157#157#255#192#192#192#255#227#227#227#255#255#255
|
||||
+#255#255#255#255#255#255#226#226#226#255#230#230#230#255#222#222#222#255#227
|
||||
+#227#227#255#229#229#229#255#234#234#234#255#130#130#130#255'///'#255#142#142
|
||||
+#142#255#255#255#255#255#255#255#255#255#255#255#255#255#221#221#221#255#225
|
||||
+#225#225#255#234#234#234#255#234#234#234#255#238#238#238#255#197#197#197#255
|
||||
+'aaa'#255#135#135#135#255#179#179#179#255#182#182#182#255#199#199#199#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#231#231#231#255#224#224#224#255
|
||||
+#231#231#231#255#234#234#234#255#241#241#241#255#133#133#133#255'000'#255#140
|
||||
+#140#140#255#255#255#255#255#255#255#255#255#255#255#255#255#220#220#220#255
|
||||
+#226#226#226#255#235#235#235#255#236#236#236#255#240#240#240#255#137#137#137
|
||||
+#255'\\\'#255#156#156#156#255#179#179#179#255#177#177#177#255#192#192#192#255
|
||||
+#227#227#227#255#255#255#255#255#255#255#255#255#232#232#232#255#222#222#222
|
||||
+#255#230#230#230#255#231#231#231#255#238#238#238#255#134#134#134#255'000'#255
|
||||
+#136#136#136#255#255#255#255#255#255#255#255#255#255#255#255#255#227#227#227
|
||||
+#255#233#233#233#255#241#241#241#255#240#240#240#255#216#216#216#255'ddd'#255
|
||||
+'{{{'#255#176#176#176#255#177#177#177#255#173#173#173#255#174#174#174#255#192
|
||||
+#192#192#255#248#248#248#255#255#255#255#255#255#255#255#255#228#228#228#255
|
||||
+#235#235#235#255#229#229#229#255#236#236#236#255#134#134#134#255'111'#255#141
|
||||
+#141#141#255#255#255#255#255#255#255#255#255#255#255#255#255#230#230#230#255
|
||||
+#235#235#235#255#241#241#241#255#237#237#237#255#155#155#155#255'iii'#255#155
|
||||
+#155#155#255#176#176#176#255#175#175#175#255#172#172#172#255#169#169#169#255
|
||||
+#187#187#187#255#220#220#220#255#255#255#255#255#255#255#255#255#239#239#239
|
||||
+#255#240#240#240#255#230#230#230#255#237#237#237#255#136#136#136#255'111'#255
|
||||
+#144#144#144#255#255#255#255#255#255#255#255#255#255#255#255#255#229#229#229
|
||||
+#255#233#233#233#255#239#239#239#255#208#208#208#255'ggg'#255'}}}'#255#172
|
||||
+#172#172#255#172#172#172#255#171#171#171#255#172#172#172#255#171#171#171#255
|
||||
+#171#171#171#255#192#192#192#255#248#248#248#255#255#255#255#255#255#255#255
|
||||
+#255#234#234#234#255#224#224#224#255#233#233#233#255#134#134#134#255'000'#255
|
||||
+#141#141#141#255#255#255#255#255#255#255#255#255#255#255#255#255#230#230#230
|
||||
+#255#235#235#235#255#240#240#240#255#159#159#159#255'VVV'#255#149#149#149#255
|
||||
+#167#167#167#255#160#160#160#255#160#160#160#255#165#165#165#255#165#165#165
|
||||
+#255#164#164#164#255#181#181#181#255#227#227#227#255#255#255#255#255#255#255
|
||||
+#255#255#246#246#246#255#227#227#227#255#238#238#238#255#138#138#138#255'111'
|
||||
+#255#139#139#139#255#255#255#255#255#255#255#255#255#255#255#255#255#230#230
|
||||
+#230#255#233#233#233#255#218#218#218#255'www'#255'MMM'#255'fff'#255'hhh'#255
|
||||
+'aaa'#255'eee'#255'ddd'#255'fff'#255'fff'#255'aaa'#255#155#155#155#255#248
|
||||
,#248#248#255#255#255#255#255#255#255#255#255#234#234#234#255#243#243#243#255
|
||||
+#136#136#136#255'222'#255#138#138#138#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#223#223#223#255#236#236#236#255#207#207#207#255'ttt'#255'SSS'
|
||||
+#255'JJJ'#255'III'#255'EEE'#255'HHH'#255'DDD'#255'DDD'#255'FFF'#255'GGG'#255
|
||||
+'SSS'#255#156#156#156#255#224#224#224#255#245#245#245#255#238#238#238#255#237
|
||||
+#237#237#255#137#137#137#255'111'#255#129#129#129#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#230#230#230#255#225#225#225#255#212#212#212#255#173
|
||||
+#173#173#255#175#175#175#255#170#170#170#255#171#171#171#255#166#166#166#255
|
||||
+#171#171#171#255#161#161#161#255#162#162#162#255#167#167#167#255#171#171#171
|
||||
+#255#173#173#173#255#180#180#180#255#220#220#220#255#230#230#230#255#245#245
|
||||
+#245#255#236#236#236#255#137#137#137#255'///'#255#132#132#132#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#223#223#223#255#240#240#240#255#221#221
|
||||
+#221#255#237#237#237#255#232#232#232#255#235#235#235#255#237#237#237#255#232
|
||||
+#232#232#255#238#238#238#255#232#232#232#255#241#241#241#255#240#240#240#255
|
||||
+#235#235#235#255#237#237#237#255#234#234#234#255#241#241#241#255#239#239#239
|
||||
+#255#250#250#250#255#243#243#243#255#137#137#137#255'///'#255#136#136#136#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#241#241#241#255#232#232#232
|
||||
+#255#236#236#236#255#233#233#233#255#235#235#235#255#236#236#236#255#228#228
|
||||
+#228#255#226#226#226#255#237#237#237#255#234#234#234#255#241#241#241#255#235
|
||||
+#235#235#255#236#236#236#255#236#236#236#255#240#240#240#255#239#239#239#255
|
||||
+#249#249#249#255#244#244#244#255#248#248#248#255#136#136#136#255'000'#255#141
|
||||
+#141#141#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#211#211#211#255
|
||||
+'___'#255#136#136#136#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#187#187#187#255#178#178#178#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255#255
|
||||
+#255#255#255#255#255#255#255#255#229#229#229#255#227#227#227#255#9'NumGlyphs'
|
||||
+#2#0#0#0#0#0#9'TSplitter'#9'Splitter1'#4'Left'#3#170#0#6'Height'#3#217#0#3'T'
|
||||
+'op'#2#28#5'Width'#2#5#7'OnMoved'#7#14'Splitter1Moved'#0#0#15'TTIPropertyGri'
|
||||
+'d'#11'GFieldProps'#4'Left'#3#175#0#6'Height'#3#217#0#3'Top'#2#28#5'Width'#3
|
||||
+#23#1#5'Align'#7#8'alClient'#6'Filter'#11#9'tkInteger'#6'tkChar'#13'tkEnumer'
|
||||
+'ation'#7'tkFloat'#5'tkSet'#8'tkMethod'#9'tkSString'#9'tkLString'#9'tkAStrin'
|
||||
+'g'#9'tkWString'#9'tkVariant'#7'tkArray'#8'tkRecord'#11'tkInterface'#7'tkCla'
|
||||
+'ss'#8'tkObject'#7'tkWChar'#6'tkBool'#7'tkInt64'#7'tkQWord'#10'tkDynArray'#14
|
||||
+'tkInterfaceRaw'#9'tkProcVar'#9'tkUString'#7'tkUChar'#0#15'ValueFont.Color'#7
|
||||
+#8'clMaroon'#0#0#0#9'TTabSheet'#9'TSOptions'#7'Caption'#6#7'Options'#12'Clie'
|
||||
+'ntHeight'#3#245#0#11'ClientWidth'#3#198#1#0#15'TTIPropertyGrid'#12'GCodeOpt'
|
||||
+'ions'#4'Left'#2#0#6'Height'#3#245#0#3'Top'#2#0#5'Width'#3#198#1#5'Align'#7#8
|
||||
+'alClient'#6'Filter'#11#9'tkInteger'#6'tkChar'#13'tkEnumeration'#7'tkFloat'#5
|
||||
+'tkSet'#8'tkMethod'#9'tkSString'#9'tkLString'#9'tkAString'#9'tkWString'#9'tk'
|
||||
+'Variant'#7'tkArray'#8'tkRecord'#11'tkInterface'#7'tkClass'#8'tkObject'#7'tk'
|
||||
+'WChar'#6'tkBool'#7'tkInt64'#7'tkQWord'#10'tkDynArray'#14'tkInterfaceRaw'#9
|
||||
+'tkProcVar'#9'tkUString'#7'tkUChar'#0#18'PrefferedSplitterX'#3#200#0#9'Split'
|
||||
+'terX'#3#200#0#15'ValueFont.Color'#7#8'clMaroon'#0#0#0#0#12'TButtonPanel'#11
|
||||
+'PDlgButtons'#4'Left'#2#6#6'Height'#2'#'#3'Top'#3'Q'#1#5'Width'#3#194#1#8'Ta'
|
||||
+'bOrder'#2#2#0#0#11'TActionList'#6'ALList'#4'left'#2#5#3'top'#3#204#0#0#7'TA'
|
||||
+'ction'#3'AUP'#9'OnExecute'#7#10'AUPExecute'#0#0#7'TAction'#5'ADown'#9'OnExe'
|
||||
+'cute'#7#12'ADownExecute'#0#0#0#0
|
||||
]);
|
@ -5,7 +5,7 @@ unit frmBaseConfigCodeGenerator;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, ExtCtrls,
|
||||
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls,
|
||||
StdCtrls, EditBtn, ComCtrls, RTTIGrids, CheckLst, fpddcodegen, Buttons,
|
||||
ActnList, ButtonPanel, ldd_consts;
|
||||
|
||||
@ -78,6 +78,8 @@ implementation
|
||||
|
||||
uses typinfo,lcltype;
|
||||
|
||||
{$R *.lfm}
|
||||
|
||||
{ TBaseConfigGeneratorForm }
|
||||
|
||||
procedure TBaseConfigGeneratorForm.CLBFieldsClick(Sender: TObject);
|
||||
@ -123,7 +125,6 @@ end;
|
||||
procedure TBaseConfigGeneratorForm.GeneratorToForm;
|
||||
|
||||
Var
|
||||
B : Boolean;
|
||||
I,J : Integer;
|
||||
PD : TFieldPropDef;
|
||||
CC : TCodeGeneratorOptionsClass;
|
||||
@ -295,8 +296,6 @@ begin
|
||||
FGen.Fields[I].Assign(FFieldMap[i]);
|
||||
FGen.CodeOptions.Assign(FCodeOptions);
|
||||
end;
|
||||
initialization
|
||||
{$I frmbaseconfigcodegenerator.lrs}
|
||||
|
||||
end.
|
||||
|
||||
|
@ -1,20 +0,0 @@
|
||||
{ This is an automatically generated lazarus resource file }
|
||||
|
||||
LazarusResources.Add('TConfigIDEDataDictForm','FORMDATA',[
|
||||
'TPF0'#22'TConfigIDEDataDictForm'#21'ConfigIDEDataDictForm'#4'Left'#3#194#1#6
|
||||
+'Height'#3#152#0#3'Top'#3'p'#1#5'Width'#3#207#1#11'BorderIcons'#11#12'biSyst'
|
||||
+'emMenu'#0#11'BorderStyle'#7#8'bsDialog'#7'Caption'#6#25'Configure Data Dict'
|
||||
+'ionary'#12'ClientHeight'#3#152#0#11'ClientWidth'#3#207#1#8'OnCreate'#7#10'F'
|
||||
+'ormCreate'#10'LCLVersion'#6#6'0.9.27'#0#6'TLabel'#6'Label1'#4'Left'#2#8#6'H'
|
||||
+'eight'#2#18#3'Top'#2#8#5'Width'#3#184#0#7'Caption'#6#29'Database desktop ap'
|
||||
+'plication:'#11'ParentColor'#8#0#0#6'TLabel'#6'Label2'#4'Left'#2#8#6'Height'
|
||||
+#2#18#3'Top'#2'@'#5'Width'#3#199#0#7'Caption'#6'!Default datadictionary dire'
|
||||
+'ctory:'#11'ParentColor'#8#0#0#13'TFileNameEdit'#4'FEDD'#4'Left'#2' '#6'Heig'
|
||||
+'ht'#2#27#3'Top'#2' '#5'Width'#3#136#1#13'DialogOptions'#11#0#6'Filter'#6#31
|
||||
+'Applications|*.exe|Any file|*.*'#11'FilterIndex'#2#0#15'HideDirectories'#8
|
||||
+#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#0#0#0#14'TDirectoryEdit'
|
||||
+#4'DEDD'#4'Left'#2' '#6'Height'#2#27#3'Top'#2'P'#5'Width'#3#136#1#10'ShowHid'
|
||||
+'den'#8#11'ButtonWidth'#2#23#9'NumGlyphs'#2#1#8'TabOrder'#2#1#0#0#12'TButton'
|
||||
+'Panel'#12'ButtonPanel1'#4'Left'#2#6#6'Height'#2'#'#3'Top'#2'o'#5'Width'#3
|
||||
+#195#1#8'TabOrder'#2#2#11'ShowButtons'#11#4'pbOK'#8'pbCancel'#0#0#0#0
|
||||
]);
|
@ -5,7 +5,7 @@ unit frmconfdatadict;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
|
||||
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs,
|
||||
EditBtn, StdCtrls, idedatadict, ButtonPanel, ldd_consts;
|
||||
|
||||
type
|
||||
@ -36,6 +36,8 @@ Function ShowConfigIDEDataDictDialog : Boolean;
|
||||
|
||||
implementation
|
||||
|
||||
{$R *.lfm}
|
||||
|
||||
Function ShowConfigIDEDataDictDialog : Boolean;
|
||||
|
||||
begin
|
||||
@ -94,9 +96,5 @@ begin
|
||||
DEDD.Text:=DefaultDictionaryDir;
|
||||
end;
|
||||
|
||||
|
||||
initialization
|
||||
{$I frmconfdatadict.lrs}
|
||||
|
||||
end.
|
||||
|
||||
|
@ -1,30 +0,0 @@
|
||||
{ This is an automatically generated lazarus resource file }
|
||||
|
||||
LazarusResources.Add('TConfigureProjectDDForm','FORMDATA',[
|
||||
'TPF0'#23'TConfigureProjectDDForm'#22'ConfigureProjectDDForm'#4'Left'#3#194#1
|
||||
+#6'Height'#3#179#0#3'Top'#3'p'#1#5'Width'#3#207#1#13'ActiveControl'#7#13'CBU'
|
||||
+'seDataDict'#11'BorderIcons'#11#12'biSystemMenu'#0#11'BorderStyle'#7#8'bsDia'
|
||||
+'log'#7'Caption'#6#27'Set project Data Dictionary'#12'ClientHeight'#3#179#0
|
||||
+#11'ClientWidth'#3#207#1#8'OnCreate'#7#10'FormCreate'#10'LCLVersion'#6#6'0.9'
|
||||
+'.27'#0#13'TFileNameEdit'#4'FEDD'#4'Left'#2'('#6'Height'#2#27#3'Top'#2'x'#5
|
||||
+'Width'#3#136#1#13'DialogOptions'#11#0#6'Filter'#6'"Data dictionary|*.fdd|An'
|
||||
+'y file|*.*'#11'FilterIndex'#2#0#15'HideDirectories'#8#11'ButtonWidth'#2#23#9
|
||||
+'NumGlyphs'#2#1#7'Enabled'#8#8'TabOrder'#2#0#0#0#9'TCheckBox'#13'CBUseDataDi'
|
||||
+'ct'#4'Left'#2#16#6'Height'#2#26#3'Top'#2#8#5'Width'#3#160#1#8'AutoSize'#8#7
|
||||
+'Caption'#6'%&Use Data dictionary for this project'#8'TabOrder'#2#1#0#0#7'TB'
|
||||
+'utton'#3'BOK'#4'Left'#3'x'#1#6'Height'#2#25#3'Top'#3#152#0#5'Width'#2'K'#25
|
||||
+'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#3'&OK'#7'Default'#9#11'ModalRes'
|
||||
+'ult'#2#1#7'OnClick'#7#8'BOKClick'#8'TabOrder'#2#2#0#0#7'TButton'#7'BCancel'
|
||||
+#4'Left'#3' '#1#6'Height'#2#25#3'Top'#3#152#0#5'Width'#2'K'#25'BorderSpacing'
|
||||
+'.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#7'&Cancel'#11'ModalResult'#2#2#8
|
||||
+'TabOrder'#2#3#0#0#12'TRadioButton'#12'RBUseKnownDD'#4'Left'#2#17#6'Height'#2
|
||||
+#21#3'Top'#2'('#5'Width'#3#159#0#7'Caption'#6#21'Known data dictionary'#7'Ch'
|
||||
+'ecked'#9#7'OnClick'#7#14'RBUseFileClick'#5'State'#7#9'cbChecked'#8'TabOrder'
|
||||
+#2#4#0#0#12'TRadioButton'#9'RBUseFile'#4'Left'#2#16#6'Height'#2#21#3'Top'#2
|
||||
+'`'#5'Width'#3#139#0#7'Caption'#6#22'Data dictionary &file:'#7'OnClick'#7#14
|
||||
+'RBUseFileClick'#8'TabOrder'#2#5#7'TabStop'#8#0#0#9'TComboBox'#4'CBDD'#4'Lef'
|
||||
+'t'#2'('#6'Height'#2#25#3'Top'#2'='#5'Width'#3#184#0#10'ItemHeight'#2#17#8'O'
|
||||
+'nChange'#7#10'CBDDChange'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#6#0#0
|
||||
+#11'TOpenDialog'#11'OpenDialog1'#5'Title'#6#18'Open existing file'#4'left'#3
|
||||
+'^'#1#3'top'#2'@'#0#0#0
|
||||
]);
|
@ -5,7 +5,7 @@ unit frmconfprojdatadict;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
|
||||
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs,
|
||||
EditBtn, StdCtrls, idedatadict, ldd_consts;
|
||||
|
||||
type
|
||||
@ -44,6 +44,8 @@ Function ShowConfigProjectDDDialog : Boolean;
|
||||
|
||||
implementation
|
||||
|
||||
{$R *.lfm}
|
||||
|
||||
Function ShowConfigProjectDDDialog : Boolean;
|
||||
|
||||
begin
|
||||
@ -158,8 +160,5 @@ begin
|
||||
FEDD.FileName:=FN;
|
||||
end;
|
||||
|
||||
initialization
|
||||
{$I frmconfprojdatadict.lrs}
|
||||
|
||||
end.
|
||||
|
||||
|
@ -1,138 +0,0 @@
|
||||
{ This is an automatically generated lazarus resource file }
|
||||
|
||||
LazarusResources.Add('TCodeForm','FORMDATA',[
|
||||
'TPF0'#9'TCodeForm'#8'CodeForm'#4'Left'#3'^'#1#6'Height'#3','#1#3'Top'#3#194#0
|
||||
+#5'Width'#3#144#1#13'ActiveControl'#7#5'MCode'#7'Caption'#6#14'Generated cod'
|
||||
+'e'#12'ClientHeight'#3','#1#11'ClientWidth'#3#144#1#8'OnCreate'#7#10'FormCre'
|
||||
+'ate'#10'LCLVersion'#6#6'0.9.27'#0#8'TSynMemo'#5'MCode'#6'Cursor'#7#7'crIBea'
|
||||
+'m'#4'Left'#2#0#6'Height'#3#0#1#3'Top'#2#0#5'Width'#3#144#1#5'Align'#7#8'alC'
|
||||
+'lient'#11'Font.Height'#2#14#9'Font.Name'#6'7-adobe-courier-medium-r-normal-'
|
||||
+'*-*-*-*-*-*-*-iso10646-1'#10'Font.Pitch'#7#7'fpFixed'#12'Font.Quality'#7#16
|
||||
+'fqNonAntialiased'#11'ParentColor'#8#10'ParentFont'#8#8'TabOrder'#2#0#23'Boo'
|
||||
+'kMarkOptions.Xoffset'#2#17#24'BookMarkOptions.OnChange'#13#16'ExtraLineSpac'
|
||||
+'ing'#2#2#17'Gutter.LeftOffset'#2#4#12'Gutter.Width'#2'A'#19'Gutter.MouseAct'
|
||||
+'ions'#14#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCo'
|
||||
+'unt'#7#5'ccAny'#8'ClickDir'#7#6'cdDown'#7'Command'#2#13#9'MoveCaret'#8#6'Op'
|
||||
+'tion'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#7
|
||||
+'mbRight'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#4'cdUp'#7'Command'#2#12
|
||||
+#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#0#11'Highlighter'#7#17'SynFr'
|
||||
+'eePascalSyn1'#10'Keystrokes'#14#1#7'Command'#7#4'ecUp'#8'ShortCut'#2'&'#0#1
|
||||
+#7'Command'#7#7'ecSelUp'#8'ShortCut'#3'& '#0#1#7'Command'#7#10'ecScrollUp'#8
|
||||
+'ShortCut'#3'&@'#0#1#7'Command'#7#6'ecDown'#8'ShortCut'#2'('#0#1#7'Command'#7
|
||||
+#9'ecSelDown'#8'ShortCut'#3'( '#0#1#7'Command'#7#12'ecScrollDown'#8'ShortCut'
|
||||
+#3'(@'#0#1#7'Command'#7#6'ecLeft'#8'ShortCut'#2'%'#0#1#7'Command'#7#9'ecSelL'
|
||||
+'eft'#8'ShortCut'#3'% '#0#1#7'Command'#7#10'ecWordLeft'#8'ShortCut'#3'%@'#0#1
|
||||
+#7'Command'#7#13'ecSelWordLeft'#8'ShortCut'#3'%`'#0#1#7'Command'#7#7'ecRight'
|
||||
+#8'ShortCut'#2''''#0#1#7'Command'#7#10'ecSelRight'#8'ShortCut'#3''' '#0#1#7
|
||||
+'Command'#7#11'ecWordRight'#8'ShortCut'#3'''@'#0#1#7'Command'#7#14'ecSelWord'
|
||||
+'Right'#8'ShortCut'#3'''`'#0#1#7'Command'#7#10'ecPageDown'#8'ShortCut'#2'"'#0
|
||||
+#1#7'Command'#7#13'ecSelPageDown'#8'ShortCut'#3'" '#0#1#7'Command'#7#12'ecPa'
|
||||
+'geBottom'#8'ShortCut'#3'"@'#0#1#7'Command'#7#15'ecSelPageBottom'#8'ShortCut'
|
||||
+#3'"`'#0#1#7'Command'#7#8'ecPageUp'#8'ShortCut'#2'!'#0#1#7'Command'#7#11'ecS'
|
||||
+'elPageUp'#8'ShortCut'#3'! '#0#1#7'Command'#7#9'ecPageTop'#8'ShortCut'#3'!@'
|
||||
+#0#1#7'Command'#7#12'ecSelPageTop'#8'ShortCut'#3'!`'#0#1#7'Command'#7#11'ecL'
|
||||
+'ineStart'#8'ShortCut'#2'$'#0#1#7'Command'#7#14'ecSelLineStart'#8'ShortCut'#3
|
||||
+'$ '#0#1#7'Command'#7#11'ecEditorTop'#8'ShortCut'#3'$@'#0#1#7'Command'#7#14
|
||||
+'ecSelEditorTop'#8'ShortCut'#3'$`'#0#1#7'Command'#7#9'ecLineEnd'#8'ShortCut'
|
||||
+#2'#'#0#1#7'Command'#7#12'ecSelLineEnd'#8'ShortCut'#3'# '#0#1#7'Command'#7#14
|
||||
+'ecEditorBottom'#8'ShortCut'#3'#@'#0#1#7'Command'#7#17'ecSelEditorBottom'#8
|
||||
+'ShortCut'#3'#`'#0#1#7'Command'#7#12'ecToggleMode'#8'ShortCut'#2'-'#0#1#7'Co'
|
||||
+'mmand'#7#6'ecCopy'#8'ShortCut'#3'-@'#0#1#7'Command'#7#7'ecPaste'#8'ShortCut'
|
||||
+#3'- '#0#1#7'Command'#7#12'ecDeleteChar'#8'ShortCut'#2'.'#0#1#7'Command'#7#5
|
||||
+'ecCut'#8'ShortCut'#3'. '#0#1#7'Command'#7#16'ecDeleteLastChar'#8'ShortCut'#2
|
||||
+#8#0#1#7'Command'#7#16'ecDeleteLastChar'#8'ShortCut'#3#8' '#0#1#7'Command'#7
|
||||
+#16'ecDeleteLastWord'#8'ShortCut'#3#8'@'#0#1#7'Command'#7#6'ecUndo'#8'ShortC'
|
||||
+'ut'#4#8#128#0#0#0#1#7'Command'#7#6'ecRedo'#8'ShortCut'#4#8#160#0#0#0#1#7'Co'
|
||||
+'mmand'#7#11'ecLineBreak'#8'ShortCut'#2#13#0#1#7'Command'#7#11'ecSelectAll'#8
|
||||
+'ShortCut'#3'A@'#0#1#7'Command'#7#6'ecCopy'#8'ShortCut'#3'C@'#0#1#7'Command'
|
||||
+#7#13'ecBlockIndent'#8'ShortCut'#3'I`'#0#1#7'Command'#7#11'ecLineBreak'#8'Sh'
|
||||
+'ortCut'#3'M@'#0#1#7'Command'#7#12'ecInsertLine'#8'ShortCut'#3'N@'#0#1#7'Com'
|
||||
+'mand'#7#12'ecDeleteWord'#8'ShortCut'#3'T@'#0#1#7'Command'#7#15'ecBlockUnind'
|
||||
+'ent'#8'ShortCut'#3'U`'#0#1#7'Command'#7#7'ecPaste'#8'ShortCut'#3'V@'#0#1#7
|
||||
+'Command'#7#5'ecCut'#8'ShortCut'#3'X@'#0#1#7'Command'#7#12'ecDeleteLine'#8'S'
|
||||
+'hortCut'#3'Y@'#0#1#7'Command'#7#11'ecDeleteEOL'#8'ShortCut'#3'Y`'#0#1#7'Com'
|
||||
+'mand'#7#6'ecUndo'#8'ShortCut'#3'Z@'#0#1#7'Command'#7#6'ecRedo'#8'ShortCut'#3
|
||||
+'Z`'#0#1#7'Command'#7#13'ecGotoMarker0'#8'ShortCut'#3'0@'#0#1#7'Command'#7#13
|
||||
+'ecGotoMarker1'#8'ShortCut'#3'1@'#0#1#7'Command'#7#13'ecGotoMarker2'#8'Short'
|
||||
+'Cut'#3'2@'#0#1#7'Command'#7#13'ecGotoMarker3'#8'ShortCut'#3'3@'#0#1#7'Comma'
|
||||
+'nd'#7#13'ecGotoMarker4'#8'ShortCut'#3'4@'#0#1#7'Command'#7#13'ecGotoMarker5'
|
||||
+#8'ShortCut'#3'5@'#0#1#7'Command'#7#13'ecGotoMarker6'#8'ShortCut'#3'6@'#0#1#7
|
||||
+'Command'#7#13'ecGotoMarker7'#8'ShortCut'#3'7@'#0#1#7'Command'#7#13'ecGotoMa'
|
||||
+'rker8'#8'ShortCut'#3'8@'#0#1#7'Command'#7#13'ecGotoMarker9'#8'ShortCut'#3'9'
|
||||
+'@'#0#1#7'Command'#7#12'ecSetMarker0'#8'ShortCut'#3'0`'#0#1#7'Command'#7#12
|
||||
+'ecSetMarker1'#8'ShortCut'#3'1`'#0#1#7'Command'#7#12'ecSetMarker2'#8'ShortCu'
|
||||
+'t'#3'2`'#0#1#7'Command'#7#12'ecSetMarker3'#8'ShortCut'#3'3`'#0#1#7'Command'
|
||||
+#7#12'ecSetMarker4'#8'ShortCut'#3'4`'#0#1#7'Command'#7#12'ecSetMarker5'#8'Sh'
|
||||
+'ortCut'#3'5`'#0#1#7'Command'#7#12'ecSetMarker6'#8'ShortCut'#3'6`'#0#1#7'Com'
|
||||
+'mand'#7#12'ecSetMarker7'#8'ShortCut'#3'7`'#0#1#7'Command'#7#12'ecSetMarker8'
|
||||
,#8'ShortCut'#3'8`'#0#1#7'Command'#7#12'ecSetMarker9'#8'ShortCut'#3'9`'#0#1#7
|
||||
+'Command'#7#14'ecNormalSelect'#8'ShortCut'#3'N`'#0#1#7'Command'#7#14'ecColum'
|
||||
+'nSelect'#8'ShortCut'#3'C`'#0#1#7'Command'#7#12'ecLineSelect'#8'ShortCut'#3
|
||||
+'L`'#0#1#7'Command'#7#5'ecTab'#8'ShortCut'#2#9#0#1#7'Command'#7#10'ecShiftTa'
|
||||
+'b'#8'ShortCut'#3#9' '#0#1#7'Command'#7#14'ecMatchBracket'#8'ShortCut'#3'B`'
|
||||
+#0#0#12'MouseActions'#14#1#5'Shift'#11#0#9'ShiftMask'#11#7'ssShift'#5'ssAlt'
|
||||
+#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'
|
||||
+#7'Command'#2#1#9'MoveCaret'#9#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11
|
||||
+#7'ssShift'#0#9'ShiftMask'#11#7'ssShift'#5'ssAlt'#0#6'Button'#7#6'mbLeft'#10
|
||||
+'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#1#9'MoveCare'
|
||||
+'t'#9#6'Option'#2#1#8'Priority'#2#0#0#1#5'Shift'#11#5'ssAlt'#0#9'ShiftMask'
|
||||
+#11#7'ssShift'#5'ssAlt'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'
|
||||
+#8'ClickDir'#7#6'cdDown'#7'Command'#2#3#9'MoveCaret'#9#6'Option'#2#0#8'Prior'
|
||||
+'ity'#2#0#0#1#5'Shift'#11#7'ssShift'#5'ssAlt'#0#9'ShiftMask'#11#7'ssShift'#5
|
||||
+'ssAlt'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6
|
||||
+'cdDown'#7'Command'#2#3#9'MoveCaret'#9#6'Option'#2#1#8'Priority'#2#0#0#1#5'S'
|
||||
+'hift'#11#0#9'ShiftMask'#11#0#6'Button'#7#7'mbRight'#10'ClickCount'#7#8'ccSi'
|
||||
+'ngle'#8'ClickDir'#7#4'cdUp'#7'Command'#2#12#9'MoveCaret'#8#6'Option'#2#0#8
|
||||
+'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10
|
||||
+'ClickCount'#7#8'ccDouble'#8'ClickDir'#7#6'cdDown'#7'Command'#2#6#9'MoveCare'
|
||||
+'t'#9#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Bu'
|
||||
+'tton'#7#6'mbLeft'#10'ClickCount'#7#8'ccTriple'#8'ClickDir'#7#6'cdDown'#7'Co'
|
||||
+'mmand'#2#7#9'MoveCaret'#9#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9
|
||||
+'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#6'ccQuad'#8'ClickDir'
|
||||
+#7#6'cdDown'#7'Command'#2#8#9'MoveCaret'#9#6'Option'#2#0#8'Priority'#2#0#0#1
|
||||
+#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#8'mbMiddle'#10'ClickCount'#7#8
|
||||
+'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#10#9'MoveCaret'#9#6'Option'#2
|
||||
+#0#8'Priority'#2#0#0#1#5'Shift'#11#6'ssCtrl'#0#9'ShiftMask'#11#7'ssShift'#5
|
||||
+'ssAlt'#6'ssCtrl'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'Cli'
|
||||
+'ckDir'#7#4'cdUp'#7'Command'#2#11#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2
|
||||
+#0#0#0#15'MouseSelActions'#14#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6
|
||||
+'mbLeft'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#6'cdDown'#7'Command'#2#9
|
||||
+#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#0#13'Lines.Strings'#1#6#0#0#0
|
||||
+#18'TSynGutterPartList'#0#0#15'TSynGutterMarks'#0#5'Width'#2#23#0#0#20'TSynG'
|
||||
+'utterLineNumber'#0#5'Width'#2#21#12'MouseActions'#14#0#21'MarkupInfo.Backgr'
|
||||
+'ound'#7#9'clBtnFace'#21'MarkupInfo.Foreground'#7#6'clNone'#10'DigitCount'#2
|
||||
+#2#30'ShowOnlyLineNumbersMultiplesOf'#2#1#9'ZeroStart'#8#12'LeadingZeros'#8#0
|
||||
+#0#17'TSynGutterChanges'#0#5'Width'#2#4#13'ModifiedColor'#4#252#233#0#0#10'S'
|
||||
+'avedColor'#7#7'clGreen'#0#0#19'TSynGutterSeparator'#0#5'Width'#2#2#0#0#21'T'
|
||||
+'SynGutterCodeFolding'#0#12'MouseActions'#14#1#5'Shift'#11#0#9'ShiftMask'#11
|
||||
+#0#6'Button'#7#7'mbRight'#10'ClickCount'#7#8'ccSingle'#8'ClickDir'#7#4'cdUp'
|
||||
+#7'Command'#2#16#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11
|
||||
+#0#9'ShiftMask'#11#7'ssShift'#0#6'Button'#7#8'mbMiddle'#10'ClickCount'#7#5'c'
|
||||
+'cAny'#8'ClickDir'#7#6'cdDown'#7'Command'#2#14#9'MoveCaret'#8#6'Option'#2#0#8
|
||||
+'Priority'#2#0#0#1#5'Shift'#11#7'ssShift'#0#9'ShiftMask'#11#7'ssShift'#0#6'B'
|
||||
+'utton'#7#8'mbMiddle'#10'ClickCount'#7#5'ccAny'#8'ClickDir'#7#6'cdDown'#7'Co'
|
||||
+'mmand'#2#14#9'MoveCaret'#8#6'Option'#2#1#8'Priority'#2#0#0#1#5'Shift'#11#0#9
|
||||
+'ShiftMask'#11#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#5'ccAny'#8'ClickDir'
|
||||
+#7#6'cdDown'#7'Command'#2#0#9'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#0
|
||||
+#21'MarkupInfo.Background'#7#6'clNone'#21'MarkupInfo.Foreground'#7#6'clGray'
|
||||
+#20'MouseActionsExpanded'#14#1#5'Shift'#11#0#9'ShiftMask'#11#0#6'Button'#7#6
|
||||
+'mbLeft'#10'ClickCount'#7#5'ccAny'#8'ClickDir'#7#6'cdDown'#7'Command'#2#14#9
|
||||
+'MoveCaret'#8#6'Option'#2#0#8'Priority'#2#0#0#0#21'MouseActionsCollapsed'#14
|
||||
+#1#5'Shift'#11#6'ssCtrl'#0#9'ShiftMask'#11#6'ssCtrl'#0#6'Button'#7#6'mbLeft'
|
||||
+#10'ClickCount'#7#5'ccAny'#8'ClickDir'#7#6'cdDown'#7'Command'#2#15#9'MoveCar'
|
||||
+'et'#8#6'Option'#2#0#8'Priority'#2#0#0#1#5'Shift'#11#0#9'ShiftMask'#11#6'ssC'
|
||||
+'trl'#0#6'Button'#7#6'mbLeft'#10'ClickCount'#7#5'ccAny'#8'ClickDir'#7#6'cdDo'
|
||||
+'wn'#7'Command'#2#15#9'MoveCaret'#8#6'Option'#2#1#8'Priority'#2#0#0#0#0#0#0#0
|
||||
+#6'TPanel'#8'PButtons'#4'Left'#2#0#6'Height'#2','#3'Top'#3#0#1#5'Width'#3#144
|
||||
+#1#5'Align'#7#8'alBottom'#12'ClientHeight'#2','#11'ClientWidth'#3#144#1#8'Ta'
|
||||
+'bOrder'#2#1#0#7'TButton'#6'BClose'#4'Left'#3'8'#1#6'Height'#2#25#3'Top'#2#8
|
||||
+#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#6'&Close'#11
|
||||
+'ModalResult'#2#1#8'TabOrder'#2#0#0#0#7'TButton'#5'BSave'#4'Left'#2#8#6'Heig'
|
||||
+'ht'#2#25#3'Top'#2#8#5'Width'#2'K'#7'Caption'#6#5'&Save'#7'OnClick'#7#10'BSa'
|
||||
,'veClick'#8'TabOrder'#2#1#0#0#0#17'TSynFreePascalSyn'#17'SynFreePascalSyn1'#7
|
||||
+'Enabled'#8#12'CompilerMode'#7#9'pcmObjFPC'#14'NestedComments'#9#4'left'#2'j'
|
||||
+#3'top'#2#27#0#0#11'TSaveDialog'#6'SDCode'#10'DefaultExt'#6#3'.pp'#6'Filter'
|
||||
+#6'+Pascal files|*.pp;*.pas;*.inc|All files|*.*'#7'Options'#11#17'ofOverwrit'
|
||||
+'ePrompt'#15'ofPathMustExist'#14'ofEnableSizing'#12'ofViewDetail'#0#4'left'#3
|
||||
+#144#0#3'top'#3#7#1#0#0#0
|
||||
]);
|
@ -5,7 +5,7 @@ unit frmgeneratedcode;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
|
||||
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs,
|
||||
SynHighlighterPas, SynMemo, ExtCtrls, StdCtrls, ldd_consts;
|
||||
|
||||
type
|
||||
@ -37,6 +37,8 @@ var
|
||||
|
||||
implementation
|
||||
|
||||
{$R *.lfm}
|
||||
|
||||
{ TCodeForm }
|
||||
|
||||
function TCodeForm.GetCode: TStrings;
|
||||
@ -71,8 +73,5 @@ begin
|
||||
MCode.Lines.Assign(AValue);
|
||||
end;
|
||||
|
||||
initialization
|
||||
{$I frmgeneratedcode.lrs}
|
||||
|
||||
end.
|
||||
|
||||
|
@ -1,20 +0,0 @@
|
||||
{ This is an automatically generated lazarus resource file }
|
||||
|
||||
LazarusResources.Add('TSelectCodeGeneratorForm','FORMDATA',[
|
||||
'TPF0'#24'TSelectCodeGeneratorForm'#23'SelectCodeGeneratorForm'#4'Left'#3'!'#2
|
||||
+#6'Height'#3','#1#3'Top'#3#239#0#5'Width'#3#144#1#13'ActiveControl'#7#22'BPB'
|
||||
+'uttons.CancelButton'#7'Caption'#6#27'Select code to be generated'#12'Client'
|
||||
+'Height'#3','#1#11'ClientWidth'#3#144#1#7'OnClose'#7#9'FormClose'#8'OnCreate'
|
||||
+#7#10'FormCreate'#6'OnShow'#7#8'FormShow'#10'LCLVersion'#6#6'0.9.27'#0#11'TR'
|
||||
+'adioGroup'#12'RGGenerators'#4'Left'#2#8#6'Height'#3#240#0#3'Top'#2#8#5'Widt'
|
||||
+'h'#3'x'#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#8'AutoF'
|
||||
+'ill'#9#7'Caption'#6#25'Available code generators'#28'ChildSizing.LeftRightS'
|
||||
+'pacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHori'
|
||||
+'zontal'#7#24'crsHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24
|
||||
+'crsHomogenousChildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChi'
|
||||
+'lds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Lay'
|
||||
+'out'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#1
|
||||
+#8'TabOrder'#2#0#0#0#12'TButtonPanel'#9'BPButtons'#4'Left'#2#6#6'Height'#2'#'
|
||||
+#3'Top'#3#3#1#5'Width'#3#132#1#8'TabOrder'#2#1#11'ShowButtons'#11#4'pbOK'#8
|
||||
+'pbCancel'#0#0#0#0
|
||||
]);
|
@ -5,8 +5,7 @@ unit frmSelectCodeGenerator;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, ExtCtrls,
|
||||
fpddcodegen,
|
||||
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls, fpddcodegen,
|
||||
ButtonPanel, ldd_consts;
|
||||
|
||||
type
|
||||
@ -37,6 +36,8 @@ var
|
||||
|
||||
implementation
|
||||
|
||||
{$R *.lfm}
|
||||
|
||||
{ TSelectCodeGeneratorForm }
|
||||
|
||||
procedure TSelectCodeGeneratorForm.FormShow(Sender: TObject);
|
||||
@ -96,8 +97,5 @@ begin
|
||||
ItemIndex:=0;
|
||||
end;
|
||||
|
||||
initialization
|
||||
{$I frmselectcodegenerator.lrs}
|
||||
|
||||
end.
|
||||
|
||||
|
@ -228,7 +228,6 @@ Var
|
||||
ProjActive : Boolean;
|
||||
ProjFileName : String;
|
||||
ProjDD : String;
|
||||
NeedReload : Boolean;
|
||||
|
||||
begin
|
||||
If Not(Assigned(LazarusIDE) and Assigned(LazarusIDE.ActiveProject)) then
|
||||
|
@ -1,17 +1,23 @@
|
||||
<?xml version="1.0"?>
|
||||
<CONFIG>
|
||||
<Package Version="3">
|
||||
<Package Version="4">
|
||||
<Name Value="lazdatadict"/>
|
||||
<AddToProjectUsesSection Value="True"/>
|
||||
<CompilerOptions>
|
||||
<Version Value="8"/>
|
||||
<Version Value="11"/>
|
||||
<SearchPaths>
|
||||
<UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/>
|
||||
</SearchPaths>
|
||||
<Parsing>
|
||||
<SyntaxOptions>
|
||||
<UseAnsiStrings Value="False"/>
|
||||
</SyntaxOptions>
|
||||
</Parsing>
|
||||
<Other>
|
||||
<CompilerPath Value="$(CompPath)"/>
|
||||
</Other>
|
||||
</CompilerOptions>
|
||||
<Files Count="18">
|
||||
<Files Count="14">
|
||||
<Item1>
|
||||
<Filename Value="frmconfprojdatadict.pp"/>
|
||||
<UnitName Value="frmconfprojdatadict"/>
|
||||
@ -30,61 +36,45 @@
|
||||
<Type Value="LFM"/>
|
||||
</Item4>
|
||||
<Item5>
|
||||
<Filename Value="frmconfdatadict.lrs"/>
|
||||
<Type Value="LRS"/>
|
||||
</Item5>
|
||||
<Item6>
|
||||
<Filename Value="frmconfdatadict.pp"/>
|
||||
<UnitName Value="frmconfdatadict"/>
|
||||
</Item6>
|
||||
<Item7>
|
||||
</Item5>
|
||||
<Item6>
|
||||
<Filename Value="frmselectcodegenerator.lfm"/>
|
||||
<Type Value="LFM"/>
|
||||
</Item7>
|
||||
<Item8>
|
||||
<Filename Value="frmselectcodegenerator.lrs"/>
|
||||
<Type Value="LRS"/>
|
||||
</Item8>
|
||||
<Item9>
|
||||
</Item6>
|
||||
<Item7>
|
||||
<Filename Value="frmselectcodegenerator.pp"/>
|
||||
<UnitName Value="frmSelectCodeGenerator"/>
|
||||
</Item9>
|
||||
<Item10>
|
||||
</Item7>
|
||||
<Item8>
|
||||
<Filename Value="fpcodegenerator.pp"/>
|
||||
<UnitName Value="fpcodegenerator"/>
|
||||
</Item8>
|
||||
<Item9>
|
||||
<Filename Value="frmbaseconfigcodegenerator.lfm"/>
|
||||
<Type Value="LFM"/>
|
||||
</Item9>
|
||||
<Item10>
|
||||
<Filename Value="frmbaseconfigcodegenerator.pp"/>
|
||||
<UnitName Value="frmBaseConfigCodeGenerator"/>
|
||||
</Item10>
|
||||
<Item11>
|
||||
<Filename Value="frmbaseconfigcodegenerator.lfm"/>
|
||||
<Filename Value="frmgeneratedcode.lfm"/>
|
||||
<Type Value="LFM"/>
|
||||
</Item11>
|
||||
<Item12>
|
||||
<Filename Value="frmbaseconfigcodegenerator.lrs"/>
|
||||
<Type Value="LRS"/>
|
||||
</Item12>
|
||||
<Item13>
|
||||
<Filename Value="frmbaseconfigcodegenerator.pp"/>
|
||||
<UnitName Value="frmBaseConfigCodeGenerator"/>
|
||||
</Item13>
|
||||
<Item14>
|
||||
<Filename Value="frmgeneratedcode.lfm"/>
|
||||
<Type Value="LFM"/>
|
||||
</Item14>
|
||||
<Item15>
|
||||
<Filename Value="frmgeneratedcode.lrs"/>
|
||||
<Type Value="LRS"/>
|
||||
</Item15>
|
||||
<Item16>
|
||||
<Filename Value="frmgeneratedcode.pp"/>
|
||||
<UnitName Value="frmgeneratedcode"/>
|
||||
</Item16>
|
||||
<Item17>
|
||||
</Item12>
|
||||
<Item13>
|
||||
<Filename Value="reglazdatadict.lrs"/>
|
||||
<Type Value="LRS"/>
|
||||
</Item17>
|
||||
<Item18>
|
||||
</Item13>
|
||||
<Item14>
|
||||
<Filename Value="ldd_consts.pas"/>
|
||||
<UnitName Value="ldd_consts"/>
|
||||
</Item18>
|
||||
</Item14>
|
||||
</Files>
|
||||
<i18n>
|
||||
<EnableI18N Value="True"/>
|
||||
@ -116,5 +106,8 @@
|
||||
<Version Value="2"/>
|
||||
<IgnoreBinaries Value="False"/>
|
||||
</PublishOptions>
|
||||
<CustomOptions Items="ExternHelp" Version="2">
|
||||
<_ExternHelp Items="Count"/>
|
||||
</CustomOptions>
|
||||
</Package>
|
||||
</CONFIG>
|
||||
|
@ -6,7 +6,7 @@ interface
|
||||
|
||||
uses
|
||||
// General units
|
||||
Classes, SysUtils, Process, UTF8Process, DB, Typinfo,
|
||||
Classes, SysUtils, UTF8Process, DB, Typinfo,
|
||||
// IDE interface
|
||||
MenuIntf, propedits, lresources,
|
||||
// Data dict units
|
||||
@ -308,7 +308,6 @@ procedure TIDEDataDictCommandHandler.CreateDDCode(Sender: TObject);
|
||||
Var
|
||||
ASelection : TPersistentSelectionList;
|
||||
DS : TDataset;
|
||||
PI : PPropInfo;
|
||||
HaveSQL : Boolean;
|
||||
ASQL :String;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user