mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 22:58:14 +02:00
Delete BorderSpacing.Onchange property in lfm
git-svn-id: trunk@14766 -
This commit is contained in:
parent
ca564f7e3e
commit
5a3255f6f9
@ -1,175 +1,159 @@
|
||||
object MaskEditorForm: TMaskEditorForm
|
||||
Left = 458
|
||||
Height = 239
|
||||
Top = 248
|
||||
Width = 507
|
||||
HorzScrollBar.Page = 506
|
||||
VertScrollBar.Page = 238
|
||||
BorderStyle = bsDialog
|
||||
Caption = 'Input Mask Editor'
|
||||
ClientHeight = 239
|
||||
ClientWidth = 507
|
||||
OnCreate = MaskEditorFormCreate
|
||||
PixelsPerInch = 96
|
||||
Position = poScreenCenter
|
||||
HorzScrollBar.Page = 506
|
||||
VertScrollBar.Page = 238
|
||||
Left = 458
|
||||
Height = 239
|
||||
Top = 248
|
||||
Width = 507
|
||||
LCLVersion = '0.9.25'
|
||||
object InputMaskLabel: TLabel
|
||||
BorderSpacing.OnChange = nil
|
||||
Caption = '&Input Mask:'
|
||||
Color = clNone
|
||||
FocusControl = InputMaskEdit
|
||||
Left = 8
|
||||
Height = 13
|
||||
Height = 14
|
||||
Top = 8
|
||||
Width = 64
|
||||
Width = 58
|
||||
Caption = '&Input Mask:'
|
||||
FocusControl = InputMaskEdit
|
||||
ParentColor = False
|
||||
end
|
||||
object SampleMasksLabel: TLabel
|
||||
BorderSpacing.OnChange = nil
|
||||
Caption = '&Sample Masks:'
|
||||
Color = clNone
|
||||
Left = 208
|
||||
Height = 13
|
||||
Height = 14
|
||||
Top = 5
|
||||
Width = 77
|
||||
Width = 71
|
||||
Caption = '&Sample Masks:'
|
||||
ParentColor = False
|
||||
end
|
||||
object CharactersForBlanksLabel: TLabel
|
||||
BorderSpacing.OnChange = nil
|
||||
Caption = 'Character for Blanks:'
|
||||
Color = clNone
|
||||
FocusControl = CharactersForBlanksEdit
|
||||
Left = 8
|
||||
Height = 13
|
||||
Top = 62
|
||||
Width = 102
|
||||
Height = 14
|
||||
Top = 48
|
||||
Width = 103
|
||||
Caption = 'Character for Blanks:'
|
||||
FocusControl = CharactersForBlanksEdit
|
||||
ParentColor = False
|
||||
end
|
||||
object InputMaskEdit: TEdit
|
||||
BorderSpacing.OnChange = nil
|
||||
OnChange = InputMaskEditChange
|
||||
TabOrder = 0
|
||||
Left = 8
|
||||
Height = 23
|
||||
Top = 24
|
||||
Width = 192
|
||||
Width = 189
|
||||
OnChange = InputMaskEditChange
|
||||
TabOrder = 0
|
||||
end
|
||||
object SampleMasksListBox: TListBox
|
||||
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||
BorderSpacing.OnChange = nil
|
||||
OnClick = SampleMasksListBoxClick
|
||||
TabOrder = 1
|
||||
Left = 208
|
||||
Height = 174
|
||||
Top = 24
|
||||
Width = 287
|
||||
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||
OnClick = SampleMasksListBoxClick
|
||||
TabOrder = 1
|
||||
end
|
||||
object OkButton: TButton
|
||||
Anchors = [akRight, akBottom]
|
||||
BorderSpacing.OnChange = nil
|
||||
|
||||
Caption = 'OK'
|
||||
ModalResult = 1
|
||||
TabOrder = 2
|
||||
Left = 263
|
||||
Height = 25
|
||||
Top = 206
|
||||
Width = 75
|
||||
Anchors = [akRight, akBottom]
|
||||
Caption = 'OK'
|
||||
ModalResult = 1
|
||||
TabOrder = 2
|
||||
end
|
||||
object CancelButton: TButton
|
||||
Anchors = [akRight, akBottom]
|
||||
BorderSpacing.OnChange = nil
|
||||
|
||||
Caption = 'Cancel'
|
||||
ModalResult = 2
|
||||
TabOrder = 3
|
||||
Left = 343
|
||||
Height = 25
|
||||
Top = 206
|
||||
Width = 75
|
||||
Anchors = [akRight, akBottom]
|
||||
Caption = 'Cancel'
|
||||
ModalResult = 2
|
||||
TabOrder = 3
|
||||
end
|
||||
object HelpButton: TButton
|
||||
Anchors = [akRight, akBottom]
|
||||
BorderSpacing.OnChange = nil
|
||||
|
||||
Caption = '&Help'
|
||||
TabOrder = 4
|
||||
Left = 423
|
||||
Height = 25
|
||||
Top = 206
|
||||
Width = 75
|
||||
Anchors = [akRight, akBottom]
|
||||
Caption = '&Help'
|
||||
TabOrder = 4
|
||||
end
|
||||
object LoadSampleMasksButton: TButton
|
||||
Anchors = [akLeft, akBottom]
|
||||
BorderSpacing.OnChange = nil
|
||||
|
||||
Caption = '&Masks...'
|
||||
OnClick = LoadSampleMasksButtonClick
|
||||
TabOrder = 5
|
||||
Left = 16
|
||||
Height = 25
|
||||
Top = 206
|
||||
Width = 75
|
||||
Anchors = [akLeft, akBottom]
|
||||
Caption = '&Masks...'
|
||||
OnClick = LoadSampleMasksButtonClick
|
||||
TabOrder = 5
|
||||
end
|
||||
object CharactersForBlanksEdit: TEdit
|
||||
AnchorSideRight.Control = InputMaskEdit
|
||||
AnchorSideRight.Side = asrBottom
|
||||
Left = 8
|
||||
Height = 23
|
||||
Top = 64
|
||||
Width = 189
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
BorderSpacing.OnChange = nil
|
||||
BorderSpacing.Left = 3
|
||||
MaxLength = 1
|
||||
OnChange = CharactersForBlankEditChange
|
||||
TabOrder = 6
|
||||
AnchorSideLeft.Control = CharactersForBlanksLabel
|
||||
AnchorSideRight.Control = InputMaskEdit
|
||||
AnchorSideRight.Side = asrBottom
|
||||
Left = 113
|
||||
Height = 23
|
||||
Top = 56
|
||||
Width = 87
|
||||
end
|
||||
object SaveLiteralCheckBox: TCheckBox
|
||||
BorderSpacing.OnChange = nil
|
||||
Left = 8
|
||||
Height = 19
|
||||
Top = 88
|
||||
Width = 136
|
||||
BorderSpacing.Left = 3
|
||||
Caption = 'Save &Literal Characters'
|
||||
OnClick = SaveLiteralCheckBoxClick
|
||||
TabOrder = 7
|
||||
UseOnChange = True
|
||||
Left = 8
|
||||
Height = 13
|
||||
Top = 88
|
||||
Width = 138
|
||||
end
|
||||
object TestInputPanel: TPanel
|
||||
BorderSpacing.OnChange = nil
|
||||
Left = 8
|
||||
Height = 66
|
||||
Top = 118
|
||||
Width = 192
|
||||
BevelInner = bvRaised
|
||||
BevelOuter = bvLowered
|
||||
ClientHeight = 66
|
||||
ClientWidth = 192
|
||||
FullRepaint = False
|
||||
TabOrder = 8
|
||||
Left = 8
|
||||
Height = 66
|
||||
Top = 118
|
||||
Width = 192
|
||||
object TestInputLabel: TLabel
|
||||
BorderSpacing.OnChange = nil
|
||||
Caption = '&Test Input:'
|
||||
Color = clNone
|
||||
Left = 8
|
||||
Height = 17
|
||||
Top = 6
|
||||
Width = 65
|
||||
Caption = '&Test Input:'
|
||||
ParentColor = False
|
||||
end
|
||||
object TestMaskEdit: TMaskEdit
|
||||
BorderSpacing.OnChange = nil
|
||||
TabOrder = 0
|
||||
Left = 8
|
||||
Height = 23
|
||||
Top = 26
|
||||
Width = 176
|
||||
BorderStyle = bsSingle
|
||||
ParentColor = False
|
||||
TabOrder = 0
|
||||
SpaceChar = '_'
|
||||
end
|
||||
end
|
||||
object OpenDialog1: TOpenDialog
|
||||
Options = [ofNoChangeDir, ofEnableSizing, ofViewDetail]
|
||||
Title = 'Open mask file (*.dem)'
|
||||
DefaultExt = '.dem'
|
||||
Filter = 'Edit Masks (*.dem)|*.dem|All Files (*.*)|*.*'
|
||||
FilterIndex = 0
|
||||
Title = 'Open mask file (*.dem)'
|
||||
Options = [ofNoChangeDir, ofEnableSizing, ofViewDetail]
|
||||
left = 48
|
||||
top = 240
|
||||
end
|
||||
|
@ -1,53 +1,49 @@
|
||||
{ Ceci est un fichier ressource généré automatiquement par Lazarus }
|
||||
|
||||
LazarusResources.Add('TMaskEditorForm','FORMDATA',[
|
||||
'TPF0'#15'TMaskEditorForm'#14'MaskEditorForm'#11'BorderStyle'#7#8'bsDialog'#7
|
||||
+'Caption'#6#17'Input Mask Editor'#12'ClientHeight'#3#239#0#11'ClientWidth'#3
|
||||
+#251#1#8'OnCreate'#7#20'MaskEditorFormCreate'#13'PixelsPerInch'#2'`'#8'Posit'
|
||||
+'ion'#7#14'poScreenCenter'#18'HorzScrollBar.Page'#3#250#1#18'VertScrollBar.P'
|
||||
+'age'#3#238#0#4'Left'#3#202#1#6'Height'#3#239#0#3'Top'#3#248#0#5'Width'#3#251
|
||||
+#1#0#6'TLabel'#14'InputMaskLabel'#22'BorderSpacing.OnChange'#13#7'Caption'#6
|
||||
+#12'&Input Mask:'#5'Color'#7#6'clNone'#12'FocusControl'#7#13'InputMaskEdit'#4
|
||||
+'Left'#2#8#6'Height'#2#13#3'Top'#2#8#5'Width'#2'@'#0#0#6'TLabel'#16'SampleMa'
|
||||
+'sksLabel'#22'BorderSpacing.OnChange'#13#7'Caption'#6#14'&Sample Masks:'#5'C'
|
||||
+'olor'#7#6'clNone'#4'Left'#3#208#0#6'Height'#2#13#3'Top'#2#5#5'Width'#2'M'#0
|
||||
+#0#6'TLabel'#24'CharactersForBlanksLabel'#22'BorderSpacing.OnChange'#13#7'Ca'
|
||||
+'ption'#6#21'Character for Blanks:'#5'Color'#7#6'clNone'#12'FocusControl'#7
|
||||
+#23'CharactersForBlanksEdit'#4'Left'#2#8#6'Height'#2#13#3'Top'#2'>'#5'Width'
|
||||
+#2'f'#0#0#5'TEdit'#13'InputMaskEdit'#22'BorderSpacing.OnChange'#13#8'OnChang'
|
||||
+'e'#7#19'InputMaskEditChange'#8'TabOrder'#2#0#4'Left'#2#8#6'Height'#2#23#3'T'
|
||||
+'op'#2#24#5'Width'#3#192#0#0#0#8'TListBox'#18'SampleMasksListBox'#7'Anchors'
|
||||
+#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#22'BorderSpacing.OnChange'#13
|
||||
+#7'OnClick'#7#23'SampleMasksListBoxClick'#8'TabOrder'#2#1#4'Left'#3#208#0#6
|
||||
+'Height'#3#174#0#3'Top'#2#24#5'Width'#3#31#1#0#0#7'TButton'#8'OkButton'#7'An'
|
||||
+'chors'#11#7'akRight'#8'akBottom'#0#22'BorderSpacing.OnChange'#13#7'Caption'
|
||||
+#6#2'OK'#11'ModalResult'#2#1#8'TabOrder'#2#2#4'Left'#3#7#1#6'Height'#2#25#3
|
||||
+'Top'#3#206#0#5'Width'#2'K'#0#0#7'TButton'#12'CancelButton'#7'Anchors'#11#7
|
||||
+'akRight'#8'akBottom'#0#22'BorderSpacing.OnChange'#13#7'Caption'#6#6'Cancel'
|
||||
+#11'ModalResult'#2#2#8'TabOrder'#2#3#4'Left'#3'W'#1#6'Height'#2#25#3'Top'#3
|
||||
+#206#0#5'Width'#2'K'#0#0#7'TButton'#10'HelpButton'#7'Anchors'#11#7'akRight'#8
|
||||
+'akBottom'#0#22'BorderSpacing.OnChange'#13#7'Caption'#6#5'&Help'#8'TabOrder'
|
||||
+#2#4#4'Left'#3#167#1#6'Height'#2#25#3'Top'#3#206#0#5'Width'#2'K'#0#0#7'TButt'
|
||||
+'on'#21'LoadSampleMasksButton'#7'Anchors'#11#6'akLeft'#8'akBottom'#0#22'Bord'
|
||||
+'erSpacing.OnChange'#13#7'Caption'#6#9'&Masks...'#7'OnClick'#7#26'LoadSample'
|
||||
+'MasksButtonClick'#8'TabOrder'#2#5#4'Left'#2#16#6'Height'#2#25#3'Top'#3#206#0
|
||||
+#5'Width'#2'K'#0#0#5'TEdit'#23'CharactersForBlanksEdit'#7'Anchors'#11#5'akTo'
|
||||
+'p'#6'akLeft'#7'akRight'#0#22'BorderSpacing.OnChange'#13#18'BorderSpacing.Le'
|
||||
+'ft'#2#3#9'MaxLength'#2#1#8'OnChange'#7#28'CharactersForBlankEditChange'#8'T'
|
||||
+'abOrder'#2#6#22'AnchorSideLeft.Control'#7#24'CharactersForBlanksLabel'#23'A'
|
||||
+'nchorSideRight.Control'#7#13'InputMaskEdit'#20'AnchorSideRight.Side'#7#9'as'
|
||||
+'rBottom'#4'Left'#2'q'#6'Height'#2#23#3'Top'#2'8'#5'Width'#2'W'#0#0#9'TCheck'
|
||||
+'Box'#19'SaveLiteralCheckBox'#22'BorderSpacing.OnChange'#13#7'Caption'#6#24
|
||||
+'Save &Literal Characters'#7'OnClick'#7#24'SaveLiteralCheckBoxClick'#8'TabOr'
|
||||
+'der'#2#7#11'UseOnChange'#9#4'Left'#2#8#6'Height'#2#13#3'Top'#2'X'#5'Width'#3
|
||||
+#138#0#0#0#6'TPanel'#14'TestInputPanel'#22'BorderSpacing.OnChange'#13#10'Bev'
|
||||
+'elInner'#7#8'bvRaised'#10'BevelOuter'#7#9'bvLowered'#12'ClientHeight'#2'B'
|
||||
+#11'ClientWidth'#3#192#0#11'FullRepaint'#8#8'TabOrder'#2#8#4'Left'#2#8#6'Hei'
|
||||
+'ght'#2'B'#3'Top'#2'v'#5'Width'#3#192#0#0#6'TLabel'#14'TestInputLabel'#22'Bo'
|
||||
+'rderSpacing.OnChange'#13#7'Caption'#6#12'&Test Input:'#5'Color'#7#6'clNone'
|
||||
+#4'Left'#2#8#6'Height'#2#17#3'Top'#2#6#5'Width'#2'A'#0#0#9'TMaskEdit'#12'Tes'
|
||||
+'tMaskEdit'#22'BorderSpacing.OnChange'#13#8'TabOrder'#2#0#4'Left'#2#8#6'Heig'
|
||||
+'ht'#2#23#3'Top'#2#26#5'Width'#3#176#0#0#0#0#11'TOpenDialog'#11'OpenDialog1'
|
||||
+#7'Options'#11#13'ofNoChangeDir'#14'ofEnableSizing'#12'ofViewDetail'#0#5'Tit'
|
||||
+'le'#6#22'Open mask file (*.dem)'#10'DefaultExt'#6#4'.dem'#6'Filter'#6',Edit'
|
||||
+' Masks (*.dem)|*.dem|All Files (*.*)|*.*'#11'FilterIndex'#2#0#5'Title'#6#22
|
||||
+'Open mask file (*.dem)'#4'left'#2'0'#3'top'#3#240#0#0#0#0
|
||||
'TPF0'#15'TMaskEditorForm'#14'MaskEditorForm'#4'Left'#3#202#1#6'Height'#3#239
|
||||
+#0#3'Top'#3#248#0#5'Width'#3#251#1#18'HorzScrollBar.Page'#3#250#1#18'VertScr'
|
||||
+'ollBar.Page'#3#238#0#11'BorderStyle'#7#8'bsDialog'#7'Caption'#6#17'Input Ma'
|
||||
+'sk Editor'#12'ClientHeight'#3#239#0#11'ClientWidth'#3#251#1#8'OnCreate'#7#20
|
||||
+'MaskEditorFormCreate'#8'Position'#7#14'poScreenCenter'#10'LCLVersion'#6#6'0'
|
||||
+'.9.25'#0#6'TLabel'#14'InputMaskLabel'#4'Left'#2#8#6'Height'#2#14#3'Top'#2#8
|
||||
+#5'Width'#2':'#7'Caption'#6#12'&Input Mask:'#12'FocusControl'#7#13'InputMask'
|
||||
+'Edit'#11'ParentColor'#8#0#0#6'TLabel'#16'SampleMasksLabel'#4'Left'#3#208#0#6
|
||||
+'Height'#2#14#3'Top'#2#5#5'Width'#2'G'#7'Caption'#6#14'&Sample Masks:'#11'Pa'
|
||||
+'rentColor'#8#0#0#6'TLabel'#24'CharactersForBlanksLabel'#4'Left'#2#8#6'Heigh'
|
||||
+'t'#2#14#3'Top'#2'0'#5'Width'#2'g'#7'Caption'#6#21'Character for Blanks:'#12
|
||||
+'FocusControl'#7#23'CharactersForBlanksEdit'#11'ParentColor'#8#0#0#5'TEdit'
|
||||
+#13'InputMaskEdit'#4'Left'#2#8#6'Height'#2#23#3'Top'#2#24#5'Width'#3#189#0#8
|
||||
+'OnChange'#7#19'InputMaskEditChange'#8'TabOrder'#2#0#0#0#8'TListBox'#18'Samp'
|
||||
+'leMasksListBox'#4'Left'#3#208#0#6'Height'#3#174#0#3'Top'#2#24#5'Width'#3#31
|
||||
+#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#7'OnClick'#7#23
|
||||
+'SampleMasksListBoxClick'#8'TabOrder'#2#1#0#0#7'TButton'#8'OkButton'#4'Left'
|
||||
+#3#7#1#6'Height'#2#25#3'Top'#3#206#0#5'Width'#2'K'#7'Anchors'#11#7'akRight'#8
|
||||
+'akBottom'#0#7'Caption'#6#2'OK'#11'ModalResult'#2#1#8'TabOrder'#2#2#0#0#7'TB'
|
||||
+'utton'#12'CancelButton'#4'Left'#3'W'#1#6'Height'#2#25#3'Top'#3#206#0#5'Widt'
|
||||
+'h'#2'K'#7'Anchors'#11#7'akRight'#8'akBottom'#0#7'Caption'#6#6'Cancel'#11'Mo'
|
||||
+'dalResult'#2#2#8'TabOrder'#2#3#0#0#7'TButton'#10'HelpButton'#4'Left'#3#167#1
|
||||
+#6'Height'#2#25#3'Top'#3#206#0#5'Width'#2'K'#7'Anchors'#11#7'akRight'#8'akBo'
|
||||
+'ttom'#0#7'Caption'#6#5'&Help'#8'TabOrder'#2#4#0#0#7'TButton'#21'LoadSampleM'
|
||||
+'asksButton'#4'Left'#2#16#6'Height'#2#25#3'Top'#3#206#0#5'Width'#2'K'#7'Anch'
|
||||
+'ors'#11#6'akLeft'#8'akBottom'#0#7'Caption'#6#9'&Masks...'#7'OnClick'#7#26'L'
|
||||
+'oadSampleMasksButtonClick'#8'TabOrder'#2#5#0#0#5'TEdit'#23'CharactersForBla'
|
||||
+'nksEdit'#23'AnchorSideRight.Control'#7#13'InputMaskEdit'#20'AnchorSideRight'
|
||||
+'.Side'#7#9'asrBottom'#4'Left'#2#8#6'Height'#2#23#3'Top'#2'@'#5'Width'#3#189
|
||||
+#0#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#18'BorderSpacing.Left'#2#3#9
|
||||
+'MaxLength'#2#1#8'OnChange'#7#28'CharactersForBlankEditChange'#8'TabOrder'#2
|
||||
+#6#0#0#9'TCheckBox'#19'SaveLiteralCheckBox'#4'Left'#2#8#6'Height'#2#19#3'Top'
|
||||
+#2'X'#5'Width'#3#136#0#18'BorderSpacing.Left'#2#3#7'Caption'#6#24'Save &Lite'
|
||||
+'ral Characters'#7'OnClick'#7#24'SaveLiteralCheckBoxClick'#8'TabOrder'#2#7#11
|
||||
+'UseOnChange'#9#0#0#6'TPanel'#14'TestInputPanel'#4'Left'#2#8#6'Height'#2'B'#3
|
||||
+'Top'#2'v'#5'Width'#3#192#0#10'BevelInner'#7#8'bvRaised'#10'BevelOuter'#7#9
|
||||
+'bvLowered'#12'ClientHeight'#2'B'#11'ClientWidth'#3#192#0#11'FullRepaint'#8#8
|
||||
+'TabOrder'#2#8#0#6'TLabel'#14'TestInputLabel'#4'Left'#2#8#6'Height'#2#17#3'T'
|
||||
+'op'#2#6#5'Width'#2'A'#7'Caption'#6#12'&Test Input:'#11'ParentColor'#8#0#0#9
|
||||
+'TMaskEdit'#12'TestMaskEdit'#4'Left'#2#8#6'Height'#2#23#3'Top'#2#26#5'Width'
|
||||
+#3#176#0#11'BorderStyle'#7#8'bsSingle'#11'ParentColor'#8#8'TabOrder'#2#0#9'S'
|
||||
+'paceChar'#6#1'_'#0#0#0#11'TOpenDialog'#11'OpenDialog1'#5'Title'#6#22'Open m'
|
||||
+'ask file (*.dem)'#10'DefaultExt'#6#4'.dem'#6'Filter'#6',Edit Masks (*.dem)|'
|
||||
+'*.dem|All Files (*.*)|*.*'#11'FilterIndex'#2#0#7'Options'#11#13'ofNoChangeD'
|
||||
+'ir'#14'ofEnableSizing'#12'ofViewDetail'#0#4'left'#2'0'#3'top'#3#240#0#0#0#0
|
||||
]);
|
||||
|
Loading…
Reference in New Issue
Block a user