embedmoduleview.h
来自「《Visual C++编程技巧典型案例解析:基础与应用篇(下)(含1CD-ROM」· C头文件 代码 · 共 67 行
H
67 行
// EmbedModuleView.h : interface of the CEmbedModuleView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_EMBEDMODULEVIEW_H__504EB34C_00F9_11D6_B669_0010DCA65D26__INCLUDED_)
#define AFX_EMBEDMODULEVIEW_H__504EB34C_00F9_11D6_B669_0010DCA65D26__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CEmbedModuleView : public CHtmlView
{
protected: // create from serialization only
CEmbedModuleView();
DECLARE_DYNCREATE(CEmbedModuleView)
// Attributes
public:
CEmbedModuleDoc* GetDocument();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CEmbedModuleView)
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
//}}AFX_VIRTUAL
// Implementation
public:
CString m_TempFile;
int ResToFile(LPCTSTR lpName,LPCTSTR lpType,LPCTSTR filename);
virtual ~CEmbedModuleView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CEmbedModuleView)
afx_msg void OnDestroy();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in EmbedModuleView.cpp
inline CEmbedModuleDoc* CEmbedModuleView::GetDocument()
{ return (CEmbedModuleDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_EMBEDMODULEVIEW_H__504EB34C_00F9_11D6_B669_0010DCA65D26__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?