MAINFRM.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "palette.h"
  13. #include "editbar.h"
  14. class CMainFrame : public CFrameWnd
  15. {
  16. protected: // create from serialization only
  17. CMainFrame();
  18. DECLARE_DYNCREATE(CMainFrame)
  19. // Attributes
  20. public:
  21. BOOL m_bColor;
  22. BOOL m_bToolTips;
  23. // Operations
  24. public:
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CMainFrame)
  28. public:
  29. virtual BOOL PreTranslateMessage(MSG* pMsg);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CMainFrame();
  34. void DockControlBarLeftOf(CToolBar* Bar,CToolBar* LeftOf);
  35. #ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. protected:  // control bar embedded members
  40. CStatusBar  m_wndStatusBar;
  41. CToolBar    m_wndMainBar;
  42. CToolBar    m_wndResourceBar;
  43. CToolBar    m_wndDebugBar;
  44. CEditBar    m_wndEditBar;
  45. CToolBar    m_wndBrowseBar;
  46. CPaletteBar m_wndPaletteBar;
  47. // Generated message map functions
  48. protected:
  49. //{{AFX_MSG(CMainFrame)
  50. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  51. afx_msg void OnToolsToolbar();
  52. afx_msg void OnMenuSelection();
  53. afx_msg void OnClose();
  54. //}}AFX_MSG
  55. DECLARE_MESSAGE_MAP()
  56. };
  57. /////////////////////////////////////////////////////////////////////////////