submitting just because I want to move these files

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3515 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
hrydgard 2009-06-20 20:21:35 +00:00
parent a19f907b32
commit b7e5fb6ef2
2 changed files with 47 additions and 48 deletions

View File

@ -21,6 +21,7 @@
#include "HW/Memmap.h" // for Write_U32 #include "HW/Memmap.h" // for Write_U32
#include "Common.h" #include "Common.h"
#include "StringUtil.h" #include "StringUtil.h"
#include "Debugger/DebugInterface.h"
#include "Host.h" #include "Host.h"
#include "CodeView.h" #include "CodeView.h"

View File

@ -20,16 +20,16 @@
#include "Debugger.h" #include "Debugger.h"
#include "Common.h" #include "Common.h"
#include "Debugger/DebugInterface.h"
#include <vector> #include <vector>
DECLARE_EVENT_TYPE(wxEVT_CODEVIEW_CHANGE, -1); DECLARE_EVENT_TYPE(wxEVT_CODEVIEW_CHANGE, -1);
class CCodeView class DebugInterface;
: public wxControl
class CCodeView : public wxControl
{ {
public: public:
CCodeView(DebugInterface* debuginterface, wxWindow* parent, wxWindowID Id = -1, const wxSize& Size = wxDefaultSize); CCodeView(DebugInterface* debuginterface, wxWindow* parent, wxWindowID Id = -1, const wxSize& Size = wxDefaultSize);
wxSize DoGetBestSize() const; wxSize DoGetBestSize() const;
void OnPaint(wxPaintEvent& event); void OnPaint(wxPaintEvent& event);
@ -57,8 +57,7 @@ class CCodeView
redraw(); redraw();
} }
private: private:
void RaiseEvent(); void RaiseEvent();
int YToAddress(int y); int YToAddress(int y);
@ -66,7 +65,6 @@ class CCodeView
void redraw() {Refresh();} void redraw() {Refresh();}
DebugInterface* debugger; DebugInterface* debugger;
int curAddress; int curAddress;