MAINFRM.CPP
上传用户:leishk
上传日期:2022-03-16
资源大小:3649k
文件大小:3k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "Wzd.h"
  5. #include "WzdDoc.h"
  6. #include "MainFrm.h"
  7. #include "WzdLView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CMainFrame
  15. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  16. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  17. //{{AFX_MSG_MAP(CMainFrame)
  18. // NOTE - the ClassWizard will add and remove mapping macros here.
  19. //    DO NOT EDIT what you see in these blocks of generated code !
  20. ON_WM_CREATE()
  21. //}}AFX_MSG_MAP
  22. END_MESSAGE_MAP()
  23. static UINT indicators[] =
  24. {
  25. ID_SEPARATOR,           // status line indicator
  26. ID_INDICATOR_CAPS,
  27. ID_INDICATOR_NUM,
  28. ID_INDICATOR_SCRL,
  29. };
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CMainFrame construction/destruction
  32. CMainFrame::CMainFrame()
  33. {
  34. // TODO: add member initialization code here
  35. }
  36. CMainFrame::~CMainFrame()
  37. {
  38. }
  39. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  40. {
  41. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  42. return -1;
  43. if (!m_wndToolBar.Create(this) ||
  44. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  45. {
  46. TRACE0("Failed to create toolbarn");
  47. return -1;      // fail to create
  48. }
  49. if (!m_wndStatusBar.Create(this) ||
  50. !m_wndStatusBar.SetIndicators(indicators,
  51.   sizeof(indicators)/sizeof(UINT)))
  52. {
  53. TRACE0("Failed to create status barn");
  54. return -1;      // fail to create
  55. }
  56. // TODO: Remove this if you don't want tool tips or a resizeable toolbar
  57. m_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
  58. CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
  59. // TODO: Delete these three lines if you don't want the toolbar to
  60. //  be dockable
  61. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  62. EnableDocking(CBRS_ALIGN_ANY);
  63. DockControlBar(&m_wndToolBar);
  64. return 0;
  65. }
  66. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  67. {
  68. // TODO: Modify the Window class or styles here by modifying
  69. //  the CREATESTRUCT cs
  70. cs.style &= ~FWS_ADDTOTITLE;
  71. return CFrameWnd::PreCreateWindow(cs);
  72. }
  73. /////////////////////////////////////////////////////////////////////////////
  74. // CMainFrame diagnostics
  75. #ifdef _DEBUG
  76. void CMainFrame::AssertValid() const
  77. {
  78. CFrameWnd::AssertValid();
  79. }
  80. void CMainFrame::Dump(CDumpContext& dc) const
  81. {
  82. CFrameWnd::Dump(dc);
  83. }
  84. #endif //_DEBUG
  85. /////////////////////////////////////////////////////////////////////////////
  86. // CMainFrame message handlers
  87. BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext) 
  88. {
  89. // create a split window with 1 row and 2 columns
  90. if (!m_wndSplitter.CreateStatic(this, 1, 2))
  91. {
  92. TRACE0("Failed to CreateStaticSplittern");
  93. return FALSE;
  94. }
  95. // add the treeview to first column (we declared in doc template)
  96. CRect rect;
  97. GetClientRect(&rect);
  98. if (!m_wndSplitter.CreateView(0, 0,
  99. pContext->m_pNewViewClass, 
  100. CSize(rect.Width()/4, 50), pContext))
  101. {
  102. TRACE0("Failed to create first panen");
  103. return FALSE;
  104. }
  105. // add the listview to second column
  106. if (!m_wndSplitter.CreateView(0, 1,
  107. RUNTIME_CLASS(CWzdListView), 
  108. CSize(200,50), pContext))
  109. {
  110. TRACE0("Failed to create second panen");
  111. return FALSE;
  112. }
  113. // activate the listview column
  114. SetActiveView((CView*)m_wndSplitter.GetPane(0,1));
  115. return TRUE; //CFrameWnd::OnCreateClient(lpcs, pContext);
  116. }