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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: phylo_tree_ds.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:52:54  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_PHYLO_TREE__PHYLO_TREE_DS_HPP
  10. #define GUI_WIDGETS_PHYLO_TREE__PHYLO_TREE_DS_HPP
  11. /*  $Id: phylo_tree_ds.hpp,v 1000.1 2004/06/01 19:52:54 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:  Vladimir Tereshkov
  37.  *
  38.  * File Description:
  39.  *
  40.  */
  41. #include <corelib/ncbistd.hpp>
  42. #include <corelib/ncbiobj.hpp>
  43. #include <corelib/ncbi_tree.hpp>
  44. #include <gui/widgets/phylo_tree/phylo_tree_node.hpp>
  45. #include <gui/widgets/phylo_tree/phylo_tree_reader.hpp>
  46. #include <gui/opengl/glpane.hpp>
  47. #include <algo/phy_tree/phy_tree_serial.hpp>
  48. #include <objmgr/scope.hpp>
  49. BEGIN_NCBI_SCOPE
  50. class  NCBI_GUIWIDGETS_PHYLO_TREE_EXPORT CPhyloTreeDataSource : public CObject
  51. {
  52. public:    
  53.     typedef map<int, CPhyloTreeNode *> TNodeHash;
  54.     typedef CPhyTreeSerial::TIds TIds;
  55.     CPhyloTreeDataSource();    
  56.     CPhyloTreeDataSource(IPhyloTreeReader * reader);
  57.     CPhyloTreeDataSource(TPhyTreeNode& node,
  58.                          const TIds& seqids, 
  59.                          objects::CScope& scope);
  60.     virtual ~CPhyloTreeDataSource();        
  61.     void Init(IPhyloTreeReader * reader);
  62.     void Init(TPhyTreeNode & node,  CPhyloTreeNode * pos); 
  63.     CPhyloTreeNode* GetTree(void);
  64.     Int4 GetWidth(void) { return m_Width; }
  65.     Int4 GetSize(void)  { return m_Size; }    
  66.     void SetSelection(CPhyloTreeNode * node, bool bSel,
  67.                       bool andChilds = true, bool checkParents = true);
  68.     vector<int> GetSelectedIds(void) const;    
  69.     
  70.     TIds ConvertId2SeqId(const vector<int> & ids);
  71.     vector<int> ConvertSeqId2Id(const TIds& seqids);
  72.     TNodeHash& GetHash(void) { return m_Hash; }
  73.     CPhyloTreeNode* GetNode(int idx);    
  74.     // returning calculated bounding rectangle
  75.     const TModelRect GetBoundRect(void);
  76.     // returning norm distance
  77.     const double GetNormDistance(bool fromRoot=true);
  78. private:
  79.     int m_Level;    
  80.     CPhyloTreeNode* m_Root;
  81.     TNodeHash m_Hash; 
  82.     
  83.     int m_Width;
  84.     int m_Size;
  85.     TIds       m_SeqIds;    
  86.     CRef<objects::CScope>    m_Scope;
  87.     
  88.     void x_MeasureTree(CPhyloTreeNode * node);  
  89.     void x_DescentToChilds(CPhyloTreeNode * node, bool bSel);
  90.     void x_AscendToRoot(CPhyloTreeNode * node, bool bSel);
  91. };
  92. END_NCBI_SCOPE
  93. /*
  94.  * ===========================================================================
  95.  * $Log: phylo_tree_ds.hpp,v $
  96.  * Revision 1000.1  2004/06/01 19:52:54  gouriano
  97.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  98.  *
  99.  * Revision 1.10  2004/05/11 20:53:38  tereshko
  100.  * Work in progress
  101.  *
  102.  * Revision 1.9  2004/04/28 19:27:27  tereshko
  103.  * Added support for distances rendering
  104.  *
  105.  * Revision 1.8  2004/04/16 14:33:59  dicuccio
  106.  * Formatting changes.  Added typedefs for IDs, node map
  107.  *
  108.  * Revision 1.7  2004/04/13 20:29:22  tereshko
  109.  * Numerous renderers improvements
  110.  *
  111.  * Revision 1.6  2004/04/02 16:20:29  yazhuk
  112.  * Replaced vector<CRef<>> with vector<CConstRef<>>, added Scope data member
  113.  *
  114.  * Revision 1.5  2004/04/01 21:47:00  tereshko
  115.  * Added ability of auto-selecting parent nodes
  116.  *
  117.  * Revision 1.4  2004/03/31 17:53:09  tereshko
  118.  * Added function for retrieval of preprocessed selection
  119.  *
  120.  * Revision 1.3  2004/03/30 17:11:08  tereshko
  121.  * Added support for events broadcasting
  122.  *
  123.  * Revision 1.2  2004/02/17 23:44:11  tereshko
  124.  * Changes due to integration into viewer
  125.  *
  126.  * Revision 1.1  2004/02/13 16:59:58  tereshko
  127.  * Phylogenetic Tree Widget initial revision
  128.  *
  129.  * ===========================================================================
  130.  */
  131. #endif