-rw-r--r-- | SoundsPage.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/SoundsPage.h b/SoundsPage.h new file mode 100644 index 0000000..ea67fc3 --- a/dev/null +++ b/SoundsPage.h | |||
@@ -0,0 +1,58 @@ | |||
1 | // SoundsPage.h : header file | ||
2 | // | ||
3 | |||
4 | ///////////////////////////////////////////////////////////////////////////// | ||
5 | // CSoundsPage dialog | ||
6 | |||
7 | class CSoundsPage : public CPropertyPage | ||
8 | { | ||
9 | DECLARE_DYNCREATE(CSoundsPage) | ||
10 | |||
11 | // Construction | ||
12 | public: | ||
13 | void PlayIt(CComboBox& ctl,BOOL bLoop=FALSE); | ||
14 | void BrowseForSound(CComboBox& ctl); | ||
15 | CSoundsPage(); | ||
16 | ~CSoundsPage(); | ||
17 | |||
18 | // Dialog Data | ||
19 | //{{AFX_DATA(CSoundsPage) | ||
20 | enum { IDD = IDD_OPTIONS_SOUNDS }; | ||
21 | CButtonm_T42WakePlayCtl; | ||
22 | CButtonm_T42PromptPlayCtl; | ||
23 | CButtonm_T42BellPlayCtl; | ||
24 | CButtonm_T42WakeBrowseCtl; | ||
25 | CComboBoxm_T42WakeCtl; | ||
26 | CButtonm_T42PromptBrowseCtl; | ||
27 | CComboBoxm_T42PromptCtl; | ||
28 | CButtonm_T42BellBrowseCtl; | ||
29 | CComboBoxm_T42BellCtl; | ||
30 | CStringm_T42Bell; | ||
31 | CStringm_T42Prompt; | ||
32 | BOOLm_bT42PromptLoop; | ||
33 | CStringm_T42Wake; | ||
34 | //}}AFX_DATA | ||
35 | |||
36 | |||
37 | // Overrides | ||
38 | // ClassWizard generate virtual function overrides | ||
39 | //{{AFX_VIRTUAL(CSoundsPage) | ||
40 | protected: | ||
41 | virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support | ||
42 | //}}AFX_VIRTUAL | ||
43 | |||
44 | // Implementation | ||
45 | protected: | ||
46 | // Generated message map functions | ||
47 | //{{AFX_MSG(CSoundsPage) | ||
48 | virtual BOOL OnInitDialog(); | ||
49 | afx_msg void OnT42bellBrowse(); | ||
50 | afx_msg void OnT42promptBrowse(); | ||
51 | afx_msg void OnT42wakeBrowse(); | ||
52 | afx_msg void OnT42bellPlay(); | ||
53 | afx_msg void OnT42promptPlay(); | ||
54 | afx_msg void OnT42wakePlay(); | ||
55 | //}}AFX_MSG | ||
56 | DECLARE_MESSAGE_MAP() | ||
57 | |||
58 | }; | ||