lazarus/debugger/breakpointsdlg.lfm
2005-08-22 10:05:31 +00:00

126 lines
2.9 KiB
Plaintext

object BreakpointsDlg: TBreakpointsDlg
ActiveControl = lvBreakPoints
Caption = 'Breakpoint list'
ClientHeight = 205
ClientWidth = 560
OnCreate = BreakpointsDlgCREATE
PixelsPerInch = 96
Visible = True
HorzScrollBar.Page = 559
VertScrollBar.Page = 204
Left = 340
Height = 205
Top = 117
Width = 560
HelpType = htKeyword
object lvBreakPoints: TListView
Align = alClient
BorderSpacing.OnChange = nil
Columns = <
item
Caption = 'State'
Width = 10
end
item
Caption = 'Filename/Address'
Width = 10
end
item
Caption = 'Line/Length'
Width = 10
end
item
Caption = 'Condition'
Width = 10
end
item
Caption = 'Action'
Width = 10
end
item
Caption = 'Pass Count'
Width = 10
end
item
Caption = 'Group'
Width = 10
end>
MultiSelect = True
PopupMenu = mnuPopup
ViewStyle = vsReport
OnClick = lvBreakPointsClick
OnDblClick = lvBreakPointsDBLCLICK
OnSelectItem = lvBreakPointsSelectItem
Height = 205
Width = 560
HelpType = htKeyword
end
object mnuPopup: TPopupMenu
OnPopup = mnuPopupPopup
left = 24
top = 8
object popShow: TMenuItem
Caption = 'Show'
Default = True
OnClick = popShowClick
end
object N0: TMenuItem
Caption = '-'
end
object popAdd: TMenuItem
Caption = 'Add...'
object popAddSourceBP: TMenuItem
Caption = '&Source breakpoint'
Enabled = False
OnClick = popAddSourceBPClick
end
end
object N1: TMenuItem
Caption = '-'
end
object popProperties: TMenuItem
Caption = '&Properties'
OnClick = popPropertiesClick
end
object popEnabled: TMenuItem
Caption = '&Enabled'
ShowAlwaysCheckable = True
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
object N3: TMenuItem
Caption = '-'
end
object popDisableAllSameSource: TMenuItem
Caption = 'Disable All in same source'
OnClick = popDisableAllSameSourceCLICK
end
object popEnableAllSameSource: TMenuItem
Caption = 'Enable All in same source'
OnClick = popEnableAllSameSourceCLICK
end
object popDeleteAllSameSource: TMenuItem
Caption = 'Delete All in same source'
OnClick = popDeleteAllSameSourceCLICK
end
end
end