notepadeview.h

来自「该程序基于 windows ce 6.0 的模拟器CHSEmu (ARMV4I)」· C头文件 代码 · 共 48 行

H
48
字号
// NotePadeView.h : interface of the CNotePadeView class
//


#pragma once

class CNotePadeView : public CEditView
{
protected: // create from serialization only
	CNotePadeView();
	DECLARE_DYNCREATE(CNotePadeView)

// Attributes
public:
	CNotePadeDoc* GetDocument() const;

// Operations
public:
    CString m_strFilePath;      // 当前文件路径

// Overrides
public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
    virtual void OnInitialUpdate();

protected:

// Implementation
public:
	virtual ~CNotePadeView();
#ifdef _DEBUG
	virtual void AssertValid() const;
#endif

protected:

// Generated message map functions
protected:
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in NotePadeView.cpp
inline CNotePadeDoc* CNotePadeView::GetDocument() const
   { return reinterpret_cast<CNotePadeDoc*>(m_pDocument); }
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?