mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-07 12:49:29 +01:00
git-svn-id: trunk@7509 -
This commit is contained in:
parent
76838c6238
commit
e09bf2f62f
@ -1,33 +1,35 @@
|
|||||||
object BuildFileDialog: TBuildFileDialog
|
object BuildFileDialog: TBuildFileDialog
|
||||||
|
ActiveControl = RunPage
|
||||||
Caption = 'BuildFileDialog'
|
Caption = 'BuildFileDialog'
|
||||||
ClientHeight = 344
|
ClientHeight = 344
|
||||||
ClientWidth = 414
|
ClientWidth = 414
|
||||||
KeyPreview = True
|
KeyPreview = True
|
||||||
OnCreate = BuildFileDialogCREATE
|
OnCreate = BuildFileDialogCREATE
|
||||||
OnKeyDown = BuildFileDialogKEYDOWN
|
OnKeyDown = BuildFileDialogKEYDOWN
|
||||||
Position = POSCREENCENTER
|
PixelsPerInch = 96
|
||||||
HorzScrollBar.Page = 415
|
Position = poScreenCenter
|
||||||
VertScrollBar.Page = 345
|
HorzScrollBar.Page = 413
|
||||||
|
VertScrollBar.Page = 343
|
||||||
Left = 336
|
Left = 336
|
||||||
Height = 344
|
Height = 344
|
||||||
Top = 221
|
Top = 221
|
||||||
Width = 414
|
Width = 414
|
||||||
object OkButton: TButton
|
object OkButton: TButton
|
||||||
Anchors = [AKLEFT, AKBOTTOM]
|
Anchors = [akLeft, akBottom]
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
Caption = 'Ok'
|
Caption = 'Ok'
|
||||||
TabStop = True
|
|
||||||
TabOrder = 0
|
|
||||||
OnClick = OkButtonCLICK
|
OnClick = OkButtonCLICK
|
||||||
|
TabOrder = 0
|
||||||
Left = 106
|
Left = 106
|
||||||
Height = 25
|
Height = 25
|
||||||
Top = 310
|
Top = 310
|
||||||
Width = 75
|
Width = 75
|
||||||
end
|
end
|
||||||
object CancelButton: TButton
|
object CancelButton: TButton
|
||||||
Anchors = [AKLEFT, AKBOTTOM]
|
Anchors = [akLeft, akBottom]
|
||||||
ModalResult = 2
|
BorderSpacing.OnChange = nil
|
||||||
Caption = 'Cancel'
|
Caption = 'Cancel'
|
||||||
TabStop = True
|
ModalResult = 2
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
Left = 234
|
Left = 234
|
||||||
Height = 25
|
Height = 25
|
||||||
@ -35,22 +37,23 @@ object BuildFileDialog: TBuildFileDialog
|
|||||||
Width = 75
|
Width = 75
|
||||||
end
|
end
|
||||||
object Notebook1: TNotebook
|
object Notebook1: TNotebook
|
||||||
Align = ALTOP
|
Align = alTop
|
||||||
Anchors = [AKTOP, AKLEFT, AKRIGHT, AKBOTTOM]
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
PageIndex = 2
|
PageIndex = 2
|
||||||
Height = 304
|
Height = 304
|
||||||
Width = 414
|
Width = 414
|
||||||
object GeneralPage: TPage
|
object GeneralPage: TPage
|
||||||
Caption = 'Options'
|
Caption = 'Options'
|
||||||
ClientWidth = 410
|
ClientWidth = 406
|
||||||
ClientHeight = 274
|
ClientHeight = 296
|
||||||
Left = 2
|
Visible = False
|
||||||
Height = 274
|
Height = 296
|
||||||
Top = 28
|
Width = 406
|
||||||
Width = 410
|
|
||||||
object WhenFileIsActiveGroupbox: TGroupBox
|
object WhenFileIsActiveGroupbox: TGroupBox
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
Caption = 'When this file is active in source editor ...'
|
Caption = 'When this file is active in source editor ...'
|
||||||
ClientHeight = 64
|
ClientHeight = 63
|
||||||
ClientWidth = 397
|
ClientWidth = 397
|
||||||
ParentColor = True
|
ParentColor = True
|
||||||
ParentCtl3D = False
|
ParentCtl3D = False
|
||||||
@ -60,24 +63,18 @@ object BuildFileDialog: TBuildFileDialog
|
|||||||
Top = 12
|
Top = 12
|
||||||
Width = 401
|
Width = 401
|
||||||
object OverrideBuildProjectCheckbox: TCheckBox
|
object OverrideBuildProjectCheckbox: TCheckBox
|
||||||
AllowGrayed = True
|
BorderSpacing.OnChange = nil
|
||||||
AutoSize = True
|
|
||||||
Caption = 'On build project execute the Build File command instead'
|
Caption = 'On build project execute the Build File command instead'
|
||||||
DragCursor = 65524
|
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
TabStop = True
|
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 20
|
Height = 20
|
||||||
Top = 9
|
Top = 9
|
||||||
Width = 384
|
Width = 384
|
||||||
end
|
end
|
||||||
object OverrideRunProjectCheckbox: TCheckBox
|
object OverrideRunProjectCheckbox: TCheckBox
|
||||||
AllowGrayed = True
|
BorderSpacing.OnChange = nil
|
||||||
AutoSize = True
|
|
||||||
Caption = 'On run project execute the Run File command instead'
|
Caption = 'On run project execute the Run File command instead'
|
||||||
DragCursor = 65524
|
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
TabStop = True
|
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 20
|
Height = 20
|
||||||
Top = 33
|
Top = 33
|
||||||
@ -87,18 +84,18 @@ object BuildFileDialog: TBuildFileDialog
|
|||||||
end
|
end
|
||||||
object BuildPage: TPage
|
object BuildPage: TPage
|
||||||
Caption = 'Build'
|
Caption = 'Build'
|
||||||
ClientWidth = 410
|
ClientWidth = 406
|
||||||
ClientHeight = 274
|
ClientHeight = 296
|
||||||
OnResize = BuildPageRESIZE
|
OnResize = BuildPageRESIZE
|
||||||
Left = 2
|
Visible = False
|
||||||
Height = 274
|
Height = 296
|
||||||
Top = 28
|
Width = 406
|
||||||
Width = 410
|
|
||||||
object BuildCommandGroupbox: TGroupBox
|
object BuildCommandGroupbox: TGroupBox
|
||||||
Anchors = [AKTOP, AKLEFT, AKRIGHT]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
Caption = 'Build Command'
|
Caption = 'Build Command'
|
||||||
ClientHeight = 53
|
ClientHeight = 70
|
||||||
ClientWidth = 398
|
ClientWidth = 402
|
||||||
ParentColor = True
|
ParentColor = True
|
||||||
ParentCtl3D = False
|
ParentCtl3D = False
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
@ -107,47 +104,41 @@ object BuildFileDialog: TBuildFileDialog
|
|||||||
Top = 52
|
Top = 52
|
||||||
Width = 402
|
Width = 402
|
||||||
object BuildCommandMemo: TMemo
|
object BuildCommandMemo: TMemo
|
||||||
Align = ALCLIENT
|
Align = alClient
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
Lines.Strings = (
|
Lines.Strings = (
|
||||||
'CompileCommandMemo'
|
'CompileCommandMemo'
|
||||||
)
|
)
|
||||||
Tabstop = True
|
|
||||||
TabStop = True
|
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
Height = 53
|
Height = 53
|
||||||
Width = 398
|
Width = 398
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
object BuildScanForFPCMsgCheckbox: TCheckBox
|
object BuildScanForFPCMsgCheckbox: TCheckBox
|
||||||
AllowGrayed = True
|
Anchors = [akTop, akLeft, akRight]
|
||||||
Anchors = [AKTOP, AKLEFT, AKRIGHT]
|
BorderSpacing.OnChange = nil
|
||||||
AutoSize = True
|
|
||||||
Caption = 'Scan for FPC messages'
|
Caption = 'Scan for FPC messages'
|
||||||
DragCursor = 65524
|
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
TabStop = True
|
|
||||||
Left = 10
|
Left = 10
|
||||||
Height = 20
|
Height = 20
|
||||||
Top = 122
|
Top = 122
|
||||||
Width = 388
|
Width = 388
|
||||||
end
|
end
|
||||||
object BuildScanForMakeMsgCheckbox: TCheckBox
|
object BuildScanForMakeMsgCheckbox: TCheckBox
|
||||||
AllowGrayed = True
|
Anchors = [akTop, akLeft, akRight]
|
||||||
Anchors = [AKTOP, AKLEFT, AKRIGHT]
|
BorderSpacing.OnChange = nil
|
||||||
AutoSize = True
|
|
||||||
Caption = 'Scan for Make messages'
|
Caption = 'Scan for Make messages'
|
||||||
DragCursor = 65524
|
|
||||||
TabOrder = 2
|
TabOrder = 2
|
||||||
TabStop = True
|
|
||||||
Left = 10
|
Left = 10
|
||||||
Height = 20
|
Height = 20
|
||||||
Top = 146
|
Top = 146
|
||||||
Width = 388
|
Width = 388
|
||||||
end
|
end
|
||||||
object BuildWorkingDirGroupbox: TGroupBox
|
object BuildWorkingDirGroupbox: TGroupBox
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
Caption = 'Working directory (Leave empty for file path)'
|
Caption = 'Working directory (Leave empty for file path)'
|
||||||
ClientHeight = 31
|
ClientHeight = 48
|
||||||
ClientWidth = 398
|
ClientWidth = 402
|
||||||
ParentColor = True
|
ParentColor = True
|
||||||
ParentCtl3D = False
|
ParentCtl3D = False
|
||||||
TabOrder = 3
|
TabOrder = 3
|
||||||
@ -156,21 +147,21 @@ object BuildFileDialog: TBuildFileDialog
|
|||||||
Top = 4
|
Top = 4
|
||||||
Width = 402
|
Width = 402
|
||||||
object BuildWorkDirCombobox: TComboBox
|
object BuildWorkDirCombobox: TComboBox
|
||||||
Anchors = [AKTOP, AKLEFT, AKRIGHT]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
MaxLength = 0
|
MaxLength = 0
|
||||||
ParentCtl3D = False
|
ParentCtl3D = False
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
TabStop = True
|
|
||||||
Text = 'BuildWorkDirCombobox'
|
Text = 'BuildWorkDirCombobox'
|
||||||
Height = 25
|
Height = 25
|
||||||
Width = 368
|
Width = 368
|
||||||
end
|
end
|
||||||
object BuildBrowseWorkDirButton: TButton
|
object BuildBrowseWorkDirButton: TButton
|
||||||
Anchors = [AKTOP, AKRIGHT]
|
Anchors = [akTop, akRight]
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
Caption = '...'
|
Caption = '...'
|
||||||
TabStop = True
|
|
||||||
TabOrder = 1
|
|
||||||
OnClick = BuildBrowseWorkDirButtonCLICK
|
OnClick = BuildBrowseWorkDirButtonCLICK
|
||||||
|
TabOrder = 1
|
||||||
Left = 368
|
Left = 368
|
||||||
Height = 23
|
Height = 23
|
||||||
Width = 24
|
Width = 24
|
||||||
@ -179,82 +170,78 @@ object BuildFileDialog: TBuildFileDialog
|
|||||||
end
|
end
|
||||||
object RunPage: TPage
|
object RunPage: TPage
|
||||||
Caption = 'Run'
|
Caption = 'Run'
|
||||||
ClientWidth = 410
|
ClientWidth = 406
|
||||||
ClientHeight = 274
|
ClientHeight = 296
|
||||||
OnResize = RunPageRESIZE
|
OnResize = RunPageRESIZE
|
||||||
Left = 2
|
Height = 296
|
||||||
Height = 274
|
Width = 406
|
||||||
Top = 28
|
|
||||||
Width = 410
|
|
||||||
object AlwaysCompileFirstCheckbox: TCheckBox
|
object AlwaysCompileFirstCheckbox: TCheckBox
|
||||||
AllowGrayed = True
|
Anchors = [akTop, akLeft, akRight]
|
||||||
Anchors = [AKTOP, AKLEFT, AKRIGHT]
|
BorderSpacing.OnChange = nil
|
||||||
AutoSize = True
|
|
||||||
Caption = 'Always Build before Run'
|
Caption = 'Always Build before Run'
|
||||||
DragCursor = 65524
|
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
TabStop = True
|
|
||||||
Left = 10
|
Left = 10
|
||||||
Height = 20
|
Height = 20
|
||||||
Top = 4
|
Top = 4
|
||||||
Width = 392
|
Width = 388
|
||||||
end
|
end
|
||||||
object RunCommandGroupbox: TGroupBox
|
object RunCommandGroupbox: TGroupBox
|
||||||
Anchors = [AKTOP, AKLEFT, AKRIGHT]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
Caption = 'Run Command'
|
Caption = 'Run Command'
|
||||||
ClientHeight = 53
|
ClientHeight = 52
|
||||||
ClientWidth = 400
|
ClientWidth = 396
|
||||||
ParentColor = True
|
ParentColor = True
|
||||||
ParentCtl3D = False
|
ParentCtl3D = False
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
Left = 4
|
Left = 4
|
||||||
Height = 70
|
Height = 70
|
||||||
Top = 92
|
Top = 92
|
||||||
Width = 404
|
Width = 400
|
||||||
object RunCommandMemo: TMemo
|
object RunCommandMemo: TMemo
|
||||||
Align = ALCLIENT
|
Align = alClient
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
Lines.Strings = (
|
Lines.Strings = (
|
||||||
'CompileCommandMemo'
|
'CompileCommandMemo'
|
||||||
)
|
)
|
||||||
Tabstop = True
|
|
||||||
TabStop = True
|
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
Height = 53
|
Height = 52
|
||||||
Width = 400
|
Width = 396
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
object RunWorkDirGroupbox: TGroupBox
|
object RunWorkDirGroupbox: TGroupBox
|
||||||
Anchors = [AKTOP, AKLEFT, AKRIGHT]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
Caption = 'Working Directory (Leave empty for file path)'
|
Caption = 'Working Directory (Leave empty for file path)'
|
||||||
ClientHeight = 32
|
ClientHeight = 31
|
||||||
ClientWidth = 400
|
ClientWidth = 396
|
||||||
ParentColor = True
|
ParentColor = True
|
||||||
ParentCtl3D = False
|
ParentCtl3D = False
|
||||||
TabOrder = 2
|
TabOrder = 2
|
||||||
Left = 4
|
Left = 4
|
||||||
Height = 49
|
Height = 49
|
||||||
Top = 36
|
Top = 36
|
||||||
Width = 404
|
Width = 400
|
||||||
object RunWorkDirCombobox: TComboBox
|
object RunWorkDirCombobox: TComboBox
|
||||||
Anchors = [AKTOP, AKLEFT, AKRIGHT]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
MaxLength = 0
|
MaxLength = 0
|
||||||
ParentCtl3D = False
|
ParentCtl3D = False
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
TabStop = True
|
|
||||||
Text = 'RunWorkDirCombobox'
|
Text = 'RunWorkDirCombobox'
|
||||||
Height = 25
|
Height = 21
|
||||||
Width = 364
|
Width = 360
|
||||||
end
|
end
|
||||||
object RunBrowseWorkDirButton: TButton
|
object RunBrowseWorkDirButton: TButton
|
||||||
Anchors = [AKTOP, AKRIGHT]
|
Anchors = [akTop, akRight]
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
Caption = '...'
|
Caption = '...'
|
||||||
TabStop = True
|
|
||||||
TabOrder = 1
|
|
||||||
OnClick = BuildBrowseWorkDirButtonCLICK
|
OnClick = BuildBrowseWorkDirButtonCLICK
|
||||||
Left = 368
|
TabOrder = 1
|
||||||
|
Left = 364
|
||||||
Height = 23
|
Height = 23
|
||||||
Width = 27
|
Width = 27
|
||||||
HelpType = HTKEYWORD
|
HelpType = htKeyword
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@ -1,77 +1,78 @@
|
|||||||
{ This is an automatically generated lazarus resource file }
|
{ This is an automatically generated lazarus resource file }
|
||||||
|
|
||||||
LazarusResources.Add('TBuildFileDialog','FORMDATA',[
|
LazarusResources.Add('TBuildFileDialog','FORMDATA',[
|
||||||
'TPF0'#16'TBuildFileDialog'#15'BuildFileDialog'#7'Caption'#6#15'BuildFileDial'
|
'TPF0'#16'TBuildFileDialog'#15'BuildFileDialog'#13'ActiveControl'#7#7'RunPage'
|
||||||
+'og'#12'ClientHeight'#3'X'#1#11'ClientWidth'#3#158#1#10'KeyPreview'#9#8'OnCr'
|
+#7'Caption'#6#15'BuildFileDialog'#12'ClientHeight'#3'X'#1#11'ClientWidth'#3
|
||||||
+'eate'#7#21'BuildFileDialogCREATE'#9'OnKeyDown'#7#22'BuildFileDialogKEYDOWN'
|
+#158#1#10'KeyPreview'#9#8'OnCreate'#7#21'BuildFileDialogCREATE'#9'OnKeyDown'
|
||||||
+#8'Position'#7#14'POSCREENCENTER'#18'HorzScrollBar.Page'#3#159#1#18'VertScro'
|
+#7#22'BuildFileDialogKEYDOWN'#13'PixelsPerInch'#2'`'#8'Position'#7#14'poScre'
|
||||||
+'llBar.Page'#3'Y'#1#4'Left'#3'P'#1#6'Height'#3'X'#1#3'Top'#3#221#0#5'Width'#3
|
+'enCenter'#18'HorzScrollBar.Page'#3#157#1#18'VertScrollBar.Page'#3'W'#1#4'Le'
|
||||||
+#158#1#0#7'TButton'#8'OkButton'#7'Anchors'#11#6'AKLEFT'#8'AKBOTTOM'#0#7'Capt'
|
+'ft'#3'P'#1#6'Height'#3'X'#1#3'Top'#3#221#0#5'Width'#3#158#1#0#7'TButton'#8
|
||||||
+'ion'#6#2'Ok'#7'TabStop'#9#8'TabOrder'#2#0#7'OnClick'#7#13'OkButtonCLICK'#4
|
+'OkButton'#7'Anchors'#11#6'akLeft'#8'akBottom'#0#22'BorderSpacing.OnChange'
|
||||||
+'Left'#2'j'#6'Height'#2#25#3'Top'#3'6'#1#5'Width'#2'K'#0#0#7'TButton'#12'Can'
|
+#13#7'Caption'#6#2'Ok'#7'OnClick'#7#13'OkButtonCLICK'#8'TabOrder'#2#0#4'Left'
|
||||||
+'celButton'#7'Anchors'#11#6'AKLEFT'#8'AKBOTTOM'#0#11'ModalResult'#2#2#7'Capt'
|
+#2'j'#6'Height'#2#25#3'Top'#3'6'#1#5'Width'#2'K'#0#0#7'TButton'#12'CancelBut'
|
||||||
+'ion'#6#6'Cancel'#7'TabStop'#9#8'TabOrder'#2#1#4'Left'#3#234#0#6'Height'#2#25
|
+'ton'#7'Anchors'#11#6'akLeft'#8'akBottom'#0#22'BorderSpacing.OnChange'#13#7
|
||||||
+#3'Top'#3'6'#1#5'Width'#2'K'#0#0#9'TNotebook'#9'Notebook1'#5'Align'#7#5'ALTO'
|
+'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#1#4'Left'#3#234#0#6
|
||||||
+'P'#7'Anchors'#11#5'AKTOP'#6'AKLEFT'#7'AKRIGHT'#8'AKBOTTOM'#0#9'PageIndex'#2
|
+'Height'#2#25#3'Top'#3'6'#1#5'Width'#2'K'#0#0#9'TNotebook'#9'Notebook1'#5'Al'
|
||||||
+#2#6'Height'#3'0'#1#5'Width'#3#158#1#0#5'TPage'#11'GeneralPage'#7'Caption'#6
|
+'ign'#7#5'alTop'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#22
|
||||||
+#7'Options'#11'ClientWidth'#3#154#1#12'ClientHeight'#3#18#1#4'Left'#2#2#6'He'
|
+'BorderSpacing.OnChange'#13#9'PageIndex'#2#2#6'Height'#3'0'#1#5'Width'#3#158
|
||||||
+'ight'#3#18#1#3'Top'#2#28#5'Width'#3#154#1#0#9'TGroupBox'#24'WhenFileIsActiv'
|
+#1#0#5'TPage'#11'GeneralPage'#7'Caption'#6#7'Options'#11'ClientWidth'#3#150#1
|
||||||
+'eGroupbox'#7'Caption'#6'-When this file is active in source editor ...'#12
|
+#12'ClientHeight'#3'('#1#7'Visible'#8#6'Height'#3'('#1#5'Width'#3#150#1#0#9
|
||||||
+'ClientHeight'#2'@'#11'ClientWidth'#3#141#1#11'ParentColor'#9#11'ParentCtl3D'
|
+'TGroupBox'#24'WhenFileIsActiveGroupbox'#22'BorderSpacing.OnChange'#13#7'Cap'
|
||||||
+#8#8'TabOrder'#2#0#4'Left'#2#6#6'Height'#2'Q'#3'Top'#2#12#5'Width'#3#145#1#0
|
+'tion'#6'-When this file is active in source editor ...'#12'ClientHeight'#2
|
||||||
+#9'TCheckBox'#28'OverrideBuildProjectCheckbox'#11'AllowGrayed'#9#8'AutoSize'
|
+'?'#11'ClientWidth'#3#141#1#11'ParentColor'#9#11'ParentCtl3D'#8#8'TabOrder'#2
|
||||||
+#9#7'Caption'#6'7On build project execute the Build File command instead'#10
|
+#0#4'Left'#2#6#6'Height'#2'Q'#3'Top'#2#12#5'Width'#3#145#1#0#9'TCheckBox'#28
|
||||||
+'DragCursor'#4#244#255#0#0#8'TabOrder'#2#0#7'TabStop'#9#4'Left'#2#6#6'Height'
|
+'OverrideBuildProjectCheckbox'#22'BorderSpacing.OnChange'#13#7'Caption'#6'7O'
|
||||||
+#2#20#3'Top'#2#9#5'Width'#3#128#1#0#0#9'TCheckBox'#26'OverrideRunProjectChec'
|
+'n build project execute the Build File command instead'#8'TabOrder'#2#0#4'L'
|
||||||
+'kbox'#11'AllowGrayed'#9#8'AutoSize'#9#7'Caption'#6'3On run project execute '
|
+'eft'#2#6#6'Height'#2#20#3'Top'#2#9#5'Width'#3#128#1#0#0#9'TCheckBox'#26'Ove'
|
||||||
+'the Run File command instead'#10'DragCursor'#4#244#255#0#0#8'TabOrder'#2#1#7
|
+'rrideRunProjectCheckbox'#22'BorderSpacing.OnChange'#13#7'Caption'#6'3On run'
|
||||||
+'TabStop'#9#4'Left'#2#6#6'Height'#2#20#3'Top'#2'!'#5'Width'#3#128#1#0#0#0#0#5
|
+' project execute the Run File command instead'#8'TabOrder'#2#1#4'Left'#2#6#6
|
||||||
+'TPage'#9'BuildPage'#7'Caption'#6#5'Build'#11'ClientWidth'#3#154#1#12'Client'
|
+'Height'#2#20#3'Top'#2'!'#5'Width'#3#128#1#0#0#0#0#5'TPage'#9'BuildPage'#7'C'
|
||||||
+'Height'#3#18#1#8'OnResize'#7#15'BuildPageRESIZE'#4'Left'#2#2#6'Height'#3#18
|
+'aption'#6#5'Build'#11'ClientWidth'#3#150#1#12'ClientHeight'#3'('#1#8'OnResi'
|
||||||
+#1#3'Top'#2#28#5'Width'#3#154#1#0#9'TGroupBox'#20'BuildCommandGroupbox'#7'An'
|
+'ze'#7#15'BuildPageRESIZE'#7'Visible'#8#6'Height'#3'('#1#5'Width'#3#150#1#0#9
|
||||||
+'chors'#11#5'AKTOP'#6'AKLEFT'#7'AKRIGHT'#0#7'Caption'#6#13'Build Command'#12
|
+'TGroupBox'#20'BuildCommandGroupbox'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRi'
|
||||||
+'ClientHeight'#2'5'#11'ClientWidth'#3#142#1#11'ParentColor'#9#11'ParentCtl3D'
|
+'ght'#0#22'BorderSpacing.OnChange'#13#7'Caption'#6#13'Build Command'#12'Clie'
|
||||||
+#8#8'TabOrder'#2#0#4'Left'#2#4#6'Height'#2'F'#3'Top'#2'4'#5'Width'#3#146#1#0
|
+'ntHeight'#2'F'#11'ClientWidth'#3#146#1#11'ParentColor'#9#11'ParentCtl3D'#8#8
|
||||||
+#5'TMemo'#16'BuildCommandMemo'#5'Align'#7#8'ALCLIENT'#13'Lines.Strings'#1#6
|
+'TabOrder'#2#0#4'Left'#2#4#6'Height'#2'F'#3'Top'#2'4'#5'Width'#3#146#1#0#5'T'
|
||||||
+#18'CompileCommandMemo'#0#7'Tabstop'#9#7'TabStop'#9#8'TabOrder'#2#0#6'Height'
|
+'Memo'#16'BuildCommandMemo'#5'Align'#7#8'alClient'#22'BorderSpacing.OnChange'
|
||||||
+#2'5'#5'Width'#3#142#1#0#0#0#9'TCheckBox'#26'BuildScanForFPCMsgCheckbox'#11
|
+#13#13'Lines.Strings'#1#6#18'CompileCommandMemo'#0#8'TabOrder'#2#0#6'Height'
|
||||||
+'AllowGrayed'#9#7'Anchors'#11#5'AKTOP'#6'AKLEFT'#7'AKRIGHT'#0#8'AutoSize'#9#7
|
+#2'5'#5'Width'#3#142#1#0#0#0#9'TCheckBox'#26'BuildScanForFPCMsgCheckbox'#7'A'
|
||||||
+'Caption'#6#21'Scan for FPC messages'#10'DragCursor'#4#244#255#0#0#8'TabOrde'
|
+'nchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#22'BorderSpacing.OnChange'#13#7
|
||||||
+'r'#2#1#7'TabStop'#9#4'Left'#2#10#6'Height'#2#20#3'Top'#2'z'#5'Width'#3#132#1
|
+'Caption'#6#21'Scan for FPC messages'#8'TabOrder'#2#1#4'Left'#2#10#6'Height'
|
||||||
+#0#0#9'TCheckBox'#27'BuildScanForMakeMsgCheckbox'#11'AllowGrayed'#9#7'Anchor'
|
+#2#20#3'Top'#2'z'#5'Width'#3#132#1#0#0#9'TCheckBox'#27'BuildScanForMakeMsgCh'
|
||||||
+'s'#11#5'AKTOP'#6'AKLEFT'#7'AKRIGHT'#0#8'AutoSize'#9#7'Caption'#6#22'Scan fo'
|
+'eckbox'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#22'BorderSpacing.OnCh'
|
||||||
+'r Make messages'#10'DragCursor'#4#244#255#0#0#8'TabOrder'#2#2#7'TabStop'#9#4
|
+'ange'#13#7'Caption'#6#22'Scan for Make messages'#8'TabOrder'#2#2#4'Left'#2
|
||||||
+'Left'#2#10#6'Height'#2#20#3'Top'#3#146#0#5'Width'#3#132#1#0#0#9'TGroupBox'
|
+#10#6'Height'#2#20#3'Top'#3#146#0#5'Width'#3#132#1#0#0#9'TGroupBox'#23'Build'
|
||||||
+#23'BuildWorkingDirGroupbox'#7'Caption'#6'-Working directory (Leave empty fo'
|
+'WorkingDirGroupbox'#22'BorderSpacing.OnChange'#13#7'Caption'#6'-Working dir'
|
||||||
+'r file path)'#12'ClientHeight'#2#31#11'ClientWidth'#3#142#1#11'ParentColor'
|
+'ectory (Leave empty for file path)'#12'ClientHeight'#2'0'#11'ClientWidth'#3
|
||||||
+#9#11'ParentCtl3D'#8#8'TabOrder'#2#3#4'Left'#2#4#6'Height'#2'0'#3'Top'#2#4#5
|
+#146#1#11'ParentColor'#9#11'ParentCtl3D'#8#8'TabOrder'#2#3#4'Left'#2#4#6'Hei'
|
||||||
+'Width'#3#146#1#0#9'TComboBox'#20'BuildWorkDirCombobox'#7'Anchors'#11#5'AKTO'
|
+'ght'#2'0'#3'Top'#2#4#5'Width'#3#146#1#0#9'TComboBox'#20'BuildWorkDirCombobo'
|
||||||
+'P'#6'AKLEFT'#7'AKRIGHT'#0#9'MaxLength'#2#0#11'ParentCtl3D'#8#8'TabOrder'#2#0
|
+'x'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#22'BorderSpacing.OnChange'
|
||||||
+#7'TabStop'#9#4'Text'#6#20'BuildWorkDirCombobox'#6'Height'#2#25#5'Width'#3'p'
|
+#13#9'MaxLength'#2#0#11'ParentCtl3D'#8#8'TabOrder'#2#0#4'Text'#6#20'BuildWor'
|
||||||
+#1#0#0#7'TButton'#24'BuildBrowseWorkDirButton'#7'Anchors'#11#5'AKTOP'#7'AKRI'
|
+'kDirCombobox'#6'Height'#2#25#5'Width'#3'p'#1#0#0#7'TButton'#24'BuildBrowseW'
|
||||||
+'GHT'#0#7'Caption'#6#3'...'#7'TabStop'#9#8'TabOrder'#2#1#7'OnClick'#7#29'Bui'
|
+'orkDirButton'#7'Anchors'#11#5'akTop'#7'akRight'#0#22'BorderSpacing.OnChange'
|
||||||
+'ldBrowseWorkDirButtonCLICK'#4'Left'#3'p'#1#6'Height'#2#23#5'Width'#2#24#0#0
|
+#13#7'Caption'#6#3'...'#7'OnClick'#7#29'BuildBrowseWorkDirButtonCLICK'#8'Tab'
|
||||||
+#0#0#5'TPage'#7'RunPage'#7'Caption'#6#3'Run'#11'ClientWidth'#3#154#1#12'Clie'
|
+'Order'#2#1#4'Left'#3'p'#1#6'Height'#2#23#5'Width'#2#24#0#0#0#0#5'TPage'#7'R'
|
||||||
+'ntHeight'#3#18#1#8'OnResize'#7#13'RunPageRESIZE'#4'Left'#2#2#6'Height'#3#18
|
+'unPage'#7'Caption'#6#3'Run'#11'ClientWidth'#3#150#1#12'ClientHeight'#3'('#1
|
||||||
+#1#3'Top'#2#28#5'Width'#3#154#1#0#9'TCheckBox'#26'AlwaysCompileFirstCheckbox'
|
+#8'OnResize'#7#13'RunPageRESIZE'#6'Height'#3'('#1#5'Width'#3#150#1#0#9'TChec'
|
||||||
+#11'AllowGrayed'#9#7'Anchors'#11#5'AKTOP'#6'AKLEFT'#7'AKRIGHT'#0#8'AutoSize'
|
+'kBox'#26'AlwaysCompileFirstCheckbox'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akR'
|
||||||
+#9#7'Caption'#6#23'Always Build before Run'#10'DragCursor'#4#244#255#0#0#8'T'
|
+'ight'#0#22'BorderSpacing.OnChange'#13#7'Caption'#6#23'Always Build before R'
|
||||||
+'abOrder'#2#0#7'TabStop'#9#4'Left'#2#10#6'Height'#2#20#3'Top'#2#4#5'Width'#3
|
+'un'#8'TabOrder'#2#0#4'Left'#2#10#6'Height'#2#20#3'Top'#2#4#5'Width'#3#132#1
|
||||||
+#136#1#0#0#9'TGroupBox'#18'RunCommandGroupbox'#7'Anchors'#11#5'AKTOP'#6'AKLE'
|
+#0#0#9'TGroupBox'#18'RunCommandGroupbox'#7'Anchors'#11#5'akTop'#6'akLeft'#7
|
||||||
+'FT'#7'AKRIGHT'#0#7'Caption'#6#11'Run Command'#12'ClientHeight'#2'5'#11'Clie'
|
+'akRight'#0#22'BorderSpacing.OnChange'#13#7'Caption'#6#11'Run Command'#12'Cl'
|
||||||
+'ntWidth'#3#144#1#11'ParentColor'#9#11'ParentCtl3D'#8#8'TabOrder'#2#1#4'Left'
|
+'ientHeight'#2'4'#11'ClientWidth'#3#140#1#11'ParentColor'#9#11'ParentCtl3D'#8
|
||||||
+#2#4#6'Height'#2'F'#3'Top'#2'\'#5'Width'#3#148#1#0#5'TMemo'#14'RunCommandMem'
|
+#8'TabOrder'#2#1#4'Left'#2#4#6'Height'#2'F'#3'Top'#2'\'#5'Width'#3#144#1#0#5
|
||||||
+'o'#5'Align'#7#8'ALCLIENT'#13'Lines.Strings'#1#6#18'CompileCommandMemo'#0#7
|
+'TMemo'#14'RunCommandMemo'#5'Align'#7#8'alClient'#22'BorderSpacing.OnChange'
|
||||||
+'Tabstop'#9#7'TabStop'#9#8'TabOrder'#2#0#6'Height'#2'5'#5'Width'#3#144#1#0#0
|
+#13#13'Lines.Strings'#1#6#18'CompileCommandMemo'#0#8'TabOrder'#2#0#6'Height'
|
||||||
+#0#9'TGroupBox'#18'RunWorkDirGroupbox'#7'Anchors'#11#5'AKTOP'#6'AKLEFT'#7'AK'
|
+#2'4'#5'Width'#3#140#1#0#0#0#9'TGroupBox'#18'RunWorkDirGroupbox'#7'Anchors'
|
||||||
+'RIGHT'#0#7'Caption'#6'-Working Directory (Leave empty for file path)'#12'Cl'
|
+#11#5'akTop'#6'akLeft'#7'akRight'#0#22'BorderSpacing.OnChange'#13#7'Caption'
|
||||||
,'ientHeight'#2' '#11'ClientWidth'#3#144#1#11'ParentColor'#9#11'ParentCtl3D'#8
|
,#6'-Working Directory (Leave empty for file path)'#12'ClientHeight'#2#31#11
|
||||||
+#8'TabOrder'#2#2#4'Left'#2#4#6'Height'#2'1'#3'Top'#2'$'#5'Width'#3#148#1#0#9
|
+'ClientWidth'#3#140#1#11'ParentColor'#9#11'ParentCtl3D'#8#8'TabOrder'#2#2#4
|
||||||
+'TComboBox'#18'RunWorkDirCombobox'#7'Anchors'#11#5'AKTOP'#6'AKLEFT'#7'AKRIGH'
|
+'Left'#2#4#6'Height'#2'1'#3'Top'#2'$'#5'Width'#3#144#1#0#9'TComboBox'#18'Run'
|
||||||
+'T'#0#9'MaxLength'#2#0#11'ParentCtl3D'#8#8'TabOrder'#2#0#7'TabStop'#9#4'Text'
|
+'WorkDirCombobox'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#22'BorderSpa'
|
||||||
+#6#18'RunWorkDirCombobox'#6'Height'#2#25#5'Width'#3'l'#1#0#0#7'TButton'#22'R'
|
+'cing.OnChange'#13#9'MaxLength'#2#0#11'ParentCtl3D'#8#8'TabOrder'#2#0#4'Text'
|
||||||
+'unBrowseWorkDirButton'#7'Anchors'#11#5'AKTOP'#7'AKRIGHT'#0#7'Caption'#6#3'.'
|
+#6#18'RunWorkDirCombobox'#6'Height'#2#21#5'Width'#3'h'#1#0#0#7'TButton'#22'R'
|
||||||
+'..'#7'TabStop'#9#8'TabOrder'#2#1#7'OnClick'#7#29'BuildBrowseWorkDirButtonCL'
|
+'unBrowseWorkDirButton'#7'Anchors'#11#5'akTop'#7'akRight'#0#22'BorderSpacing'
|
||||||
+'ICK'#4'Left'#3'p'#1#6'Height'#2#23#5'Width'#2#27#8'HelpType'#7#9'HTKEYWORD'
|
+'.OnChange'#13#7'Caption'#6#3'...'#7'OnClick'#7#29'BuildBrowseWorkDirButtonC'
|
||||||
+#0#0#0#0#0#0
|
+'LICK'#8'TabOrder'#2#1#4'Left'#3'l'#1#6'Height'#2#23#5'Width'#2#27#8'HelpTyp'
|
||||||
|
+'e'#7#9'htKeyword'#0#0#0#0#0#0
|
||||||
]);
|
]);
|
||||||
|
|||||||
@ -3,26 +3,27 @@ object CleanDirectoryDialog: TCleanDirectoryDialog
|
|||||||
ClientHeight = 345
|
ClientHeight = 345
|
||||||
ClientWidth = 502
|
ClientWidth = 502
|
||||||
OnCreate = CleanDirectoryDialogCreate
|
OnCreate = CleanDirectoryDialogCreate
|
||||||
HorzScrollBar.Page = 503
|
PixelsPerInch = 96
|
||||||
VertScrollBar.Page = 346
|
HorzScrollBar.Page = 501
|
||||||
|
VertScrollBar.Page = 344
|
||||||
Left = 316
|
Left = 316
|
||||||
Height = 345
|
Height = 345
|
||||||
Top = 212
|
Top = 212
|
||||||
Width = 502
|
Width = 502
|
||||||
object OkButton: TButton
|
object OkButton: TButton
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
Caption = 'Ok'
|
Caption = 'Ok'
|
||||||
TabStop = True
|
|
||||||
TabOrder = 0
|
|
||||||
OnClick = OkButtonClick
|
OnClick = OkButtonClick
|
||||||
|
TabOrder = 0
|
||||||
Left = 128
|
Left = 128
|
||||||
Height = 25
|
Height = 25
|
||||||
Top = 312
|
Top = 312
|
||||||
Width = 97
|
Width = 97
|
||||||
end
|
end
|
||||||
object CancelButton: TButton
|
object CancelButton: TButton
|
||||||
ModalResult = 2
|
BorderSpacing.OnChange = nil
|
||||||
Caption = 'Cancel'
|
Caption = 'Cancel'
|
||||||
TabStop = True
|
ModalResult = 2
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
Left = 269
|
Left = 269
|
||||||
Height = 25
|
Height = 25
|
||||||
@ -30,9 +31,10 @@ object CleanDirectoryDialog: TCleanDirectoryDialog
|
|||||||
Width = 97
|
Width = 97
|
||||||
end
|
end
|
||||||
object DirGroupbox: TGroupBox
|
object DirGroupbox: TGroupBox
|
||||||
Anchors = [AKTOP, AKLEFT, AKRIGHT]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
Caption = 'Directory'
|
Caption = 'Directory'
|
||||||
ClientHeight = 63
|
ClientHeight = 62
|
||||||
ClientWidth = 482
|
ClientWidth = 482
|
||||||
ParentColor = True
|
ParentColor = True
|
||||||
ParentCtl3D = False
|
ParentCtl3D = False
|
||||||
@ -42,25 +44,22 @@ object CleanDirectoryDialog: TCleanDirectoryDialog
|
|||||||
Top = 8
|
Top = 8
|
||||||
Width = 486
|
Width = 486
|
||||||
object DirCombobox: TComboBox
|
object DirCombobox: TComboBox
|
||||||
Anchors = [AKTOP, AKLEFT, AKRIGHT]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
MaxLength = 0
|
MaxLength = 0
|
||||||
ParentCtl3D = False
|
ParentCtl3D = False
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
TabStop = True
|
|
||||||
Text = 'DirCombobox'
|
Text = 'DirCombobox'
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 25
|
Height = 21
|
||||||
Top = 9
|
Top = 9
|
||||||
Width = 468
|
Width = 468
|
||||||
end
|
end
|
||||||
object SubDirsCheckbox: TCheckBox
|
object SubDirsCheckbox: TCheckBox
|
||||||
AllowGrayed = True
|
Anchors = [akTop, akLeft, akRight]
|
||||||
Anchors = [AKTOP, AKLEFT, AKRIGHT]
|
BorderSpacing.OnChange = nil
|
||||||
AutoSize = True
|
|
||||||
Caption = 'Clean sub directories'
|
Caption = 'Clean sub directories'
|
||||||
DragCursor = 65524
|
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
TabStop = True
|
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 20
|
Height = 20
|
||||||
Top = 39
|
Top = 39
|
||||||
@ -68,9 +67,10 @@ object CleanDirectoryDialog: TCleanDirectoryDialog
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
object RemoveGroupbox: TGroupBox
|
object RemoveGroupbox: TGroupBox
|
||||||
Anchors = [AKTOP, AKLEFT, AKRIGHT]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
Caption = 'Remove files matching filter:'
|
Caption = 'Remove files matching filter:'
|
||||||
ClientHeight = 68
|
ClientHeight = 67
|
||||||
ClientWidth = 482
|
ClientWidth = 482
|
||||||
ParentColor = True
|
ParentColor = True
|
||||||
ParentCtl3D = False
|
ParentCtl3D = False
|
||||||
@ -80,24 +80,21 @@ object CleanDirectoryDialog: TCleanDirectoryDialog
|
|||||||
Top = 96
|
Top = 96
|
||||||
Width = 486
|
Width = 486
|
||||||
object RemoveCombobox: TComboBox
|
object RemoveCombobox: TComboBox
|
||||||
Anchors = [AKTOP, AKLEFT, AKRIGHT]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
MaxLength = 0
|
MaxLength = 0
|
||||||
ParentCtl3D = False
|
ParentCtl3D = False
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
TabStop = True
|
|
||||||
Text = 'RemoveCombobox'
|
Text = 'RemoveCombobox'
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 25
|
Height = 21
|
||||||
Top = 8
|
Top = 8
|
||||||
Width = 468
|
Width = 468
|
||||||
end
|
end
|
||||||
object SimpleSyntaxRemoveCheckbox: TCheckBox
|
object SimpleSyntaxRemoveCheckbox: TCheckBox
|
||||||
AllowGrayed = True
|
BorderSpacing.OnChange = nil
|
||||||
AutoSize = True
|
|
||||||
Caption = 'Simple syntax (e.g. * instead of .*)'
|
Caption = 'Simple syntax (e.g. * instead of .*)'
|
||||||
DragCursor = 65524
|
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
TabStop = True
|
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 20
|
Height = 20
|
||||||
Top = 37
|
Top = 37
|
||||||
@ -105,9 +102,10 @@ object CleanDirectoryDialog: TCleanDirectoryDialog
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
object KeepGroupbox: TGroupBox
|
object KeepGroupbox: TGroupBox
|
||||||
Anchors = [AKTOP, AKLEFT, AKRIGHT]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
Caption = 'Keep files matching filter:'
|
Caption = 'Keep files matching filter:'
|
||||||
ClientHeight = 89
|
ClientHeight = 88
|
||||||
ClientWidth = 482
|
ClientWidth = 482
|
||||||
ParentColor = True
|
ParentColor = True
|
||||||
ParentCtl3D = False
|
ParentCtl3D = False
|
||||||
@ -117,36 +115,30 @@ object CleanDirectoryDialog: TCleanDirectoryDialog
|
|||||||
Top = 190
|
Top = 190
|
||||||
Width = 486
|
Width = 486
|
||||||
object KeepCombobox: TComboBox
|
object KeepCombobox: TComboBox
|
||||||
Anchors = [AKTOP, AKLEFT, AKRIGHT]
|
Anchors = [akTop, akLeft, akRight]
|
||||||
|
BorderSpacing.OnChange = nil
|
||||||
MaxLength = 0
|
MaxLength = 0
|
||||||
ParentCtl3D = False
|
ParentCtl3D = False
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
TabStop = True
|
|
||||||
Text = 'KeepCombobox'
|
Text = 'KeepCombobox'
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 25
|
Height = 21
|
||||||
Top = 8
|
Top = 8
|
||||||
Width = 468
|
Width = 468
|
||||||
end
|
end
|
||||||
object SimpleSyntaxKeepCheckbox: TCheckBox
|
object SimpleSyntaxKeepCheckbox: TCheckBox
|
||||||
AllowGrayed = True
|
BorderSpacing.OnChange = nil
|
||||||
AutoSize = True
|
|
||||||
Caption = 'Simple syntax (e.g. * instead of .*)'
|
Caption = 'Simple syntax (e.g. * instead of .*)'
|
||||||
DragCursor = 65524
|
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
TabStop = True
|
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 20
|
Height = 20
|
||||||
Top = 35
|
Top = 35
|
||||||
Width = 468
|
Width = 468
|
||||||
end
|
end
|
||||||
object KeepTextFilesCheckbox: TCheckBox
|
object KeepTextFilesCheckbox: TCheckBox
|
||||||
AllowGrayed = True
|
BorderSpacing.OnChange = nil
|
||||||
AutoSize = True
|
|
||||||
Caption = 'Keep Text Files'
|
Caption = 'Keep Text Files'
|
||||||
DragCursor = 65524
|
|
||||||
TabOrder = 2
|
TabOrder = 2
|
||||||
TabStop = True
|
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 20
|
Height = 20
|
||||||
Top = 61
|
Top = 61
|
||||||
|
|||||||
@ -3,44 +3,44 @@
|
|||||||
LazarusResources.Add('TCleanDirectoryDialog','FORMDATA',[
|
LazarusResources.Add('TCleanDirectoryDialog','FORMDATA',[
|
||||||
'TPF0'#21'TCleanDirectoryDialog'#20'CleanDirectoryDialog'#7'Caption'#6#15'Cle'
|
'TPF0'#21'TCleanDirectoryDialog'#20'CleanDirectoryDialog'#7'Caption'#6#15'Cle'
|
||||||
+'an Directory'#12'ClientHeight'#3'Y'#1#11'ClientWidth'#3#246#1#8'OnCreate'#7
|
+'an Directory'#12'ClientHeight'#3'Y'#1#11'ClientWidth'#3#246#1#8'OnCreate'#7
|
||||||
+#26'CleanDirectoryDialogCreate'#18'HorzScrollBar.Page'#3#247#1#18'VertScroll'
|
+#26'CleanDirectoryDialogCreate'#13'PixelsPerInch'#2'`'#18'HorzScrollBar.Page'
|
||||||
+'Bar.Page'#3'Z'#1#4'Left'#3'<'#1#6'Height'#3'Y'#1#3'Top'#3#212#0#5'Width'#3
|
+#3#245#1#18'VertScrollBar.Page'#3'X'#1#4'Left'#3'<'#1#6'Height'#3'Y'#1#3'Top'
|
||||||
+#246#1#0#7'TButton'#8'OkButton'#7'Caption'#6#2'Ok'#7'TabStop'#9#8'TabOrder'#2
|
+#3#212#0#5'Width'#3#246#1#0#7'TButton'#8'OkButton'#22'BorderSpacing.OnChange'
|
||||||
+#0#7'OnClick'#7#13'OkButtonClick'#4'Left'#3#128#0#6'Height'#2#25#3'Top'#3'8'
|
+#13#7'Caption'#6#2'Ok'#7'OnClick'#7#13'OkButtonClick'#8'TabOrder'#2#0#4'Left'
|
||||||
+#1#5'Width'#2'a'#0#0#7'TButton'#12'CancelButton'#11'ModalResult'#2#2#7'Capti'
|
+#3#128#0#6'Height'#2#25#3'Top'#3'8'#1#5'Width'#2'a'#0#0#7'TButton'#12'Cancel'
|
||||||
+'on'#6#6'Cancel'#7'TabStop'#9#8'TabOrder'#2#1#4'Left'#3#13#1#6'Height'#2#25#3
|
+'Button'#22'BorderSpacing.OnChange'#13#7'Caption'#6#6'Cancel'#11'ModalResult'
|
||||||
+'Top'#3'8'#1#5'Width'#2'a'#0#0#9'TGroupBox'#11'DirGroupbox'#7'Anchors'#11#5
|
+#2#2#8'TabOrder'#2#1#4'Left'#3#13#1#6'Height'#2#25#3'Top'#3'8'#1#5'Width'#2
|
||||||
+'AKTOP'#6'AKLEFT'#7'AKRIGHT'#0#7'Caption'#6#9'Directory'#12'ClientHeight'#2
|
+'a'#0#0#9'TGroupBox'#11'DirGroupbox'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRi'
|
||||||
+'?'#11'ClientWidth'#3#226#1#11'ParentColor'#9#11'ParentCtl3D'#8#8'TabOrder'#2
|
+'ght'#0#22'BorderSpacing.OnChange'#13#7'Caption'#6#9'Directory'#12'ClientHei'
|
||||||
+#2#4'Left'#2#8#6'Height'#2'P'#3'Top'#2#8#5'Width'#3#230#1#0#9'TComboBox'#11
|
+'ght'#2'>'#11'ClientWidth'#3#226#1#11'ParentColor'#9#11'ParentCtl3D'#8#8'Tab'
|
||||||
+'DirCombobox'#7'Anchors'#11#5'AKTOP'#6'AKLEFT'#7'AKRIGHT'#0#9'MaxLength'#2#0
|
+'Order'#2#2#4'Left'#2#8#6'Height'#2'P'#3'Top'#2#8#5'Width'#3#230#1#0#9'TComb'
|
||||||
+#11'ParentCtl3D'#8#8'TabOrder'#2#0#7'TabStop'#9#4'Text'#6#11'DirCombobox'#4
|
+'oBox'#11'DirCombobox'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#22'Bord'
|
||||||
+'Left'#2#6#6'Height'#2#25#3'Top'#2#9#5'Width'#3#212#1#0#0#9'TCheckBox'#15'Su'
|
+'erSpacing.OnChange'#13#9'MaxLength'#2#0#11'ParentCtl3D'#8#8'TabOrder'#2#0#4
|
||||||
+'bDirsCheckbox'#11'AllowGrayed'#9#7'Anchors'#11#5'AKTOP'#6'AKLEFT'#7'AKRIGHT'
|
+'Text'#6#11'DirCombobox'#4'Left'#2#6#6'Height'#2#21#3'Top'#2#9#5'Width'#3#212
|
||||||
+#0#8'AutoSize'#9#7'Caption'#6#21'Clean sub directories'#10'DragCursor'#4#244
|
+#1#0#0#9'TCheckBox'#15'SubDirsCheckbox'#7'Anchors'#11#5'akTop'#6'akLeft'#7'a'
|
||||||
+#255#0#0#8'TabOrder'#2#1#7'TabStop'#9#4'Left'#2#6#6'Height'#2#20#3'Top'#2''''
|
+'kRight'#0#22'BorderSpacing.OnChange'#13#7'Caption'#6#21'Clean sub directori'
|
||||||
+#5'Width'#3#212#1#0#0#0#9'TGroupBox'#14'RemoveGroupbox'#7'Anchors'#11#5'AKTO'
|
+'es'#8'TabOrder'#2#1#4'Left'#2#6#6'Height'#2#20#3'Top'#2''''#5'Width'#3#212#1
|
||||||
+'P'#6'AKLEFT'#7'AKRIGHT'#0#7'Caption'#6#29'Remove files matching filter:'#12
|
+#0#0#0#9'TGroupBox'#14'RemoveGroupbox'#7'Anchors'#11#5'akTop'#6'akLeft'#7'ak'
|
||||||
+'ClientHeight'#2'D'#11'ClientWidth'#3#226#1#11'ParentColor'#9#11'ParentCtl3D'
|
+'Right'#0#22'BorderSpacing.OnChange'#13#7'Caption'#6#29'Remove files matchin'
|
||||||
+#8#8'TabOrder'#2#3#4'Left'#2#8#6'Height'#2'U'#3'Top'#2'`'#5'Width'#3#230#1#0
|
+'g filter:'#12'ClientHeight'#2'C'#11'ClientWidth'#3#226#1#11'ParentColor'#9
|
||||||
+#9'TComboBox'#14'RemoveCombobox'#7'Anchors'#11#5'AKTOP'#6'AKLEFT'#7'AKRIGHT'
|
+#11'ParentCtl3D'#8#8'TabOrder'#2#3#4'Left'#2#8#6'Height'#2'U'#3'Top'#2'`'#5
|
||||||
+#0#9'MaxLength'#2#0#11'ParentCtl3D'#8#8'TabOrder'#2#0#7'TabStop'#9#4'Text'#6
|
+'Width'#3#230#1#0#9'TComboBox'#14'RemoveCombobox'#7'Anchors'#11#5'akTop'#6'a'
|
||||||
+#14'RemoveCombobox'#4'Left'#2#6#6'Height'#2#25#3'Top'#2#8#5'Width'#3#212#1#0
|
+'kLeft'#7'akRight'#0#22'BorderSpacing.OnChange'#13#9'MaxLength'#2#0#11'Paren'
|
||||||
+#0#9'TCheckBox'#26'SimpleSyntaxRemoveCheckbox'#11'AllowGrayed'#9#8'AutoSize'
|
+'tCtl3D'#8#8'TabOrder'#2#0#4'Text'#6#14'RemoveCombobox'#4'Left'#2#6#6'Height'
|
||||||
+#9#7'Caption'#6'$Simple syntax (e.g. * instead of .*)'#10'DragCursor'#4#244
|
+#2#21#3'Top'#2#8#5'Width'#3#212#1#0#0#9'TCheckBox'#26'SimpleSyntaxRemoveChec'
|
||||||
+#255#0#0#8'TabOrder'#2#1#7'TabStop'#9#4'Left'#2#6#6'Height'#2#20#3'Top'#2'%'
|
+'kbox'#22'BorderSpacing.OnChange'#13#7'Caption'#6'$Simple syntax (e.g. * ins'
|
||||||
+#5'Width'#3#212#1#0#0#0#9'TGroupBox'#12'KeepGroupbox'#7'Anchors'#11#5'AKTOP'
|
+'tead of .*)'#8'TabOrder'#2#1#4'Left'#2#6#6'Height'#2#20#3'Top'#2'%'#5'Width'
|
||||||
+#6'AKLEFT'#7'AKRIGHT'#0#7'Caption'#6#27'Keep files matching filter:'#12'Clie'
|
+#3#212#1#0#0#0#9'TGroupBox'#12'KeepGroupbox'#7'Anchors'#11#5'akTop'#6'akLeft'
|
||||||
+'ntHeight'#2'Y'#11'ClientWidth'#3#226#1#11'ParentColor'#9#11'ParentCtl3D'#8#8
|
+#7'akRight'#0#22'BorderSpacing.OnChange'#13#7'Caption'#6#27'Keep files match'
|
||||||
+'TabOrder'#2#4#4'Left'#2#8#6'Height'#2'j'#3'Top'#3#190#0#5'Width'#3#230#1#0#9
|
+'ing filter:'#12'ClientHeight'#2'X'#11'ClientWidth'#3#226#1#11'ParentColor'#9
|
||||||
+'TComboBox'#12'KeepCombobox'#7'Anchors'#11#5'AKTOP'#6'AKLEFT'#7'AKRIGHT'#0#9
|
+#11'ParentCtl3D'#8#8'TabOrder'#2#4#4'Left'#2#8#6'Height'#2'j'#3'Top'#3#190#0
|
||||||
+'MaxLength'#2#0#11'ParentCtl3D'#8#8'TabOrder'#2#0#7'TabStop'#9#4'Text'#6#12
|
+#5'Width'#3#230#1#0#9'TComboBox'#12'KeepCombobox'#7'Anchors'#11#5'akTop'#6'a'
|
||||||
+'KeepCombobox'#4'Left'#2#6#6'Height'#2#25#3'Top'#2#8#5'Width'#3#212#1#0#0#9
|
+'kLeft'#7'akRight'#0#22'BorderSpacing.OnChange'#13#9'MaxLength'#2#0#11'Paren'
|
||||||
+'TCheckBox'#24'SimpleSyntaxKeepCheckbox'#11'AllowGrayed'#9#8'AutoSize'#9#7'C'
|
+'tCtl3D'#8#8'TabOrder'#2#0#4'Text'#6#12'KeepCombobox'#4'Left'#2#6#6'Height'#2
|
||||||
+'aption'#6'$Simple syntax (e.g. * instead of .*)'#10'DragCursor'#4#244#255#0
|
+#21#3'Top'#2#8#5'Width'#3#212#1#0#0#9'TCheckBox'#24'SimpleSyntaxKeepCheckbox'
|
||||||
+#0#8'TabOrder'#2#1#7'TabStop'#9#4'Left'#2#6#6'Height'#2#20#3'Top'#2'#'#5'Wid'
|
+#22'BorderSpacing.OnChange'#13#7'Caption'#6'$Simple syntax (e.g. * instead o'
|
||||||
+'th'#3#212#1#0#0#9'TCheckBox'#21'KeepTextFilesCheckbox'#11'AllowGrayed'#9#8
|
+'f .*)'#8'TabOrder'#2#1#4'Left'#2#6#6'Height'#2#20#3'Top'#2'#'#5'Width'#3#212
|
||||||
+'AutoSize'#9#7'Caption'#6#15'Keep Text Files'#10'DragCursor'#4#244#255#0#0#8
|
+#1#0#0#9'TCheckBox'#21'KeepTextFilesCheckbox'#22'BorderSpacing.OnChange'#13#7
|
||||||
+'TabOrder'#2#2#7'TabStop'#9#4'Left'#2#6#6'Height'#2#20#3'Top'#2'='#5'Width'#3
|
+'Caption'#6#15'Keep Text Files'#8'TabOrder'#2#2#4'Left'#2#6#6'Height'#2#20#3
|
||||||
+#212#1#0#0#0#0
|
+'Top'#2'='#5'Width'#3#212#1#0#0#0#0
|
||||||
]);
|
]);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user