blob: 636b7ae9b1390cc5fddac4b2a7cfa5b3df1ef7ab (
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
|
#include "stdafx.h"
static INT_PTR CALLBACK VariableListDlgProc(HWND hWnd, UINT msg, WPARAM wp, LPARAM lp)
{
switch (msg) {
case WM_INITDIALOG:
TranslateDialogDefault(hWnd);
{
const ICurrencyRatesProvider* pProvider = reinterpret_cast<const ICurrencyRatesProvider*>(lp);
CCurrencyRatesProviderVisitorFormatSpecificator visitor;
pProvider->Accept(visitor);
tostringstream o;
const CCurrencyRatesProviderVisitorFormatSpecificator::TFormatSpecificators& raSpec = visitor.GetSpecificators();
std::for_each(raSpec.begin(), raSpec.end(),
[&o](const CCurrencyRatesProviderVisitorFormatSpecificator::CFormatSpecificator& spec)
{
o << spec.m_sSymbol << '\t' << spec.m_sDesc << L"\r\n";
});
::SetDlgItemText(hWnd, IDC_EDIT_VARIABLE, o.str().c_str());
}
break;
case WM_COMMAND:
if (BN_CLICKED == HIWORD(wp) && (IDOK == LOWORD(wp) || IDCANCEL == LOWORD(wp)))
::EndDialog(hWnd, IDOK);
break;
}
return FALSE;
}
void show_variable_list(HWND hwndParent, const ICurrencyRatesProvider* pProvider)
{
::DialogBoxParam(g_plugin.getInst(),
MAKEINTRESOURCE(IDD_DIALOG_VARIABLE_LIST),
hwndParent,
VariableListDlgProc,
reinterpret_cast<LPARAM>(pProvider));
}
|