QuakeGod
2022-05-10 65f7136c6dfebde14a07c89c4366fb8bed2fe37f
提交 | 用户 | age
0ed438 1 
Q 2 // MainFrm.h: CMainFrame 类的接口
3 //
4
5 #pragma once
65f713 6 #include "NavView.h"
0ed438 7 #include "MyPaneLog.h"
Q 8
9 //class CMyPaneLog;
10 #include "MyDialogLog.h"
11 #include "../MyLib/StaticEx.h"
12 class CMainFrame : public CMDIFrameWndEx
13 {
14     DECLARE_DYNAMIC(CMainFrame)
15 public:
16     CMainFrame() noexcept;
17
18 // 特性
19 public:
20
21 // 操作
22 public:
23
24 // 重写
25 public:
26     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
27
28 // 实现
29 public:
30     virtual ~CMainFrame();
31 #ifdef _DEBUG
32     virtual void AssertValid() const;
33     virtual void Dump(CDumpContext& dc) const;
34 #endif
35
36 protected:  // 控件条嵌入成员
37     CMFCToolBar          m_wndToolBar;
38
39     CMFCToolBar          m_wndToolBar_FuncKey;
40     CMFCToolBar          m_wndToolBar_Edit;
41     CMFCToolBar          m_wndToolBar_Num;
42     CMFCToolBar          m_wndToolBar_InputShow;
43     CMFCToolBar          m_wndToolBar_Comments;
44     
65f713 45     CNavView        m_wndNavView;
Q 46
0ed438 47     CEdit                m_InputShowEdit;
Q 48     CStaticEx            m_InputShowStatic;
49     CMFCStatusBar        m_wndStatusBar;
50
51     CMyPaneLog        m_wndMyPaneLog;
52 //    CMyDialogLog    m_dlgMyLog;
53
54 // 生成的消息映射函数
55 protected:
56     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
57     DECLARE_MESSAGE_MAP()
58
59 public:
60     afx_msg void OnUploadFromPlc();
61     afx_msg void OnViewFunckeyBar();
62     afx_msg void OnUpdateViewFunckeyBar(CCmdUI *pCmdUI);
63     afx_msg void OnViewInputBar();
64     afx_msg void OnUpdateViewInputBar(CCmdUI *pCmdUI);
65     afx_msg void OnViewNumkeyBar();
66     afx_msg void OnUpdateViewNumkeyBar(CCmdUI *pCmdUI);
67     afx_msg void OnViewInputsegBar();
68     afx_msg void OnUpdateViewInputsegBar(CCmdUI *pCmdUI);
69     afx_msg void OnViewCommentsBar();
70     afx_msg void OnUpdateViewCommentsBar(CCmdUI *pCmdUI);
71 //    afx_msg void OnMenuViewLds();
72 //    afx_msg void OnMenuViewBld();
73 //    afx_msg void OnMenuViewBnl();
74
75     afx_msg void OnMenuShowLog();
76 };
77
78