2013-06-30 10:46:29 +02:00
|
|
|
#pragma once
|
|
|
|
|
#include <wx/listctrl.h>
|
2013-11-19 11:30:58 +01:00
|
|
|
#include <wx/aui/aui.h>
|
2013-06-30 10:46:29 +02:00
|
|
|
|
2017-02-09 23:51:29 +01:00
|
|
|
class DbgEmuPanel;
|
|
|
|
|
class InterpreterDisAsmFrame;
|
|
|
|
|
|
2013-06-30 10:46:29 +02:00
|
|
|
class DebuggerPanel : public wxPanel
|
|
|
|
|
{
|
|
|
|
|
wxAuiManager m_aui_mgr;
|
|
|
|
|
|
2017-02-09 23:51:29 +01:00
|
|
|
DbgEmuPanel* m_dbg_panel;
|
|
|
|
|
InterpreterDisAsmFrame* m_disasm_frame;
|
|
|
|
|
|
2013-06-30 10:46:29 +02:00
|
|
|
public:
|
|
|
|
|
DebuggerPanel(wxWindow* parent);
|
|
|
|
|
~DebuggerPanel();
|
|
|
|
|
|
|
|
|
|
void UpdateUI();
|
2013-11-19 11:30:58 +01:00
|
|
|
};
|