This file is indexed.

/usr/lib/lazarus/0.9.30.4/converter/convertsettings.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
object ConvertSettingsForm: TConvertSettingsForm
  Left = 267
  Height = 580
  Top = 113
  Width = 528
  ActiveControl = ProjectPathEdit
  Caption = 'Convert Delphi unit, project or package '
  ClientHeight = 580
  ClientWidth = 528
  Constraints.MinHeight = 400
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  Position = poScreenCenter
  LCLVersion = '0.9.29'
  object ProjectPathEdit: TLabeledEdit
    Left = 112
    Height = 21
    Hint = 'Directory where project''s main file must be'
    Top = 15
    Width = 372
    Anchors = [akTop, akLeft, akRight]
    BorderStyle = bsNone
    Color = clBtnFace
    EditLabel.AnchorSideLeft.Control = ProjectPathEdit
    EditLabel.AnchorSideTop.Control = ProjectPathEdit
    EditLabel.AnchorSideTop.Side = asrCenter
    EditLabel.AnchorSideRight.Control = ProjectPathEdit
    EditLabel.AnchorSideBottom.Control = ProjectPathEdit
    EditLabel.Left = 27
    EditLabel.Height = 16
    EditLabel.Top = 17
    EditLabel.Width = 78
    EditLabel.Caption = 'Project Path:'
    EditLabel.ParentColor = False
    LabelPosition = lpLeft
    LabelSpacing = 7
    ParentShowHint = False
    ReadOnly = True
    ShowHint = True
    TabOrder = 0
  end
  object BackupCheckBox: TCheckBox
    AnchorSideLeft.Control = ProjectPathEdit
    AnchorSideTop.Control = ProjectPathEdit
    AnchorSideTop.Side = asrBottom
    Left = 112
    Height = 21
    Hint = 'Creates a Backup directory under project directory'
    Top = 45
    Width = 208
    BorderSpacing.Top = 9
    Caption = 'Make backup of changed files'
    Checked = True
    ParentShowHint = False
    ShowHint = True
    State = cbChecked
    TabOrder = 1
  end
  object ButtonPanel1: TButtonPanel
    Left = 6
    Height = 39
    Top = 535
    Width = 516
    OKButton.Name = 'OKButton'
    OKButton.Caption = '&OK'
    HelpButton.Name = 'HelpButton'
    HelpButton.Caption = '&Help'
    CloseButton.Name = 'CloseButton'
    CloseButton.Caption = '&Close'
    CloseButton.Enabled = False
    CancelButton.Name = 'CancelButton'
    CancelButton.Caption = 'Cancel'
    TabOrder = 2
    ShowButtons = [pbOK, pbCancel, pbHelp]
  end
  object TargetRadioGroup: TRadioGroup
    Left = 12
    Height = 80
    Hint = 'Converter adds conditional compilation to support different targets'
    Top = 96
    Width = 507
    Anchors = [akTop, akLeft, akRight]
    AutoFill = True
    Caption = 'Target'
    ChildSizing.LeftRightSpacing = 6
    ChildSizing.TopBottomSpacing = 6
    ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
    ChildSizing.EnlargeVertical = crsHomogenousChildResize
    ChildSizing.ShrinkHorizontal = crsScaleChilds
    ChildSizing.ShrinkVertical = crsScaleChilds
    ChildSizing.Layout = cclLeftToRightThenTopToBottom
    ChildSizing.ControlsPerLine = 2
    ClientHeight = 61
    ClientWidth = 503
    Columns = 2
    ItemIndex = 0
    Items.Strings = (
      'Lazarus'
      'Lazarus and Delphi'
      'Lazarus for Windows only'
      'Lazarus and Delphi with same DFM file'
    )
    OnClick = TargetRadioGroupClick
    ParentFont = False
    ParentShowHint = False
    ShowHint = True
    TabOrder = 3
  end
  object KeepFileOpenCheckBox: TCheckBox
    AnchorSideLeft.Control = BackupCheckBox
    AnchorSideTop.Control = BackupCheckBox
    AnchorSideTop.Side = asrBottom
    Left = 112
    Height = 21
    Hint = 'Separate form files allow different properties'
    Top = 69
    Width = 241
    BorderSpacing.Top = 3
    Caption = 'Keep converted files open in editor'
    ParentShowHint = False
    ShowHint = True
    TabOrder = 4
  end
  object UnitReplaceDivider: TDividerBevel
    AnchorSideTop.Control = TargetRadioGroup
    AnchorSideTop.Side = asrBottom
    Left = 0
    Height = 17
    Top = 189
    Width = 523
    Caption = 'Unit Replacements'
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Top = 13
    Font.Style = [fsBold]
    ParentFont = False
  end
  object UnknownPropsDivider: TDividerBevel
    AnchorSideTop.Control = UnitReplaceDivider
    AnchorSideTop.Side = asrBottom
    Left = 0
    Height = 17
    Top = 256
    Width = 523
    Caption = 'Unknown properties'
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Top = 50
    Font.Style = [fsBold]
    ParentFont = False
  end
  object UnitReplaceButton: TBitBtn
    AnchorSideTop.Control = UnitReplaceDivider
    AnchorSideTop.Side = asrBottom
    Left = 12
    Height = 30
    Hint = 'Unit names in uses section of a source unit'
    Top = 213
    Width = 92
    BorderSpacing.Top = 7
    Caption = 'Edit'
    OnClick = UnitReplaceButtonClick
    ParentShowHint = False
    ShowHint = True
    TabOrder = 5
  end
  object TypeReplaceDivider: TDividerBevel
    AnchorSideTop.Control = UnknownPropsDivider
    AnchorSideTop.Side = asrBottom
    Left = 0
    Height = 17
    Top = 323
    Width = 523
    Caption = 'Type Replacements'
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Top = 50
    Font.Style = [fsBold]
    ParentFont = False
  end
  object TypeReplaceButton: TBitBtn
    AnchorSideTop.Control = TypeReplaceDivider
    AnchorSideTop.Side = asrBottom
    Left = 12
    Height = 30
    Hint = 'Unknown types in form file (DFM/LFM)'
    Top = 347
    Width = 92
    BorderSpacing.Top = 7
    Caption = 'Edit'
    OnClick = TypeReplaceButtonClick
    ParentShowHint = False
    ShowHint = True
    TabOrder = 6
  end
  object TypeReplaceInfoLabel: TLabel
    AnchorSideTop.Control = TypeReplaceButton
    AnchorSideTop.Side = asrCenter
    Left = 144
    Height = 16
    Top = 354
    Width = 67
    Caption = 'Interactive'
    ParentColor = False
  end
  object FuncReplaceDivider: TDividerBevel
    AnchorSideTop.Control = TypeReplaceDivider
    AnchorSideTop.Side = asrBottom
    Left = 0
    Height = 17
    Top = 390
    Width = 523
    Caption = 'Function Replacements'
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Top = 50
    Font.Style = [fsBold]
    ParentFont = False
  end
  object CoordOffsDivider: TDividerBevel
    AnchorSideTop.Control = FuncReplaceDivider
    AnchorSideTop.Side = asrBottom
    Left = 0
    Height = 17
    Top = 457
    Width = 523
    Caption = 'Coordinate Offsets'
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Top = 50
    Font.Style = [fsBold]
    ParentFont = False
  end
  object FuncReplaceButton: TBitBtn
    AnchorSideTop.Control = FuncReplaceDivider
    AnchorSideTop.Side = asrBottom
    Left = 12
    Height = 30
    Hint = 'Some Delphi functions can be replaced with a LCL function'
    Top = 414
    Width = 92
    BorderSpacing.Top = 7
    Caption = 'Edit'
    OnClick = FuncReplaceButtonClick
    ParentShowHint = False
    ShowHint = True
    TabOrder = 7
  end
  object CoordOffsButton: TBitBtn
    AnchorSideTop.Control = CoordOffsDivider
    AnchorSideTop.Side = asrBottom
    Left = 12
    Height = 30
    Hint = 'Some Delphi functions can be replaced with a LCL function'
    Top = 481
    Width = 92
    BorderSpacing.Top = 7
    Caption = 'Edit'
    OnClick = CoordOffsButtonClick
    ParentShowHint = False
    ShowHint = True
    TabOrder = 8
  end
  object UnitReplaceRadioGroup: TRadioGroup
    AnchorSideTop.Control = UnitReplaceDivider
    AnchorSideTop.Side = asrBottom
    Left = 144
    Height = 36
    Top = 207
    Width = 340
    AutoFill = True
    BorderSpacing.Top = 1
    ChildSizing.LeftRightSpacing = 6
    ChildSizing.TopBottomSpacing = 6
    ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
    ChildSizing.EnlargeVertical = crsHomogenousChildResize
    ChildSizing.ShrinkHorizontal = crsScaleChilds
    ChildSizing.ShrinkVertical = crsScaleChilds
    ChildSizing.Layout = cclLeftToRightThenTopToBottom
    ChildSizing.ControlsPerLine = 3
    ClientHeight = 17
    ClientWidth = 336
    Columns = 3
    ItemIndex = 0
    Items.Strings = (
      'Disabled'
      'Interactive'
      'Automatic'
    )
    TabOrder = 9
  end
  object UnknownPropsRadioGroup: TRadioGroup
    AnchorSideTop.Control = UnknownPropsDivider
    AnchorSideTop.Side = asrBottom
    Left = 144
    Height = 36
    Top = 274
    Width = 340
    AutoFill = True
    BorderSpacing.Top = 1
    ChildSizing.LeftRightSpacing = 6
    ChildSizing.TopBottomSpacing = 6
    ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
    ChildSizing.EnlargeVertical = crsHomogenousChildResize
    ChildSizing.ShrinkHorizontal = crsScaleChilds
    ChildSizing.ShrinkVertical = crsScaleChilds
    ChildSizing.Layout = cclLeftToRightThenTopToBottom
    ChildSizing.ControlsPerLine = 3
    ClientHeight = 17
    ClientWidth = 336
    Columns = 3
    ItemIndex = 0
    Items.Strings = (
      'Disabled'
      'Interactive'
      'Automatic'
    )
    TabOrder = 10
  end
  object FuncReplaceRadioGroup: TRadioGroup
    AnchorSideTop.Control = FuncReplaceDivider
    AnchorSideTop.Side = asrBottom
    Left = 144
    Height = 36
    Top = 408
    Width = 340
    AutoFill = True
    BorderSpacing.Top = 1
    ChildSizing.LeftRightSpacing = 6
    ChildSizing.TopBottomSpacing = 6
    ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
    ChildSizing.EnlargeVertical = crsHomogenousChildResize
    ChildSizing.ShrinkHorizontal = crsScaleChilds
    ChildSizing.ShrinkVertical = crsScaleChilds
    ChildSizing.Layout = cclLeftToRightThenTopToBottom
    ChildSizing.ControlsPerLine = 2
    ClientHeight = 17
    ClientWidth = 336
    Columns = 2
    ItemIndex = 0
    Items.Strings = (
      'Disabled'
      'Enabled'
    )
    TabOrder = 11
  end
  object CoordOffsRadioGroup: TRadioGroup
    AnchorSideTop.Control = CoordOffsDivider
    AnchorSideTop.Side = asrBottom
    Left = 144
    Height = 36
    Top = 475
    Width = 340
    AutoFill = True
    BorderSpacing.Top = 1
    ChildSizing.LeftRightSpacing = 6
    ChildSizing.TopBottomSpacing = 6
    ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
    ChildSizing.EnlargeVertical = crsHomogenousChildResize
    ChildSizing.ShrinkHorizontal = crsScaleChilds
    ChildSizing.ShrinkVertical = crsScaleChilds
    ChildSizing.Layout = cclLeftToRightThenTopToBottom
    ChildSizing.ControlsPerLine = 2
    ClientHeight = 17
    ClientWidth = 336
    Columns = 2
    ItemIndex = 0
    Items.Strings = (
      'Disabled'
      'Enabled'
    )
    TabOrder = 12
  end
end