FLASHVIEW.H
上传用户:scztsn
上传日期:2022-07-09
资源大小:50k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. // flashView.h : interface of the CFlashView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_FLASHVIEW_H__6D9B1BF1_C230_4F1D_B03F_2D32AF6B1D68__INCLUDED_)
  5. #define AFX_FLASHVIEW_H__6D9B1BF1_C230_4F1D_B03F_2D32AF6B1D68__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CFlashView : public CHtmlView
  10. {
  11. protected: // create from serialization only
  12. CFlashView();
  13. DECLARE_DYNCREATE(CFlashView)
  14. // Attributes
  15. public:
  16. CFlashDoc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CFlashView)
  22. public:
  23. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. protected:
  26. virtual void OnInitialUpdate(); // called first time after construct
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30. virtual ~CFlashView();
  31. #ifdef _DEBUG
  32. virtual void AssertValid() const;
  33. virtual void Dump(CDumpContext& dc) const;
  34. #endif
  35. protected:
  36. // Generated message map functions
  37. protected:
  38. //{{AFX_MSG(CFlashView)
  39. // NOTE - the ClassWizard will add and remove member functions here.
  40. //    DO NOT EDIT what you see in these blocks of generated code !
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. #ifndef _DEBUG  // debug version in flashView.cpp
  45. inline CFlashDoc* CFlashView::GetDocument()
  46.    { return (CFlashDoc*)m_pDocument; }
  47. #endif
  48. /////////////////////////////////////////////////////////////////////////////
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_FLASHVIEW_H__6D9B1BF1_C230_4F1D_B03F_2D32AF6B1D68__INCLUDED_)