MainFrm.h
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__CDFC71B4_4195_430B_8783_55DC009BA9B8__INCLUDED_)
  5. #define AFX_MAINFRM_H__CDFC71B4_4195_430B_8783_55DC009BA9B8__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "DialogTooBar.h"
  10. class CMainFrame : public CFrameWnd
  11. {
  12. protected: // create from serialization only
  13. CMainFrame();
  14. DECLARE_DYNCREATE(CMainFrame)
  15. // Attributes
  16. public:
  17. CDialogBar DialogTooBar;
  18. //确认启用、禁用“测试”按钮的函数
  19. void OnupdataButton(CCmdUI* pCmdUI);
  20. BOOL ENABLE;
  21. //负责响应“测试”按钮的事件函数
  22. void RefectMessage();
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CMainFrame)
  26. public:
  27. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  28. protected:
  29. virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CMainFrame();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. protected:  // control bar embedded members
  39. CStatusBar  m_wndStatusBar;
  40. CToolBar    m_wndToolBar;
  41. // Generated message map functions
  42. protected:
  43. //{{AFX_MSG(CMainFrame)
  44. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  45. // NOTE - the ClassWizard will add and remove member functions here.
  46. //    DO NOT EDIT what you see in these blocks of generated code!
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. /////////////////////////////////////////////////////////////////////////////
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_MAINFRM_H__CDFC71B4_4195_430B_8783_55DC009BA9B8__INCLUDED_)