diff options
| author | hrydgard <hrydgard@gmail.com> | 2008-07-21 18:42:44 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2008-07-21 18:42:44 +0000 |
| commit | 3c71be61007c4984b6f9db319a1716fec83a5cd8 (patch) | |
| tree | 60e85b201361b90743c9b89551984622f75e5a2a /Source/Core/DebuggerWX/src/CodeWindow.h | |
| parent | 1b2d7ef56d4110aba030f4ef78ea98aba4ade782 (diff) | |
Improved some error msgs, added preliminary memory view window, split plugin ini files.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@42 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/src/CodeWindow.h')
| -rw-r--r-- | Source/Core/DebuggerWX/src/CodeWindow.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/DebuggerWX/src/CodeWindow.h b/Source/Core/DebuggerWX/src/CodeWindow.h index 0ad945abf1..81319e9d90 100644 --- a/Source/Core/DebuggerWX/src/CodeWindow.h +++ b/Source/Core/DebuggerWX/src/CodeWindow.h @@ -30,6 +30,8 @@ class CRegisterWindow;
class CLogWindow;
class CBreakPointWindow;
+class CMemoryWindow;
+class CCodeView;
class CCodeWindow
: public wxFrame
@@ -58,6 +60,7 @@ class CCodeWindow CLogWindow* m_logwindow;
CRegisterWindow* m_RegisterWindow;
CBreakPointWindow* m_BreakpointWindow;
+ CMemoryWindow* m_MemoryWindow;
CCodeView* codeview;
wxListBox* callstack;
@@ -81,6 +84,7 @@ class CCodeWindow void OnToggleRegisterWindow(wxCommandEvent& event);
void OnToggleBreakPointWindow(wxCommandEvent& event);
void OnToggleLogWindow(wxCommandEvent& event);
+ void OnToggleMemoryWindow(wxCommandEvent& event);
void OnHostMessage(wxCommandEvent& event);
void CreateMenu(const SCoreStartupParameter& _LocalCoreStartupParameter);
|
