MIDIKeyboard.h
上传用户:fs3633
上传日期:2021-05-14
资源大小:909k
文件大小:2k
源码类别:

midi

开发平台:

Visual C++

  1. #if !defined(AFX_MIDIKEYBOARD_H__51B0338E_1002_11D7_865D_0030BD08B6D9__INCLUDED_)
  2. #define AFX_MIDIKEYBOARD_H__51B0338E_1002_11D7_865D_0030BD08B6D9__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MIDIKeyboard.h : header file
  7. //
  8. #include <afxtempl.h>
  9. #include "PianoCtrl.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMIDIKeyboard window
  12. class CMIDIKeyboard : public CPianoCtrl
  13. {
  14. // Construction
  15. public:
  16. CMIDIKeyboard();
  17. // Attributes
  18. public:
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CMIDIKeyboard)
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. virtual ~CMIDIKeyboard();
  28. private:
  29.     // Convert key to note 把琴键转换成音符
  30.     BOOL KeyToNote(UINT Char, unsigned char &NoteId);
  31. public:
  32.     static const unsigned char LOW_NOTE;
  33.     static const unsigned char HIGH_NOTE;
  34. // Generated message map functions 消息响应函数
  35. protected:
  36. //{{AFX_MSG(CMIDIKeyboard)
  37. afx_msg UINT OnGetDlgCode();
  38. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  39. afx_msg void OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);
  40. afx_msg void OnPaint();
  41. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  42. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  43. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. private:
  47.     // Map for holding key/note pairs
  48.     CMap<UINT, UINT, unsigned char, unsigned char> m_KeyMap;
  49.     // Octave 八分音符
  50.     unsigned char m_Oct;
  51.     // Key down flag  标记琴键是否按下
  52.     static const unsigned short KEY_DOWN;
  53.     // Notes per octave 每个八分音符
  54.     static const unsigned char NOTE_PER_OCTAVE;
  55.     // Size of key/note map 琴键大小和音谱
  56.     static const int MAP_SIZE;
  57. };
  58. /////////////////////////////////////////////////////////////////////////////
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  61. #endif // !defined(AFX_MIDIKEYBOARD_H__51B0338E_1002_11D7_865D_0030BD08B6D9__INCLUDED_)