⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 scanviewerdoc.h

📁 看图软件
💻 H
字号:
// ScanViewerDoc.h :  CScanViewerDoc 类的接口
//

#include "contextmenu.h"

#pragma once

class CScanViewerDoc : public CDocument
{
protected: // 仅从序列化创建
	CScanViewerDoc();
	DECLARE_DYNCREATE(CScanViewerDoc)

// 属性
public:

// 操作
public:

// 重写
	public:
	virtual BOOL OnNewDocument();
	virtual void Serialize(CArchive& ar);

// 实现
public:
	virtual ~CScanViewerDoc();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// 生成的消息映射函数
protected:
	DECLARE_MESSAGE_MAP()
private:	
	CContextMenu CCMenu;

public:	
	// 当前打开的是文件夹
	BOOL m_bIsFolder;

public:		
	virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);			
	afx_msg void OnFileSaveAs();
	afx_msg void OnFileNew();
	afx_msg void OnUpdateEditPaste(CCmdUI *pCmdUI);
	afx_msg void OnEditPaste();
	afx_msg void OnToolsFileAssociations();
	afx_msg void OnUpdateToolsFileAssociations(CCmdUI *pCmdUI);		
	afx_msg void OnToolsFolderAssociations();
	afx_msg void OnUpdateToolsFolderAssociations(CCmdUI *pCmdUI);
};


⌨️ 快捷键说明

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