1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #include "stdafx.h"
- #include "UPhoneBox.h"
- #include "SetVolumeDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- CSetVolumeDlg::CSetVolumeDlg(CWnd* pParent )
- : CDialog(CSetVolumeDlg::IDD, pParent)
- {
-
- m_lMicVol = 0;
- m_lSpkVol = 0;
-
- }
- void CSetVolumeDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
-
- DDX_Text(pDX, IDC_EDIT_MIC_VOLUME, m_lMicVol);
- DDV_MinMaxLong(pDX, m_lMicVol, 0, 20);
- DDX_Text(pDX, IDC_EDIT_SPEAKER_VOLUME, m_lSpkVol);
- DDV_MinMaxLong(pDX, m_lSpkVol, 0, 20);
-
- }
- BEGIN_MESSAGE_MAP(CSetVolumeDlg, CDialog)
-
-
-
- END_MESSAGE_MAP()
|