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

多媒体编程

开发平台:

Visual C++

  1. // flashView.cpp : implementation of the CFlashView class
  2. //
  3. #include "stdafx.h"
  4. #include "flash.h"
  5. #include "flashDoc.h"
  6. #include "flashView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CFlashView
  14. IMPLEMENT_DYNCREATE(CFlashView, CHtmlView)
  15. BEGIN_MESSAGE_MAP(CFlashView, CHtmlView)
  16. //{{AFX_MSG_MAP(CFlashView)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG_MAP
  20. // Standard printing commands
  21. ON_COMMAND(ID_FILE_PRINT, CHtmlView::OnFilePrint)
  22. END_MESSAGE_MAP()
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CFlashView construction/destruction
  25. CFlashView::CFlashView()
  26. {
  27. // TODO: add construction code here
  28. }
  29. CFlashView::~CFlashView()
  30. {
  31. }
  32. BOOL CFlashView::PreCreateWindow(CREATESTRUCT& cs)
  33. {
  34. // TODO: Modify the Window class or styles here by modifying
  35. //  the CREATESTRUCT cs
  36. return CHtmlView::PreCreateWindow(cs);
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CFlashView drawing
  40. void CFlashView::OnDraw(CDC* pDC)
  41. {
  42. CFlashDoc* pDoc = GetDocument();
  43. ASSERT_VALID(pDoc);
  44. // TODO: add draw code for native data here
  45. }
  46. void CFlashView::OnInitialUpdate()
  47. {
  48. CHtmlView::OnInitialUpdate();
  49. // TODO: This code navigates to a popular spot on the web.
  50. //  change the code to go where you'd like.
  51. Navigate2(_T("http://flash.qianlong.com/dh_flash.asp"),NULL,NULL);
  52. }
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CFlashView printing
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CFlashView diagnostics
  57. #ifdef _DEBUG
  58. void CFlashView::AssertValid() const
  59. {
  60. CHtmlView::AssertValid();
  61. }
  62. void CFlashView::Dump(CDumpContext& dc) const
  63. {
  64. CHtmlView::Dump(dc);
  65. }
  66. CFlashDoc* CFlashView::GetDocument() // non-debug version is inline
  67. {
  68. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CFlashDoc)));
  69. return (CFlashDoc*)m_pDocument;
  70. }
  71. #endif //_DEBUG
  72. /////////////////////////////////////////////////////////////////////////////
  73. // CFlashView message handlers