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

📄 ex30av~1.h

📁 vc++技术内幕第四版(清华版)源码。vc++技术内幕书是vc++的权威书籍
💻 H
字号:
// ex30aView.h : interface of the CEx30aView class
//
/////////////////////////////////////////////////////////////////////////////

class CEx30aView : public CEditView
{
protected: // create from serialization only
	CEx30aView();
	DECLARE_DYNCREATE(CEx30aView)

// Attributes
public:
	CEx30aDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CEx30aView)
	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 ~CEx30aView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CEx30aView)
	afx_msg void OnInternetStartServer();
	afx_msg void OnUpdateInternetStartServer(CCmdUI* pCmdUI);
	afx_msg void OnInternetRequestSocket();
	afx_msg void OnInternetRequestWininet();
	afx_msg void OnInternetStopServer();
	afx_msg void OnUpdateInternetStopServer(CCmdUI* pCmdUI);
	afx_msg void OnInternetConfiguration();
	afx_msg void OnUpdateInternetConfiguration(CCmdUI* pCmdUI);
	afx_msg void OnEditClearAll();
	afx_msg void OnRequest();
	afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in ex30aView.cpp
inline CEx30aDoc* CEx30aView::GetDocument()
   { return (CEx30aDoc*)m_pDocument; }
#endif

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

⌨️ 快捷键说明

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