📄 leedisasmview.h
字号:
// LeeDisasmView.h : interface of the CLeeDisasmView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_LEEDISASMVIEW_H__1E50E215_11DA_4A88_8163_45A1ABBD1920__INCLUDED_)
#define AFX_LEEDISASMVIEW_H__1E50E215_11DA_4A88_8163_45A1ABBD1920__INCLUDED_
#include "Disasm.h" // Added by ClassView
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CLeeDisasmDoc;
class CLeeDisasmView : public CListView
{
protected: // create from serialization only
CLeeDisasmView();
DECLARE_DYNCREATE(CLeeDisasmView)
// Attributes
public:
CLeeDisasmDoc* GetDocument();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CLeeDisasmView)
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual void OnInitialUpdate(); // called first time after construct
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
//}}AFX_VIRTUAL
// Implementation
public:
CDisasm* m_pDisasm;
DWORD m_dwSize;
DWORD m_dwAddr;
char* m_pData;
virtual ~CLeeDisasmView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CLeeDisasmView)
afx_msg void OnFileOpen();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in LeeDisasmView.cpp
inline CLeeDisasmDoc* CLeeDisasmView::GetDocument()
{ return (CLeeDisasmDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_LEEDISASMVIEW_H__1E50E215_11DA_4A88_8163_45A1ABBD1920__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -