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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: tree_browser.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:09:26  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: tree_browser.cpp,v 1000.1 2004/06/01 21:09:26 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/widgets/fl/tree_browser.hpp>
  41. BEGIN_NCBI_SCOPE
  42. CTreeBrowser::CTreeBrowser(int x, int y, int w, int h, const char* label)
  43.     : Flu_Tree_Browser(x, y, w, h, label)
  44. {
  45. }
  46. CTreeBrowser::Node* CTreeBrowser::Add(const string& child_label,
  47.                                       Node* node,
  48.                                       EAdd add_mode)
  49. {
  50.     if (child_label.empty()) {
  51.         return NULL;
  52.     }
  53.     string str;
  54.     const string* pstr = &child_label;
  55.     if ( !node ) {
  56.         node = get_root();
  57.     }
  58.     switch (add_mode) {
  59.     case eAdd_Branch:
  60.         if (child_label[ child_label.length() - 1 ] != '/') {
  61.             str = child_label + "/";
  62.             pstr = &str;
  63.         }
  64.         break;
  65.     case eAdd_Leaf:
  66.         if (child_label[ child_label.length() - 1 ] == '/'  &&
  67.             (child_label.length() < 2  ||
  68.              child_label[ child_label.length() - 2 ] != '\')
  69.              ) {
  70.             str = child_label.substr(0, child_label.length()-1);
  71.             pstr = &str;
  72.         }
  73.         break;
  74.     }
  75.     return add(node, pstr->c_str());
  76. }
  77. CTreeBrowser::Node* CTreeBrowser::AddChild(const string& child_label,
  78.                                            Node* node)
  79. {
  80.     // make sure we end in an un-escaped '/'
  81.     return Add(x_EscapeSlashes(child_label), node, eAdd_Branch);
  82. }
  83. CTreeBrowser::Node* CTreeBrowser::AddLeaf(const string& child_label,
  84.                                           Node* node)
  85. {
  86.     // make sure we end in an un-escaped '/'
  87.     return Add(x_EscapeSlashes(child_label), node, eAdd_Leaf);
  88. }
  89. CTreeBrowser::Node* CTreeBrowser::GetSelected(Node* node) const
  90. {
  91.     if ( !node ) {
  92.         node = const_cast<CTreeBrowser*>(this)->get_root();
  93.     }
  94.     while (node  &&  !node->selected() ) {
  95.         node = node->next();
  96.     }
  97.     return node;
  98. }
  99. string CTreeBrowser::x_EscapeSlashes(const string& s) const
  100. {
  101.     string str(s);
  102.     string::size_type pos = 0;
  103.     while ( (pos = str.find_first_of("/", pos)) != string::npos) {
  104.         str.insert(pos, "\");
  105.         pos += 2;
  106.     }
  107.     return str;
  108. }
  109. END_NCBI_SCOPE
  110. /*
  111.  * ===========================================================================
  112.  * $Log: tree_browser.cpp,v $
  113.  * Revision 1000.1  2004/06/01 21:09:26  gouriano
  114.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  115.  *
  116.  * Revision 1.3  2004/05/21 22:27:53  gorelenk
  117.  * Added PCH ncbi_pch.hpp
  118.  *
  119.  * Revision 1.2  2003/12/22 19:38:13  dicuccio
  120.  * Made GetSelected() const
  121.  *
  122.  * Revision 1.1  2003/12/09 15:51:53  dicuccio
  123.  * Deprecated Fl_Toggle_Tree - replaced with Flu_Tree_Browser.  Added CTreeBrowser
  124.  * as a standard tree interface
  125.  *
  126.  * ===========================================================================
  127.  */