home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch22 / wave / waveview.h < prev   
Encoding:
C/C++ Source or Header  |  1994-02-02  |  1.2 KB  |  55 lines

  1. // waveview.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CWaveView form view
  6.  
  7. #ifndef __AFXEXT_H__
  8. #include <afxext.h>
  9. #endif
  10.  
  11. class CWaveView : public CFormView
  12. {
  13.     DECLARE_DYNCREATE(CWaveView)
  14. protected:
  15.     CWaveView();            // protected constructor used by dynamic creation
  16.  
  17.     //////////////////////
  18.     // MY CODE STARTS HERE
  19.     //////////////////////
  20.  
  21.     virtual void OnInitialUpdate();
  22.  
  23.     ////////////////////
  24.     // MY CODE ENDS HERE
  25.     ////////////////////
  26.  
  27. // Form Data
  28. public:
  29.     //{{AFX_DATA(CWaveView)
  30.     enum { IDD = IDD_DIALOG1 };
  31.     CVBControl*    m_wav;
  32.     //}}AFX_DATA
  33.  
  34. // Attributes
  35. public:
  36.  
  37. // Operations
  38. public:
  39.  
  40. // Implementation
  41. protected:
  42.     virtual ~CWaveView();
  43.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44.     // Generated message map functions
  45.     //{{AFX_MSG(CWaveView)
  46.     afx_msg void OnDoneTegommWav(UINT, int, CWnd*, LPVOID);
  47.     afx_msg void OnButtonHide();
  48.     afx_msg void OnButtonShow();
  49.     afx_msg void OnButtonPlay();
  50.     //}}AFX_MSG
  51.     DECLARE_MESSAGE_MAP()
  52. };
  53.  
  54. /////////////////////////////////////////////////////////////////////////////
  55.