mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-01 19:32:49 +02:00

+ Added watches * Updated watches and watchproperty dialog to load as resource = renamed debugger resource files from *.lrc to *.lrs * Temporary fixed language problems on GDB (bug #508) * Made Debugmanager dialog handling more generic git-svn-id: trunk@1636 -
88 lines
1.8 KiB
Plaintext
88 lines
1.8 KiB
Plaintext
object BreakpointsDlg: TBreakpointsDlg
|
|
Left = 340
|
|
Top = 117
|
|
Width = 500
|
|
Height = 200
|
|
Caption = 'Breakpoint list'
|
|
object lvBreakPoints: TListView
|
|
Left = 0
|
|
Top = 0
|
|
Width = 484
|
|
Height = 171
|
|
Align = alClient
|
|
Columns = <
|
|
item
|
|
Caption = 'State'
|
|
Width = 50
|
|
end
|
|
item
|
|
Caption = 'Filename/Address'
|
|
Width = 150
|
|
end
|
|
item
|
|
Caption = 'Line/Length'
|
|
Width = 100
|
|
end
|
|
item
|
|
Caption = 'Condition'
|
|
Width = 75
|
|
end
|
|
item
|
|
Caption = 'Action'
|
|
Width = 50
|
|
end
|
|
item
|
|
Caption = 'Pass Count'
|
|
Width = 100
|
|
end
|
|
item
|
|
Caption = 'Group'
|
|
end>
|
|
MultiSelect = True
|
|
PopupMenu = mnuPopup
|
|
ViewStyle = vsReport
|
|
OnClick = lvBreakPointsClick
|
|
OnSelectItem = lvBreakPointsSelectItem
|
|
end
|
|
object mnuPopup: TPopupMenu
|
|
Left = 100
|
|
Top = 96
|
|
object popAdd: TMenuItem
|
|
Caption = 'Add...'
|
|
object popAddSourceBP: TMenuItem
|
|
Caption = '&Source breakpoint'
|
|
OnClick = popAddSourceBPClick
|
|
end
|
|
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 = '&Enable All'
|
|
OnClick = popEnableAllClick
|
|
end
|
|
object popDeleteAll: TMenuItem
|
|
Caption = '&Delete All'
|
|
OnClick = popDeleteAllClick
|
|
end
|
|
end
|
|
end |