2006-06-15 04:19:30 +00:00
|
|
|
#ifndef _MEMORYVIEWMIPSWND_H_
|
|
|
|
#define _MEMORYVIEWMIPSWND_H_
|
|
|
|
|
|
|
|
#include "win32/MDIChild.h"
|
2007-02-28 20:51:06 +00:00
|
|
|
#include "win32/StatusBar.h"
|
2006-06-15 04:19:30 +00:00
|
|
|
#include "MemoryViewMIPS.h"
|
|
|
|
|
2007-03-03 19:24:42 +00:00
|
|
|
class CMemoryViewMIPSWnd : public Framework::Win32::CMDIChild
|
2006-06-15 04:19:30 +00:00
|
|
|
{
|
|
|
|
public:
|
2007-02-28 20:51:06 +00:00
|
|
|
CMemoryViewMIPSWnd(HWND, CMIPS*);
|
|
|
|
~CMemoryViewMIPSWnd();
|
2006-06-15 04:19:30 +00:00
|
|
|
|
|
|
|
protected:
|
2007-02-28 20:51:06 +00:00
|
|
|
long OnSize(unsigned int, unsigned int, unsigned int);
|
|
|
|
long OnSysCommand(unsigned int, LPARAM);
|
|
|
|
long OnSetFocus();
|
2006-06-15 04:19:30 +00:00
|
|
|
|
|
|
|
private:
|
2007-02-28 20:51:06 +00:00
|
|
|
void RefreshLayout();
|
|
|
|
void UpdateStatusBar();
|
|
|
|
void OnMemoryViewSelectionChange(uint32);
|
|
|
|
|
|
|
|
CMemoryViewMIPS* m_pMemoryView;
|
|
|
|
Framework::Win32::CStatusBar* m_pStatusBar;
|
2006-06-15 04:19:30 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|