ShowBMPView.cpp
上传用户:zhuahui520
上传日期:2022-07-26
资源大小:344k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // ShowBMPView.cpp : implementation of the CShowBMPView class
  2. //
  3. #include "stdafx.h"
  4. #include "ShowBMP.h"
  5. #include "ShowBMPDoc.h"
  6. #include "ShowBMPView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CShowBMPView
  14. IMPLEMENT_DYNCREATE(CShowBMPView, CView)
  15. BEGIN_MESSAGE_MAP(CShowBMPView, CView)
  16. //{{AFX_MSG_MAP(CShowBMPView)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG_MAP
  20. // Standard printing commands
  21. ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  22. ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  23. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CShowBMPView construction/destruction
  27. CShowBMPView::CShowBMPView()
  28. {
  29. // TODO: add construction code here
  30. }
  31. CShowBMPView::~CShowBMPView()
  32. {
  33. }
  34. BOOL CShowBMPView::PreCreateWindow(CREATESTRUCT& cs)
  35. {
  36. // TODO: Modify the Window class or styles here by modifying
  37. //  the CREATESTRUCT cs
  38. return CView::PreCreateWindow(cs);
  39. }
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CShowBMPView drawing
  42. void CShowBMPView::OnDraw(CDC* pDC)
  43. {
  44. CShowBMPDoc* pDoc = GetDocument();
  45. ASSERT_VALID(pDoc);
  46. // TODO: add draw code for native data here
  47. CDC MemDC;
  48. MemDC.CreateCompatibleDC(pDC);
  49. CBitmap Bitmap;
  50. Bitmap.LoadBitmap(IDB_SHOWBITMAP);
  51. CBitmap*pOldBitmap=MemDC.SelectObject(&Bitmap);
  52. BITMAP bm;
  53. Bitmap.GetObject(sizeof(BITMAP),&bm);//讀取位圖信息
  54. pDC->BitBlt(0,0,bm.bmWidth,bm.bmHeight,&MemDC,0,0,SRCCOPY);
  55. MemDC.SelectObject(pOldBitmap);
  56. }
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CShowBMPView printing
  59. BOOL CShowBMPView::OnPreparePrinting(CPrintInfo* pInfo)
  60. {
  61. // default preparation
  62. return DoPreparePrinting(pInfo);
  63. }
  64. void CShowBMPView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  65. {
  66. // TODO: add extra initialization before printing
  67. }
  68. void CShowBMPView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  69. {
  70. // TODO: add cleanup after printing
  71. }
  72. /////////////////////////////////////////////////////////////////////////////
  73. // CShowBMPView diagnostics
  74. #ifdef _DEBUG
  75. void CShowBMPView::AssertValid() const
  76. {
  77. CView::AssertValid();
  78. }
  79. void CShowBMPView::Dump(CDumpContext& dc) const
  80. {
  81. CView::Dump(dc);
  82. }
  83. CShowBMPDoc* CShowBMPView::GetDocument() // non-debug version is inline
  84. {
  85. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CShowBMPDoc)));
  86. return (CShowBMPDoc*)m_pDocument;
  87. }
  88. #endif //_DEBUG
  89. /////////////////////////////////////////////////////////////////////////////
  90. // CShowBMPView message handlers