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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_treebrowser.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:10:05  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: test_treebrowser.cpp,v 1000.1 2004/06/01 21:10:05 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 <memory>
  41. #include <corelib/ncbistd.hpp>
  42. #include <corelib/ncbiapp.hpp>
  43. #include <corelib/ncbienv.hpp>
  44. #include <corelib/ncbiargs.hpp>
  45. #include <gui/widgets/fl/tree_browser.hpp>
  46. #include <FL/Fl.H>
  47. #include <FL/Fl_Double_Window.H>
  48. #include <FL/Fl_Menu_Bar.H>
  49. #include <FL/Fl_Menu_.H>
  50. #include <FL/Fl_Button.H>
  51. BEGIN_NCBI_SCOPE
  52. #include "test_treebrowser_.cpp"
  53. CTreeBrowserTestUI::CTreeBrowserTestUI()
  54. {
  55.     m_Window.reset(x_CreateWindow());
  56.     m_Tree->set_root("My Root");
  57. }
  58. CTreeBrowserTestUI::~CTreeBrowserTestUI()
  59. {
  60.     m_Window.reset();
  61. }
  62. void CTreeBrowserTestUI::Show(int argc, char** argv)
  63. {
  64.     m_Window->show(argc, argv);
  65.     while (m_Window->shown()) {
  66.         Fl::wait();
  67.     }
  68. }
  69. void CTreeBrowserTestUI::x_OnAddSub()
  70. {
  71.     static int counter = 0;
  72.     string str = "SubNode " + NStr::IntToString(++counter);
  73.     CTreeBrowser::Node* node = m_Tree->GetSelected();
  74.     if (node) {
  75.         m_Tree->AddChild(str, node);
  76.     }
  77.     m_Tree->redraw();
  78. }
  79. void CTreeBrowserTestUI::x_OnAddLeaf()
  80. {
  81.     static int counter = 0;
  82.     string str = "Leaf " + NStr::IntToString(++counter);
  83.     CTreeBrowser::Node* node = m_Tree->GetSelected();
  84.     if (node) {
  85.         m_Tree->AddLeaf(str, node);
  86.     }
  87.     m_Tree->redraw();
  88. }
  89. class CTestTreeApp : public CNcbiApplication
  90. {
  91. private:
  92.     virtual void Init(void);
  93.     virtual int  Run(void);
  94.     virtual void Exit(void);
  95. };
  96. void CTestTreeApp::Init(void)
  97. {
  98.     // Create command-line argument descriptions class
  99.     auto_ptr<CArgDescriptions> arg_desc(new CArgDescriptions);
  100.     // Specify USAGE context
  101.     arg_desc->SetUsageContext(GetArguments().GetProgramBasename(),
  102.                               "CTreeBrowser demo program");
  103.     // Setup arg.descriptions for this application
  104.     SetupArgDescriptions(arg_desc.release());
  105. }
  106. int CTestTreeApp::Run(void)
  107. {
  108.     // Get arguments
  109.     CArgs args = GetArgs();
  110.     char *argv[1];
  111.     argv[0] = "app";
  112.     CTreeBrowserTestUI window;
  113.     window.Show(1, argv);
  114.     return 0;
  115. }
  116. /////////////////////////////////////////////////////////////////////////////
  117. //  Cleanup
  118. void CTestTreeApp::Exit(void)
  119. {
  120.     SetDiagStream(0);
  121. }
  122. /////////////////////////////////////////////////////////////////////////////
  123. //  MAIN
  124. END_NCBI_SCOPE
  125. USING_SCOPE(ncbi);
  126. int main(int argc, const char* argv[])
  127. {
  128.     // Execute main application function
  129.     return CTestTreeApp().AppMain(argc, argv, 0, eDS_Default, 0);
  130. }
  131. /*
  132.  * ===========================================================================
  133.  * $Log: test_treebrowser.cpp,v $
  134.  * Revision 1000.1  2004/06/01 21:10:05  gouriano
  135.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  136.  *
  137.  * Revision 1.2  2004/05/21 22:27:53  gorelenk
  138.  * Added PCH ncbi_pch.hpp
  139.  *
  140.  * Revision 1.1  2003/12/09 19:08:16  dicuccio
  141.  * Moved test_treebrowser from widgets/FLU/demo to here
  142.  *
  143.  * Revision 1.1  2003/12/09 15:51:31  dicuccio
  144.  * Deprecated Fl_Toggle_Tree - replaced with Flu_Tree_Browser.  Added CTreeBrowser
  145.  * as a standard tree interface
  146.  *
  147.  * Revision 1.2  2003/08/21 12:06:42  dicuccio
  148.  * Many bug fixes - Fl_Toggle_Tree is nearly completed.  Reimplemented correct
  149.  * clipping of the widget to its extent.  Added scroll bar (not yet working).
  150.  * Removed dead code
  151.  *
  152.  * Revision 1.1  2003/07/30 12:25:25  dicuccio
  153.  * Initial revision
  154.  *
  155.  * ===========================================================================
  156.  */