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

中间件编程

开发平台:

Visual C++

  1. // CloudView.h : interface of the CCloudView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CLOUDVIEW_H__7078E5A1_5CFC_4225_8103_176AFEDF3DAE__INCLUDED_)
  5. #define AFX_CLOUDVIEW_H__7078E5A1_5CFC_4225_8103_176AFEDF3DAE__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CCloudView : public CScrollView
  10. {
  11. protected: // create from serialization only
  12. CCloudView();
  13. DECLARE_DYNCREATE(CCloudView)
  14. // Attributes
  15. public:
  16. CCloudDoc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CCloudView)
  22. public:
  23. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. protected:
  26. virtual void OnInitialUpdate(); // called first time after construct
  27. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  28. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  29. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. void CreatBitmap(CBitmap* bmp,int width,int height);
  34. virtual ~CCloudView();
  35. #ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. protected:
  40. CBitmap* m_bitmap;
  41. // Generated message map functions
  42. protected:
  43. //{{AFX_MSG(CCloudView)
  44. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  45. // afx_msg void OnPaint();
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. #ifndef _DEBUG  // debug version in CloudView.cpp
  50. inline CCloudDoc* CCloudView::GetDocument()
  51.    { return (CCloudDoc*)m_pDocument; }
  52. #endif
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_CLOUDVIEW_H__7078E5A1_5CFC_4225_8103_176AFEDF3DAE__INCLUDED_)