blob: 4fae51a1fcb466fcaf3396958d76653d8cfaf1d7 (
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
|
#ifndef _LUA_OPTIONS_H_
#define _LUA_OPTIONS_H_
class CLuaOptions : public CDlgBase
{
private:
CCtrlListView m_scripts;
void LoadScripts(const TCHAR *scriptDir);
protected:
void OnInitDialog();
INT_PTR DlgProc(UINT msg, WPARAM wParam, LPARAM lParam);
void OnApply();
public:
CLuaOptions(int idDialog);
void CreateLink(CCtrlData& ctrl, const char *szSetting, BYTE type, DWORD iValue);
void CreateLink(CCtrlData& ctrl, const char *szSetting, TCHAR *szValue);
template<class T>
__inline void CreateLink(CCtrlData &ctrl, CMOption<T> &option)
{
ctrl.CreateDbLink(new CMOptionLink<T>(option));
}
static CDlgBase *CreateOptionsPage() { return new CLuaOptions(IDD_OPTIONS_MAIN); }
};
#endif //_LUA_OPTIONS_H_
|