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 Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 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 "stdafx.h"
  13. #include "ipdrive.h"
  14. #include "mainfrm.h"
  15. #ifdef _DEBUG
  16. #undef THIS_FILE
  17. static char BASED_CODE THIS_FILE[] = __FILE__;
  18. #endif
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CMainFrame
  21. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  22. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  23.     //{{AFX_MSG_MAP(CMainFrame)
  24.         // NOTE - the ClassWizard will add and remove mapping macros here.
  25.         //    DO NOT EDIT what you see in these blocks of generated code !
  26.     ON_WM_CREATE()
  27.     //}}AFX_MSG_MAP
  28. END_MESSAGE_MAP()
  29. /////////////////////////////////////////////////////////////////////////////
  30. // arrays of IDs used to initialize control bars
  31.     
  32. // toolbar buttons - IDs are command buttons
  33. static UINT BASED_CODE buttons[] =
  34. {
  35.     // same order as in the bitmap 'toolbar.bmp'
  36.     ID_FILE_NEW,
  37.     ID_FILE_OPEN,
  38.     ID_FILE_SAVE,
  39.         ID_SEPARATOR,
  40.     ID_EDIT_CUT,
  41.     ID_EDIT_COPY,
  42.     ID_EDIT_PASTE,
  43.         ID_SEPARATOR,
  44.     ID_FILE_PRINT,
  45.     ID_APP_ABOUT,
  46. };
  47. static UINT BASED_CODE indicators[] =
  48. {
  49.     ID_SEPARATOR,           // status line indicator
  50.     ID_INDICATOR_CAPS,
  51.     ID_INDICATOR_NUM,
  52.     ID_INDICATOR_SCRL,
  53. };
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CMainFrame construction/destruction
  56. CMainFrame::CMainFrame()
  57. {
  58.     // TODO: add member initialization code here
  59.     
  60. }
  61. CMainFrame::~CMainFrame()
  62. {
  63. }
  64. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  65. {
  66.     if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  67.         return -1;
  68.     
  69.     if (!m_wndToolBar.Create(this) ||
  70.         !m_wndToolBar.LoadBitmap(IDR_MAINFRAME) ||
  71.         !m_wndToolBar.SetButtons(buttons,
  72.           sizeof(buttons)/sizeof(UINT)))
  73.     {
  74.         TRACE0("Failed to create toolbarn");
  75.         return -1;      // fail to create
  76.     }
  77.     if (!m_wndStatusBar.Create(this) ||
  78.         !m_wndStatusBar.SetIndicators(indicators,
  79.           sizeof(indicators)/sizeof(UINT)))
  80.     {
  81.         TRACE0("Failed to create status barn");
  82.         return -1;      // fail to create
  83.     }
  84.     // TODO: Delete these three lines if you don't want the toolbar to
  85.     //  be dockable
  86. #if (_MFC_VER > 0x300)  
  87.     m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  88.     EnableDocking(CBRS_ALIGN_ANY);
  89.     DockControlBar(&m_wndToolBar);
  90.     // TODO: Remove this if you don't want tool tips
  91.     m_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
  92.         CBRS_TOOLTIPS | CBRS_FLYBY);
  93. #endif  
  94.     return 0;
  95. }
  96. /////////////////////////////////////////////////////////////////////////////
  97. // CMainFrame diagnostics
  98. #ifdef _DEBUG
  99. void CMainFrame::AssertValid() const
  100. {
  101.     CFrameWnd::AssertValid();
  102. }
  103. void CMainFrame::Dump(CDumpContext& dc) const
  104. {
  105.     CFrameWnd::Dump(dc);
  106. }
  107. #endif //_DEBUG
  108. /////////////////////////////////////////////////////////////////////////////
  109. // CMainFrame message handlers