mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-01 16:33:09 +02:00
75 lines
1.6 KiB
Plaintext
75 lines
1.6 KiB
Plaintext
inherited WatchesDlg: TWatchesDlg
|
|
Left = 321
|
|
Height = 200
|
|
Top = 437
|
|
Width = 500
|
|
HorzScrollBar.Page = 499
|
|
VertScrollBar.Page = 199
|
|
ActiveControl = lvWatches
|
|
Caption = 'Watch list'
|
|
OnClose = FormClose
|
|
OnCloseQuery = FormCloseQuery
|
|
OnCreate = FormCreate
|
|
OnDestroy = FormDestroy
|
|
object lvWatches: TListView
|
|
Height = 200
|
|
Width = 500
|
|
Align = alClient
|
|
Columns = <
|
|
item
|
|
Caption = 'Expression'
|
|
Width = 10
|
|
end
|
|
item
|
|
Caption = 'Value'
|
|
Width = 10
|
|
end>
|
|
MultiSelect = True
|
|
PopupMenu = mnuPopup
|
|
RowSelect = True
|
|
TabOrder = 0
|
|
ViewStyle = vsReport
|
|
OnDblClick = lvWatchesDblClick
|
|
OnKeyDown = lvWatchesKeyDown
|
|
OnSelectItem = lvWatchesSelectItem
|
|
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
|