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

对话框与窗口

开发平台:

Visual C++

  1. // XTListCtrlView.h interface for the CXTListView and CXTListCtrlView class.
  2. //
  3. // This file is a part of the XTREME CONTROLS 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. //{{AFX_CODEJOCK_PRIVATE
  21. #if !defined(__XTLISTVIEW_H__)
  22. #define __XTLISTVIEW_H__
  23. //}}AFX_CODEJOCK_PRIVATE
  24. #if _MSC_VER >= 1000
  25. #pragma once
  26. #endif // _MSC_VER >= 1000
  27. #include "XTListBase.h"
  28. DECLATE_LIST_BASE(CXTListViewBase, CXTListViewHelper, CXTListBase)
  29. DECLATE_LIST_BASE(CXTListCtrlBase, CXTListCtrlHelper, CXTListBase)
  30. //===========================================================================
  31. // Summary:
  32. //     CXTListView is a multiple inheritance class derived from CListView and
  33. //     CXTListBase. This class implements flat header and generic sorting
  34. //     routines.
  35. // See Also: CXTListBase
  36. //===========================================================================
  37. class _XTP_EXT_CLASS CXTListView : public CXTListViewBase
  38. {
  39. DECLARE_DYNCREATE(CXTListView)
  40. public:
  41. //-----------------------------------------------------------------------
  42. // Summary:
  43. //     Constructs a CXTListView object
  44. //-----------------------------------------------------------------------
  45. CXTListView();
  46. //-----------------------------------------------------------------------
  47. // Summary:
  48. //     Destroys a CXTListView object, handles cleanup and deallocation
  49. //-----------------------------------------------------------------------
  50. virtual ~CXTListView();
  51. protected:
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. //---------------------------------------------------------------------------
  55. // Summary:
  56. //     CXTListCtrl is a multiple inheritance class derived from CListCtrl and
  57. //     CXTListBase. This class implements flat header and generic sorting
  58. //     routines. See CXTListBase for additional functionality.
  59. // See Also: CXTListBase
  60. //---------------------------------------------------------------------------
  61. class _XTP_EXT_CLASS CXTListCtrl : public CXTListCtrlBase
  62. {
  63. DECLARE_DYNAMIC(CXTListCtrl)
  64. public:
  65. //-----------------------------------------------------------------------
  66. // Summary:
  67. //     Constructs a CXTListCtrl object
  68. //-----------------------------------------------------------------------
  69. CXTListCtrl();
  70. //-----------------------------------------------------------------------
  71. // Summary:
  72. //     Destroys a CXTListCtrl object, handles cleanup and deallocation
  73. //-----------------------------------------------------------------------
  74. virtual ~CXTListCtrl();
  75. protected:
  76. DECLARE_MESSAGE_MAP()
  77. };
  78. #endif // #if !defined(__XTLISTVIEW_H__)