/usr/lib/lazarus/0.9.30.4/debugger/callstackdlg.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 | inherited CallStackDlg: TCallStackDlg
Left = 466
Height = 246
Top = 191
Width = 562
BorderStyle = bsSizeToolWin
Caption = 'CallStack'
ClientHeight = 246
ClientWidth = 562
OnCreate = FormCreate
Visible = True
object lvCallStack: TListView[0]
Left = 0
Height = 166
Top = 80
Width = 562
Align = alClient
Columns = <
item
Width = 20
end
item
AutoSize = True
Caption = 'Index'
Width = 538
end
item
Caption = 'Source'
Width = 150
end
item
Caption = 'Line'
end
item
Caption = 'Function'
Width = 280
end>
HideSelection = False
PopupMenu = mnuPopup
ReadOnly = True
RowSelect = True
TabOrder = 0
ViewStyle = vsReport
OnClick = lvCallStackClick
OnDblClick = lvCallStackDBLCLICK
OnKeyPress = lvCallStackKeyPress
end
object ToolBar1: TToolBar[1]
Left = 0
Height = 80
Top = 0
Width = 562
AutoSize = True
ButtonHeight = 40
ButtonWidth = 50
Caption = 'tbButtons'
EdgeBorders = []
ParentShowHint = False
ShowCaptions = True
ShowHint = True
TabOrder = 1
object ToolButtonShow: TToolButton
Left = 99
Top = 0
Action = actShow
ImageIndex = 0
end
object ToolButtonCurrent: TToolButton
Left = 149
Top = 0
Action = actSetCurrent
end
object ToolButton4: TToolButton
Left = 199
Top = 0
Width = 8
Caption = 'ToolButton4'
Style = tbsSeparator
end
object ToolButtonMore: TToolButton
Left = 269
Top = 0
Action = actViewMore
ImageIndex = 1
end
object ToolButtonMax: TToolButton
Left = 207
Top = 0
Action = actViewLimit
Caption = 'Max 10'
DropdownMenu = mnuLimit
Style = tbsDropDown
end
object ToolButtonGoto: TToolButton
Left = 477
Top = 0
Action = actViewGoto
ImageIndex = 4
end
object ToolButtonCopyAll: TToolButton
Left = 1
Top = 40
Action = actCopyAll
ImageIndex = 5
end
object ToolButton8: TToolButton
Left = 91
Top = 0
Width = 8
Caption = 'ToolButton8'
Style = tbsSeparator
end
object ToolButton9: TToolButton
Left = 319
Top = 0
Width = 8
Caption = 'ToolButton9'
Style = tbsSeparator
end
object ToolButtonTop: TToolButton
Left = 327
Top = 0
Action = actViewTop
ImageIndex = 2
end
object ToolButtonBottom: TToolButton
Left = 377
Top = 0
Action = actViewBottom
ImageIndex = 3
end
object Panel1: TPanel
Left = 427
Height = 40
Top = 0
Width = 50
BevelOuter = bvNone
ClientHeight = 40
ClientWidth = 50
TabOrder = 0
object txtGoto: TEdit
Left = 2
Height = 21
Top = 8
Width = 46
OnKeyPress = txtGotoKeyPress
TabOrder = 0
Text = '0'
end
end
object ToolButtonPower: TToolButton
Left = 1
Top = 0
AllowAllUp = True
AutoSize = True
Caption = 'ToolButtonPower'
Down = True
OnClick = ToolButtonPowerClick
Style = tbsCheck
end
object ToolButton2: TToolButton
Left = 527
Top = 0
Width = 8
Caption = 'ToolButton2'
Style = tbsSeparator
end
end
object mnuPopup: TPopupMenu[2]
left = 224
top = 80
object popShow: TMenuItem
Action = actShow
Default = True
OnClick = actShowClick
end
object popToggle: TMenuItem
Action = actToggleBreakPoint
OnClick = actToggleBreakPointExecute
end
object N1: TMenuItem
Caption = '-'
end
object popSetAsCurrent: TMenuItem
Action = actSetCurrent
OnClick = actSetAsCurrentClick
end
object popCopyAll: TMenuItem
Action = actCopyAll
OnClick = actCopyAllClick
end
end
object aclActions: TActionList[3]
left = 48
top = 80
object actShow: TAction
Caption = 'Show'
OnExecute = actShowClick
end
object actSetCurrent: TAction
Caption = 'Current'
OnExecute = actSetAsCurrentClick
end
object actCopyAll: TAction
Caption = 'Copy All'
OnExecute = actCopyAllClick
end
object actViewMore: TAction
Category = 'View'
Caption = 'More'
OnExecute = actViewMoreExecute
end
object actViewGoto: TAction
Category = 'View'
Caption = 'Goto'
OnExecute = actViewGotoExecute
end
object actViewLimit: TAction
Category = 'View'
Caption = '10'
OnExecute = actViewLimitExecute
end
object actViewTop: TAction
Category = 'View'
Caption = 'Top'
OnExecute = actViewTopExecute
end
object actViewBottom: TAction
Category = 'View'
Caption = 'Bottom'
OnExecute = actViewBottomExecute
end
object actToggleBreakPoint: TAction
Caption = 'Toggle Breakpoint'
OnExecute = actToggleBreakPointExecute
end
end
object mnuLimit: TPopupMenu[4]
left = 136
top = 80
object popLimit10: TMenuItem
Tag = 10
Caption = 'Max 10'
OnClick = popCountClick
end
object popLimit25: TMenuItem
Tag = 25
Caption = 'Max 25'
OnClick = popCountClick
end
object popLimit50: TMenuItem
Tag = 50
Caption = 'Max 50'
OnClick = popCountClick
end
end
end
|