MainFrm.cpp
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:3k
源码类别:

界面编程

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "ViewOutlookdemo.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_DYNCREATE(CMainFrame, CFrameWnd)
  14. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  15. //{{AFX_MSG_MAP(CMainFrame)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code !
  18. ON_WM_CREATE()
  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 (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  40. return -1;
  41. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  42. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  43. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  44. {
  45. TRACE0("Failed to create toolbarn");
  46. return -1;      // fail to create
  47. }
  48. if (!m_wndStatusBar.Create(this) ||
  49. !m_wndStatusBar.SetIndicators(indicators,
  50.   sizeof(indicators)/sizeof(UINT)))
  51. {
  52. TRACE0("Failed to create status barn");
  53. return -1;      // fail to create
  54. }
  55. // TODO: Delete these three lines if you don't want the toolbar to
  56. //  be dockable
  57. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  58. EnableDocking(CBRS_ALIGN_ANY);
  59. DockControlBar(&m_wndToolBar);
  60. return 0;
  61. }
  62. #include "ViewOutlook.h"
  63. #include "Test.h"
  64. BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT /*lpcs*/,
  65. CCreateContext* pContext)
  66. {
  67. //进行窗口切分一行两列
  68. BOOL result=m_wndSplitter.CreateStatic(this,1,2);
  69. //使用CViewOutlook视图
  70. result|=m_wndSplitter.CreateView(0,0,RUNTIME_CLASS(CViewOutlook),
  71. CSize(100,100),pContext);
  72. result|=m_wndSplitter.CreateView(0,1,RUNTIME_CLASS(CTest),
  73. CSize(100,100),pContext);
  74. return result;
  75. }
  76. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  77. {
  78. if( !CFrameWnd::PreCreateWindow(cs) )
  79. return FALSE;
  80. // TODO: Modify the Window class or styles here by modifying
  81. //  the CREATESTRUCT cs
  82. return TRUE;
  83. }
  84. /////////////////////////////////////////////////////////////////////////////
  85. // CMainFrame diagnostics
  86. #ifdef _DEBUG
  87. void CMainFrame::AssertValid() const
  88. {
  89. CFrameWnd::AssertValid();
  90. }
  91. void CMainFrame::Dump(CDumpContext& dc) const
  92. {
  93. CFrameWnd::Dump(dc);
  94. }
  95. #endif //_DEBUG
  96. /////////////////////////////////////////////////////////////////////////////
  97. // CMainFrame message handlers