ViewDIBDoc.cpp
上传用户:elida16851
上传日期:2022-08-05
资源大小:2048k
文件大小:2k
源码类别:

图形图象

开发平台:

Visual C++

  1. // ViewDIBDoc.cpp : implementation of the CViewDIBDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "ViewDIB.h"
  5. #include "ViewDIBDoc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CViewDIBDoc
  13. IMPLEMENT_DYNCREATE(CViewDIBDoc, CDocument)
  14. BEGIN_MESSAGE_MAP(CViewDIBDoc, CDocument)
  15. //{{AFX_MSG_MAP(CViewDIBDoc)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code!
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CViewDIBDoc construction/destruction
  22. CViewDIBDoc::CViewDIBDoc()
  23. {
  24. m_pDib = new CDib;
  25. }
  26. CViewDIBDoc::~CViewDIBDoc()
  27. {
  28. delete m_pDib;
  29. }
  30. BOOL CViewDIBDoc::OnNewDocument()
  31. {
  32. if (!CDocument::OnNewDocument())
  33. return FALSE;
  34. // TODO: add reinitialization code here
  35. // (SDI documents will reuse this document)
  36. return TRUE;
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CViewDIBDoc serialization
  40. void CViewDIBDoc::Serialize(CArchive& ar)
  41. {
  42. m_pDib->Serialize(ar);
  43. if (ar.IsStoring())
  44. {
  45. // TODO: add storing code here
  46. }
  47. else
  48. {
  49. // TODO: add loading code here
  50. }
  51. }
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CViewDIBDoc diagnostics
  54. #ifdef _DEBUG
  55. void CViewDIBDoc::AssertValid() const
  56. {
  57. CDocument::AssertValid();
  58. }
  59. void CViewDIBDoc::Dump(CDumpContext& dc) const
  60. {
  61. CDocument::Dump(dc);
  62. }
  63. #endif //_DEBUG
  64. /////////////////////////////////////////////////////////////////////////////
  65. // CViewDIBDoc commands