QuakeGod
2023-10-23 4cda72771765720a6a8721bd8844945c2403afe6
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
#pragma once
 
 
 
// CMTerm2CtrlView 窗体视图
 
class CMTerm2CtrlView : public CFormView
{
    DECLARE_DYNCREATE(CMTerm2CtrlView)
 
protected:
    CMTerm2CtrlView();           // 动态创建所使用的受保护的构造函数
    virtual ~CMTerm2CtrlView();
 
public:
//    CMTerm2Doc* GetDocument() const;
    CStatusBar * m_pStatusBar;
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_MTerm2CtrlView };
#endif
#ifdef _DEBUG
    virtual void AssertValid() const;
#ifndef _WIN32_WCE
    virtual void Dump(CDumpContext& dc) const;
#endif
#endif
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
 
    DECLARE_MESSAGE_MAP()
public:
    virtual void OnInitialUpdate();
    afx_msg void OnBnClickedButtonLoad();
    afx_msg void OnBnClickedButtonSave();
    afx_msg void OnBnClickedButtonConvert();
    afx_msg void OnBnClickedButtonTrnsTotxt();
    afx_msg void OnBnClickedButtonTrnsPrg();
    virtual void OnUpdate(CView* /*pSender*/, LPARAM /*lHint*/, CObject* /*pHint*/);
    afx_msg void OnBnClickedButton4();
};