123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- #if !defined(AFX_MEMDC_H__CA1D3541_7235_11D1_ABBA_00A0243D1382__INCLUDED_)
- #define AFX_MEMDC_H__CA1D3541_7235_11D1_ABBA_00A0243D1382__INCLUDED_
- #if _MSC_VER >= 1000
- #pragma once
- #endif
- class CMemDC : public CDC
- {
- public:
-
- CMemDC(CDC* pDC) : CDC()
- {
- ASSERT(pDC != NULL);
- m_pDC = pDC;
- m_pOldBitmap = NULL;
- #ifndef WCE_NO_PRINTING
- m_bMemDC = !pDC->IsPrinting();
- #else
- m_bMemDC = FALSE;
- #endif
-
- if (m_bMemDC)
- {
- pDC->GetClipBox(&m_rect);
- CreateCompatibleDC(pDC);
- m_bitmap.CreateCompatibleBitmap(pDC, m_rect.Width(), m_rect.Height());
- m_pOldBitmap = SelectObject(&m_bitmap);
- #ifndef _WIN32_WCE
- SetWindowOrg(m_rect.left, m_rect.top);
- #endif
- }
- else
- {
- #ifndef WCE_NO_PRINTING
- m_bPrinting = pDC->m_bPrinting;
- #endif
- m_hDC = pDC->m_hDC;
- m_hAttribDC = pDC->m_hAttribDC;
- }
- }
-
-
- ~CMemDC()
- {
- if (m_bMemDC)
- {
-
- m_pDC->BitBlt(m_rect.left, m_rect.top, m_rect.Width(), m_rect.Height(),
- this, m_rect.left, m_rect.top, SRCCOPY);
-
- SelectObject(m_pOldBitmap);
- } else {
-
-
-
- m_hDC = m_hAttribDC = NULL;
- }
- }
-
- CMemDC* operator->() {return this;}
-
-
- operator CMemDC*() {return this;}
- private:
- CBitmap m_bitmap;
- CBitmap* m_pOldBitmap;
- CDC* m_pDC;
- CRect m_rect;
- BOOL m_bMemDC;
- };
- #endif
|