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

📄 vc12bview.h

📁 Visual C++ 6.0编程基础与范例
💻 H
字号:
// vc12bView.h : interface of the CVc12bView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_VC12BVIEW_H__EF21444E_3ED4_11D3_9FED_9B20A0FEF92E__INCLUDED_)
#define AFX_VC12BVIEW_H__EF21444E_3ED4_11D3_9FED_9B20A0FEF92E__INCLUDED_

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


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

// Attributes
public:
	CVc12bDoc* GetDocument();

// Operations
public:

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

protected:

// Generated message map functions
	MCIDEVICEID m_MCIID;
	BOOL m_bPause;
	BOOL m_bPlay;
protected:
	
	//{{AFX_MSG(CVc12bView)
	afx_msg void OnPause();
	afx_msg void OnUpdatePause(CCmdUI* pCmdUI);
	afx_msg void OnPlay();
	afx_msg void OnUpdatePlay(CCmdUI* pCmdUI);
	afx_msg void OnStop();
	afx_msg void OnUpdateStop(CCmdUI* pCmdUI);
	afx_msg void OnFileOpen();
	//}}AFX_MSG
	afx_msg LRESULT OnNotify(WPARAM wParam);
	DECLARE_MESSAGE_MAP()
private:
	void DoError(DWORD ErrorWord);
	
};

#ifndef _DEBUG  // debug version in vc12bView.cpp
inline CVc12bDoc* CVc12bView::GetDocument()
   { return (CVc12bDoc*)m_pDocument; }
#endif

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

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

#endif // !defined(AFX_VC12BVIEW_H__EF21444E_3ED4_11D3_9FED_9B20A0FEF92E__INCLUDED_)

⌨️ 快捷键说明

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