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

+ Added locals dialog * Modified breakpoints dialog (load as resource) + Added generic debuggerdlg class = Reorganized main.pp, all debbugger relater routines are moved to include/ide_debugger.inc git-svn-id: trunk@1536 -
24 lines
441 B
Plaintext
24 lines
441 B
Plaintext
object DbgOutputForm1: TDbgOutputForm
|
|
CAPTION = 'Debug output'
|
|
OnClose = FormClose
|
|
OnCreate = FormCreate
|
|
HEIGHT = 200
|
|
WIDTH = 400
|
|
object txtOutput: TMemo
|
|
Left = 8
|
|
Top = 104
|
|
Width = 600
|
|
Height = 150
|
|
Align = alClient
|
|
PopupMenu = mnuPopup
|
|
end
|
|
object mnuPopup: TPopupMenu
|
|
Left = 400
|
|
Top = 96
|
|
object popClear: TMenuItem
|
|
Caption = '&Clear'
|
|
OnClick = popClearClick
|
|
end
|
|
end
|
|
end
|