notepadedoc.h

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

H
47
字号
// NotePadeDoc.h : interface of the CNotePadeDoc class
//


#pragma once

class CNotePadeDoc : public CDocument
{
protected: // create from serialization only
	CNotePadeDoc();
	DECLARE_DYNCREATE(CNotePadeDoc)

// Attributes
public:

// Operations
public:

// Overrides
public:
	virtual BOOL OnNewDocument();
#ifndef _WIN32_WCE_NO_ARCHIVE_SUPPORT
	virtual void Serialize(CArchive& ar);
#endif // !_WIN32_WCE_NO_ARCHIVE_SUPPORT

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

protected:

// Generated message map functions
protected:
	DECLARE_MESSAGE_MAP()
public:
    afx_msg void OnFileSave();
    afx_msg void OnFileNew();
    afx_msg void OnFileOpen();
    afx_msg void OnAppExit();
    afx_msg void OnFileSaveAs();
};


⌨️ 快捷键说明

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