summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/src/CodeWindow.h
diff options
context:
space:
mode:
authorfires.gc <fires.gc@gmail.com>2008-07-17 20:08:01 +0000
committerfires.gc <fires.gc@gmail.com>2008-07-17 20:08:01 +0000
commitfa6bd5d2e28892a5ce63b8b4f3e7ce18e8a200b6 (patch)
tree3249d5a78ba4d0fc7f1b5894f20fe8621a46e59f /Source/Core/DebuggerWX/src/CodeWindow.h
parentd23af1a15e07a66bf88352facd527bed6df3828c (diff)
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
Diffstat (limited to 'Source/Core/DebuggerWX/src/CodeWindow.h')
-rw-r--r--Source/Core/DebuggerWX/src/CodeWindow.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/DebuggerWX/src/CodeWindow.h b/Source/Core/DebuggerWX/src/CodeWindow.h
index 46d840ad65..ff711633ac 100644
--- a/Source/Core/DebuggerWX/src/CodeWindow.h
+++ b/Source/Core/DebuggerWX/src/CodeWindow.h
@@ -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);