added first iteration of breakpoint view for the debugger

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@21 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
fires.gc
2008-07-17 20:08:01 +00:00
parent d23af1a15e
commit fa6bd5d2e2
21 changed files with 1285 additions and 39 deletions

View File

@ -29,6 +29,7 @@
class CRegisterWindow;
class CLogWindow;
class CBreakPointWindow;
class CCodeWindow
: public wxFrame
@ -54,6 +55,7 @@ class CCodeWindow
// sub dialogs
CLogWindow* m_logwindow;
CRegisterWindow* m_RegisterWindow;
CBreakPointWindow* m_BreakpointWindow;
CCodeView* codeview;
wxListBox* callstack;
@ -75,6 +77,7 @@ class CCodeWindow
void OnAddrBoxChange(wxCommandEvent& event);
void OnToggleRegisterWindow(wxCommandEvent& event);
void OnToggleBreakPointWindow(wxCommandEvent& event);
void OnToggleLogWindow(wxCommandEvent& event);
void OnHostMessage(wxCommandEvent& event);