MainFrm.cpp
上传用户:rxhxxy
上传日期:2007-01-02
资源大小:72k
文件大小:3k
源码类别:

TreeView控件

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "TreeMenuDemo.h"
  5. #include "MainFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMainFrame
  13. IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWnd)
  14. BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
  15. //{{AFX_MSG_MAP(CMainFrame)
  16. ON_WM_CREATE()
  17. ON_COMMAND(IDM_PANE, OnPane)
  18. ON_UPDATE_COMMAND_UI(IDM_PANE, OnUpdatePane)
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. static UINT indicators[] =
  22. {
  23. ID_SEPARATOR,           // status line indicator
  24. ID_INDICATOR_CAPS,
  25. ID_INDICATOR_NUM,
  26. ID_INDICATOR_SCRL,
  27. };
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CMainFrame construction/destruction
  30. CMainFrame::CMainFrame()
  31. {
  32. // TODO: add member initialization code here
  33. }
  34. CMainFrame::~CMainFrame()
  35. {
  36. }
  37. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  38. {
  39. if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  40. return -1;
  41. if (!m_wndToolBar.Create(this) ||
  42. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  43. {
  44. TRACE0("Failed to create toolbarn");
  45. return -1;      // fail to create
  46. }
  47. m_wndToolBar.ModifyStyle(0, TBSTYLE_FLAT);
  48. // <SIDEPANE
  49. if (!m_wndSidePane.Create(this, CSize(160, 80), AFX_IDW_CONTROLBAR_FIRST + 32))
  50.     {
  51.         TRACE0("Failed to create sidepanen");
  52.         return -1;      // fail to create
  53.     }
  54. m_wndSidePane.SetBarStyle(m_wndSidePane.GetBarStyle() |
  55.         CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
  56. // SIDEPANE>
  57. if (!m_wndStatusBar.Create(this) ||
  58. !m_wndStatusBar.SetIndicators(indicators,
  59.   sizeof(indicators)/sizeof(UINT)))
  60. {
  61. TRACE0("Failed to create status barn");
  62. return -1;      // fail to create
  63. }
  64. // TODO: Remove this if you don't want tool tips or a resizeable toolbar
  65. m_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
  66. CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
  67. // TODO: Delete these three lines if you don't want the toolbar to
  68. //  be dockable
  69. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  70. // the SIDEPANE is dockable, enable it and...
  71.  m_wndSidePane.EnableDocking(CBRS_ALIGN_ANY);
  72. EnableDocking(CBRS_ALIGN_ANY);
  73. // ...dock it on the left side
  74. DockControlBar(&m_wndSidePane, AFX_IDW_DOCKBAR_LEFT);
  75. DockControlBar(&m_wndToolBar);
  76. return 0;
  77. }
  78. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  79. {
  80. // TODO: Modify the Window class or styles here by modifying
  81. //  the CREATESTRUCT cs
  82. return CMDIFrameWnd::PreCreateWindow(cs);
  83. }
  84. /////////////////////////////////////////////////////////////////////////////
  85. // CMainFrame diagnostics
  86. #ifdef _DEBUG
  87. void CMainFrame::AssertValid() const
  88. {
  89. CMDIFrameWnd::AssertValid();
  90. }
  91. void CMainFrame::Dump(CDumpContext& dc) const
  92. {
  93. CMDIFrameWnd::Dump(dc);
  94. }
  95. #endif //_DEBUG
  96. /////////////////////////////////////////////////////////////////////////////
  97. // CMainFrame message handlers
  98. void CMainFrame::OnPane() 
  99. {
  100. m_wndSidePane.ShowPane(!m_wndSidePane.PaneIsVisible());
  101. }
  102. void CMainFrame::OnUpdatePane(CCmdUI* pCmdUI) 
  103. {
  104. pCmdUI->SetCheck(m_wndSidePane.PaneIsVisible());
  105. }