DESCallbackDlg.cpp
上传用户:hhs829
上传日期:2022-06-17
资源大小:586k
文件大小:4k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. // DESCallbackDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "DESCallback.h"
  5. #include "DESCallbackDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CDESCallbackDlg dialog
  13. CDESCallbackDlg::CDESCallbackDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CDESCallbackDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CDESCallbackDlg)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  20. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  21. mCBController.AddRef();
  22. }
  23. void CDESCallbackDlg::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CDialog::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CDESCallbackDlg)
  27. // NOTE: the ClassWizard will add DDX and DDV calls here
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CDESCallbackDlg, CDialog)
  31. //{{AFX_MSG_MAP(CDESCallbackDlg)
  32. ON_WM_PAINT()
  33. ON_WM_QUERYDRAGICON()
  34. ON_BN_CLICKED(IDC_BUTTON_RENDERFILE, OnButtonRenderfile)
  35. ON_BN_CLICKED(IDC_BUTTON_RUN, OnButtonRun)
  36. ON_BN_CLICKED(IDC_BUTTON_STOP, OnButtonStop)
  37. //}}AFX_MSG_MAP
  38. END_MESSAGE_MAP()
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CDESCallbackDlg message handlers
  41. BOOL CDESCallbackDlg::OnInitDialog()
  42. {
  43. CDialog::OnInitDialog();
  44. // Set the icon for this dialog.  The framework does this automatically
  45. //  when the application's main window is not a dialog
  46. SetIcon(m_hIcon, TRUE); // Set big icon
  47. SetIcon(m_hIcon, FALSE); // Set small icon
  48. // TODO: Add extra initialization here
  49. return TRUE;  // return TRUE  unless you set the focus to a control
  50. }
  51. // If you add a minimize button to your dialog, you will need the code below
  52. //  to draw the icon.  For MFC applications using the document/view model,
  53. //  this is automatically done for you by the framework.
  54. void CDESCallbackDlg::OnPaint() 
  55. {
  56. if (IsIconic())
  57. {
  58. CPaintDC dc(this); // device context for painting
  59. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  60. // Center icon in client rectangle
  61. int cxIcon = GetSystemMetrics(SM_CXICON);
  62. int cyIcon = GetSystemMetrics(SM_CYICON);
  63. CRect rect;
  64. GetClientRect(&rect);
  65. int x = (rect.Width() - cxIcon + 1) / 2;
  66. int y = (rect.Height() - cyIcon + 1) / 2;
  67. // Draw the icon
  68. dc.DrawIcon(x, y, m_hIcon);
  69. }
  70. else
  71. {
  72. CDialog::OnPaint();
  73. }
  74. }
  75. // The system calls this to obtain the cursor to display while the user drags
  76. //  the minimized window.
  77. HCURSOR CDESCallbackDlg::OnQueryDragIcon()
  78. {
  79. return (HCURSOR) m_hIcon;
  80. }
  81. void CDESCallbackDlg::OnButtonRenderfile() 
  82. {
  83. // TODO: Add your control notification handler code here
  84. // mFilePath = "F:\beatle.mpeg";
  85. // mFilePath = "F:\SampleMpeg2.mpg";
  86. // mFilePath = "F:\IKeaMpg2.mpg";
  87. // mFilePath = "F:\aviDemo.AVI";
  88. // mFilePath = "F:\dieke.mp3";
  89. // mFilePath = "F:\test\NorwayForest.ac3";
  90. // mFilePath = "F:\swimming.mov";
  91. // mFilePath = "F:\Test\DV\Ocean2.dv";
  92. // mFilePath = "F:\beatle.asf";
  93. CString   strFilter = "All File (*.*)|*.*|";
  94. CFileDialog   dlgOpen(TRUE, NULL, NULL, OFN_HIDEREADONLY, strFilter, NULL);
  95. if (IDOK != dlgOpen.DoModal()) 
  96. {
  97. return;
  98. }
  99. mFilePath = dlgOpen.GetPathName();
  100. mFilterGraph.Stop();
  101. mFilterGraph.Release();
  102. if (mFilterGraph.Create())
  103. {
  104. IObjectWithSite * pSite = NULL;
  105. HRESULT hr = mFilterGraph.GetGraph()->QueryInterface(IID_IObjectWithSite, (void **)&pSite);
  106. if (pSite)
  107. {
  108. pSite->SetSite((IUnknown*) &mCBController);
  109. }
  110. mFilterGraph.RenderFile(mFilePath);
  111. if (pSite)
  112. {
  113. pSite->SetSite(NULL);
  114. pSite->Release();
  115. }
  116. }
  117. }
  118. void CDESCallbackDlg::OnButtonRun() 
  119. {
  120. // TODO: Add your control notification handler code here
  121. mFilterGraph.Run();
  122. }
  123. void CDESCallbackDlg::OnButtonStop() 
  124. {
  125. // TODO: Add your control notification handler code here
  126. mFilterGraph.Stop();
  127. }