COLLEVW.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // collevw.h : interface of the CCollectView class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. class CCollectView : public CView
  13. {
  14. protected: // create from serialization only
  15. CCollectView();
  16. DECLARE_DYNCREATE(CCollectView)
  17. // Attributes
  18. public:
  19. CCollectDoc* GetDocument();
  20. protected:
  21. CStringList m_stringList;
  22. // Operations
  23. public:
  24. // Overrides
  25. // ClassWizard generate virtual function overrides
  26. //{{AFX_VIRTUAL(CCollectView)
  27. public:
  28. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  29. protected:
  30. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  31. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  32. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. public:
  36. virtual ~CCollectView();
  37. #ifdef _DEBUG
  38. virtual void AssertValid() const;
  39. virtual void Dump(CDumpContext& dc) const;
  40. #endif
  41. protected:
  42. // Generated message map functions
  43. protected:
  44. //{{AFX_MSG(CCollectView)
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. #ifndef _DEBUG  // debug version in collevw.cpp
  49. inline CCollectDoc* CCollectView::GetDocument()
  50.    { return (CCollectDoc*)m_pDocument; }
  51. #endif
  52. /////////////////////////////////////////////////////////////////////////////