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-1998 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 "catalog.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. // toolbar buttons - IDs are command buttons
  32. static UINT BASED_CODE buttons[] =
  33. {
  34. // same order as in the bitmap 'toolbar.bmp'
  35. ID_EDIT_CUT,
  36. ID_EDIT_COPY,
  37. ID_EDIT_PASTE,
  38. ID_SEPARATOR,
  39. ID_FILE_PRINT,
  40. ID_SEPARATOR,
  41. ID_RECORD_FIRST,
  42. ID_RECORD_PREV,
  43. ID_RECORD_NEXT,
  44. ID_RECORD_LAST,
  45. ID_SEPARATOR,
  46. ID_APP_ABOUT,
  47. };
  48. static UINT BASED_CODE indicators[] =
  49. {
  50. ID_SEPARATOR,           // status line indicator
  51. ID_INDICATOR_CAPS,
  52. ID_INDICATOR_NUM,
  53. ID_INDICATOR_SCRL,
  54. };
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CMainFrame construction/destruction
  57. CMainFrame::CMainFrame()
  58. {
  59. // TODO: add member initialization code here
  60. }
  61. CMainFrame::~CMainFrame()
  62. {
  63. }
  64. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  65. {
  66. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  67. return -1;
  68. if (!m_wndToolBar.Create(this) ||
  69. !m_wndToolBar.LoadBitmap(IDR_MAINFRAME) ||
  70. !m_wndToolBar.SetButtons(buttons,
  71.   sizeof(buttons)/sizeof(UINT)))
  72. {
  73. TRACE("Failed to create toolbarn");
  74. return -1;      // fail to create
  75. }
  76. if (!m_wndStatusBar.Create(this) ||
  77. !m_wndStatusBar.SetIndicators(indicators,
  78.   sizeof(indicators)/sizeof(UINT)))
  79. {
  80. TRACE("Failed to create status barn");
  81. return -1;      // fail to create
  82. }
  83. return 0;
  84. }
  85. /////////////////////////////////////////////////////////////////////////////
  86. // CMainFrame diagnostics
  87. #ifdef _DEBUG
  88. void CMainFrame::AssertValid() const
  89. {
  90. CFrameWnd::AssertValid();
  91. }
  92. void CMainFrame::Dump(CDumpContext& dc) const
  93. {
  94. CFrameWnd::Dump(dc);
  95. }
  96. #endif //_DEBUG
  97. /////////////////////////////////////////////////////////////////////////////
  98. // CMainFrame message handlers