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

modified by the ide + Added some parsing to evaluate complex expressions not understood by the debugger git-svn-id: trunk@3068 -
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
|