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

中间件编程

开发平台:

Visual C++

  1. #if !defined(AFX_CACHEDSCROLLVIEW_H__E4A869C6_123A_4D16_9D9C_2B4C0EDEE257__INCLUDED_)
  2. #define AFX_CACHEDSCROLLVIEW_H__E4A869C6_123A_4D16_9D9C_2B4C0EDEE257__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // CachedScrollView.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CCachedScrollView view
  10. class CCachedScrollView : public CScrollView
  11. {
  12. DECLARE_DYNCREATE(CCachedScrollView)
  13. protected:
  14. CCachedScrollView(); 
  15. public:
  16. BOOL CacheValid;
  17. CRect CacheRect;
  18. void SetCacheSize(SIZE sz) {
  19. if (CacheRect.IsRectNull()) 
  20. CacheRect=CRect(CPoint(0,0),sz);
  21. }
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CCachedScrollView)
  24. protected:
  25. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  26. virtual void OnInitialUpdate();     // first time after construct
  27. //}}AFX_VIRTUAL
  28. private:
  29.    CBitmap CacheBitmap;
  30. protected:
  31. virtual ~CCachedScrollView();
  32. #ifdef _DEBUG
  33. virtual void AssertValid() const;
  34. virtual void Dump(CDumpContext& dc) const;
  35. #endif
  36. // Generated message map functions
  37. //{{AFX_MSG(CCachedScrollView)
  38. afx_msg void OnPaint();
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. /////////////////////////////////////////////////////////////////////////////
  43. //{{AFX_INSERT_LOCATION}}
  44. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  45. #endif // !defined(AFX_CACHEDSCROLLVIEW_H__E4A869C6_123A_4D16_9D9C_2B4C0EDEE257__INCLUDED_)