lazarus/debugger/localsdlg.lfm
2012-08-20 18:05:46 +00:00

95 lines
2.0 KiB
Plaintext

inherited LocalsDlg: TLocalsDlg
Left = 359
Height = 200
Top = 126
Width = 500
HorzScrollBar.Page = 499
VertScrollBar.Page = 199
ActiveControl = lvLocals
BorderStyle = bsSizeToolWin
Caption = 'Locals'
ClientHeight = 200
ClientWidth = 500
object lvLocals: TListView[0]
Left = 0
Height = 200
Top = 0
Width = 500
Align = alClient
Columns = <
item
Caption = 'Name'
Width = 150
end
item
Caption = 'Value'
end>
MultiSelect = True
PopupMenu = PopupMenu1
ReadOnly = True
RowSelect = True
SortType = stText
TabOrder = 0
ViewStyle = vsReport
end
object ActionList1: TActionList[1]
left = 152
top = 80
object actInspect: TAction
Category = 'main'
Caption = 'actInspect'
OnExecute = actInspectExecute
OnUpdate = actInspectUpdate
ShortCut = 16457
end
object actWath: TAction
Category = 'main'
Caption = 'actWath'
OnExecute = actWathExecute
OnUpdate = actInspectUpdate
ShortCut = 16471
end
object actEvaluate: TAction
Category = 'main'
Caption = 'actEvaluate'
OnExecute = actEvaluateExecute
OnUpdate = actInspectUpdate
ShortCut = 16469
end
object actCopyName: TAction
Category = 'copy'
Caption = 'actCopyName'
OnExecute = actCopyNameExecute
OnUpdate = actInspectUpdate
end
object actCopyValue: TAction
Category = 'copy'
Caption = 'actCopyValue'
OnExecute = actCopyValueExecute
OnUpdate = actInspectUpdate
end
end
object PopupMenu1: TPopupMenu[2]
left = 38
top = 75
object MenuItem1: TMenuItem
Action = actInspect
end
object MenuItem2: TMenuItem
Action = actWath
end
object MenuItem3: TMenuItem
Action = actEvaluate
end
object MenuItem4: TMenuItem
Caption = '-'
end
object MenuItem5: TMenuItem
Action = actCopyName
end
object MenuItem6: TMenuItem
Action = actCopyValue
end
end
end