📄 setupaudiodlg.h
字号:
/*
VIS H.323 Video Conference System
--Sample for VIS H.323 DLL Library 2.1 Release
For more information,visit our homepage
[http://www.115studio.com]
or mail to us for tech support and bug report
[support@115studio.com]
2000-2004 115Studio
2004-04-05
*/
#if !defined(AFX_SETUPAUDIODLG_H__1257B7C2_62AF_474F_ADCE_3BE3EFD5E383__INCLUDED_)
#define AFX_SETUPAUDIODLG_H__1257B7C2_62AF_474F_ADCE_3BE3EFD5E383__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// SetupAudioDlg.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CSetupAudioDlg dialog
class CSetupAudioDlg : public CDialog
{
// Construction
public:
CVolumeCtrl m_VolumeIn;
CVolumeCtrl m_VolumeOut;
CSetupAudioDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CSetupAudioDlg)
enum { IDD = IDD_AUDIO_SETUP_DLG };
CSpinButtonCtrl m_spinThreshold;
CComboBox m_comboSilenceDtct;
CComboBox m_comboPreferredCodec;
CSliderCtrl m_sldInputVolume;
CSliderCtrl m_sldOutputVolume;
CSpinButtonCtrl m_spinJitter;
CComboBox m_comboOutputDevice;
CComboBox m_comboInputDevice;
UINT m_jitter;
int m_inputDevice;
int m_outputDevice;
BOOL m_playReceivedVoice;
int m_preferredCodec;
BOOL m_sendLocalVoice;
int m_silenceDtct;
UINT m_threshold;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSetupAudioDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CSetupAudioDlg)
virtual BOOL OnInitDialog();
afx_msg void OnReleasedcaptureInputVolume(NMHDR* pNMHDR, LRESULT* pResult);
afx_msg void OnReleasedcaptureOutputVolume(NMHDR* pNMHDR, LRESULT* pResult);
afx_msg void OnSelchangeInputDevice();
afx_msg void OnSelchangeOutputDevice();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_SETUPAUDIODLG_H__1257B7C2_62AF_474F_ADCE_3BE3EFD5E383__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -