wavedemoview.h

来自「Visual+C+++6[1].0实用教程代码 Visual+C+++6[1]」· C头文件 代码 · 共 73 行

H
73
字号
// WaveDemoView.h : interface of the CWaveDemoView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_WAVEDEMOVIEW_H__6A17A6BE_67ED_11D1_B719_00C0A83735D8__INCLUDED_)
#define AFX_WAVEDEMOVIEW_H__6A17A6BE_67ED_11D1_B719_00C0A83735D8__INCLUDED_

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

#include "Wave.h"

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

// Attributes
public:
	CWaveDemoDoc* GetDocument();

	CWave m_Wave;

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CWaveDemoView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	//}}AFX_VIRTUAL

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

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CWaveDemoView)
	afx_msg void OnSoundsLoadfromdisk();
	afx_msg void OnSoundsLoadfromresource();
	afx_msg void OnSoundsPlayfromdisk();
	afx_msg void OnSoundsPlayfromresource();
	afx_msg void OnSoundsPlayloadedsound();
	afx_msg void OnUpdateSoundsPlayloadedsound(CCmdUI* pCmdUI);
	afx_msg void OnSoundsStopsound();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in WaveDemoView.cpp
inline CWaveDemoDoc* CWaveDemoView::GetDocument()
   { return (CWaveDemoDoc*)m_pDocument; }
#endif

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

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

#endif // !defined(AFX_WAVEDEMOVIEW_H__6A17A6BE_67ED_11D1_B719_00C0A83735D8__INCLUDED_)

⌨️ 快捷键说明

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