/usr/lib/lazarus/0.9.30.4/ide/findrenameidentifier.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 | object FindRenameIdentifierDialog: TFindRenameIdentifierDialog
Left = 283
Height = 496
Top = 160
Width = 452
BorderStyle = bsDialog
Caption = 'FindRenameIdentifierDialog'
ClientHeight = 496
ClientWidth = 452
OnClose = FindRenameIdentifierDialogClose
OnCreate = FindRenameIdentifierDialogCreate
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '0.9.29'
object CurrentGroupBox: TGroupBox
Left = 6
Height = 134
Top = 6
Width = 440
Align = alClient
BorderSpacing.Around = 6
Caption = 'CurrentGroupBox'
ClientHeight = 116
ClientWidth = 436
TabOrder = 0
object CurrentListBox: TListBox
Left = 6
Height = 104
Top = 6
Width = 424
Align = alClient
BorderSpacing.Around = 6
ClickOnSelChange = False
ItemHeight = 0
TabOrder = 0
end
end
object NewGroupBox: TGroupBox
Left = 6
Height = 78
Top = 146
Width = 440
Align = alBottom
AutoSize = True
BorderSpacing.Around = 6
Caption = 'NewGroupBox'
ClientHeight = 60
ClientWidth = 436
TabOrder = 1
object NewEdit: TEdit
Left = 6
Height = 23
Top = 31
Width = 424
Align = alTop
BorderSpacing.Around = 6
TabOrder = 0
Text = 'NewEdit'
end
object RenameCheckBox: TCheckBox
Left = 6
Height = 19
Top = 6
Width = 424
Align = alTop
BorderSpacing.Around = 6
Caption = 'RenameCheckBox'
OnChange = RenameCheckBoxChange
TabOrder = 1
end
end
object ScopeGroupBox: TGroupBox
Left = 6
Height = 220
Top = 230
Width = 440
Align = alBottom
AutoSize = True
BorderSpacing.Around = 6
Caption = 'ScopeGroupBox'
ClientHeight = 202
ClientWidth = 436
TabOrder = 2
object ScopeCommentsCheckBox: TCheckBox
Left = 6
Height = 19
Top = 177
Width = 424
Align = alTop
BorderSpacing.Around = 6
Caption = 'ScopeCommentsCheckBox'
TabOrder = 0
end
object ScopeRadioGroup: TRadioGroup
Left = 6
Height = 106
Top = 6
Width = 424
Align = alTop
AutoFill = True
AutoSize = True
BorderSpacing.Around = 6
Caption = 'ScopeRadioGroup'
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 88
ClientWidth = 420
Items.Strings = (
'in current unit'
'in main project'
'in project/package owning file'
'in all open projects and packages'
)
TabOrder = 1
end
object ExtraFilesGroupBox: TGroupBox
Left = 6
Height = 53
Top = 118
Width = 424
Align = alTop
AutoSize = True
BorderSpacing.Around = 6
Caption = 'ExtraFilesGroupBox'
ClientHeight = 35
ClientWidth = 420
TabOrder = 2
object ExtraFilesEdit: TEdit
Left = 6
Height = 23
Top = 6
Width = 408
Align = alTop
BorderSpacing.Around = 6
TabOrder = 0
Text = 'ExtraFilesEdit'
end
end
end
object ButtonPanel1: TButtonPanel
Left = 6
Height = 34
Top = 456
Width = 440
OKButton.Name = 'OKButton'
OKButton.Caption = '&OK'
OKButton.OnClick = FindOrRenameButtonClick
HelpButton.Name = 'HelpButton'
HelpButton.Caption = '&Help'
HelpButton.Enabled = False
CloseButton.Name = 'CloseButton'
CloseButton.Caption = '&Close'
CloseButton.Enabled = False
CancelButton.Name = 'CancelButton'
CancelButton.Caption = 'Cancel'
TabOrder = 3
ShowButtons = [pbOK, pbCancel]
end
end
|