home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / appendix / multi / multivw.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-12  |  1.5 KB  |  68 lines

  1. // multivw.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CMultiView form view
  6.  
  7. #ifndef __AFXEXT_H__
  8. #include <afxext.h>
  9. #endif
  10.  
  11. class CMultiView : public CFormView
  12. {
  13.     DECLARE_DYNCREATE(CMultiView)
  14. protected:
  15.     CMultiView();            // 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(CMultiView)
  30.     enum { IDD = IDD_DIALOG1 };
  31.     CVBControl*    m_cd;
  32.     CVBControl*    m_mid;
  33.     CVBControl*    m_pc;
  34.     CVBControl*    m_wav;
  35.     CVBControl*    m_avi;
  36.     BOOL    m_Silent;
  37.     int        m_PcSong;
  38.     BOOL    m_AutoRepeat;
  39.     //}}AFX_DATA
  40.  
  41. // Attributes
  42. public:
  43.  
  44. // Operations
  45. public:
  46.  
  47. // Implementation
  48. protected:
  49.     virtual ~CMultiView();
  50.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  51.     // Generated message map functions
  52.     //{{AFX_MSG(CMultiView)
  53.     afx_msg void OnRadioPc1();
  54.     afx_msg void OnRadioPc2();
  55.     afx_msg void OnRadioPc3();
  56.     afx_msg void OnButtonLoad();
  57.     afx_msg void OnPaint();
  58.     afx_msg void OnDoneTegommAvi(UINT, int, CWnd*, LPVOID);
  59.     afx_msg void OnDoneTegommMid(UINT, int, CWnd*, LPVOID);
  60.     afx_msg void OnDoneTegommPc(UINT, int, CWnd*, LPVOID);
  61.     afx_msg void OnDoneTegommWav(UINT, int, CWnd*, LPVOID);
  62.     afx_msg void OnSilent();
  63.     //}}AFX_MSG
  64.     DECLARE_MESSAGE_MAP()
  65. };
  66.  
  67. /////////////////////////////////////////////////////////////////////////////
  68.