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

书籍源码

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "PlayWave.h"
  5. #include "MainFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMainFrame
  13. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  14. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  15. //{{AFX_MSG_MAP(CMainFrame)
  16. ON_WM_CREATE()
  17. ON_COMMAND(ID_OPEN, OnOpen)
  18. ON_COMMAND(ID_STOP, OnStop)
  19. ON_UPDATE_COMMAND_UI(ID_STOP, OnUpdateStop)
  20. //}}AFX_MSG_MAP
  21. ON_MESSAGE(MM_MCINOTIFY, OnMCINotify)
  22. END_MESSAGE_MAP()
  23. static UINT indicators[] =
  24. {
  25. ID_SEPARATOR,           // status line indicator
  26. ID_INDICATOR_CAPS,
  27. ID_INDICATOR_NUM,
  28. ID_INDICATOR_SCRL,
  29. };
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CMainFrame construction/destruction
  32. CMainFrame::CMainFrame()
  33. {
  34. m_bPlay=FALSE;
  35. m_wave.OpenDevice();
  36. }
  37. CMainFrame::~CMainFrame()
  38. {
  39. if( m_bPlay )
  40. {
  41. m_wave.Stop();
  42. m_wave.CloseDevice();
  43. }
  44. }
  45. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  46. {
  47. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  48. return -1;
  49. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  50. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  51. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  52. {
  53. TRACE0("Failed to create toolbarn");
  54. return -1;      // fail to create
  55. }
  56. if (!m_wndStatusBar.Create(this) ||
  57. !m_wndStatusBar.SetIndicators(indicators,
  58.   sizeof(indicators)/sizeof(UINT)))
  59. {
  60. TRACE0("Failed to create status barn");
  61. return -1;      // fail to create
  62. }
  63. // TODO: Delete these three lines if you don't want the toolbar to
  64. //  be dockable
  65. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  66. EnableDocking(CBRS_ALIGN_ANY);
  67. DockControlBar(&m_wndToolBar);
  68. return 0;
  69. }
  70. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  71. {
  72. if( !CFrameWnd::PreCreateWindow(cs) )
  73. return FALSE;
  74. // TODO: Modify the Window class or styles here by modifying
  75. //  the CREATESTRUCT cs
  76. return TRUE;
  77. }
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CMainFrame diagnostics
  80. #ifdef _DEBUG
  81. void CMainFrame::AssertValid() const
  82. {
  83. CFrameWnd::AssertValid();
  84. }
  85. void CMainFrame::Dump(CDumpContext& dc) const
  86. {
  87. CFrameWnd::Dump(dc);
  88. }
  89. #endif //_DEBUG
  90. /////////////////////////////////////////////////////////////////////////////
  91. // CMainFrame message handlers
  92. void CMainFrame::OnOpen() 
  93. {
  94. CFileDialog FileDlg(TRUE,NULL,NULL,OFN_HIDEREADONLY, "Wave Files (*.wav)|*.wav||");
  95. if (FileDlg.DoModal()==IDCANCEL) return;
  96. if( m_bPlay )
  97. {
  98. m_wave.Stop();
  99. m_bPlay=FALSE;
  100. }
  101. CString strFileName=FileDlg.GetPathName();
  102. m_bPlay=TRUE;
  103. m_wave.Play(this,strFileName);
  104. }
  105. void CMainFrame::OnStop() 
  106. {
  107. if( m_bPlay )
  108. {
  109. m_wave.Stop();
  110. m_bPlay=FALSE;
  111. }
  112. }
  113. void CMainFrame::OnUpdateStop(CCmdUI* pCmdUI) 
  114. {
  115. pCmdUI->Enable( m_bPlay );
  116. }
  117. LRESULT CMainFrame::OnMCINotify(WPARAM wParam,  LPARAM lParam)
  118. {
  119. m_bPlay=FALSE;
  120. return 0;
  121. }