RmPlayerDlg.h
上传用户:longxing
上传日期:2009-09-27
资源大小:44k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. // RmPlayerDlg.h : header file
  2. //
  3. #if !defined(AFX_RMPLAYERDLG_H__CB0BD267_7981_11D6_8F32_00E04CE76240__INCLUDED_)
  4. #define AFX_RMPLAYERDLG_H__CB0BD267_7981_11D6_8F32_00E04CE76240__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CRmPlayerDlg dialog
  10. #include "RealAudio.h"
  11. #define IDC_PLAYER WM_USER+1000
  12. class CRmPlayerDlg : public CDialog
  13. {
  14. // Construction
  15. public:
  16. CRmPlayerDlg(CWnd* pParent = NULL); // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CRmPlayerDlg)
  19. enum { IDD = IDD_RMPLAYER_DIALOG };
  20. // NOTE: the ClassWizard will add data members here
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CRmPlayerDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. HICON m_hIcon;
  30. CRealAudio m_Player;
  31. // Generated message map functions
  32. //{{AFX_MSG(CRmPlayerDlg)
  33. virtual BOOL OnInitDialog();
  34. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  35. afx_msg void OnPaint();
  36. afx_msg HCURSOR OnQueryDragIcon();
  37. afx_msg void OnFileOpen();
  38. afx_msg void OnFileExit();
  39. afx_msg void OnViewFullscreen();
  40. afx_msg void OnViewOriginal();
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_RMPLAYERDLG_H__CB0BD267_7981_11D6_8F32_00E04CE76240__INCLUDED_)