VIDEOPLAYERDLG.H
上传用户:shonly
上传日期:2022-06-05
资源大小:1939k
文件大小:2k
源码类别:

多媒体

开发平台:

Visual C++

  1. // VideoPlayerDlg.h : header file
  2. //
  3. #if !defined(AFX_VIDEOPLAYERDLG_H__B35A40C9_7DB7_11D3_860F_F6E44D6C9F3C__INCLUDED_)
  4. #define AFX_VIDEOPLAYERDLG_H__B35A40C9_7DB7_11D3_860F_F6E44D6C9F3C__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CVideoPlayerDlg dialog
  10. #include "DigitalVideo.h"
  11. class CVideoPlayerDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CVideoPlayerDlg(CWnd* pParent = NULL); // standard constructor
  16. // Dialog Data
  17. //{{AFX_DATA(CVideoPlayerDlg)
  18. enum { IDD = IDD_VIDEOPLAYER_DIALOG };
  19. CScrollBar m_displaybar;
  20. //}}AFX_DATA
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CVideoPlayerDlg)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. HICON    m_hIcon;
  29. CDigitalvideo   m_Video;
  30. BOOL     m_Open;
  31. BOOL     m_Sound;
  32. BOOL     m_Loop;
  33. BOOL     m_FullScreen;
  34. CString  m_str;
  35. CDialog  *Display;
  36. int      m_flag ;
  37. //
  38. // Generated message map functions
  39. //{{AFX_MSG(CVideoPlayerDlg)
  40. virtual BOOL OnInitDialog();
  41. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  42. afx_msg void OnPaint();
  43. afx_msg HCURSOR OnQueryDragIcon();
  44. afx_msg void OnOpen();
  45. afx_msg void OnInformation();
  46. afx_msg void OnStop();
  47. afx_msg void OnPause();
  48. afx_msg void OnPlay();
  49. afx_msg void OnNext();
  50. afx_msg void OnPrev();
  51. afx_msg void OnTimer(UINT nIDEvent);
  52. afx_msg void OnLoop();
  53. afx_msg void OnSound();
  54. afx_msg void OnFullscreen();
  55. afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  56. afx_msg void OnClose();
  57. //}}AFX_MSG
  58. DECLARE_MESSAGE_MAP()
  59. };
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_VIDEOPLAYERDLG_H__B35A40C9_7DB7_11D3_860F_F6E44D6C9F3C__INCLUDED_)