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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: selection_buffer.hpp,v $
  4.  * PRODUCTION Revision 1000.4  2004/06/01 19:47:01  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.18
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE___SELECTION_BUFFER__HPP
  10. #define GUI_CORE___SELECTION_BUFFER__HPP
  11. /*  $Id: selection_buffer.hpp,v 1000.4 2004/06/01 19:47:01 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:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *    Container classes for GBENCH selection information
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. #include <gui/objutils/objects.hpp>
  43. #include <gui/objutils/iselection.hpp>
  44. #include <gui/core/idocument.hpp>
  45. #include <map>
  46. BEGIN_NCBI_SCOPE
  47. class IDocument;
  48. class CLayoutObject;
  49. //
  50. // Basic interface for a set of selected items
  51. //
  52. class NCBI_GUICORE_EXPORT CSelectionBuffer : public CObject,
  53.                                              public ISelection
  54. {
  55. public:
  56.     // typedef for our container
  57.     // this maps a given document to the selection items that reference it
  58.     typedef map< CConstRef<IDocument>, TConstObjects>    TSelMap;
  59.     // copy all selections from a given selection buffer
  60.     void Copy(const CSelectionBuffer& other);
  61.     // clear the current selections
  62.     void Clear(void);
  63.     // clear the selections for a given document
  64.     void Clear(const IDocument* doc);
  65.     // select a given document
  66.     void AddSelection(const IDocument* doc);
  67.     // select an object in a given document
  68.     void AddSelection(const IDocument* doc, const CObject& obj);
  69.     // remove the selection of a whole document
  70.     void RemoveSelection(const IDocument* doc);
  71.     // remove the selection of a given object
  72.     void RemoveSelection(const IDocument* doc, const CObject& obj);
  73.     // retrieve the selections for a given document
  74.     const TConstObjects&    GetSelections(const IDocument* doc) const;
  75.     TConstObjects&          SetSelections(const IDocument* doc);
  76.     // ISelection interface requirements
  77.     void GetSelections(TConstScopedObjects& objs) const;
  78.     void SetSelections(const TConstScopedObjects& objs);
  79.     // utility: decompose a set of selections into a list of objects
  80.     // paired with their scopes of origin
  81.     TConstScopedObjects    DecomposeToPairs(void) const;
  82.     operator bool(void) const;
  83. protected:
  84.     mutable TSelMap m_SelMap;
  85. };
  86. inline
  87. CSelectionBuffer::operator bool(void) const
  88. {
  89.     return m_SelMap.size() != 0;
  90. }
  91. END_NCBI_SCOPE
  92. /*
  93.  * ===========================================================================
  94.  * $Log: selection_buffer.hpp,v $
  95.  * Revision 1000.4  2004/06/01 19:47:01  gouriano
  96.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.18
  97.  *
  98.  * Revision 1.18  2004/05/03 12:42:17  dicuccio
  99.  * Split gui_utils into gui_utils and gui_objutils
  100.  *
  101.  * Revision 1.17  2004/04/21 12:41:26  dicuccio
  102.  * Added ISelection interface
  103.  *
  104.  * Revision 1.16  2004/04/16 14:28:25  dicuccio
  105.  * Simplified interface - all selections set as CObject
  106.  *
  107.  * Revision 1.15  2004/04/07 12:37:11  dicuccio
  108.  * Reworked CSelectionBuffer to use the structs and typedefs in objects.hpp
  109.  *
  110.  * Revision 1.14  2003/12/30 14:54:33  dicuccio
  111.  * Store const IDocument* instead of non-const pointers.  Pass IDocument as
  112.  * const pointer
  113.  *
  114.  * Revision 1.13  2003/12/22 19:13:16  dicuccio
  115.  * Added Copy().  Added lots of comments
  116.  *
  117.  * Revision 1.12  2003/11/06 19:59:29  dicuccio
  118.  * Removed USING_SCOPE(objects)
  119.  *
  120.  * Revision 1.11  2003/09/04 14:00:26  dicuccio
  121.  * Introduce IDocument and IView as abstract base classes.  Use IDocument
  122.  * instead of CDocument.
  123.  *
  124.  * Revision 1.10  2003/07/21 19:21:27  dicuccio
  125.  * Large clean-ups.  Removed all type-specific accessors - CSelectionBuffer is
  126.  * now very generic
  127.  *
  128.  * Revision 1.9  2003/06/25 16:59:41  dicuccio
  129.  * Changed CPluginHandle into a pointer-to-implementation (the previous
  130.  * implementation is now the pointer held).  Lots of #include file clean-ups.
  131.  *
  132.  * Revision 1.8  2003/04/16 18:17:01  dicuccio
  133.  * Added ability to retrieve selections as generic CObjects, decomposed into
  134.  * pairwise matches with source documents
  135.  *
  136.  * Revision 1.7  2003/02/24 13:00:17  dicuccio
  137.  * Renamed classes in plugin spec:
  138.  *     CArgSeg --> CPluginArgSet
  139.  *     CArgument --> CPluginArg
  140.  *     CPluginArgs --> CPluginCommand
  141.  *     CPluginCommands --> CPluginCommandSet
  142.  *
  143.  * Revision 1.6  2003/02/20 19:44:06  dicuccio
  144.  * Created new plugin architecture, mediated via an ASN.1 spec.  Moved GBENCH
  145.  * framework over to use new plugin architecture.
  146.  *
  147.  * Revision 1.5  2003/01/13 13:11:42  dicuccio
  148.  * Namespace clean-up.  Retired namespace gui -> converted to namespace ncbi.
  149.  * Moved all FLUID-generated code into namespace ncbi.
  150.  *
  151.  * Revision 1.4  2002/12/19 18:13:02  dicuccio
  152.  * Added export specifiers for Win32.
  153.  *
  154.  * Revision 1.3  2002/11/29 15:55:17  dicuccio
  155.  * Added somewhat obtuse work-around for MSVC's handling of namespaces (the
  156.  * nested namespace ncbi::objects presents a lot of difficulty for MSVC's
  157.  * compiler)
  158.  *
  159.  * Revision 1.2  2002/11/07 18:20:13  dicuccio
  160.  * Moved #ifdef to top of file.
  161.  *
  162.  * Revision 1.1  2002/11/04 21:09:06  dicuccio
  163.  * Initial revision
  164.  *
  165.  * ===========================================================================
  166.  */
  167. #endif  // GUI_CORE___SELECTION_BUFFER__HPP