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

📄 pdfviewdoc.h

📁 这是一个PDF文件查看的程序
💻 H
字号:
// PdfViewDoc.h : interface of the CPdfViewDoc class
//

#pragma once

#include "BPdf.h"

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

// Attributes
public:
	CBPdf& GetPdf();

// Operations
public:

// Overrides
	public:
	virtual void Serialize(CArchive& ar);

// Implementation
public:
	virtual ~CPdfViewDoc();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

private:
	CBPdf	m_pdf;

// Generated message map functions
protected:
	DECLARE_MESSAGE_MAP()
public:
	virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
	virtual void OnCloseDocument();
	afx_msg void OnFileSaveAsDot();
	afx_msg void OnUpdateFileSaveAsDot(CCmdUI *pCmdUI);
	afx_msg void OnFileSaveAsDotVerbose();
	afx_msg void OnUpdateFileSaveAsDotVerbose(CCmdUI *pCmdUI);
	afx_msg void OnFileSaveAsText();
	afx_msg void OnUpdateFileSaveAsText(CCmdUI *pCmdUI);
};


⌨️ 快捷键说明

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