custfileview.h

来自「讲mfc的书」· C头文件 代码 · 共 66 行

H
66
字号
// custfileView.h : interface of the CCustfileView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_CUSTFILEVIEW_H__7A9D31AD_072D_11D1_BC98_00400526DBEA__INCLUDED_)
#define AFX_CUSTFILEVIEW_H__7A9D31AD_072D_11D1_BC98_00400526DBEA__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

class CCustfileView : public CView
{
protected: // create from serialization only
	CCustfileView();
	DECLARE_DYNCREATE(CCustfileView)

// Attributes
public:
	CCustfileDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CCustfileView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
	//}}AFX_VIRTUAL

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

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CCustfileView)
	afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in custfileView.cpp
inline CCustfileDoc* CCustfileView::GetDocument()
   { return (CCustfileDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_CUSTFILEVIEW_H__7A9D31AD_072D_11D1_BC98_00400526DBEA__INCLUDED_)

⌨️ 快捷键说明

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