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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: view_alntable.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 21:01:08  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: view_alntable.cpp,v 1000.2 2004/06/01 21:01:08 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 "view_alntable.hpp"
  41. #include "visible_range_dlg.hpp"
  42. #include "preference_dlg.hpp"
  43. #include <gui/types.hpp>
  44. #include <gui/core/doc_manager.hpp>
  45. #include <gui/core/plugin_utils.hpp>
  46. #include <gui/core/version.hpp>
  47. #include <gui/plugin/PluginRequest.hpp>
  48. #include <gui/plugin/PluginCommand.hpp>
  49. #include <gui/plugin/PluginCommandSet.hpp>
  50. #include <gui/plugin/PluginValue.hpp>
  51. #include <objmgr/scope.hpp>
  52. #include <objmgr/seq_vector.hpp>
  53. #include <serial/typeinfo.hpp>
  54. #include <objmgr/util/sequence.hpp>
  55. BEGIN_NCBI_SCOPE
  56. USING_SCOPE(objects);
  57. #include "view_alntable_.cpp"
  58. void CViewAlnTable::GetInfo(CPluginInfo& info)
  59. {
  60.     info.Reset();
  61.     // version info macro
  62.     info.SetInfo(CPluginVersion::eMajor, CPluginVersion::eMinor, 0,
  63.                  string(__DATE__) + " " + string(__TIME__),
  64.                  "CViewAlnTable", "Alignment Table",
  65.                  "Tabular list of alignments", "");
  66.     // command info
  67.     CPluginCommandSet& cmds = info.SetCommands();
  68.     CPluginCommand&    args = cmds.AddViewCommand(eViewCommand_new_view);
  69.     args.AddArgument("aligns", "Alignments to display",
  70.                      CSeq_align::GetTypeInfo(),
  71.                      CPluginArg::TData::e_Array);
  72. }
  73. CViewAlnTable::CViewAlnTable(const CPluginMessage& msg, 
  74.                              const string& pool_name)
  75.     : CView()
  76. {
  77.     m_Window.reset(x_CreateWindow());
  78.     // create our dynamic menu managers
  79.     m_AlgoMenuMgr.reset(new CAlgoMenuMgr(m_Menu, "Tools", m_AlnTable));
  80.     m_ViewMenuMgr.reset(new CViewMenuMgr(m_Menu, "View", m_AlnTable, pool_name));
  81.     // decode the argument
  82.     const CPluginCommand& args = msg.GetRequest().GetCommand();
  83.     plugin_args::TAlignList aligns;
  84.     GetArgValue(args["aligns"], aligns);
  85.     list< CConstRef<CSeq_align> > align_list;
  86.     CConstRef<IDocument> doc_ref;
  87.     ITERATE (plugin_args::TAlignList, iter, aligns) {
  88.         doc_ref = iter->first;
  89.         align_list.push_back(iter->second);
  90.     }
  91.     x_SetDocument(*doc_ref);
  92.     m_DataSource.Reset(new CAlnTableDS(doc_ref->GetScope(), align_list));
  93.     m_AlnTable->SetDataSource(*m_DataSource);
  94. }
  95. void CViewAlnTable::OnDocumentChanged()
  96. {
  97.     x_Update();
  98. }
  99. void CViewAlnTable::x_Update()
  100. {
  101.     SetTitle(GetTitle());
  102.     m_StatusBar->SetMessage("No alignments.");
  103.     if ( !m_AlnTable  || !GetDocument() ) {
  104.         return;
  105.     }
  106.     m_AlnTable->Update();
  107.     // prepare our status bar message
  108.     x_UpdateStatusMessage();
  109.     // update our dynamic menus
  110.     x_UpdateDynMenus();
  111. }
  112. void CViewAlnTable::x_UpdateStatusMessage()
  113. {
  114.     //
  115.     // prepare our status bar message
  116.     //
  117.     string status_msg;
  118.     int total_aligns = m_AlnTable->GetRows();
  119.     status_msg = NStr::IntToString(total_aligns) + " alignment";
  120.     if (total_aligns != 1) {
  121.         status_msg += "s";
  122.     }
  123.     m_StatusBar->SetMessage(status_msg);
  124. }
  125. void CViewAlnTable::x_UpdateDynMenus()
  126. {
  127.     m_ViewMenuMgr->Clear();
  128.     m_AlgoMenuMgr->Clear();
  129.     m_ViewMenuMgr->AddActiveViews(GetDocument());
  130.     m_ViewMenuMgr->AddNewViews();
  131.     m_AlgoMenuMgr->AddAlgoMenu();
  132. }
  133.     
  134. const string& CViewAlnTable::GetTitle() const
  135. {
  136.     static string s_str("Alignment Table View");
  137.     return s_str;
  138. }
  139. END_NCBI_SCOPE
  140. /*
  141.  * ===========================================================================
  142.  * $Log: view_alntable.cpp,v $
  143.  * Revision 1000.2  2004/06/01 21:01:08  gouriano
  144.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  145.  *
  146.  * Revision 1.3  2004/05/21 22:27:49  gorelenk
  147.  * Added PCH ncbi_pch.hpp
  148.  *
  149.  * Revision 1.2  2004/04/16 14:47:27  dicuccio
  150.  * Enabled alignment table view.  Use appropriate ISelection interface for dynamic menus
  151.  *
  152.  * Revision 1.1  2004/04/07 12:01:35  dicuccio
  153.  * Initial revision
  154.  *
  155.  * Revision 1.34  2004/03/11 17:47:22  dicuccio
  156.  * Use TSeqRange instead of TRange
  157.  *
  158.  * Revision 1.33  2004/01/27 18:45:35  dicuccio
  159.  * Added missing header files
  160.  *
  161.  * Revision 1.32  2004/01/20 18:17:53  dicuccio
  162.  * Changed to match new API in CTablePanel
  163.  *
  164.  * Revision 1.31  2004/01/07 18:51:46  dicuccio
  165.  * Guard against self-assignment in OnSelectionsChanged()
  166.  *
  167.  * Revision 1.30  2003/12/30 15:03:56  dicuccio
  168.  * Added ability to pass selections into feature table
  169.  *
  170.  * Revision 1.29  2003/12/24 17:23:49  friedman
  171.  * Changed x_UpdateDynMenus to pass in visible range seqloc instead of seqid.
  172.  *
  173.  * Revision 1.28  2003/12/24 16:33:18  friedman
  174.  * Added posting visible range change message.
  175.  *
  176.  * Revision 1.27  2003/12/22 19:32:24  dicuccio
  177.  * Lots of code clean-up.  Changed to match new APIs in IView.  Added first pass
  178.  * at processing selections (not entirely working)
  179.  *
  180.  * Revision 1.26  2003/12/22 18:15:08  friedman
  181.  * Added various visible range methods and the selection of a method
  182.  * through the preference menu selection and dialog.
  183.  *
  184.  * Revision 1.25  2003/12/03 22:24:12  friedman
  185.  * Added changing visible range of the table.
  186.  *
  187.  * Revision 1.24  2003/11/26 19:45:39  friedman
  188.  * Changed CSeq_id plugn arg to CSeq_loc. Set visible range based on seq loc passed in.
  189.  *
  190.  * Revision 1.23  2003/11/24 15:45:45  dicuccio
  191.  * Renamed CVersion to CPluginVersion
  192.  *
  193.  * Revision 1.22  2003/11/20 21:50:39  jcherry
  194.  * Set status message *after* updating feature table (fixes reporting of
  195.  * number of features)
  196.  *
  197.  * Revision 1.21  2003/11/20 16:54:33  ucko
  198.  * OnVisibleRangeChanged: don't try to introduce const in static_cast<>.
  199.  *
  200.  * Revision 1.20  2003/11/19 20:45:28  friedman
  201.  * Added handling a visible range change event
  202.  *
  203.  * Revision 1.19  2003/11/04 12:51:28  friedman
  204.  * Added event message pool callbacks for the document all-view message pool.
  205.  *
  206.  * Revision 1.18  2003/10/27 20:03:42  dicuccio
  207.  * Rearranged Update() to be consistent
  208.  *
  209.  * Revision 1.17  2003/10/07 13:47:07  dicuccio
  210.  * Renamed CPluginURL* to CPluginValue*
  211.  *
  212.  * Revision 1.16  2003/09/04 14:54:23  dicuccio
  213.  * Use IDocument instead of CDocument.  Changed APIs to match changes in IView
  214.  *
  215.  * Revision 1.15  2003/07/31 17:04:34  dicuccio
  216.  * Changed type stored by feature table view - use CMappedFeat instead of CFeature
  217.  * (less memory consumption)
  218.  *
  219.  * Revision 1.14  2003/07/22 15:32:17  dicuccio
  220.  * Changed to make use of new API in plugin_utils.hpp - GetArgValue()
  221.  *
  222.  * Revision 1.13  2003/06/26 15:33:41  dicuccio
  223.  * Moved GetURLValue() from PluginURL.hpp to plugin_utils.hpp.  Fixed compilation
  224.  * errors relating to missing #includes
  225.  *
  226.  * Revision 1.12  2003/06/25 17:03:01  dicuccio
  227.  * Split CPluginHandle into a handle (pointer-to-implementation) and
  228.  * implementation file.  Lots of #include file clean-ups.
  229.  *
  230.  * Revision 1.11  2003/06/20 14:53:53  dicuccio
  231.  * Revised plugin registration - moved GetInfo() into the plugin handler
  232.  *
  233.  * Revision 1.10  2003/06/02 16:06:24  dicuccio
  234.  * Rearranged src/objects/ subtree.  This includes the following shifts:
  235.  *     - src/objects/asn2asn --> arc/app/asn2asn
  236.  *     - src/objects/testmedline --> src/objects/ncbimime/test
  237.  *     - src/objects/objmgr --> src/objmgr
  238.  *     - src/objects/util --> src/objmgr/util
  239.  *     - src/objects/alnmgr --> src/objtools/alnmgr
  240.  *     - src/objects/flat --> src/objtools/flat
  241.  *     - src/objects/validator --> src/objtools/validator
  242.  *     - src/objects/cddalignview --> src/objtools/cddalignview
  243.  * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  244.  * replaces the three libmmdb? libs.
  245.  *
  246.  * Revision 1.9  2003/05/19 13:46:51  dicuccio
  247.  * Moved gui/core/plugin/ --> gui/plugin/.  Merged core libraries into
  248.  * libgui_core.so
  249.  *
  250.  * Revision 1.8  2003/04/29 14:56:16  dicuccio
  251.  * Reworked FLUID-generated code: better memory management, more explicit control
  252.  * over the constructor
  253.  *
  254.  * Revision 1.7  2003/04/24 16:42:52  dicuccio
  255.  * Updated to reflect changes in IDocument, plugin API
  256.  *
  257.  * Revision 1.6  2003/03/17 14:54:15  dicuccio
  258.  * Changed base class CView - added member variable for FLTK gui component for
  259.  * child windows, which is now maintained via an auto_ptr<>.  Eliminated
  260.  * Show()/Hide() as a pure virtual requirement.
  261.  *
  262.  * Revision 1.5  2003/03/03 14:58:56  dicuccio
  263.  * Changed to use visible range from the base class.  Added an explicit setter for
  264.  * the visible range
  265.  *
  266.  * Revision 1.4  2003/01/13 13:10:09  dicuccio
  267.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace ncbi.
  268.  * Moved all FLUID-generated code into namespace ncbi.
  269.  *
  270.  * Revision 1.3  2003/01/08 14:58:47  dicuccio
  271.  * Major overhaul.  Added column selection dialog to base class - moved out of
  272.  * this class.  Added ability to sort columns based on menu selections.  Added
  273.  * ability to filter features based on a wide range of criteria.
  274.  *
  275.  * Revision 1.2  2002/12/31 16:16:27  dicuccio
  276.  * Fixed odd compiler error in MSVC release builds - ambiguous '&&' operator
  277.  *
  278.  * Revision 1.1  2002/12/30 18:49:41  dicuccio
  279.  * Initial revision
  280.  *
  281.  * ===========================================================================
  282.  */