WaveEditView.h
上传用户:samlee1007
上传日期:2007-01-02
资源大小:123k
文件大小:3k
源码类别:

文件操作

开发平台:

Visual C++

  1. #if !defined(AFX_WAVEEDITVIEW_H__618031BB_6A68_11D2_B4AD_DEC1CAFE5B54__INCLUDED_)
  2. #define AFX_WAVEEDITVIEW_H__618031BB_6A68_11D2_B4AD_DEC1CAFE5B54__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // WaveEditView.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CWaveEditView form view
  10. #ifndef __AFXEXT_H__
  11. #include <afxext.h>
  12. #endif
  13. //#include "WaveEditCtrl.h"
  14. #include "WaveEditSvr.h"
  15. class CWaveEditView : public CFormView
  16. {
  17. int m_cxChar;
  18.     int m_cyChar;
  19. int m_nTextPos;
  20.             
  21.     HCURSOR m_hCursorArrow;
  22.     HCURSOR m_hCursorIBeam;
  23.     CPoint m_ptCaretOrigin;
  24.     CPoint m_ptCaretPos;
  25.     CString m_strInputText;
  26.     
  27.     void DrawBack(CDC*);
  28. protected:
  29. IWaveEditSvr m_waveClientObj;
  30. CRect rcClient;
  31. CWaveEditView();           // protected constructor used by dynamic creation
  32. DECLARE_DYNCREATE(CWaveEditView)
  33. // Form Data
  34. public:
  35. //{{AFX_DATA(CWaveEditView)
  36. enum { IDD = IDD_WAVE_EDIT };
  37. // NOTE: the ClassWizard will add data members here
  38. //}}AFX_DATA
  39. // Attributes
  40. public:
  41. BOOL m_bPlaying;
  42. BOOL m_bStopped;
  43. BOOL m_bPaused;
  44. // Operations
  45. public:
  46. BOOL m_bSvrTimerStopped;
  47. void SetStop();
  48. void SetPause();
  49. void SetPlay();
  50. void SetCursor();
  51. // Overrides
  52. // ClassWizard generated virtual function overrides
  53. //{{AFX_VIRTUAL(CWaveEditView)
  54. public:
  55. virtual void OnInitialUpdate();
  56. protected:
  57. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  58. //}}AFX_VIRTUAL
  59. // Implementation
  60. protected:
  61. virtual ~CWaveEditView();
  62. #ifdef _DEBUG
  63. virtual void AssertValid() const;
  64. virtual void Dump(CDumpContext& dc) const;
  65. #endif
  66. // Generated message map functions
  67. //{{AFX_MSG(CWaveEditView)
  68. afx_msg void OnPause();
  69. afx_msg void OnUpdatePause(CCmdUI* pCmdUI);
  70. afx_msg void OnPlay();
  71. afx_msg void OnUpdatePlay(CCmdUI* pCmdUI);
  72. afx_msg void OnStop();
  73. afx_msg void OnUpdateStop(CCmdUI* pCmdUI);
  74. afx_msg void OnTimer(UINT nIDEvent);
  75. afx_msg void OnSetFocus(CWnd* pOldWnd);
  76. afx_msg void OnKillFocus(CWnd* pNewWnd);
  77. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  78. afx_msg void OnPaint();
  79. //}}AFX_MSG
  80. DECLARE_MESSAGE_MAP()
  81. };
  82. /////////////////////////////////////////////////////////////////////////////
  83. //{{AFX_INSERT_LOCATION}}
  84. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  85. #endif // !defined(AFX_WAVEEDITVIEW_H__618031BB_6A68_11D2_B4AD_DEC1CAFE5B54__INCLUDED_)