MAINFRM.CPP
上传用户:zbjinju
上传日期:2022-07-30
资源大小:11893k
文件大小:3k
源码类别:

图形图象

开发平台:

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 "diblook.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_DYNAMIC(CMainFrame, CMDIFrameWnd)
  22. BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
  23. //{{AFX_MSG_MAP(CMainFrame)
  24. ON_WM_CREATE()
  25. ON_WM_PALETTECHANGED()
  26. ON_WM_QUERYNEWPALETTE()
  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_FILE_NEW,
  36. ID_FILE_OPEN,
  37. ID_FILE_SAVE,
  38. ID_SEPARATOR,
  39. ID_EDIT_CUT,
  40. ID_EDIT_COPY,
  41. ID_EDIT_PASTE,
  42. ID_SEPARATOR,
  43. ID_FILE_PRINT,
  44. ID_APP_ABOUT,
  45. };
  46. static UINT BASED_CODE indicators[] =
  47. {
  48. ID_SEPARATOR,           // status line indicator
  49. ID_INDICATOR_CAPS,
  50. ID_INDICATOR_NUM,
  51. ID_INDICATOR_SCRL,
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CMainFrame construction/destruction
  55. CMainFrame::CMainFrame()
  56. {
  57. }
  58. CMainFrame::~CMainFrame()
  59. {
  60. }
  61. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  62. {
  63. if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  64. return -1;
  65. if (!m_wndToolBar.Create(this) ||
  66. !m_wndToolBar.LoadBitmap(IDR_MAINFRAME) ||
  67. !m_wndToolBar.SetButtons(buttons,
  68.   sizeof(buttons)/sizeof(UINT)))
  69. {
  70. TRACE0("Failed to create toolbarn");
  71. return -1;      // fail to create
  72. }
  73. if (!m_wndStatusBar.Create(this) ||
  74. !m_wndStatusBar.SetIndicators(indicators,
  75.   sizeof(indicators)/sizeof(UINT)))
  76. {
  77. TRACE0("Failed to create status barn");
  78. return -1;      // fail to create
  79. }
  80. return 0;
  81. }
  82. /////////////////////////////////////////////////////////////////////////////
  83. // CMainFrame commands
  84. void CMainFrame::OnPaletteChanged(CWnd* pFocusWnd)
  85. {
  86. CMDIFrameWnd::OnPaletteChanged(pFocusWnd);
  87. // always realize the palette for the active view
  88. CMDIChildWnd* pMDIChildWnd = MDIGetActive();
  89. if (pMDIChildWnd == NULL)
  90. return; // no active MDI child frame
  91. CView* pView = pMDIChildWnd->GetActiveView();
  92. ASSERT(pView != NULL);
  93. // notify all child windows that the palette has changed
  94. SendMessageToDescendants(WM_DOREALIZE, (WPARAM)pView->m_hWnd);
  95. }
  96. BOOL CMainFrame::OnQueryNewPalette()
  97. {
  98. // always realize the palette for the active view
  99. CMDIChildWnd* pMDIChildWnd = MDIGetActive();
  100. if (pMDIChildWnd == NULL)
  101. return FALSE; // no active MDI child frame (no new palette)
  102. CView* pView = pMDIChildWnd->GetActiveView();
  103. ASSERT(pView != NULL);
  104. // just notify the target view
  105. pView->SendMessage(WM_DOREALIZE, (WPARAM)pView->m_hWnd);
  106. return TRUE;
  107. }