lazarus/debugger/debugattachdialog.lfm
martin ed2ad8b64b Debugger: Attach allow sorting process list
git-svn-id: trunk@43418 -
2013-11-11 00:09:04 +00:00

80 lines
1.6 KiB
Plaintext

object DebugAttachDialogForm: TDebugAttachDialogForm
Left = 772
Height = 535
Top = 451
Width = 400
BorderIcons = [biSystemMenu]
Caption = 'Attach to'
ClientHeight = 535
ClientWidth = 400
Constraints.MinHeight = 300
Constraints.MinWidth = 400
Position = poScreenCenter
LCLVersion = '1.3'
object labelRunningProcesses: TLabel
Left = 8
Height = 15
Top = 8
Width = 99
Caption = 'Running Processes'
ParentColor = False
end
object lvProcesses: TListView
Left = 8
Height = 468
Top = 29
Width = 384
Anchors = [akTop, akLeft, akRight, akBottom]
Columns = <
item
Caption = 'Image Name'
Width = 200
end
item
Caption = 'PID'
Width = 70
end>
OwnerData = True
ReadOnly = True
RowSelect = True
TabOrder = 0
ViewStyle = vsReport
OnChange = lvProcessesChange
OnColumnClick = lvProcessesColumnClick
OnData = lvProcessesData
OnDblClick = lvProcessesDblClick
OnKeyDown = lvProcessesKeyDown
end
object btnRefresh: TButton
Left = 8
Height = 25
Top = 505
Width = 75
Anchors = [akLeft, akBottom]
Caption = 'Refresh'
OnClick = btnRefreshClick
TabOrder = 1
end
object btnAttach: TButton
Left = 96
Height = 25
Top = 505
Width = 75
Anchors = [akLeft, akBottom]
Caption = 'Attach'
Enabled = False
ModalResult = 1
TabOrder = 2
end
object btnCancel: TButton
Left = 184
Height = 25
Top = 505
Width = 75
Anchors = [akLeft, akBottom]
Caption = 'Cancel'
ModalResult = 2
TabOrder = 3
end
end