MainFrm.h
上传用户:qifu0001
上传日期:2007-01-02
资源大小:52k
文件大小:1k
源码类别:

TreeView控件

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CMainFrame : public CFrameWnd
  5. {
  6. protected: // create from serialization only
  7. CMainFrame();
  8. DECLARE_DYNCREATE(CMainFrame)
  9. // Attributes
  10. public:
  11. BOOL m_bSpecialCaption;
  12. // Operations
  13. public:
  14. // Overrides
  15. // ClassWizard generated virtual function overrides
  16. //{{AFX_VIRTUAL(CMainFrame)
  17. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  18. //}}AFX_VIRTUAL
  19. // Implementation
  20. public:
  21. virtual ~CMainFrame();
  22. #ifdef _DEBUG
  23. virtual void AssertValid() const;
  24. virtual void Dump(CDumpContext& dc) const;
  25. #endif
  26. protected:  // control bar embedded members
  27. CStatusBar  m_wndStatusBar;
  28. CToolBar    m_wndToolBar;
  29. // Generated message map functions
  30. protected:
  31. //{{AFX_MSG(CMainFrame)
  32. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  33. afx_msg void OnViewSpecialCaption();
  34. afx_msg void OnUpdateViewSpecialCaption(CCmdUI* pCmdUI);
  35. afx_msg void OnViewNetscapeSheet();
  36. afx_msg void OnViewSimpleSheet();
  37. afx_msg void OnViewUsersSheet();
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };
  41. /////////////////////////////////////////////////////////////////////////////