summaryrefslogtreecommitdiffabout
path: root/PropsSounds.h
Unidiff
Diffstat (limited to 'PropsSounds.h') (more/less context) (ignore whitespace changes)
-rw-r--r--PropsSounds.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/PropsSounds.h b/PropsSounds.h
new file mode 100644
index 0000000..05aea4c
--- a/dev/null
+++ b/PropsSounds.h
@@ -0,0 +1,58 @@
1// PropsSounds.h : header file
2//
3
4/////////////////////////////////////////////////////////////////////////////
5// CPropsSounds dialog
6
7class CPropsSounds : public CPropertyPage
8{
9 DECLARE_DYNCREATE(CPropsSounds)
10
11// Construction
12public:
13 void Play(CComboBox& ctl);
14 void Browse(CComboBox& ctl);
15 CBellsNWhistles* m_bnw;
16 CPropsSounds();
17 ~CPropsSounds();
18
19// Dialog Data
20 //{{AFX_DATA(CPropsSounds)
21 enum { IDD = IDD_PROPS_SOUNDS };
22 CButtonm_RequestPlayCtl;
23 CButtonm_RequestBrowseCtl;
24 CComboBoxm_RequestCtl;
25 CButtonm_SuccessPlayCtl;
26 CButtonm_SuccessBrowseCtl;
27 CComboBoxm_SuccessCtl;
28 CButtonm_AbortPlayCtl;
29 CButtonm_AbortBrowseCtl;
30 CComboBoxm_AbortCtl;
31 CStringm_Abort;
32 CStringm_Success;
33 CStringm_Request;
34 //}}AFX_DATA
35
36
37// Overrides
38 // ClassWizard generate virtual function overrides
39 //{{AFX_VIRTUAL(CPropsSounds)
40 protected:
41 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
42 //}}AFX_VIRTUAL
43
44// Implementation
45protected:
46 // Generated message map functions
47 //{{AFX_MSG(CPropsSounds)
48 virtual BOOL OnInitDialog();
49 afx_msg void OnAbortedBrowse();
50 afx_msg void OnFinishedBrowse();
51 afx_msg void OnRingBrowse();
52 afx_msg void OnAbortedPlay();
53 afx_msg void OnFinishedPlay();
54 afx_msg void OnRingPlay();
55 //}}AFX_MSG
56 DECLARE_MESSAGE_MAP()
57
58};