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

📄 ex5_1view.h

📁 C++程序设计源代码例
💻 H
字号:
// Ex5_1View.h : interface of the CEx5_1View class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_EX5_1VIEW_H__70E55B82_5A50_49A2_90BB_B64A4D22FFAA__INCLUDED_)
#define AFX_EX5_1VIEW_H__70E55B82_5A50_49A2_90BB_B64A4D22FFAA__INCLUDED_

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


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

// Attributes
public:
	CEx5_1Doc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CEx5_1View)
	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);
	virtual void OnActivateView(BOOL bActivate, CView* pActivateView, CView* pDeactiveView);
	//}}AFX_VIRTUAL

// Implementation
public:
	int nColorSign;
	int nFirst;
	CString OutStr;
	int nFontSign;
	int OutStrLen;
	int nFontHeight;
	virtual ~CEx5_1View();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CEx5_1View)
	afx_msg void OnTimer(UINT nIDEvent);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in Ex5_1View.cpp
inline CEx5_1Doc* CEx5_1View::GetDocument()
   { return (CEx5_1Doc*)m_pDocument; }
#endif

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

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_EX5_1VIEW_H__70E55B82_5A50_49A2_90BB_B64A4D22FFAA__INCLUDED_)

⌨️ 快捷键说明

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