MainFrm.h
上传用户:seaboy_04
上传日期:2013-02-24
资源大小:284k
文件大小:2k
源码类别:

其他行业

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__040B30DF_18FC_4C2B_9A2B_FF94BE8E9A6F__INCLUDED_)
  5. #define AFX_MAINFRM_H__040B30DF_18FC_4C2B_9A2B_FF94BE8E9A6F__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CMainFrame : public CMDIFrameWnd
  10. {
  11. DECLARE_DYNAMIC(CMainFrame)
  12. public:
  13. CMainFrame();
  14.     
  15. // Attributes
  16. public:
  17.    HWND  vHwnd;
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CMainFrame)
  23. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. virtual ~CMainFrame();
  28. #ifdef _DEBUG
  29. virtual void AssertValid() const;
  30. virtual void Dump(CDumpContext& dc) const;
  31. #endif
  32. protected:  // control bar embedded members
  33. CStatusBar  m_wndStatusBar;
  34. CToolBar    m_wndToolBar;
  35. CToolBar    m_wndDrawToolBar;
  36. // Generated message map functions
  37. protected:
  38. //{{AFX_MSG(CMainFrame)
  39. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  40. afx_msg void OnViewDrawtoolbar();
  41. afx_msg void OnUpdateViewDrawtoolbar(CCmdUI* pCmdUI);
  42. afx_msg void OnClose();
  43. afx_msg void OnTimer(UINT nIDEvent);
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. /////////////////////////////////////////////////////////////////////////////
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_MAINFRM_H__040B30DF_18FC_4C2B_9A2B_FF94BE8E9A6F__INCLUDED_)