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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
#include "Common.h"
template <typename T>
T * GetComboBoxData(CComboBox & ctrl)
{
return (T*)(ctrl.GetItemData(ctrl.GetCurSel()));
}
SettingsDialog::SettingsDialog(SoundNotifyDataStorage & storage) : _dataStorage(storage)
{
}
BOOL SettingsDialog::PreTranslateMessage(MSG* pMsg)
{
return ::IsDialogMessage(m_hWnd, pMsg);
}
LRESULT SettingsDialog::onInitDialog(UINT, WPARAM, LPARAM, BOOL&)
{
_userCombo = GetDlgItem(IDC_COMBO_USERS);
_protoCombo = GetDlgItem(IDC_COMBO_PROTO);
_chooseButton = GetDlgItem(IDC_BUTTON_CHOOSE_SOUND);
_resetButton = GetDlgItem(IDC_BUTTON_RESET_SOUND);
_playButton = GetDlgItem(IDC_BUTTON_TEST_PLAY);
_soundLabel = GetDlgItem(IDC_LABEL_SOUND);
auto & protocols = _dataStorage.getData();
for (auto it = protocols.begin(), end = protocols.end(); it != end; ++it)
addProtocolItem(*it);
_userCombo.EnableWindow(0);
GetDlgItem(IDC_BUTTON_CHOOSE_SOUND).EnableWindow(0);
GetDlgItem(IDC_BUTTON_RESET_SOUND).EnableWindow(0);
GetDlgItem(IDC_BUTTON_TEST_PLAY).EnableWindow(0);
return TRUE;
}
LRESULT SettingsDialog::onOk(WORD, WORD wID, HWND, BOOL&)
{
EndDialog(wID);
return 0;
}
LRESULT SettingsDialog::onCancel(WORD, WORD wID, HWND, BOOL&)
{
EndDialog(wID);
return 0;
}
LRESULT SettingsDialog::onSelectProtocol(WORD, WORD, HWND, BOOL&)
{
_userCombo.ResetContent();
auto data = GetComboBoxData<ProtocolTable::value_type>(_protoCombo);
for (auto it = data->second.begin(), end = data->second.end(); it != end; ++it)
{
int id = _userCombo.AddString(it->first.c_str());
_userCombo.SetItemData(id, (DWORD_PTR)(&(*it)));
}
_userCombo.EnableWindow(TRUE);
_playButton.EnableWindow(FALSE);
_resetButton.EnableWindow(FALSE);
_chooseButton.EnableWindow(FALSE);
_soundLabel.SetWindowText(TEXT(""));
return 0;
}
LRESULT SettingsDialog::onSelectUser(WORD, WORD, HWND, BOOL &)
{
auto user = GetComboBoxData<UserDataTable::value_type>(_userCombo);
_chooseButton.EnableWindow(TRUE);
BOOL soundSelected = !user->second->soundPath().empty();
_resetButton.EnableWindow(soundSelected);
_playButton.EnableWindow(soundSelected);
setSoundLabelText(user->second->soundPath().c_str());
return 0;
}
LRESULT SettingsDialog::onChooseSound(WORD, WORD, HWND , BOOL&)
{
CFileDialog fileDlg(1, 0, 0, OFN_FILEMUSTEXIST, TEXT("WAV files\0*.wav\0\0"));
if (fileDlg.DoModal() != IDOK)
return 0;
setSoundLabelText(fileDlg.m_szFileName);
auto user = GetComboBoxData<UserDataTable::value_type>(_userCombo);
user->second->setSound(xsn_string(fileDlg.m_szFileName));
_resetButton.EnableWindow(TRUE);
_playButton.EnableWindow(TRUE);
return 0;
}
LRESULT SettingsDialog::onResetSound(WORD, WORD wID, HWND , BOOL&)
{
auto user = GetComboBoxData<UserDataTable::value_type>(_userCombo);
user->second->setSound(xsn_string());
_resetButton.EnableWindow(FALSE);
_playButton.EnableWindow(FALSE);
_soundLabel.SetWindowText(TEXT(""));
return 0;
}
LRESULT SettingsDialog::onTestPlay(WORD, WORD wID, HWND , BOOL&)
{
auto user = GetComboBoxData<UserDataTable::value_type>(_userCombo);
PlaySound(user->second->soundPath().c_str(), nullptr, SND_FILENAME | SND_ASYNC);
return 0;
}
void SettingsDialog::setSoundLabelText(LPCTSTR text)
{
_soundLabel.SetWindowText(PathFindFileName(text));
}
void SettingsDialog::addProtocolItem(ProtocolTable::value_type &value)
{
wchar_t protocol[30];
size_t convertedChars = 0;
mbstowcs_s(&convertedChars, protocol, value.first.c_str(), 30);
int idx = _protoCombo.AddString(protocol);
_protoCombo.SetItemData(idx, (DWORD_PTR)(&value));
}
|