MemDC.h
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:3k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. #ifndef _MEMDC_H_
  2. #define _MEMDC_H_
  3. //////////////////////////////////////////////////
  4. // CMemDC - memory DC
  5. //
  6. // Author: Keith Rule
  7. // Email:  keithr@europa.com
  8. // Copyright 1996-2002, Keith Rule
  9. //
  10. // You may freely use or modify this code provided this
  11. // Copyright is included in all derived versions.
  12. //
  13. // History - 10/3/97 Fixed scrolling bug.
  14. //                   Added print support. - KR
  15. //
  16. //           11/3/99 Fixed most common complaint. Added
  17. //                   background color fill. - KR
  18. //
  19. //           11/3/99 Added support for mapping modes other than
  20. //                   MM_TEXT as suggested by Lee Sang Hun. - KR
  21. //
  22. //           02/11/02 Added support for CScrollView as supplied
  23. //                    by Gary Kirkham. - KR
  24. //
  25. // This class implements a memory Device Context which allows
  26. // flicker free drawing.
  27. class CMemDC : public CDC {
  28. private:
  29. CBitmap m_bitmap; // Offscreen bitmap
  30. CBitmap* m_oldBitmap; // bitmap originally found in CMemDC
  31. CDC* m_pDC; // Saves CDC passed in constructor
  32. CRect m_rect; // Rectangle of drawing area.
  33. BOOL m_bMemDC; // TRUE if CDC really is a Memory DC.
  34. bool        m_bDraw;
  35. public:
  36. CMemDC( CDC* pDC, bool draw = true , const CRect* pRect = NULL) : CDC()
  37. {
  38. ASSERT(pDC != NULL); 
  39. // Some initialization
  40. m_pDC = pDC;
  41. m_oldBitmap = NULL;
  42. m_bMemDC = !pDC->IsPrinting();
  43. m_bDraw = draw;
  44. // Get the rectangle to draw
  45. if (pRect == NULL) {
  46. pDC->GetClipBox(&m_rect);
  47. } else {
  48. m_rect = *pRect;
  49. }
  50. if (m_bMemDC) {
  51. // Create a Memory DC
  52. CreateCompatibleDC(pDC);
  53. pDC->LPtoDP(&m_rect);
  54. m_bitmap.CreateCompatibleBitmap(pDC, m_rect.Width(), m_rect.Height());
  55. m_oldBitmap = SelectObject(&m_bitmap);
  56. SetMapMode(pDC->GetMapMode());
  57. SetWindowExt(pDC->GetWindowExt());
  58. SetViewportExt(pDC->GetViewportExt());
  59. pDC->DPtoLP(&m_rect);
  60. SetWindowOrg(m_rect.left, m_rect.top);
  61. } else {
  62. // Make a copy of the relevent parts of the current DC for printing
  63. m_bPrinting = pDC->m_bPrinting;
  64. m_hDC       = pDC->m_hDC;
  65. m_hAttribDC = pDC->m_hAttribDC;
  66. }
  67. // Fill background 
  68. // FillSolidRect(m_rect, pDC->GetBkColor());
  69. this->BitBlt( 0 , 0 , m_rect.Width( ) , m_rect.Height( ) , pDC , 0 ,0 , SRCCOPY );
  70. }
  71. ~CMemDC()
  72. {
  73. if ( m_bDraw && m_bMemDC) {
  74. // Copy the offscreen bitmap onto the screen.
  75. m_pDC->BitBlt(m_rect.left, m_rect.top, m_rect.Width(), m_rect.Height(),
  76. this, m_rect.left, m_rect.top, SRCCOPY);
  77. //Swap back the original bitmap.
  78. SelectObject(m_oldBitmap);
  79. } else {
  80. // All we need to do is replace the DC with an illegal value,
  81. // this keeps us from accidently deleting the handles associated with
  82. // the CDC that was passed to the constructor.
  83. m_hDC = m_hAttribDC = NULL;
  84. }
  85. }
  86. // Allow usage as a pointer
  87. CMemDC* operator->() 
  88. {
  89. return this;
  90. }
  91. // Allow usage as a pointer
  92. operator CMemDC*() 
  93. {
  94. return this;
  95. }
  96. };
  97. #endif