blob: fa5c6dc82393570f2bc953470edef19fe72dbddc (
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
|
#pragma once
class CMLuaOptions : public CDlgBase
{
private:
bool isScriptListInit;
CCtrlCheck m_popupOnError;
CCtrlCheck m_popupOnObsolete;
CCtrlListView m_scripts;
CCtrlButton m_reload;
void LoadScripts();
protected:
void OnInitDialog();
void OnApply();
void OnScriptListClick(CCtrlListView::TEventInfo *evt);
void OnReload(CCtrlBase*);
INT_PTR DlgProc(UINT msg, WPARAM wParam, LPARAM lParam);
public:
CMLuaOptions();
};
|