lazarus/ide/cleandirdlg.lfm
2017-03-24 14:56:19 +00:00

167 lines
4.0 KiB
Plaintext

object CleanDirectoryDialog: TCleanDirectoryDialog
Left = 307
Height = 363
Top = 209
Width = 583
BorderIcons = [biSystemMenu]
Caption = 'Clean Directory'
ClientHeight = 363
ClientWidth = 583
OnCreate = CleanDirectoryDialogCreate
OnDestroy = FormDestroy
Position = poScreenCenter
LCLVersion = '1.7'
object DirGroupbox: TGroupBox
Left = 6
Height = 84
Top = 6
Width = 571
Align = alTop
BorderSpacing.Around = 6
Caption = 'Directory'
ClientHeight = 69
ClientWidth = 567
TabOrder = 0
object DirCombobox: TComboBox
AnchorSideRight.Control = DirBrowseButton
Left = 6
Height = 27
Top = 6
Width = 515
Anchors = [akTop, akLeft, akRight]
AutoCompleteText = [cbactSearchAscending]
BorderSpacing.Around = 6
ItemHeight = 0
TabOrder = 0
Text = 'DirCombobox'
end
object SubDirsCheckbox: TCheckBox
AnchorSideTop.Control = DirCombobox
AnchorSideTop.Side = asrBottom
Left = 6
Height = 24
Top = 39
Width = 555
Align = alBottom
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Around = 6
Caption = 'Clean sub directories'
TabOrder = 2
end
object DirBrowseButton: TButton
AnchorSideLeft.Control = DirCombobox
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = DirCombobox
AnchorSideRight.Control = DirGroupbox
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = DirCombobox
AnchorSideBottom.Side = asrBottom
Left = 527
Height = 27
Top = 6
Width = 35
Anchors = [akTop, akRight, akBottom]
BorderSpacing.Right = 5
Caption = '...'
OnClick = DirBrowseButtonClick
TabOrder = 1
end
end
object RemoveGroupbox: TGroupBox
Left = 6
Height = 84
Top = 96
Width = 571
Align = alTop
BorderSpacing.Around = 6
Caption = 'Remove files matching filter:'
ClientHeight = 69
ClientWidth = 567
TabOrder = 1
object RemoveCombobox: TComboBox
Left = 6
Height = 27
Top = 6
Width = 555
Align = alTop
AutoCompleteText = [cbactSearchAscending]
BorderSpacing.Around = 6
ItemHeight = 0
TabOrder = 0
Text = 'RemoveCombobox'
end
object SimpleSyntaxRemoveCheckbox: TCheckBox
Left = 6
Height = 24
Top = 39
Width = 555
Align = alTop
BorderSpacing.Around = 6
Caption = 'Simple syntax (e.g. * instead of .*)'
TabOrder = 1
end
end
object KeepGroupbox: TGroupBox
Left = 6
Height = 137
Top = 186
Width = 571
Align = alClient
BorderSpacing.Around = 6
Caption = 'Keep files matching filter:'
ClientHeight = 122
ClientWidth = 567
TabOrder = 2
object KeepCombobox: TComboBox
Left = 6
Height = 27
Top = 6
Width = 555
Align = alTop
AutoCompleteText = [cbactSearchAscending]
BorderSpacing.Around = 6
ItemHeight = 0
TabOrder = 0
Text = 'KeepCombobox'
end
object SimpleSyntaxKeepCheckbox: TCheckBox
Left = 6
Height = 24
Top = 39
Width = 555
Align = alTop
BorderSpacing.Around = 6
Caption = 'Simple syntax (e.g. * instead of .*)'
TabOrder = 1
end
object KeepTextFilesCheckbox: TCheckBox
Left = 6
Height = 24
Top = 69
Width = 555
Align = alTop
BorderSpacing.Around = 6
Caption = 'Keep Text Files'
TabOrder = 2
end
end
object ButtonPanel: TButtonPanel
Left = 6
Height = 28
Top = 329
Width = 571
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CloseButton.Enabled = False
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
TabOrder = 3
ShowButtons = [pbOK, pbCancel, pbHelp]
ShowBevel = False
end
end