PagerView.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // PagerView.h : interface of the CPagerView class
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #if !defined(AFX_PagerVIEW_H__E063892D_AE60_11D4_898E_AF7EED6E8535__INCLUDED_)
  21. #define AFX_PagerVIEW_H__E063892D_AE60_11D4_898E_AF7EED6E8535__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. // class forwards
  26. class CPagerDoc;
  27. class CPagerView : public CListView
  28. {
  29. protected: // create from serialization only
  30. CPagerView();
  31. DECLARE_DYNCREATE(CPagerView)
  32. // Attributes
  33. public:
  34. CPagerDoc* GetDocument();
  35. // Operations
  36. public:
  37. // Overrides
  38. // ClassWizard generated virtual function overrides
  39. //{{AFX_VIRTUAL(CPagerView)
  40. public:
  41. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  42. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  43. protected:
  44. virtual void OnInitialUpdate(); // called first time after construct
  45. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  46. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  47. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  48. //}}AFX_VIRTUAL
  49. // Implementation
  50. public:
  51. virtual ~CPagerView();
  52. #ifdef _DEBUG
  53. virtual void AssertValid() const;
  54. virtual void Dump(CDumpContext& dc) const;
  55. #endif
  56. protected:
  57. // Generated message map functions
  58. protected:
  59. //{{AFX_MSG(CPagerView)
  60. // NOTE - the ClassWizard will add and remove member functions here.
  61. //    DO NOT EDIT what you see in these blocks of generated code !
  62. //}}AFX_MSG
  63. afx_msg void OnStyleChanged(int nStyleType, LPSTYLESTRUCT lpStyleStruct);
  64. DECLARE_MESSAGE_MAP()
  65. };
  66. #ifndef _DEBUG  // debug version in PagerView.cpp
  67. inline CPagerDoc* CPagerView::GetDocument()
  68. { return (CPagerDoc*)m_pDocument; }
  69. #endif
  70. /////////////////////////////////////////////////////////////////////////////
  71. //{{AFX_INSERT_LOCATION}}
  72. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  73. #endif // !defined(AFX_PagerVIEW_H__E063892D_AE60_11D4_898E_AF7EED6E8535__INCLUDED_)