MyCDPlayerDlg.h
上传用户:sdpcwz
上传日期:2009-12-14
资源大小:1237k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // MyCDPlayerDlg.h : header file
  2. //
  3. #if !defined(AFX_MYCDPLAYERDLG_H__F72E7867_6A64_11D6_8F32_00E04CE76240__INCLUDED_)
  4. #define AFX_MYCDPLAYERDLG_H__F72E7867_6A64_11D6_8F32_00E04CE76240__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include "CDAudio.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CMyCDPlayerDlg dialog
  11. class CMyCDPlayerDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CMyCDPlayerDlg(CWnd* pParent = NULL); // standard constructor
  16. CCDAudio m_CDAudio;
  17. // Dialog Data
  18. //{{AFX_DATA(CMyCDPlayerDlg)
  19. enum { IDD = IDD_MYCDPLAYER_DIALOG };
  20. CComboBox m_lstMusics;
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CMyCDPlayerDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. HICON m_hIcon;
  30. // Generated message map functions
  31. //{{AFX_MSG(CMyCDPlayerDlg)
  32. virtual BOOL OnInitDialog();
  33. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  34. afx_msg void OnPaint();
  35. afx_msg HCURSOR OnQueryDragIcon();
  36. afx_msg void OnTimer(UINT nIDEvent);
  37. afx_msg void OnPlay();
  38. afx_msg void OnStop();
  39. afx_msg void OnPause();
  40. afx_msg void OnForward();
  41. afx_msg void OnBack();
  42. afx_msg void OnSkipback();
  43. afx_msg void OnSkipforward();
  44. afx_msg void OnSelchangeMusicList();
  45. afx_msg void OnDestroy();
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_MYCDPLAYERDLG_H__F72E7867_6A64_11D6_8F32_00E04CE76240__INCLUDED_)