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

Windows编程

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. // This is a part of the ActiveX Template Library.
  4. // Copyright (C) 1996 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // ActiveX Template Library Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // ActiveX Template Library product.
  12. #include "preatldr.h"
  13. #include "ATLDraw.h"
  14. #include "MainFrm.h"
  15. #ifdef _DEBUG
  16. #define new DEBUG_NEW
  17. #undef THIS_FILE
  18. static char THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CMainFrame
  22. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  23. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  24.     //{{AFX_MSG_MAP(CMainFrame)
  25.     ON_WM_CREATE()
  26.     //}}AFX_MSG_MAP
  27. END_MESSAGE_MAP()
  28. static UINT indicators[] =
  29. {
  30.     ID_SEPARATOR,           // status line indicator
  31.     ID_INDICATOR_CAPS,
  32.     ID_INDICATOR_NUM,
  33.     ID_INDICATOR_SCRL,
  34. };
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CMainFrame construction/destruction
  37. CMainFrame::CMainFrame()
  38. {
  39.     // TODO: add member initialization code here
  40.     
  41. }
  42. CMainFrame::~CMainFrame()
  43. {
  44. }
  45. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  46. {
  47.     if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  48.         return -1;
  49.     
  50.     if (!m_wndToolBar.Create(this) ||
  51.         !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  52.     {
  53.         TRACE0("Failed to create toolbarn");
  54.         return -1;      // fail to create
  55.     }
  56.     if (!m_wndStatusBar.Create(this) ||
  57.         !m_wndStatusBar.SetIndicators(indicators,
  58.           sizeof(indicators)/sizeof(UINT)))
  59.     {
  60.         TRACE0("Failed to create status barn");
  61.         return -1;      // fail to create
  62.     }
  63.     // TODO: Remove this if you don't want tool tips or a resizeable toolbar
  64.     m_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
  65.         CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
  66.     // TODO: Delete these three lines if you don't want the toolbar to
  67.     //  be dockable
  68.     m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  69.     EnableDocking(CBRS_ALIGN_ANY);
  70.     DockControlBar(&m_wndToolBar);
  71.     return 0;
  72. }
  73. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  74. {
  75.     // TODO: Modify the Window class or styles here by modifying
  76.     //  the CREATESTRUCT cs
  77.     return CFrameWnd::PreCreateWindow(cs);
  78. }
  79. /////////////////////////////////////////////////////////////////////////////
  80. // CMainFrame diagnostics
  81. #ifdef _DEBUG
  82. void CMainFrame::AssertValid() const
  83. {
  84.     CFrameWnd::AssertValid();
  85. }
  86. void CMainFrame::Dump(CDumpContext& dc) const
  87. {
  88.     CFrameWnd::Dump(dc);
  89. }
  90. #endif //_DEBUG
  91. /////////////////////////////////////////////////////////////////////////////
  92. // CMainFrame message handlers