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

midi

开发平台:

Visual C++

  1. #if !defined(AFX_MIDIDEVSDLG_H__1BDCC560_1300_11D7_865D_0030BD08B6D9__INCLUDED_)
  2. #define AFX_MIDIDEVSDLG_H__1BDCC560_1300_11D7_865D_0030BD08B6D9__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MIDIDevsDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMIDIDevsDlg dialog
  10. class CMIDIDevsDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CMIDIDevsDlg(CWnd* pParent = NULL);   // standard constructor
  15.     //
  16.     // Accessors
  17.     //
  18.     UINT GetOutDevId() const { return m_OutDevId; }
  19.     UINT GetInDevId() const { return m_InDevId; }
  20.     //
  21.     // Mutators
  22.     //
  23.     void SetOutDevId(UINT OutDevId) { m_OutDevId = OutDevId; }
  24.     void SetInDevId(UINT InDevId) { m_InDevId = InDevId; }
  25.     // Has the client selected a new output device?
  26.     bool IsOutDevChanged() const { return m_OutChanged; }
  27.     // Has the client selected a new input device?
  28.     bool IsInDevChanged() const { return m_InChanged; }
  29. // Dialog Data
  30. //{{AFX_DATA(CMIDIDevsDlg)
  31. enum { IDD = IDD_MIDI_DEVS_DLG };
  32. CComboBox m_OutDevsCombo;
  33. CComboBox m_InDevsCombo;
  34. //}}AFX_DATA
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CMIDIDevsDlg)
  38. protected:
  39. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. protected:
  43.     UINT m_OutDevId;
  44.     UINT m_InDevId;
  45.     bool m_OutChanged;
  46.     bool m_InChanged;
  47. // Generated message map functions 消息处理函数
  48. //{{AFX_MSG(CMIDIDevsDlg)
  49. virtual BOOL OnInitDialog();
  50. virtual void OnOK();
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. public:
  54.     afx_msg void OnCbnSelchangeMidiOutDevs();
  55. };
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  58. #endif // !defined(AFX_MIDIDEVSDLG_H__1BDCC560_1300_11D7_865D_0030BD08B6D9__INCLUDED_)