MainFrm.h
上传用户:asikq0571
上传日期:2014-07-12
资源大小:528k
文件大小:3k
源码类别:

Internet/IE编程

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__CDDEFF07_5F50_41E9_B306_27E1B76270E8__INCLUDED_)
  5. #define AFX_MAINFRM_H__CDDEFF07_5F50_41E9_B306_27E1B76270E8__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. /////////////////
  10. #include ".CoolBarCoolTabCtrl.h"
  11. /////////////////
  12. class CMainFrame : public CFrameWnd
  13. {
  14. protected: // create from serialization only
  15. CMainFrame();
  16. DECLARE_DYNCREATE(CMainFrame)
  17. // Attributes
  18. public:
  19.     CCoolBar m_wndMyBar1;  //停靠左边窗口
  20. CCoolBar m_wndMyBar2;  //停靠下边窗口
  21.     CCoolTabCtrl m_TabCtrl;    //左边窗口的TAB
  22.     CListCtrl     m_MsgList;    //底窗口的消息列表框
  23.     CImageList      m_ToolBar; 
  24.     CImageList      m_GrayToolBar; 
  25. BOOL IsCmmConnect;
  26. BOOL IsReflashMsg;
  27. BOOL IsFrameCreat;
  28. // Operations
  29. public:
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CMainFrame)
  33. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. public:
  37. void SetCmmPort();
  38. void DisplayEvent(UINT nflag,CString s2);
  39. void UpdateYMGrid();
  40. void UpdateYCGrid();
  41. void UpdateYXGrid();
  42. void DrawGrid();
  43. virtual ~CMainFrame();
  44. #ifdef _DEBUG
  45. virtual void AssertValid() const;
  46. virtual void Dump(CDumpContext& dc) const;
  47. #endif
  48. protected:  // control bar embedded members
  49. CStatusBar  m_wndStatusBar;
  50. CToolBar    m_wndToolBar;
  51. // Generated message map functions
  52. protected:
  53. //{{AFX_MSG(CMainFrame)
  54. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  55. afx_msg void OnSetCmmPort();
  56. afx_msg void OnSetProtocol();
  57. afx_msg void OnConnectCmm();
  58. afx_msg void OnDisconncmm();
  59. afx_msg void OnUpdateConcmm(CCmdUI* pCmdUI);
  60. afx_msg void OnUpdateDisconcmm(CCmdUI* pCmdUI);
  61. afx_msg void OnClose();
  62. afx_msg void OnViewData();
  63. afx_msg void OnViewMessage();
  64. afx_msg void OnUpdateViewData(CCmdUI* pCmdUI);
  65. afx_msg void OnUpdateViewMessage(CCmdUI* pCmdUI);
  66. afx_msg void OnPauseDsp();
  67. afx_msg void OnReflashDsp();
  68. afx_msg void OnUpdatePauseDsp(CCmdUI* pCmdUI);
  69. afx_msg void OnUpdateReflashDsp(CCmdUI* pCmdUI);
  70. afx_msg void OnClearDsp();
  71. afx_msg void OnSize(UINT nType, int cx, int cy);
  72. //}}AFX_MSG
  73. DECLARE_MESSAGE_MAP()
  74. };
  75. /////////////////////////////////////////////////////////////////////////////
  76. //{{AFX_INSERT_LOCATION}}
  77. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  78. #endif // !defined(AFX_MAINFRM_H__CDDEFF07_5F50_41E9_B306_27E1B76270E8__INCLUDED_)