-
Notifications
You must be signed in to change notification settings - Fork 0
/
CFG_SCR.H
74 lines (68 loc) · 1.63 KB
/
CFG_SCR.H
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
// cfg_scr.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// cfg_scr dialog
class cfg_scr : public CDialog
{
// Construction
public:
cfg_scr(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(cfg_scr)
enum { IDD = IDD_SCRIPT_EDITOR };
CListBox m_commands;
CEdit m_udef1;
CEdit m_udef2;
CEdit m_udef3;
CEdit m_udef4;
CEdit m_udef5;
CEdit m_udef6;
CEdit m_udef7;
CEdit m_udef8;
CEdit m_udef9;
CEdit m_udef10;
CEdit m_udef11;
CEdit m_udef12;
CEdit m_udef13;
CEdit m_udef15;
CEdit m_udef16;
CEdit m_edit;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(cfg_scr)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
void select_script(CWnd &ctl);
void load_script(CString &scr);
// Generated message map functions
//{{AFX_MSG(cfg_scr)
virtual BOOL OnInitDialog();
afx_msg void OnLoad();
afx_msg void OnSave();
virtual void OnCancel();
afx_msg void OnUdefFind1();
afx_msg void OnUdefFind2();
afx_msg void OnUdefFind3();
afx_msg void OnUdefFind4();
afx_msg void OnUdefFind5();
afx_msg void OnUdefFind6();
afx_msg void OnUdefFind7();
afx_msg void OnUdefFind8();
afx_msg void OnUdefFind9();
afx_msg void OnUdefFind10();
afx_msg void OnUdefFind11();
afx_msg void OnUdefFind12();
afx_msg void OnUdefFind13();
afx_msg void OnUdefFind15();
afx_msg void OnUdefFind16();
afx_msg void OnDblclkList1();
afx_msg void OnHelp();
virtual void OnOK();
afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};