home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch24 / avi / aviview.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-05  |  1.1 KB  |  55 lines

  1. // aviview.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CAviView form view
  6.  
  7. #ifndef __AFXEXT_H__
  8. #include <afxext.h>
  9. #endif
  10.  
  11. class CAviView : public CFormView
  12. {
  13.     DECLARE_DYNCREATE(CAviView)
  14. protected:
  15.     CAviView();            // 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(CAviView)
  30.     enum { IDD = IDD_DIALOG1 };
  31.     CVBControl*    m_avi;
  32.     BOOL    m_AutoRepeat;
  33.     BOOL    m_Silent;
  34.     //}}AFX_DATA
  35.  
  36. // Attributes
  37. public:
  38.  
  39. // Operations
  40. public:
  41.  
  42. // Implementation
  43. protected:
  44.     virtual ~CAviView();
  45.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  46.     // Generated message map functions
  47.     //{{AFX_MSG(CAviView)
  48.     afx_msg void OnDoneTegommAvi(UINT, int, CWnd*, LPVOID);
  49.     afx_msg void OnSilent();
  50.     //}}AFX_MSG
  51.     DECLARE_MESSAGE_MAP()
  52. };
  53.  
  54. /////////////////////////////////////////////////////////////////////////////
  55.