Fix component alignment/Anchors
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3015 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
parent
9f07522d7c
commit
cf03917999
@ -1,8 +1,8 @@
|
||||
object DM: TDM
|
||||
OldCreateOrder = False
|
||||
Height = 300
|
||||
HorizontalOffset = 381
|
||||
VerticalOffset = 208
|
||||
HorizontalOffset = 382
|
||||
VerticalOffset = 238
|
||||
Width = 400
|
||||
object IM: TImageList
|
||||
left = 208
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
LazarusResources.Add('TDM','FORMDATA',[
|
||||
'TPF0'#3'TDM'#2'DM'#14'OldCreateOrder'#8#6'Height'#3','#1#16'HorizontalOffset'
|
||||
+#3'}'#1#14'VerticalOffset'#3#208#0#5'Width'#3#144#1#0#10'TImageList'#2'IM'#4
|
||||
+#3'~'#1#14'VerticalOffset'#3#238#0#5'Width'#3#144#1#0#10'TImageList'#2'IM'#4
|
||||
+'left'#3#208#0#3'top'#3#200#0#6'Bitmap'#10#14't'#0#0'Li'#29#0#0#0#16#0#0#0#16
|
||||
+#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#160#160#160#255#160#160#160#255#160
|
||||
+#160#160#255#160#160#160#255#128#128#128#255#128#128#128#255#128#128#128#255
|
||||
|
@ -8,10 +8,10 @@ object frmSaveOptions: TfrmSaveOptions
|
||||
Caption = 'Export file options ...'
|
||||
ClientHeight = 338
|
||||
ClientWidth = 402
|
||||
ParentFont = False
|
||||
Position = poMainFormCenter
|
||||
LCLVersion = '0.9.26.1'
|
||||
LCLVersion = '1.2.2.0'
|
||||
object Panel1: TPanel
|
||||
Left = 0
|
||||
Height = 50
|
||||
Top = 288
|
||||
Width = 402
|
||||
@ -44,7 +44,9 @@ object frmSaveOptions: TfrmSaveOptions
|
||||
end
|
||||
end
|
||||
object Panel2: TPanel
|
||||
Left = 0
|
||||
Height = 288
|
||||
Top = 0
|
||||
Width = 402
|
||||
Align = alClient
|
||||
ClientHeight = 288
|
||||
@ -52,9 +54,9 @@ object frmSaveOptions: TfrmSaveOptions
|
||||
TabOrder = 0
|
||||
object Label1: TLabel
|
||||
Left = 16
|
||||
Height = 14
|
||||
Height = 13
|
||||
Top = 16
|
||||
Width = 81
|
||||
Width = 80
|
||||
Caption = 'Output directory'
|
||||
ParentColor = False
|
||||
end
|
||||
@ -70,35 +72,35 @@ object frmSaveOptions: TfrmSaveOptions
|
||||
TabOrder = 2
|
||||
object edtInterface: TCheckBox
|
||||
Left = 14
|
||||
Height = 19
|
||||
Height = 17
|
||||
Top = 16
|
||||
Width = 71
|
||||
Width = 65
|
||||
Caption = 'Interface'
|
||||
TabOrder = 0
|
||||
end
|
||||
object edtProxy: TCheckBox
|
||||
Left = 14
|
||||
Height = 19
|
||||
Top = 51
|
||||
Width = 54
|
||||
Height = 17
|
||||
Top = 53
|
||||
Width = 48
|
||||
Anchors = [akLeft, akBottom]
|
||||
Caption = 'Proxy'
|
||||
TabOrder = 2
|
||||
end
|
||||
object edtImplementation: TCheckBox
|
||||
Left = 224
|
||||
Height = 19
|
||||
Left = 230
|
||||
Height = 17
|
||||
Top = 14
|
||||
Width = 100
|
||||
Width = 94
|
||||
Anchors = [akTop, akRight]
|
||||
Caption = 'Implementation'
|
||||
TabOrder = 1
|
||||
end
|
||||
object edtBinder: TCheckBox
|
||||
Left = 227
|
||||
Height = 19
|
||||
Top = 51
|
||||
Width = 56
|
||||
Left = 230
|
||||
Height = 17
|
||||
Top = 53
|
||||
Width = 50
|
||||
Anchors = [akRight, akBottom]
|
||||
Caption = 'Binder'
|
||||
TabOrder = 3
|
||||
@ -106,7 +108,7 @@ object frmSaveOptions: TfrmSaveOptions
|
||||
end
|
||||
object edtOutputDir: TEdit
|
||||
Left = 16
|
||||
Height = 23
|
||||
Height = 21
|
||||
Top = 38
|
||||
Width = 336
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
@ -145,18 +147,19 @@ object frmSaveOptions: TfrmSaveOptions
|
||||
end
|
||||
object edtWrappedParams: TCheckBox
|
||||
Left = 16
|
||||
Height = 19
|
||||
Top = 196
|
||||
Width = 298
|
||||
Height = 17
|
||||
Top = 198
|
||||
Width = 292
|
||||
Anchors = [akLeft, akBottom]
|
||||
Caption = 'Generate easy access interface for wrapped parameters'
|
||||
TabOrder = 3
|
||||
end
|
||||
object edtDocAsComments: TCheckBox
|
||||
Left = 16
|
||||
Height = 19
|
||||
Height = 17
|
||||
Top = 224
|
||||
Width = 210
|
||||
Width = 204
|
||||
Anchors = [akLeft, akBottom]
|
||||
Caption = 'Generate documentation as comments'
|
||||
TabOrder = 4
|
||||
end
|
||||
@ -166,7 +169,6 @@ object frmSaveOptions: TfrmSaveOptions
|
||||
top = 128
|
||||
object actOK: TAction
|
||||
Caption = 'OK'
|
||||
DisableIfNoHandler = True
|
||||
OnExecute = actOKExecute
|
||||
OnUpdate = actOKUpdate
|
||||
end
|
||||
|
@ -1,51 +1,52 @@
|
||||
{ Ceci est un fichier ressource généré automatiquement par Lazarus }
|
||||
{ This is an automatically generated lazarus resource file }
|
||||
|
||||
LazarusResources.Add('TfrmSaveOptions','FORMDATA',[
|
||||
'TPF0'#15'TfrmSaveOptions'#14'frmSaveOptions'#4'Left'#3#203#1#6'Height'#3'R'#1
|
||||
+#3'Top'#3#17#1#5'Width'#3#146#1#13'ActiveControl'#7#12'edtInterface'#11'Bord'
|
||||
+'erStyle'#7#13'bsSizeToolWin'#7'Caption'#6#23'Export file options ...'#12'Cl'
|
||||
+'ientHeight'#3'R'#1#11'ClientWidth'#3#146#1#10'ParentFont'#8#8'Position'#7#16
|
||||
+'poMainFormCenter'#10'LCLVersion'#6#8'0.9.26.1'#0#6'TPanel'#6'Panel1'#6'Heig'
|
||||
+'ht'#2'2'#3'Top'#3' '#1#5'Width'#3#146#1#5'Align'#7#8'alBottom'#12'ClientHei'
|
||||
+'ght'#2'2'#11'ClientWidth'#3#146#1#8'TabOrder'#2#1#0#7'TButton'#7'Button1'#4
|
||||
+'Left'#3'8'#1#6'Height'#2#25#3'Top'#2#14#5'Width'#2'K'#7'Anchors'#11#5'akTop'
|
||||
+#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'C'
|
||||
+'ancel'#11'ModalResult'#2#2#8'TabOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left'
|
||||
+#3#224#0#6'Height'#2#25#3'Top'#2#14#5'Width'#2'K'#6'Action'#7#5'actOK'#7'Anc'
|
||||
+'hors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Default'
|
||||
+#9#8'TabOrder'#2#1#0#0#0#6'TPanel'#6'Panel2'#6'Height'#3' '#1#5'Width'#3#146
|
||||
+#1#5'Align'#7#8'alClient'#12'ClientHeight'#3' '#1#11'ClientWidth'#3#146#1#8
|
||||
+'TabOrder'#2#0#0#6'TLabel'#6'Label1'#4'Left'#2#16#6'Height'#2#14#3'Top'#2#16
|
||||
+#5'Width'#2'Q'#7'Caption'#6#16'Output directory'#11'ParentColor'#8#0#0#9'TGr'
|
||||
+'oupBox'#9'GroupBox1'#4'Left'#2#16#6'Height'#2'h'#3'Top'#2'P'#5'Width'#3'q'#1
|
||||
+#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#7'Caption'#6#13' '
|
||||
+' File type '#12'ClientHeight'#2'V'#11'ClientWidth'#3'm'#1#8'TabOrder'#2#2#0
|
||||
+#9'TCheckBox'#12'edtInterface'#4'Left'#2#14#6'Height'#2#19#3'Top'#2#16#5'Wid'
|
||||
+'th'#2'G'#7'Caption'#6#9'Interface'#8'TabOrder'#2#0#0#0#9'TCheckBox'#8'edtPr'
|
||||
+'oxy'#4'Left'#2#14#6'Height'#2#19#3'Top'#2'3'#5'Width'#2'6'#7'Anchors'#11#6
|
||||
+'akLeft'#8'akBottom'#0#7'Caption'#6#5'Proxy'#8'TabOrder'#2#2#0#0#9'TCheckBox'
|
||||
+#17'edtImplementation'#4'Left'#3#224#0#6'Height'#2#19#3'Top'#2#14#5'Width'#2
|
||||
+'d'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#14'Implementation'#8'Ta'
|
||||
+'bOrder'#2#1#0#0#9'TCheckBox'#9'edtBinder'#4'Left'#3#227#0#6'Height'#2#19#3
|
||||
+'Top'#2'3'#5'Width'#2'8'#7'Anchors'#11#7'akRight'#8'akBottom'#0#7'Caption'#6
|
||||
+#6'Binder'#8'TabOrder'#2#3#0#0#0#5'TEdit'#12'edtOutputDir'#4'Left'#2#16#6'He'
|
||||
+'ight'#2#23#3'Top'#2'&'#5'Width'#3'P'#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'a'
|
||||
+'kRight'#0#8'TabOrder'#2#0#0#0#7'TButton'#12'btnSelectDir'#4'Left'#3'j'#1#6
|
||||
+'Height'#2#25#3'Top'#2'$'#5'Width'#2#25#7'Anchors'#11#5'akTop'#7'akRight'#0
|
||||
+#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#3'...'#7'OnClick'#7#17'btnSe'
|
||||
+'lectDirClick'#8'TabOrder'#2#1#0#0#7'TButton'#12'btnSelectAll'#4'Left'#2#16#6
|
||||
+'Height'#2#25#3'Top'#3#249#0#5'Width'#2'd'#7'Anchors'#11#6'akLeft'#8'akBotto'
|
||||
+'m'#0#7'Caption'#6#10'Select All'#7'OnClick'#7#17'btnSelectAllClick'#8'TabOr'
|
||||
+'der'#2#5#0#0#7'TButton'#14'btnUnselectAll'#4'Left'#3#0#1#6'Height'#2#25#3'T'
|
||||
+'op'#3#249#0#5'Width'#2'd'#7'Anchors'#11#7'akRight'#8'akBottom'#0#7'Caption'
|
||||
+#6#12'Unselect All'#7'OnClick'#7#19'btnUnselectAllClick'#8'TabOrder'#2#6#0#0
|
||||
+#9'TCheckBox'#16'edtWrappedParams'#4'Left'#2#16#6'Height'#2#19#3'Top'#3#196#0
|
||||
+#5'Width'#3'*'#1#7'Anchors'#11#6'akLeft'#8'akBottom'#0#7'Caption'#6'5Generat'
|
||||
+'e easy access interface for wrapped parameters'#8'TabOrder'#2#3#0#0#9'TChec'
|
||||
+'kBox'#16'edtDocAsComments'#4'Left'#2#16#6'Height'#2#19#3'Top'#3#224#0#5'Wid'
|
||||
+'th'#3#210#0#7'Caption'#6'"Generate documentation as comments'#8'TabOrder'#2
|
||||
+#4#0#0#0#11'TActionList'#2'AL'#4'left'#3#144#0#3'top'#3#128#0#0#7'TAction'#5
|
||||
+'actOK'#7'Caption'#6#2'OK'#18'DisableIfNoHandler'#9#9'OnExecute'#7#12'actOKE'
|
||||
+'xecute'#8'OnUpdate'#7#11'actOKUpdate'#0#0#0#22'TSelectDirectoryDialog'#2'SD'
|
||||
+#11'FilterIndex'#2#0#4'left'#2'e'#3'top'#3#142#0#0#0#0
|
||||
+'ientHeight'#3'R'#1#11'ClientWidth'#3#146#1#8'Position'#7#16'poMainFormCente'
|
||||
+'r'#10'LCLVersion'#6#7'1.2.2.0'#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6'Height'#2
|
||||
+'2'#3'Top'#3' '#1#5'Width'#3#146#1#5'Align'#7#8'alBottom'#12'ClientHeight'#2
|
||||
+'2'#11'ClientWidth'#3#146#1#8'TabOrder'#2#1#0#7'TButton'#7'Button1'#4'Left'#3
|
||||
+'8'#1#6'Height'#2#25#3'Top'#2#14#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRi'
|
||||
+'ght'#0#25'BorderSpacing.InnerBorder'#2#4#6'Cancel'#9#7'Caption'#6#6'Cancel'
|
||||
+#11'ModalResult'#2#2#8'TabOrder'#2#0#0#0#7'TButton'#7'Button2'#4'Left'#3#224
|
||||
+#0#6'Height'#2#25#3'Top'#2#14#5'Width'#2'K'#6'Action'#7#5'actOK'#7'Anchors'
|
||||
+#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Default'#9#8'T'
|
||||
+'abOrder'#2#1#0#0#0#6'TPanel'#6'Panel2'#4'Left'#2#0#6'Height'#3' '#1#3'Top'#2
|
||||
+#0#5'Width'#3#146#1#5'Align'#7#8'alClient'#12'ClientHeight'#3' '#1#11'Client'
|
||||
+'Width'#3#146#1#8'TabOrder'#2#0#0#6'TLabel'#6'Label1'#4'Left'#2#16#6'Height'
|
||||
+#2#13#3'Top'#2#16#5'Width'#2'P'#7'Caption'#6#16'Output directory'#11'ParentC'
|
||||
+'olor'#8#0#0#9'TGroupBox'#9'GroupBox1'#4'Left'#2#16#6'Height'#2'h'#3'Top'#2
|
||||
+'P'#5'Width'#3'q'#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0
|
||||
+#7'Caption'#6#13' File type '#12'ClientHeight'#2'V'#11'ClientWidth'#3'm'#1
|
||||
+#8'TabOrder'#2#2#0#9'TCheckBox'#12'edtInterface'#4'Left'#2#14#6'Height'#2#17
|
||||
+#3'Top'#2#16#5'Width'#2'A'#7'Caption'#6#9'Interface'#8'TabOrder'#2#0#0#0#9'T'
|
||||
+'CheckBox'#8'edtProxy'#4'Left'#2#14#6'Height'#2#17#3'Top'#2'5'#5'Width'#2'0'
|
||||
+#7'Anchors'#11#6'akLeft'#8'akBottom'#0#7'Caption'#6#5'Proxy'#8'TabOrder'#2#2
|
||||
+#0#0#9'TCheckBox'#17'edtImplementation'#4'Left'#3#230#0#6'Height'#2#17#3'Top'
|
||||
+#2#14#5'Width'#2'^'#7'Anchors'#11#5'akTop'#7'akRight'#0#7'Caption'#6#14'Impl'
|
||||
+'ementation'#8'TabOrder'#2#1#0#0#9'TCheckBox'#9'edtBinder'#4'Left'#3#230#0#6
|
||||
+'Height'#2#17#3'Top'#2'5'#5'Width'#2'2'#7'Anchors'#11#7'akRight'#8'akBottom'
|
||||
+#0#7'Caption'#6#6'Binder'#8'TabOrder'#2#3#0#0#0#5'TEdit'#12'edtOutputDir'#4
|
||||
+'Left'#2#16#6'Height'#2#21#3'Top'#2'&'#5'Width'#3'P'#1#7'Anchors'#11#5'akTop'
|
||||
+#6'akLeft'#7'akRight'#0#8'TabOrder'#2#0#0#0#7'TButton'#12'btnSelectDir'#4'Le'
|
||||
+'ft'#3'j'#1#6'Height'#2#25#3'Top'#2'$'#5'Width'#2#25#7'Anchors'#11#5'akTop'#7
|
||||
+'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Caption'#6#3'...'#7'OnClick'
|
||||
+#7#17'btnSelectDirClick'#8'TabOrder'#2#1#0#0#7'TButton'#12'btnSelectAll'#4'L'
|
||||
+'eft'#2#16#6'Height'#2#25#3'Top'#3#249#0#5'Width'#2'd'#7'Anchors'#11#6'akLef'
|
||||
+'t'#8'akBottom'#0#7'Caption'#6#10'Select All'#7'OnClick'#7#17'btnSelectAllCl'
|
||||
+'ick'#8'TabOrder'#2#5#0#0#7'TButton'#14'btnUnselectAll'#4'Left'#3#0#1#6'Heig'
|
||||
+'ht'#2#25#3'Top'#3#249#0#5'Width'#2'd'#7'Anchors'#11#7'akRight'#8'akBottom'#0
|
||||
+#7'Caption'#6#12'Unselect All'#7'OnClick'#7#19'btnUnselectAllClick'#8'TabOrd'
|
||||
+'er'#2#6#0#0#9'TCheckBox'#16'edtWrappedParams'#4'Left'#2#16#6'Height'#2#17#3
|
||||
+'Top'#3#198#0#5'Width'#3'$'#1#7'Anchors'#11#6'akLeft'#8'akBottom'#0#7'Captio'
|
||||
+'n'#6'5Generate easy access interface for wrapped parameters'#8'TabOrder'#2#3
|
||||
+#0#0#9'TCheckBox'#16'edtDocAsComments'#4'Left'#2#16#6'Height'#2#17#3'Top'#3
|
||||
+#224#0#5'Width'#3#204#0#7'Anchors'#11#6'akLeft'#8'akBottom'#0#7'Caption'#6'"'
|
||||
+'Generate documentation as comments'#8'TabOrder'#2#4#0#0#0#11'TActionList'#2
|
||||
+'AL'#4'left'#3#144#0#3'top'#3#128#0#0#7'TAction'#5'actOK'#7'Caption'#6#2'OK'
|
||||
+#9'OnExecute'#7#12'actOKExecute'#8'OnUpdate'#7#11'actOKUpdate'#0#0#0#22'TSel'
|
||||
+'ectDirectoryDialog'#2'SD'#11'FilterIndex'#2#0#4'left'#2'e'#3'top'#3#142#0#0
|
||||
+#0#0
|
||||
]);
|
||||
|
@ -1,7 +1,7 @@
|
||||
object fInterfaceEdit: TfInterfaceEdit
|
||||
Left = 363
|
||||
Left = 283
|
||||
Height = 564
|
||||
Top = 236
|
||||
Top = 133
|
||||
Width = 531
|
||||
HorzScrollBar.Page = 530
|
||||
VertScrollBar.Page = 563
|
||||
@ -102,6 +102,7 @@ object fInterfaceEdit: TfInterfaceEdit
|
||||
Top = 450
|
||||
Width = 99
|
||||
Action = actNewMethod
|
||||
Anchors = [akLeft, akBottom]
|
||||
BorderSpacing.InnerBorder = 4
|
||||
TabOrder = 2
|
||||
end
|
||||
@ -111,6 +112,7 @@ object fInterfaceEdit: TfInterfaceEdit
|
||||
Top = 450
|
||||
Width = 107
|
||||
Action = actUpdateOperation
|
||||
Anchors = [akLeft, akBottom]
|
||||
BorderSpacing.InnerBorder = 4
|
||||
TabOrder = 3
|
||||
end
|
||||
@ -120,6 +122,7 @@ object fInterfaceEdit: TfInterfaceEdit
|
||||
Top = 450
|
||||
Width = 104
|
||||
Action = actDeleteOperation
|
||||
Anchors = [akLeft, akBottom]
|
||||
BorderSpacing.InnerBorder = 4
|
||||
TabOrder = 4
|
||||
end
|
||||
@ -129,7 +132,7 @@ object fInterfaceEdit: TfInterfaceEdit
|
||||
Top = 450
|
||||
Width = 107
|
||||
Action = actBindingEdit
|
||||
Anchors = [akTop, akRight]
|
||||
Anchors = [akRight, akBottom]
|
||||
BorderSpacing.InnerBorder = 4
|
||||
TabOrder = 5
|
||||
end
|
||||
|
@ -1,8 +1,8 @@
|
||||
{ This is an automatically generated lazarus resource file }
|
||||
|
||||
LazarusResources.Add('TfInterfaceEdit','FORMDATA',[
|
||||
'TPF0'#15'TfInterfaceEdit'#14'fInterfaceEdit'#4'Left'#3'k'#1#6'Height'#3'4'#2
|
||||
+#3'Top'#3#236#0#5'Width'#3#19#2#18'HorzScrollBar.Page'#3#18#2#18'VertScrollB'
|
||||
'TPF0'#15'TfInterfaceEdit'#14'fInterfaceEdit'#4'Left'#3#27#1#6'Height'#3'4'#2
|
||||
+#3'Top'#3#133#0#5'Width'#3#19#2#18'HorzScrollBar.Page'#3#18#2#18'VertScrollB'
|
||||
+'ar.Page'#3'3'#2#13'ActiveControl'#7#7'Button1'#11'BorderStyle'#7#13'bsSizeT'
|
||||
+'oolWin'#7'Caption'#6#14'fInterfaceEdit'#12'ClientHeight'#3'4'#2#11'ClientWi'
|
||||
+'dth'#3#19#2#8'OnCreate'#7#10'FormCreate'#8'Position'#7#15'poDesktopCenter'
|
||||
@ -28,29 +28,31 @@ LazarusResources.Add('TfInterfaceEdit','FORMDATA',[
|
||||
+'ght'#3'^'#1#3'Top'#2#0#5'Width'#3#224#1#5'Align'#7#8'alClient'#17'DefaultIt'
|
||||
+'emHeight'#2#16#9'PopupMenu'#7#10'PopupMenu1'#8'TabOrder'#2#0#0#0#0#7'TButto'
|
||||
+'n'#7'Button3'#4'Left'#2#20#6'Height'#2#25#3'Top'#3#194#1#5'Width'#2'c'#6'Ac'
|
||||
+'tion'#7#12'actNewMethod'#25'BorderSpacing.InnerBorder'#2#4#8'TabOrder'#2#2#0
|
||||
+#0#7'TButton'#7'Button4'#4'Left'#3#132#0#6'Height'#2#25#3'Top'#3#194#1#5'Wid'
|
||||
+'th'#2'k'#6'Action'#7#18'actUpdateOperation'#25'BorderSpacing.InnerBorder'#2
|
||||
+#4#8'TabOrder'#2#3#0#0#7'TButton'#7'Button5'#4'Left'#3#252#0#6'Height'#2#25#3
|
||||
+'Top'#3#194#1#5'Width'#2'h'#6'Action'#7#18'actDeleteOperation'#25'BorderSpac'
|
||||
+'ing.InnerBorder'#2#4#8'TabOrder'#2#4#0#0#7'TButton'#7'Button6'#4'Left'#3#140
|
||||
+#1#6'Height'#2#25#3'Top'#3#194#1#5'Width'#2'k'#6'Action'#7#14'actBindingEdit'
|
||||
+#7'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#8'Tab'
|
||||
+'Order'#2#5#0#0#0#0#11'TActionList'#2'AL'#4'left'#3#130#0#3'top'#3#200#0#0#7
|
||||
+'TAction'#5'actOK'#7'Caption'#6#2'OK'#9'OnExecute'#7#12'actOKExecute'#8'OnUp'
|
||||
+'date'#7#11'actOKUpdate'#0#0#7'TAction'#12'actNewMethod'#7'Caption'#6#13'New'
|
||||
+' operation'#9'OnExecute'#7#19'actNewMethodExecute'#0#0#7'TAction'#18'actUpd'
|
||||
+'ateOperation'#7'Caption'#6#14'Edit Operation'#9'OnExecute'#7#25'actUpdateOp'
|
||||
+'erationExecute'#8'OnUpdate'#7#24'actUpdateOperationUpdate'#0#0#7'TAction'#18
|
||||
+'actDeleteOperation'#7'Caption'#6#16'Delete Operation'#9'OnExecute'#7#25'act'
|
||||
+'DeleteOperationExecute'#8'OnUpdate'#7#24'actUpdateOperationUpdate'#0#0#7'TA'
|
||||
+'ction'#14'actBindingEdit'#7'Caption'#6#12'Edit Binding'#9'OnExecute'#7#21'a'
|
||||
+'ctBindingEditExecute'#8'OnUpdate'#7#20'actBindingEditUpdate'#0#0#0#10'TPopu'
|
||||
+'pMenu'#10'PopupMenu1'#4'left'#2'T'#3'top'#3#233#0#0#9'TMenuItem'#9'MenuItem'
|
||||
+'1'#6'Action'#7#12'actNewMethod'#7'OnClick'#7#19'actNewMethodExecute'#0#0#9
|
||||
+'TMenuItem'#9'MenuItem2'#6'Action'#7#18'actUpdateOperation'#7'OnClick'#7#25
|
||||
+'actUpdateOperationExecute'#0#0#9'TMenuItem'#9'MenuItem3'#6'Action'#7#18'act'
|
||||
+'DeleteOperation'#7'OnClick'#7#25'actDeleteOperationExecute'#0#0#9'TMenuItem'
|
||||
+#9'MenuItem4'#7'Caption'#6#1'-'#0#0#9'TMenuItem'#9'MenuItem5'#6'Action'#7#14
|
||||
+'actBindingEdit'#7'OnClick'#7#21'actBindingEditExecute'#0#0#0#0
|
||||
+'tion'#7#12'actNewMethod'#7'Anchors'#11#6'akLeft'#8'akBottom'#0#25'BorderSpa'
|
||||
+'cing.InnerBorder'#2#4#8'TabOrder'#2#2#0#0#7'TButton'#7'Button4'#4'Left'#3
|
||||
+#132#0#6'Height'#2#25#3'Top'#3#194#1#5'Width'#2'k'#6'Action'#7#18'actUpdateO'
|
||||
+'peration'#7'Anchors'#11#6'akLeft'#8'akBottom'#0#25'BorderSpacing.InnerBorde'
|
||||
+'r'#2#4#8'TabOrder'#2#3#0#0#7'TButton'#7'Button5'#4'Left'#3#252#0#6'Height'#2
|
||||
+#25#3'Top'#3#194#1#5'Width'#2'h'#6'Action'#7#18'actDeleteOperation'#7'Anchor'
|
||||
+'s'#11#6'akLeft'#8'akBottom'#0#25'BorderSpacing.InnerBorder'#2#4#8'TabOrder'
|
||||
+#2#4#0#0#7'TButton'#7'Button6'#4'Left'#3#140#1#6'Height'#2#25#3'Top'#3#194#1
|
||||
+#5'Width'#2'k'#6'Action'#7#14'actBindingEdit'#7'Anchors'#11#7'akRight'#8'akB'
|
||||
+'ottom'#0#25'BorderSpacing.InnerBorder'#2#4#8'TabOrder'#2#5#0#0#0#0#11'TActi'
|
||||
+'onList'#2'AL'#4'left'#3#130#0#3'top'#3#200#0#0#7'TAction'#5'actOK'#7'Captio'
|
||||
+'n'#6#2'OK'#9'OnExecute'#7#12'actOKExecute'#8'OnUpdate'#7#11'actOKUpdate'#0#0
|
||||
+#7'TAction'#12'actNewMethod'#7'Caption'#6#13'New operation'#9'OnExecute'#7#19
|
||||
+'actNewMethodExecute'#0#0#7'TAction'#18'actUpdateOperation'#7'Caption'#6#14
|
||||
+'Edit Operation'#9'OnExecute'#7#25'actUpdateOperationExecute'#8'OnUpdate'#7
|
||||
+#24'actUpdateOperationUpdate'#0#0#7'TAction'#18'actDeleteOperation'#7'Captio'
|
||||
+'n'#6#16'Delete Operation'#9'OnExecute'#7#25'actDeleteOperationExecute'#8'On'
|
||||
+'Update'#7#24'actUpdateOperationUpdate'#0#0#7'TAction'#14'actBindingEdit'#7
|
||||
+'Caption'#6#12'Edit Binding'#9'OnExecute'#7#21'actBindingEditExecute'#8'OnUp'
|
||||
+'date'#7#20'actBindingEditUpdate'#0#0#0#10'TPopupMenu'#10'PopupMenu1'#4'left'
|
||||
+#2'T'#3'top'#3#233#0#0#9'TMenuItem'#9'MenuItem1'#6'Action'#7#12'actNewMethod'
|
||||
+#7'OnClick'#7#19'actNewMethodExecute'#0#0#9'TMenuItem'#9'MenuItem2'#6'Action'
|
||||
+#7#18'actUpdateOperation'#7'OnClick'#7#25'actUpdateOperationExecute'#0#0#9'T'
|
||||
+'MenuItem'#9'MenuItem3'#6'Action'#7#18'actDeleteOperation'#7'OnClick'#7#25'a'
|
||||
+'ctDeleteOperationExecute'#0#0#9'TMenuItem'#9'MenuItem4'#7'Caption'#6#1'-'#0
|
||||
+#0#9'TMenuItem'#9'MenuItem5'#6'Action'#7#14'actBindingEdit'#7'OnClick'#7#21
|
||||
+'actBindingEditExecute'#0#0#0#0
|
||||
]);
|
||||
|
Loading…
Reference in New Issue
Block a user