CloudView.cpp
上传用户:ynjin1970
上传日期:2014-10-13
资源大小:6438k
文件大小:5k
源码类别:

中间件编程

开发平台:

Visual C++

  1. // CloudView.cpp : implementation of the CCloudView class
  2. //
  3. #include "stdafx.h"
  4. #include "Cloud.h"
  5. #include "CloudDoc.h"
  6. #include "CloudView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CCloudView
  14. IMPLEMENT_DYNCREATE(CCloudView, CScrollView)
  15. BEGIN_MESSAGE_MAP(CCloudView, CScrollView)
  16. //{{AFX_MSG_MAP(CCloudView)
  17. ON_WM_CREATE()
  18. ON_WM_PAINT()
  19. //}}AFX_MSG_MAP
  20. // Standard printing commands
  21. ON_COMMAND(ID_FILE_PRINT, CScrollView::OnFilePrint)
  22. ON_COMMAND(ID_FILE_PRINT_DIRECT, CScrollView::OnFilePrint)
  23. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CScrollView::OnFilePrintPreview)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CCloudView construction/destruction
  27. CCloudView::CCloudView()
  28. {
  29. }
  30. CCloudView::~CCloudView()
  31. {
  32. }
  33. BOOL CCloudView::PreCreateWindow(CREATESTRUCT& cs)
  34. {
  35. // TODO: Modify the Window class or styles here by modifying
  36. //  the CREATESTRUCT cs
  37. return CScrollView::PreCreateWindow(cs);
  38. }
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CCloudView drawing
  41. void CCloudView::OnDraw(CDC* pDC)
  42. {
  43. CCloudDoc* pDoc = GetDocument();
  44. ASSERT_VALID(pDoc);
  45. CSize sizeTotal;
  46. CDib* pDib = pDoc->m_Dib;
  47. if(pDib)
  48. {
  49. CDC memDC;     
  50.      long width,height;
  51. width=pDib->GetImageWidth();
  52.      height=pDib->GetImageHeight();
  53. memDC.CreateCompatibleDC(pDC);
  54. RECT rect;
  55. GetClientRect(&rect);
  56. sizeTotal.cx=width;
  57. sizeTotal.cy=height;
  58. SetScrollSizes(MM_TEXT, sizeTotal);
  59.     CBitmap* pOldBitmap = memDC.SelectObject(m_bitmap);
  60. pDib->PaintDIB(memDC.m_hDC,width,height);
  61. pDC->BitBlt(0, 0,width,height, &memDC, 0, 0, SRCCOPY);
  62. memDC.SelectObject(pOldBitmap);
  63. ReleaseDC(&memDC);
  64. }
  65. }
  66. void CCloudView::OnInitialUpdate()
  67. {
  68. CScrollView::OnInitialUpdate();
  69. CSize sizeTotal;
  70. // TODO: calculate the total size of this view
  71. sizeTotal.cx = sizeTotal.cy = 100;
  72. SetScrollSizes(MM_TEXT, sizeTotal);
  73. }
  74. /////////////////////////////////////////////////////////////////////////////
  75. // CCloudView printing
  76. BOOL CCloudView::OnPreparePrinting(CPrintInfo* pInfo)
  77. {
  78. // default preparation
  79. return DoPreparePrinting(pInfo);
  80. }
  81. void CCloudView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  82. {
  83. // TODO: add extra initialization before printing
  84. }
  85. void CCloudView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  86. {
  87. // TODO: add cleanup after printing
  88. }
  89. /////////////////////////////////////////////////////////////////////////////
  90. // CCloudView diagnostics
  91. #ifdef _DEBUG
  92. void CCloudView::AssertValid() const
  93. {
  94. CScrollView::AssertValid();
  95. }
  96. void CCloudView::Dump(CDumpContext& dc) const
  97. {
  98. CScrollView::Dump(dc);
  99. }
  100. CCloudDoc* CCloudView::GetDocument() // non-debug version is inline
  101. {
  102. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CCloudDoc)));
  103. return (CCloudDoc*)m_pDocument;
  104. }
  105. #endif //_DEBUG
  106. ////////////////////////////////////////////////////////////////////////////
  107. int CCloudView::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  108. {
  109. if (CScrollView::OnCreate(lpCreateStruct) == -1)
  110. return -1;
  111. CDC* dc=GetDC();
  112. m_bitmap=new CBitmap;
  113.   m_bitmap->CreateCompatibleBitmap(dc,4000,3000);
  114.   ReleaseDC(dc);
  115. return 0;
  116. }
  117. /*void CCloudView::OnPaint() 
  118. {
  119. CCloudDoc* pDoc = GetDocument();
  120. ASSERT_VALID(pDoc);
  121. CPaintDC dc(this); // device context for painting
  122. CDib* pDib = pDoc->m_Dib;
  123. if(pDoc->sign==1)
  124. {
  125. CSize sizeTotal;
  126. sizeTotal.cy=pDib->GetImageHeight();
  127. sizeTotal.cx=pDib->GetImageWidth();
  128. SetScrollSizes(MM_TEXT, sizeTotal);
  129. SetDIBitsToDevice(dc.m_hDC,0,0,pDib->GetImageWidth(),
  130. pDib->GetImageHeight(),
  131. 0,
  132. 0,
  133. 0,
  134. pDib->GetImageHeight(),pDib->lpDIBBits,
  135. pDib->bmpInfo,DIB_RGB_COLORS);
  136. }
  137. /* if(pDoc->sign==1)
  138. {
  139. CDC memDC;     
  140.      long width,height;
  141. width=pDib->GetImageWidth();
  142.      height=pDib->GetImageHeight();
  143.      CSize sizeTotal;
  144. CDC* pDC=GetDC();
  145. memDC.CreateCompatibleDC(pDC);
  146. ReleaseDC(pDC);
  147. CBitmap bmp;
  148. CreatBitmap(&bmp,width,height);
  149.     CBitmap* pOldBitmap = memDC.SelectObject(&bmp);
  150. RECT rect;
  151. GetClientRect(&rect);
  152. sizeTotal.cx=rect.right;
  153. sizeTotal.cy=rect.bottom;
  154. SetScrollSizes(MM_TEXT, sizeTotal);
  155. pDib->PaintDIB(memDC.m_hDC,rect.right,rect.bottom);
  156. dc.BitBlt(0, 0,width,height, &memDC, 0, 0, SRCCOPY);
  157. memDC.SelectObject(pOldBitmap);
  158. ReleaseDC(&memDC);
  159. sizeTotal.cx=width;
  160. sizeTotal.cy=height;
  161. SetScrollSizes(MM_TEXT, sizeTotal);
  162. BYTE* lpDIBBits=pDib->lpDIBBits;
  163. int w=width;
  164. int h=height;
  165. int sign=w%2;
  166. long total=w*h*3;
  167. long tmp=0;
  168. if(sign)
  169. w+=1;
  170. for(int i=0;i<=h;i++)
  171. {
  172. for(int j=0;j<w;j++)
  173. {
  174. pDC->SetPixel(j+10,h-i,RGB(lpDIBBits[tmp+2],lpDIBBits[tmp+1],lpDIBBits[tmp]));
  175. if(tmp>=total)
  176. break;
  177. tmp+=3;
  178. }
  179. }
  180. }
  181. }*/
  182. void CCloudView::CreatBitmap(CBitmap *bmp, int width, int height)
  183. {
  184. CDC* dc=GetDC();
  185. bmp->CreateCompatibleBitmap(dc,width,height);
  186.   ReleaseDC(dc);
  187. }