summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp
diff options
context:
space:
mode:
authorskidau <skidau@gmail.com>2014-10-24 00:47:00 +1100
committerskidau <skidau@gmail.com>2014-10-26 14:56:02 +1100
commitd0a3bb765088b8d6f923ef62aac4761de332a12f (patch)
tree914bcd2eb981c2f37cbc844e1c251905776678dc /Source/Core/DolphinWX/Debugger/RegisterWindow.cpp
parent613cae613a8c2ac34dd823f875ac4a6a0059db38 (diff)
Added "Add to watch" context menu items to the Memory and Register windows.
Added "View memory" context menu item to the Register window.
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/RegisterWindow.cpp')
-rw-r--r--Source/Core/DolphinWX/Debugger/RegisterWindow.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp b/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp
index f385bf20d0..2e3d2611dd 100644
--- a/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp
+++ b/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp
@@ -11,12 +11,15 @@
#include <wx/string.h>
#include <wx/windowid.h>
+#include "Core/PowerPC/PowerPC.h"
#include "DolphinWX/Debugger/RegisterView.h"
#include "DolphinWX/Debugger/RegisterWindow.h"
class wxWindow;
BEGIN_EVENT_TABLE(CRegisterWindow, wxPanel)
+EVT_GRID_CELL_RIGHT_CLICK(CRegisterView::OnMouseDownR)
+EVT_MENU(-1, CRegisterView::OnPopupMenu)
END_EVENT_TABLE()