WaveEditCtrl.h
上传用户:dthg120
上传日期:2007-01-01
资源大小:50k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. #if !defined(AFX_WAVEEDITCTRL_H__86B89403_39AB_11D2_B4AD_C89CE0BA5D63__INCLUDED_)
  2. #define AFX_WAVEEDITCTRL_H__86B89403_39AB_11D2_B4AD_C89CE0BA5D63__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // WaveEditCtrl.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CWaveEditCtrl window
  10. // Written by john harte (erinjohn@msn.com)
  11. // WaveEdit Control Copyright (c) 1998 by John Harte.
  12. //
  13. // You may use this code in the development of any software,
  14. //whether for personal use, public domain distribution or
  15. //commercial consumption.
  16. //If you do use any part of this contol code, I simply require
  17. //that you include the above copyright in a manner visible
  18. //to the end user and email me of your intent to use the code.
  19. //Thanks!
  20. ////////////////////////////////////////////////////////////////////////////
  21. class CWaveEditCtrl : public CWnd
  22. {
  23. // Construction
  24. public:
  25. CWaveEditCtrl();
  26. HCURSOR m_hCursorArrow;
  27.     HCURSOR m_hCursorIBeam;
  28.     CPoint m_ptOrigin;
  29.     CPoint m_ptCaretPos;
  30.     CString m_strInputText;
  31. BOOL m_bStopped;
  32.     
  33. // Attributes
  34. public:
  35. // Operations
  36. public:
  37. // Overrides
  38. // ClassWizard generated virtual function overrides
  39. //{{AFX_VIRTUAL(CWaveEditCtrl)
  40. public:
  41. virtual BOOL Create(DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
  42. //}}AFX_VIRTUAL
  43. // Implementation
  44. public:
  45. void KillCaret();
  46. void SetCaret();
  47. void MoveCaret();
  48. virtual ~CWaveEditCtrl();
  49. // Generated message map functions
  50. protected:
  51. //{{AFX_MSG(CWaveEditCtrl)
  52. afx_msg void OnPaint();
  53. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  54. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  55. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  56. //}}AFX_MSG
  57. DECLARE_MESSAGE_MAP()
  58. };
  59. /////////////////////////////////////////////////////////////////////////////
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_WAVEEDITCTRL_H__86B89403_39AB_11D2_B4AD_C89CE0BA5D63__INCLUDED_)