ex125View.cpp
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:3k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ex125View.cpp : implementation of the CEx125View class
  2. //
  3. #include "stdafx.h"
  4. #include "ex125.h"
  5. #include "ex125Doc.h"
  6. #include "ex125View.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CEx125View
  14. IMPLEMENT_DYNCREATE(CEx125View, CView)
  15. BEGIN_MESSAGE_MAP(CEx125View, CView)
  16. //{{AFX_MSG_MAP(CEx125View)
  17. ON_COMMAND(ID_FILE_OPEN, OnFileOpen)
  18. //}}AFX_MSG_MAP
  19. // Standard printing commands
  20. ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  21. ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  22. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CEx125View construction/destruction
  26. CEx125View::CEx125View()
  27. {
  28. m_hwndMCIWnd=NULL;
  29. }
  30. CEx125View::~CEx125View()
  31. {
  32. }
  33. BOOL CEx125View::PreCreateWindow(CREATESTRUCT& cs)
  34. {
  35. // TODO: Modify the Window class or styles here by modifying
  36. //  the CREATESTRUCT cs
  37. return CView::PreCreateWindow(cs);
  38. }
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CEx125View drawing
  41. void CEx125View::OnDraw(CDC* pDC)
  42. {
  43. CEx125Doc* pDoc = GetDocument();
  44. ASSERT_VALID(pDoc);
  45. // TODO: add draw code for native data here
  46. }
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CEx125View printing
  49. BOOL CEx125View::OnPreparePrinting(CPrintInfo* pInfo)
  50. {
  51. // default preparation
  52. return DoPreparePrinting(pInfo);
  53. }
  54. void CEx125View::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  55. {
  56. // TODO: add extra initialization before printing
  57. }
  58. void CEx125View::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  59. {
  60. // TODO: add cleanup after printing
  61. }
  62. /////////////////////////////////////////////////////////////////////////////
  63. // CEx125View diagnostics
  64. #ifdef _DEBUG
  65. void CEx125View::AssertValid() const
  66. {
  67. CView::AssertValid();
  68. }
  69. void CEx125View::Dump(CDumpContext& dc) const
  70. {
  71. CView::Dump(dc);
  72. }
  73. CEx125Doc* CEx125View::GetDocument() // non-debug version is inline
  74. {
  75. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CEx125Doc)));
  76. return (CEx125Doc*)m_pDocument;
  77. }
  78. #endif //_DEBUG
  79. /////////////////////////////////////////////////////////////////////////////
  80. // CEx125View message handlers
  81. void CEx125View::OnFileOpen() 
  82. {
  83. CString filename;
  84. //利用通用对话框打开一个AVI文件
  85. static char szFilter[]="AVI文件(*.avi)|*.avi||";
  86. CFileDialog dlg(TRUE,"avi",NULL,OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT,szFilter);
  87. if(dlg.DoModal()==IDOK)
  88. {
  89. filename=dlg.GetPathName();//得到选择的文件名
  90. //如果已经有一个MCIWnd窗口,则将其关闭
  91. if(m_hwndMCIWnd!=NULL)
  92. MCIWndDestroy(m_hwndMCIWnd);
  93. //建立一个MCIWnd窗口
  94. m_hwndMCIWnd=MCIWndCreate(
  95. m_hWnd, //父窗口(视图窗口)的句柄
  96. AfxGetInstanceHandle(), //该实例的句柄
  97. 0, //标志
  98. filename); //文件名
  99. }
  100. }