lazarus/debugger/watchesdlg.lfm
marc d638ed5696 + Added Evaluate/Modify dialog
git-svn-id: trunk@6287 -
2004-11-23 00:57:05 +00:00

71 lines
1.5 KiB
Plaintext

object WatchesDlg: TWatchesDlg
ActiveControl = lvWatches
Caption = 'Watch list'
ClientHeight = 200
ClientWidth = 500
PixelsPerInch = 90
HorzScrollBar.Page = 501
VertScrollBar.Page = 201
Left = 359
Height = 200
Top = 126
Width = 500
object lvWatches: TListView
Align = alClient
Columns = <
item
Caption = 'Expression'
Width = 150
end
item
Caption = 'Value'
Width = 0
end>
MultiSelect = True
PopupMenu = mnuPopup
ViewStyle = vsReport
OnClick = lvWatchesClick
OnSelectItem = lvWatchesSelectItem
Height = 200
Width = 500
end
object mnuPopup: TPopupMenu
left = 100
top = 96
object popAdd: TMenuItem
Caption = '&Add'
OnClick = popAddClick
end
object N1: TMenuItem
Caption = '-'
end
object popProperties: TMenuItem
Caption = '&Properties'
OnClick = popPropertiesClick
end
object popEnabled: TMenuItem
Caption = '&Enabled'
OnClick = popEnabledClick
end
object popDelete: TMenuItem
Caption = '&Delete'
OnClick = popDeleteClick
end
object N2: TMenuItem
Caption = '-'
end
object popDisableAll: TMenuItem
Caption = 'D&isable All'
OnClick = popDisableAllClick
end
object popEnableAll: TMenuItem
Caption = 'E&nable All'
OnClick = popEnableAllClick
end
object popDeleteAll: TMenuItem
Caption = 'De&lete All'
OnClick = popDeleteAllClick
end
end
end