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

DirextX编程

开发平台:

Visual C++

  1. // SimplePlayerDlg.h : header file
  2. //
  3. #if !defined(AFX_SIMPLEPLAYERDLG_H__3599FE35_3322_4CC7_B30B_6D6050C2EDFF__INCLUDED_)
  4. #define AFX_SIMPLEPLAYERDLG_H__3599FE35_3322_4CC7_B30B_6D6050C2EDFF__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CSimplePlayerDlg dialog
  10. #include <streams.h>
  11. #include "CDXGraph.h"
  12. #define SLIDER_TIMER   100
  13. class CSimplePlayerDlg : public CDialog
  14. {
  15. // Construction
  16. public:
  17. CSimplePlayerDlg(CWnd* pParent = NULL); // standard constructor
  18. ~CSimplePlayerDlg();
  19. // Dialog Data
  20. //{{AFX_DATA(CSimplePlayerDlg)
  21. enum { IDD = IDD_SIMPLEPLAYER_DIALOG };
  22. CSliderCtrl mSliderGraph;
  23. CStatic mVideoWindow;
  24. //}}AFX_DATA
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CSimplePlayerDlg)
  27. public:
  28. virtual BOOL PreTranslateMessage(MSG* pMsg);
  29. virtual BOOL DestroyWindow();
  30. protected:
  31. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. protected:
  35. HICON m_hIcon;
  36. CDXGraph *   mFilterGraph;     // Filter Graph封装
  37. CString      mSourceFile;      // 源文件
  38. UINT         mSliderTimer;     // 定时器ID
  39. void CreateGraph(void);        // 创建Filter Graph
  40. void DestroyGraph(void);       // 析构Filter Graph
  41. void RestoreFromFullScreen(void);
  42. // Just for testing...
  43. HRESULT FindFilterByInterface(REFIID riid, IBaseFilter** ppFilter);
  44. void ShowVRPropertyPage(void);
  45. // Generated message map functions
  46. //{{AFX_MSG(CSimplePlayerDlg)
  47. virtual BOOL OnInitDialog();
  48. afx_msg void OnPaint();
  49. afx_msg HCURSOR OnQueryDragIcon();
  50. afx_msg void OnButtonOpen();
  51. afx_msg void OnButtonPlay();
  52. afx_msg void OnButtonPause();
  53. afx_msg void OnButtonStop();
  54. afx_msg void OnButtonGrab();
  55. afx_msg void OnButtonFullscreen();
  56. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  57. afx_msg void OnTimer(UINT nIDEvent);
  58. afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  59. afx_msg void OnButtonTest();
  60. //}}AFX_MSG
  61. afx_msg LRESULT OnGraphNotify(WPARAM inWParam, LPARAM inLParam);
  62. DECLARE_MESSAGE_MAP()
  63. };
  64. //{{AFX_INSERT_LOCATION}}
  65. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  66. #endif // !defined(AFX_SIMPLEPLAYERDLG_H__3599FE35_3322_4CC7_B30B_6D6050C2EDFF__INCLUDED_)