MemDC.h
上传用户:jzscgs158
上传日期:2022-05-25
资源大小:8709k
文件大小:3k
源码类别:

百货/超市行业

开发平台:

Visual C++

  1. #if !defined(AFX_MEMDC_H__CA1D3541_7235_11D1_ABBA_00A0243D1382__INCLUDED_)
  2. #define AFX_MEMDC_H__CA1D3541_7235_11D1_ABBA_00A0243D1382__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // MemDC.h : header file
  7. //
  8. //////////////////////////////////////////////////
  9. // CMemDC - memory DC
  10. //
  11. // Author: Keith Rule
  12. // Email:  keithr@europa.com
  13. // Copyright 1996-1997, Keith Rule
  14. //
  15. // You may freely use or modify this code provided this
  16. // Copyright is included in all derived versions.
  17. //
  18. // History - 10/3/97 Fixed scrolling bug.
  19. //                   Added print support.
  20. //           25 feb 98 - fixed minor assertion bug
  21. //
  22. // This class implements a memory Device Context
  23. class CMemDC : public CDC
  24. {
  25. public:
  26.     // constructor sets up the memory DC
  27.     CMemDC(CDC* pDC) : CDC()
  28.     {
  29.         ASSERT(pDC != NULL);
  30.         m_pDC = pDC;
  31.         m_pOldBitmap = NULL;
  32. #ifndef WCE_NO_PRINTING
  33.         m_bMemDC = !pDC->IsPrinting();
  34. #else
  35.         m_bMemDC = FALSE;
  36. #endif
  37.         if (m_bMemDC)    // Create a Memory DC
  38.         {
  39.             pDC->GetClipBox(&m_rect);
  40.             CreateCompatibleDC(pDC);
  41.             m_bitmap.CreateCompatibleBitmap(pDC, m_rect.Width(), m_rect.Height());
  42.             m_pOldBitmap = SelectObject(&m_bitmap);
  43. #ifndef _WIN32_WCE
  44.             SetWindowOrg(m_rect.left, m_rect.top);
  45. #endif
  46.             // EFW - Bug fix - Fill background in case the user has overridden
  47.             // WM_ERASEBKGND.  We end up with garbage otherwise.
  48.             // CJM - moved to fix a bug in the fix.
  49.             FillSolidRect(m_rect, pDC->GetBkColor());
  50.         }
  51.         else        // Make a copy of the relevent parts of the current DC for printing
  52.         {
  53. #ifndef WCE_NO_PRINTING
  54.             m_bPrinting = pDC->m_bPrinting;
  55. #endif
  56.             m_hDC       = pDC->m_hDC;
  57.             m_hAttribDC = pDC->m_hAttribDC;
  58.         }
  59.     }
  60.     // Destructor copies the contents of the mem DC to the original DC
  61.     ~CMemDC()
  62.     {
  63.         if (m_bMemDC)
  64.         {
  65.             // Copy the offscreen bitmap onto the screen.
  66.             m_pDC->BitBlt(m_rect.left, m_rect.top, m_rect.Width(), m_rect.Height(),
  67.                           this, m_rect.left, m_rect.top, SRCCOPY);
  68.             //Swap back the original bitmap.
  69.             SelectObject(m_pOldBitmap);
  70.         } else {
  71.             // All we need to do is replace the DC with an illegal value,
  72.             // this keeps us from accidently deleting the handles associated with
  73.             // the CDC that was passed to the constructor.
  74.             m_hDC = m_hAttribDC = NULL;
  75.         }
  76.     }
  77.     // Allow usage as a pointer
  78.     CMemDC* operator->() {return this;}
  79.         
  80.     // Allow usage as a pointer
  81.     operator CMemDC*() {return this;}
  82. private:
  83.     CBitmap  m_bitmap;      // Offscreen bitmap
  84.     CBitmap* m_pOldBitmap;  // bitmap originally found in CMemDC
  85.     CDC*     m_pDC;         // Saves CDC passed in constructor
  86.     CRect    m_rect;        // Rectangle of drawing area.
  87.     BOOL     m_bMemDC;      // TRUE if CDC really is a Memory DC.
  88. };
  89. /////////////////////////////////////////////////////////////////////////////
  90. //{{AFX_INSERT_LOCATION}}
  91. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  92. #endif // !defined(AFX_MEMDC_H__CA1D3541_7235_11D1_ABBA_00A0243D1382__INCLUDED_)