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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: tax_tree.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:53:33  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS___TAX_TREE__HPP
  10. #define GUI_WIDGETS___TAX_TREE__HPP
  11. /*  $Id: tax_tree.hpp,v 1000.1 2004/06/01 19:53:33 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.  *
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. #include <gui/widgets/fl/tree_browser.hpp>
  43. #include <gui/widgets/tax_tree/tax_tree_ds.hpp>
  44. #include <gui/utils/view_event.hpp>
  45. #include <util/ievent_receiver.hpp>
  46. #include <util/ievent_transmitter.hpp>
  47. #include <memory>
  48. BEGIN_NCBI_SCOPE
  49. BEGIN_SCOPE(objects)
  50.     class CSeq_id;
  51.     //class ITreeIterator;
  52. END_SCOPE(objects)
  53. class CTaxTree;
  54. class IReporter;
  55. class CTaxTreeDataSource;
  56. //
  57. // class CTaxTreeBrowser implements a tree-based view of a taxonomic
  58. // hierarchy.  This class was designed to deal with generating common
  59. // taxonomic trees, but should be flexible enough to deal with any
  60. // sort of taxonomic tree.
  61. //
  62. // This class wraps a data source that provides an abstraction for dealing
  63. // with taxonomic trees.  The data source must provide a taxonomy tree
  64. // iterator conforming to that defined in <objects/taxon1/taxon1.hpp>.
  65. // No assumption is made about how the data are derived internally.  In
  66. // addition, no assumption is made about the UIDs that this data source
  67. // contains.  The data source must provide a mapping between a UID of
  68. // user-specified significance and a taxonomy ID and tax tree node.
  69. //
  70. class NCBI_GUIWIDGETS_SEQ_EXPORT CTaxTreeBrowser : public CTreeBrowser,
  71.                                                    public IEventTransmitter,
  72.                                                    public IEventReceiver
  73. {
  74. public:
  75.     // default ctor (for FLTK)
  76.     CTaxTreeBrowser(int x, int y, int w, int h, const char* label = NULL);
  77.     // dtor
  78.     ~CTaxTreeBrowser();
  79.     // set the abstract reporter interface
  80.     void SetReporter(IReporter* reporter);
  81.     // set the data source for this widget
  82.     void SetDataSource(CTaxTreeDataSource& ds);
  83.     // set the current display mode.  This controls how many nodes in the
  84.     // tax tree we show, and how deep the branches should run.
  85.     void SetDisplayMode(CTaxTreeDataSource::EDisplayMode mode);
  86.     // retrieve the selected UIDs
  87.     void GetSelectedUids(CTaxTreeDataSource::TUidVec& uids) const;
  88.     // set selected ids
  89.     void SetSelectedUids(const CTaxTreeDataSource::TUidVec& uids,  Node* node);
  90.     // callback function
  91.     friend void OnTaxtreeNotify(Fl_Widget * widget, void * data);
  92.     // handler for selection changed event   
  93.     void OnSelChangedEvent(CViewEvent::TEventObject evt);
  94.     // IEventReciever
  95.     EVENT_MAP_RX_BEGIN_INT
  96.         EVENT_ACCEPT(CViewEvent::eSelectionChanged,  OnSelChangedEvent)
  97.     EVENT_MAP_RX_END
  98.     // IEventTransmitter
  99.     EVENT_MAP_TX_BEGIN
  100.         EVENT_FIRE_ALL()
  101.     EVENT_MAP_TX_END
  102. protected:
  103.     friend class CTreeFiller;
  104.     // the data source we use
  105.     CRef<CTaxTreeDataSource> m_DataSource;
  106.     // our internal tree structure
  107.     auto_ptr<CTaxTree> m_TaxTree;
  108.     // display mode
  109.     CTaxTreeDataSource::EDisplayMode m_DispMode;
  110.     // our reporter interface
  111.     IReporter* m_Reporter;
  112.     // This will clear our current tree and repopulate it from our data source
  113.     void x_Refresh();
  114.     typedef CTaxTreeDataSource::TTaxMap TTaxMap;
  115.     void x_PopulateTree(Node* node, CTaxTree* tree);
  116.     CTaxTreeBrowser(const CTaxTreeBrowser&);
  117.     CTaxTreeBrowser& operator=(const CTaxTreeBrowser&);
  118. };
  119. END_NCBI_SCOPE
  120. /*
  121.  * ===========================================================================
  122.  * $Log: tax_tree.hpp,v $
  123.  * Revision 1000.1  2004/06/01 19:53:33  gouriano
  124.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  125.  *
  126.  * Revision 1.7  2004/05/13 17:31:17  dicuccio
  127.  * Renamed data source file
  128.  *
  129.  * Revision 1.6  2004/04/09 16:53:08  tereshko
  130.  * Added functionality to send/accept selections
  131.  *
  132.  * Revision 1.5  2004/04/07 12:44:08  dicuccio
  133.  * Use CConstRef<CSeq_id> instead of int for sequences
  134.  *
  135.  * Revision 1.4  2004/04/01 19:03:41  dicuccio
  136.  * Added support for limiting the tax tree to a more manageable set of nodes.
  137.  *
  138.  * Revision 1.3  2003/12/23 21:14:08  ucko
  139.  * +<memory> for auto_ptr<>
  140.  *
  141.  * Revision 1.2  2003/12/23 15:38:22  dicuccio
  142.  * Added lots of comments.  Made the classes gi-agnostic (UIDs instead).  Altered
  143.  * the data source to return an ITreeIterator
  144.  *
  145.  * Revision 1.1  2003/12/22 19:46:00  dicuccio
  146.  * Initial revision
  147.  *
  148.  * ===========================================================================
  149.  */
  150. #endif  // GUI_WIDGETS___TAX_TREE__HPP