WaveDlg.h
上传用户:amei960
上传日期:2007-02-05
资源大小:143k
文件大小:2k
源码类别:

Audio

开发平台:

Visual C++

  1. // WaveDlg.h : header file
  2. //
  3. #if !defined(AFX_WAVEDLG_H__72A8C6AF_988F_4C61_9A83_FD1F823584CF__INCLUDED_)
  4. #define AFX_WAVEDLG_H__72A8C6AF_988F_4C61_9A83_FD1F823584CF__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CWaveDlg dialog
  10. #include "WaveOut.h"
  11. #include "WaveIn.h"
  12. #include "GsmCompress.h"
  13. #include "G729aCompress.h"
  14. #include "Filter.h"
  15. class CWaveDlg : public CDialog
  16. {
  17. // Construction
  18. public:
  19. CWaveDlg(CWnd* pParent = NULL); // standard constructor
  20. // Dialog Data
  21. //{{AFX_DATA(CWaveDlg)
  22. enum { IDD = IDD_WAVE_DIALOG };
  23. CStatic m_Show;
  24. //}}AFX_DATA
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CWaveDlg)
  27. protected:
  28. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. protected:
  32. HICON m_hIcon;
  33. // Generated message map functions
  34. //{{AFX_MSG(CWaveDlg)
  35. virtual BOOL OnInitDialog();
  36. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  37. afx_msg void OnPaint();
  38. afx_msg HCURSOR OnQueryDragIcon();
  39. afx_msg void OnStart();
  40. afx_msg void OnStop();
  41. afx_msg void OnStartplay();
  42. afx_msg void OnStopplay();
  43. virtual void OnCancel();
  44. //}}AFX_MSG
  45. afx_msg void OnOpenMessage(WPARAM wParam,LPARAM lParam);
  46. afx_msg void OnCloseMessage(WPARAM wParam,LPARAM lParam);
  47. afx_msg void OnDataMessage(WPARAM wParam,LPARAM lParam);
  48. DECLARE_MESSAGE_MAP()
  49. private:
  50. CWaveIn m_WaveIn;
  51. CWaveOut m_WaveOut;
  52. CCompress* m_Compress;
  53. CG729aCompress m_G729aCompress;
  54. CGsmCompress m_Gsm;
  55. BOOL bRecord;
  56. char buf[5000];
  57. int len;
  58. char buf1[5000];
  59. int len1;
  60. CRect rc;
  61. CFilter filter;
  62. };
  63. //{{AFX_INSERT_LOCATION}}
  64. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  65. #endif // !defined(AFX_WAVEDLG_H__72A8C6AF_988F_4C61_9A83_FD1F823584CF__INCLUDED_)