Added "Add to watch" context menu items to the Memory and Register windows.

Added "View memory" context menu item to the Register window.
This commit is contained in:
skidau
2014-10-24 00:47:00 +11:00
parent 613cae613a
commit d0a3bb7650
4 changed files with 77 additions and 5 deletions

View File

@ -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()