summaryrefslogtreecommitdiffabout
path: root/SoundsPage.h
blob: ea67fc3f02398e51a7e5378f41f3e5557162c0a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// SoundsPage.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CSoundsPage dialog

class CSoundsPage : public CPropertyPage
{
	DECLARE_DYNCREATE(CSoundsPage)

// Construction
public:
	void PlayIt(CComboBox& ctl,BOOL bLoop=FALSE);
	void BrowseForSound(CComboBox& ctl);
	CSoundsPage();
	~CSoundsPage();

// Dialog Data
	//{{AFX_DATA(CSoundsPage)
	enum { IDD = IDD_OPTIONS_SOUNDS };
	CButton	m_T42WakePlayCtl;
	CButton	m_T42PromptPlayCtl;
	CButton	m_T42BellPlayCtl;
	CButton	m_T42WakeBrowseCtl;
	CComboBox	m_T42WakeCtl;
	CButton	m_T42PromptBrowseCtl;
	CComboBox	m_T42PromptCtl;
	CButton	m_T42BellBrowseCtl;
	CComboBox	m_T42BellCtl;
	CString	m_T42Bell;
	CString	m_T42Prompt;
	BOOL	m_bT42PromptLoop;
	CString	m_T42Wake;
	//}}AFX_DATA


// Overrides
	// ClassWizard generate virtual function overrides
	//{{AFX_VIRTUAL(CSoundsPage)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	// Generated message map functions
	//{{AFX_MSG(CSoundsPage)
	virtual BOOL OnInitDialog();
	afx_msg void OnT42bellBrowse();
	afx_msg void OnT42promptBrowse();
	afx_msg void OnT42wakeBrowse();
	afx_msg void OnT42bellPlay();
	afx_msg void OnT42promptPlay();
	afx_msg void OnT42wakePlay();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

};