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

工具条

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__1E0F37E7_4020_11D1_9FB1_444553540000__INCLUDED_)
  5. #define AFX_MAINFRM_H__1E0F37E7_4020_11D1_9FB1_444553540000__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #include "ToolBarEx.h"
  10. class CMainFrame : public CMDIFrameWnd
  11. {
  12. DECLARE_DYNAMIC(CMainFrame)
  13. public:
  14. CMainFrame();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CMainFrame)
  22. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. public:
  26. virtual ~CMainFrame();
  27. #ifdef _DEBUG
  28. virtual void AssertValid() const;
  29. virtual void Dump(CDumpContext& dc) const;
  30. #endif
  31. protected:  // control bar embedded members
  32. CStatusBar  m_wndStatusBar;
  33. CToolBarEx  m_wndToolBar;
  34. CToolBarEx m_wndTextBar;
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(CMainFrame)
  38. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  39. afx_msg void OnUpdateViewFlatbar(CCmdUI* pCmdUI);
  40. afx_msg void OnViewFlatbar();
  41. afx_msg void OnUpdateToggleCase(CCmdUI* pCmdUI);
  42. afx_msg void OnToggleCase();
  43. //}}AFX_MSG
  44. #if _MFC_VER >= 0x0420
  45. afx_msg void OnCustomToolbarDraw( NMHDR *, LRESULT * );
  46. #endif
  47. afx_msg void OnQueryDelete( NMHDR *, LRESULT * );
  48. afx_msg void OnQueryInsert( NMHDR *, LRESULT * );
  49. DECLARE_MESSAGE_MAP()
  50. private:
  51. BOOL m_bCaseCheck;
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_MAINFRM_H__1E0F37E7_4020_11D1_9FB1_444553540000__INCLUDED_)