QuakeGod
2024-12-24 61deef5cdf96cbfdd6ad45be49e80d597c00ca65
提交 | 用户 | age
418cb3 1 #pragma once
Q 2
3
4
5 // CMTerm1CtrlView 窗体视图
6
7 class CMTerm1CtrlView : public CFormView
8 {
9     DECLARE_DYNCREATE(CMTerm1CtrlView)
10
11 protected:
12     CMTerm1CtrlView();           // 动态创建所使用的受保护的构造函数
13     virtual ~CMTerm1CtrlView();
14
15 public:
16 //    CMTerm1Doc* GetDocument() const;
17     CMFCStatusBar * m_pStatusBar;
18 #ifdef AFX_DESIGN_TIME
19     enum { IDD = IDD_MTerm1CtrlView };
20 #endif
21 #ifdef _DEBUG
22     virtual void AssertValid() const;
23 #ifndef _WIN32_WCE
24     virtual void Dump(CDumpContext& dc) const;
25 #endif
26 #endif
27
28 protected:
29     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
30
31     DECLARE_MESSAGE_MAP()
32 public:
33     virtual void OnInitialUpdate();
34     afx_msg void OnBnClickedButtonLoad();
35     afx_msg void OnBnClickedButtonSave();
36     afx_msg void OnBnClickedButtonConvert();
37     afx_msg void OnBnClickedButtonTrnsTotxt();
38     afx_msg void OnBnClickedButtonTrnsPrg();
39     virtual void OnUpdate(CView* /*pSender*/, LPARAM /*lHint*/, CObject* /*pHint*/);
40     afx_msg void OnBnClickedButton4();
61deef 41     afx_msg void OnSize(UINT nType, int cx, int cy);
418cb3 42 };
Q 43
44