list_mvc.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: list_mvc.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 18:16:11  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.11
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_ALN_MULTIPLE___LIST_MVC__HPP
  10. #define GUI_WIDGETS_ALN_MULTIPLE___LIST_MVC__HPP
  11. /*  $Id: list_mvc.hpp,v 1000.1 2004/04/12 18:16:11 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Andrey Yazhuk
  37.  *
  38.  * File Description:
  39.  *
  40.  */
  41. #include <corelib/ncbistl.hpp>
  42. #include <corelib/ncbistd.hpp>
  43. BEGIN_NCBI_SCOPE
  44. template <class Item> class ISelListView;
  45. ////////////////////////////////////////////////////////////////////////////////
  46. ///  interface ISelListModel
  47. template <class Item> class ISelListModel
  48. {
  49. public:
  50.     typedef Item    TItem;
  51.     typedef int     TIndex;
  52.     typedef vector<TIndex>   TIndexVector;
  53.     virtual ~ISelListModel() {}
  54.     virtual TIndex     SLM_GetItemsCount() const = 0;
  55.     virtual TItem   SLM_GetItem(TIndex index) const = 0;
  56.     
  57.     virtual TIndex  SLM_GetFocusedItemIndex() const = 0;
  58.     virtual bool    SLM_IsItemSelected(TIndex index) const = 0;
  59.     virtual TIndex  SLM_GetSelectedCount() const = 0;
  60.     virtual void    SLM_GetSelectedIndices(TIndexVector& vIndices) const = 0;
  61.     virtual void    SLM_FocusItem(TIndex index) = 0;    
  62.     virtual void    SLM_SelectSingleItem(TIndex index) = 0;    
  63.     virtual void    SLM_InvertSingleItem(TIndex index) = 0;    
  64.     virtual void    SLM_SelectItems(const TIndexVector& vIndices, 
  65.                                     bool b_reset_others = false) = 0;
  66.     virtual void    SLM_SelectAll(bool bSelect = true) = 0;
  67.     virtual void    SLM_SelectTo(TIndex index) = 0;
  68.     
  69.     virtual void    SLM_AddSLView(ISelListView<Item>* pView) = 0;
  70.     virtual void    SLM_RemoveSLView(ISelListView<Item>* pView) = 0;
  71. };
  72. ////////////////////////////////////////////////////////////////////////////////
  73. ///  interface ISelListView
  74. template <class Item>   class ISelListView
  75. {
  76. public:
  77.     typedef ISelListModel<Item>                  TSelListModel;
  78.     typedef typename TSelListModel::TIndexVector TIndexVector;
  79.     
  80.     virtual ~ISelListView() {}
  81.     virtual void  SLV_SetModel(TSelListModel* pModel) = 0;
  82.     virtual void  SLV_UpdateRange(int iFirstItem, int iLastItem) = 0; 
  83.     virtual void  SLV_UpdateItems(const TIndexVector& vIndices) = 0;    
  84. };
  85. END_NCBI_SCOPE
  86. /*
  87.  * ===========================================================================
  88.  * $Log: list_mvc.hpp,v $
  89.  * Revision 1000.1  2004/04/12 18:16:11  gouriano
  90.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.11
  91.  *
  92.  * Revision 1.11  2004/04/02 16:23:34  yazhuk
  93.  * Added bool b_reset_others to SLM_SelectItems() function
  94.  * >
  95.  *
  96.  * Revision 1.10  2003/12/19 04:34:17  ucko
  97.  * Add an explicit "typename" modifier for increased portability.
  98.  *
  99.  * Revision 1.9  2003/12/18 21:18:15  yazhuk
  100.  * Converted classes to templates
  101.  *
  102.  * Revision 1.8  2003/12/10 17:02:28  yazhuk
  103.  * Added "bool b_keep_selection " argument to CSelListModelImpl::SetItems().
  104.  *
  105.  * Revision 1.7  2003/10/29 23:37:41  yazhuk
  106.  * Refactoring
  107.  *
  108.  * Revision 1.6  2003/09/23 20:46:21  yazhuk
  109.  * Modified #include-s
  110.  *
  111.  * Revision 1.5  2003/09/16 14:37:13  dicuccio
  112.  * Cleaned up and clarified export specifiers - added a new specifier for each
  113.  * library
  114.  *
  115.  * Revision 1.4  2003/09/12 12:59:14  dicuccio
  116.  * Added export specifiers.  Inlined virtual dtors for interface classes
  117.  *
  118.  * Revision 1.3  2003/09/08 16:27:08  yazhuk
  119.  * Added const modifiers, InsertItem() and DeleteItem() functions
  120.  *
  121.  * Revision 1.2  2003/09/02 16:52:21  yazhuk
  122.  * GCC compilation fixes
  123.  *
  124.  * Revision 1.1  2003/08/28 18:22:45  yazhuk
  125.  * Initial revision
  126.  *
  127.  * ===========================================================================
  128.  */
  129. #endif  // GUI_WIDGETS_ALN_MULTIPLE___LIST_MVC__HPP