/usr/lib/lazarus/0.9.30.4/ide/cleandirdlg.lfm is in lazarus-src-0.9.30.4 0.9.30.4-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | object CleanDirectoryDialog: TCleanDirectoryDialog
Left = 307
Height = 309
Top = 209
Width = 450
AutoSize = True
BorderIcons = [biSystemMenu]
Caption = 'Clean Directory'
ClientHeight = 309
ClientWidth = 450
OnCreate = CleanDirectoryDialogCreate
Position = poScreenCenter
LCLVersion = '0.9.29'
object DirGroupbox: TGroupBox
Left = 6
Height = 74
Top = 6
Width = 438
Align = alTop
AutoSize = True
BorderSpacing.Around = 6
Caption = 'Directory'
ClientHeight = 56
ClientWidth = 434
TabOrder = 0
object DirCombobox: TComboBox
AnchorSideRight.Control = DirBrowseButton
Left = 6
Height = 21
Top = 6
Width = 394
Anchors = [akTop, akLeft, akRight]
AutoCompleteText = [cbactSearchAscending]
BorderSpacing.Around = 6
ItemHeight = 13
TabOrder = 0
Text = 'DirCombobox'
end
object SubDirsCheckbox: TCheckBox
AnchorSideTop.Control = DirCombobox
AnchorSideTop.Side = asrBottom
Left = 6
Height = 17
Top = 33
Width = 422
Align = alBottom
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Around = 6
Caption = 'Clean sub directories'
TabOrder = 1
end
object DirBrowseButton: TButton
AnchorSideLeft.Control = DirCombobox
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = DirCombobox
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = DirGroupbox
AnchorSideRight.Side = asrBottom
Left = 406
Height = 21
Top = 6
Width = 23
Anchors = [akTop, akRight]
BorderSpacing.Right = 5
Caption = '...'
OnClick = DirBrowseButtonClick
TabOrder = 2
end
end
object RemoveGroupbox: TGroupBox
Left = 6
Height = 74
Top = 86
Width = 438
Align = alTop
AutoSize = True
BorderSpacing.Around = 6
Caption = 'Remove files matching filter:'
ClientHeight = 56
ClientWidth = 434
TabOrder = 1
object RemoveCombobox: TComboBox
Left = 6
Height = 21
Top = 6
Width = 422
Align = alTop
AutoCompleteText = [cbactSearchAscending]
BorderSpacing.Around = 6
ItemHeight = 13
TabOrder = 0
Text = 'RemoveCombobox'
end
object SimpleSyntaxRemoveCheckbox: TCheckBox
Left = 6
Height = 17
Top = 33
Width = 422
Align = alTop
BorderSpacing.Around = 6
Caption = 'Simple syntax (e.g. * instead of .*)'
TabOrder = 1
end
end
object KeepGroupbox: TGroupBox
Left = 6
Height = 105
Top = 166
Width = 438
Align = alClient
AutoSize = True
BorderSpacing.Around = 6
Caption = 'Keep files matching filter:'
ClientHeight = 87
ClientWidth = 434
TabOrder = 2
object KeepCombobox: TComboBox
Left = 6
Height = 21
Top = 6
Width = 422
Align = alTop
AutoCompleteText = [cbactSearchAscending]
BorderSpacing.Around = 6
ItemHeight = 13
TabOrder = 0
Text = 'KeepCombobox'
end
object SimpleSyntaxKeepCheckbox: TCheckBox
Left = 6
Height = 17
Top = 33
Width = 422
Align = alTop
BorderSpacing.Around = 6
Caption = 'Simple syntax (e.g. * instead of .*)'
TabOrder = 1
end
object KeepTextFilesCheckbox: TCheckBox
Left = 6
Height = 17
Top = 56
Width = 422
Align = alTop
BorderSpacing.Around = 6
Caption = 'Keep Text Files'
TabOrder = 2
end
end
object ButtonPanel: TButtonPanel
Left = 6
Height = 26
Top = 277
Width = 438
OKButton.Name = 'OKButton'
OKButton.Caption = '&ОК'
HelpButton.Name = 'HelpButton'
HelpButton.Caption = '&Справка'
CloseButton.Name = 'CloseButton'
CloseButton.Caption = '&Закрыть'
CloseButton.Enabled = False
CancelButton.Name = 'CancelButton'
CancelButton.Caption = 'Отмена'
TabOrder = 3
ShowButtons = [pbOK, pbCancel, pbHelp]
ShowBevel = False
end
end
|