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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: view_feattable.cpp,v $
  4.  * PRODUCTION Revision 1000.7  2004/06/01 21:01:26  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.37
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: view_feattable.cpp,v 1000.7 2004/06/01 21:01: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 "view_feattable.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. #include "view_feattable_.cpp"
  57. void CViewFeatTable::GetInfo(CPluginInfo& info)
  58. {
  59.     info.Reset();
  60.     // version info macro
  61.     info.SetInfo(CPluginVersion::eMajor, CPluginVersion::eMinor, 0,
  62.                  string(__DATE__) + " " + string(__TIME__),
  63.                  "CViewFeatTable", "Feature Table",
  64.                  "Tabular list of all features in a record", "");
  65.     // command info
  66.     CPluginCommandSet& cmds = info.SetCommands();
  67.     CPluginCommand&    args = cmds.AddViewCommand(eViewCommand_new_view);
  68.     args.AddArgument("loc", "Location to display",
  69.                      CSeq_loc::GetTypeInfo());
  70. }
  71. CViewFeatTable::CViewFeatTable(const CPluginMessage& msg, 
  72.                                const string& pool_name)
  73.     : CView()
  74. {
  75.     m_Window.reset(x_CreateWindow());
  76.     // create our dynamic menu managers
  77.     m_AlgoMenuMgr.reset(new CAlgoMenuMgr(m_Menu, "Tools", this));
  78.     m_ViewMenuMgr.reset(new CViewMenuMgr(m_Menu, "View", this, pool_name));
  79.     m_SortMenuMgr.reset(new CSortMenuMgr(m_Menu, "View"));
  80.     m_SortMenuMgr->AddSortMenu(m_FeatTable);
  81.     // decode the argument
  82.     const CPluginCommand& args = msg.GetRequest().GetCommand();
  83.     const CPluginArg& arg = args["loc"];
  84.     const IDocument* doc = arg.GetDocument();
  85.     const CSeq_loc* loc =
  86.         dynamic_cast<const CSeq_loc*> (arg.GetObject());
  87.     // assign to our core components
  88.     if (doc  &&  loc) {
  89.         x_SetDocument(*doc);
  90.         m_SeqId.Reset(&sequence::GetId(*loc));
  91. // set sequence range
  92.         x_SetVisibleRange(*loc);
  93.     }
  94. }
  95. void CViewFeatTable::OnSelectionChanged(const CSelectionBuffer& buf)
  96. {
  97.     m_StatusBar->SetMessage("No features.");
  98.     if ( !m_FeatTable  ||  !GetDocument()  ||  &buf == &GetSelBuffer()) {
  99.         return;
  100.     }
  101.     // accept our selections
  102.     SetSelBuffer().Clear();
  103.     m_FeatTable->ClearSelections();
  104.     TConstScopedObjects sels = buf.DecomposeToPairs();
  105.     ITERATE (TConstScopedObjects, iter, sels) {
  106.         SConstScopedObject cso = *iter;
  107.         const IDocument* doc =
  108.             CDocManager::GetDocumentFromScope(*cso.scope);
  109.         // only accept selections for the current document
  110.         if ( doc != m_Document) {
  111.             continue;
  112.         }
  113.         // only select seq-feat selections
  114.         const CSeq_feat* feat =
  115.             dynamic_cast<const CSeq_feat*>(cso.object.GetPointer());
  116.         if ( !feat ) {
  117.             continue;
  118.         }
  119.         // select!
  120.         SetSelBuffer().AddSelection(doc, *feat);
  121.         m_FeatTable->SelectFeature(*feat);
  122.     }
  123.     m_FeatTable->redraw();
  124.     // prepare our status bar message
  125.     x_UpdateStatusMessage();
  126.     // reset our menus
  127.     x_UpdateDynMenus();
  128. }
  129. void CViewFeatTable::OnDocumentChanged()
  130. {
  131.     x_Update();
  132. }
  133. void CViewFeatTable::OnVisibleRangeChanged(const CSeq_loc& loc)
  134. {
  135.     SetVisibleRange(loc);
  136.     m_FeatTable->SetVisibleRange(*m_VisibleRange);
  137.     m_FeatTable->Update(GetDocument()->GetScope().GetBioseqHandle(*m_SeqId));
  138. }
  139. void CViewFeatTable::x_Update()
  140. {
  141.     SetTitle(GetTitle());
  142.     m_StatusBar->SetMessage("No features.");
  143.     if ( !m_FeatTable  || !GetDocument() ) {
  144.         return;
  145.     }
  146.     CBioseq_Handle handle =
  147.         GetDocument()->GetScope().GetBioseqHandle(*m_SeqId);
  148.     m_FeatTable->Update(handle);
  149.     SetTitle(x_GetTitle(handle));
  150.     // prepare our status bar message
  151.     x_UpdateStatusMessage();
  152.     // update our dynamic menus
  153.     x_UpdateDynMenus();
  154. }
  155. void CViewFeatTable::x_UpdateStatusMessage()
  156. {
  157.     //
  158.     // prepare our status bar message
  159.     //
  160.     string status_msg;
  161.     int total_feats = m_FeatTable->GetTotalFeats();
  162.     status_msg = NStr::IntToString(total_feats) + " feature";
  163.     if (total_feats != 1) {
  164.         status_msg += "s";
  165.     }
  166.     if (m_FeatTable->GetFilters().GetFilters().size() != 0) {
  167.         int num_filts = m_FeatTable->GetFilters().GetFilters().size();
  168.         status_msg += ", " + NStr::IntToString(num_filts) + " filter";
  169.         if (num_filts != 1) {
  170.             status_msg += "s";
  171.         }
  172.         int filtered_feats = m_FeatTable->GetFilteredFeats();
  173.         status_msg +=
  174.             ", " + NStr::IntToString(filtered_feats) + " feature";
  175.         if (filtered_feats != 1) {
  176.             status_msg += "s match";
  177.         } else {
  178.             status_msg += " matches";
  179.         }
  180.     } else {
  181.         status_msg += ", no filters selected";
  182.     }
  183.     m_StatusBar->SetMessage(status_msg);
  184. }
  185. void CViewFeatTable::x_SetVisibleRange(const CSeq_loc& loc)
  186. {
  187.     if (loc.IsWhole()) {
  188.         CRef<CSeq_loc> seq_loc(new CSeq_loc);
  189.         seq_loc->SetWhole().Assign(*m_SeqId);
  190.         SetVisibleRange(*seq_loc);
  191.     } else {
  192.         TSeqRange range = loc.GetTotalRange();
  193.         x_SetVisibleRange(range);
  194.     }
  195. }
  196. void CViewFeatTable::x_SetVisibleRange(const TSeqRange& range)
  197. {
  198.     CRef<CSeq_loc> seq_loc(new CSeq_loc());
  199.     // Set  seq loc with the range 
  200.     seq_loc->SetInt().SetFrom(range.GetFrom());
  201.     seq_loc->SetInt().SetTo  (range.GetTo());
  202. seq_loc->SetId(*m_SeqId);
  203.     SetVisibleRange(*seq_loc);
  204.     m_FeatTable->SetVisibleRange(*m_VisibleRange);
  205. }
  206. void CViewFeatTable::x_UpdateDynMenus()
  207. {
  208.     m_ViewMenuMgr->Clear();
  209.     m_AlgoMenuMgr->Clear();
  210.     if ( !GetSelBuffer() ) {
  211.         SetSelBuffer().AddSelection(m_Document, *m_SeqId);
  212.     }
  213.     m_ViewMenuMgr->AddActiveViews(GetDocument());
  214.     m_ViewMenuMgr->AddNewViews();
  215.     m_AlgoMenuMgr->AddAlgoMenu();
  216. }
  217.     
  218. const string& CViewFeatTable::GetTitle() const
  219. {
  220.     static string s_str("Feature Table View");
  221.     return s_str;
  222. }
  223. void CViewFeatTable::x_OnHelp()
  224. {
  225. }
  226. void CViewFeatTable::x_OnFilter()
  227. {
  228.     if ( !m_FilterDlg.get() ) {
  229.         m_FilterDlg.reset(new CFilterDlg());
  230.         m_FilterDlg->SetFilters(&m_FeatTable->GetFilters());
  231.     }
  232.     m_FilterDlg->Show();
  233.     x_Update();
  234. }
  235. void CViewFeatTable::x_OnSelChanged()
  236. {
  237.     SetSelBuffer().Clear();
  238.     for (size_t i = 0;  i < m_FeatTable->GetRows();  ++i) {
  239.         if ( !m_FeatTable->row_selected(i) ) {
  240.             continue;
  241.         }
  242.         CMappedFeat feat = m_FeatTable->GetData(i);
  243.         SetSelBuffer().AddSelection(GetDocument(), feat.GetOriginalFeature());
  244.     }
  245.     // update our dynamic menus
  246.     x_UpdateDynMenus();
  247.     //...and notify our connected views
  248.     PostSelectionChanged(GetSelBuffer());
  249. }
  250. void CViewFeatTable::x_OnVisibleRangeChange()
  251. {
  252.     // Get the max value for the "to" field
  253.     CBioseq_Handle handle = GetDocument()->GetScope().GetBioseqHandle(*m_SeqId);
  254.     TSeqPos seq_size = handle.GetSeqVector().size();
  255.     // set the dialog with the current seting
  256.     const CSeq_loc& loc = GetVisibleRange();
  257.     TSeqRange range(loc.GetTotalRange());
  258.     
  259.     CFeatTable::EVisibleRangeMethod method;
  260.     method = m_FeatTable->GetVisibleRangeMethod();
  261.     auto_ptr<CVisibleRangeDialog> dlg;
  262.     if (method == CFeatTable::eScrollTo) {
  263.         dlg.reset(new CVisibleRangeDialog(range.GetFrom(), seq_size));
  264.     } else {
  265.         dlg.reset(new CVisibleRangeDialog(seq_size));
  266.         if (!range.IsWhole() && !range.Empty()) {
  267.             dlg->SetRange(range);
  268.         }
  269.     }
  270.     if (dlg->ShowModal()) {
  271.         if (method == CFeatTable::eScrollTo) {
  272.             range.SetFrom(dlg->GetScrollTo());
  273.             range.SetTo(seq_size);
  274.         } else {
  275.             range = dlg->GetRange();
  276.         }
  277.         x_SetVisibleRange(range);
  278.         m_FeatTable->Update
  279.             (GetDocument()->GetScope().GetBioseqHandle(*m_SeqId));
  280.         // Post a message the the visible range changed
  281.         PostVisibleRangeChanged(GetVisibleRange());
  282.     }
  283. }
  284. void CViewFeatTable::x_OnPreferences()
  285. {
  286.     CFeatTablePreferenceDialog dlg;
  287.     CFeatTable::EVisibleRangeMethod method;
  288.     // set dialog with current setting - Default is Scrool To
  289.     method = m_FeatTable->GetVisibleRangeMethod();
  290.     if (method == CFeatTable::eEntirelyContained) {
  291.         dlg.SetEntirelyContained();
  292.     } else if (method == CFeatTable::eIntersection) {
  293.         dlg.SetIntersection();
  294.     } else {
  295.         dlg.SetScrollTo();
  296.     }
  297.     if (dlg.ShowModal()) {
  298.         // visible range method
  299.         if (dlg.EntirelyContainedMethod()) {
  300.             method = CFeatTable::eEntirelyContained;
  301.         } else if (dlg.ScrollToMethod()) {
  302.             method = CFeatTable::eScrollTo;
  303.         } else if (dlg.IntersectionMethod()) {
  304.             method = CFeatTable::eIntersection;
  305.         }
  306.         m_FeatTable->SetVisibleRangeMethod(method);
  307.         CBioseq_Handle handle = 
  308.             m_Document->GetScope().GetBioseqHandle(*m_SeqId);
  309.         m_FeatTable->Update(handle);    
  310.     }
  311. }
  312. END_NCBI_SCOPE
  313. /*
  314.  * ===========================================================================
  315.  * $Log: view_feattable.cpp,v $
  316.  * Revision 1000.7  2004/06/01 21:01:26  gouriano
  317.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.37
  318.  *
  319.  * Revision 1.37  2004/05/21 22:27:49  gorelenk
  320.  * Added PCH ncbi_pch.hpp
  321.  *
  322.  * Revision 1.36  2004/04/16 14:47:27  dicuccio
  323.  * Enabled alignment table view.  Use appropriate ISelection interface for dynamic menus
  324.  *
  325.  * Revision 1.35  2004/04/07 13:04:24  dicuccio
  326.  * Changed view API - use CPluginMessage instead of CPluginArgSet.  Use
  327.  * TConstScopedObjects instead of CSelectionBuffer::TSelItems.
  328.  *
  329.  * Revision 1.34  2004/03/11 17:47:22  dicuccio
  330.  * Use TSeqRange instead of TRange
  331.  *
  332.  * Revision 1.33  2004/01/27 18:45:35  dicuccio
  333.  * Added missing header files
  334.  *
  335.  * Revision 1.32  2004/01/20 18:17:53  dicuccio
  336.  * Changed to match new API in CTablePanel
  337.  *
  338.  * Revision 1.31  2004/01/07 18:51:46  dicuccio
  339.  * Guard against self-assignment in OnSelectionsChanged()
  340.  *
  341.  * Revision 1.30  2003/12/30 15:03:56  dicuccio
  342.  * Added ability to pass selections into feature table
  343.  *
  344.  * Revision 1.29  2003/12/24 17:23:49  friedman
  345.  * Changed x_UpdateDynMenus to pass in visible range seqloc instead of seqid.
  346.  *
  347.  * Revision 1.28  2003/12/24 16:33:18  friedman
  348.  * Added posting visible range change message.
  349.  *
  350.  * Revision 1.27  2003/12/22 19:32:24  dicuccio
  351.  * Lots of code clean-up.  Changed to match new APIs in IView.  Added first pass
  352.  * at processing selections (not entirely working)
  353.  *
  354.  * Revision 1.26  2003/12/22 18:15:08  friedman
  355.  * Added various visible range methods and the selection of a method
  356.  * through the preference menu selection and dialog.
  357.  *
  358.  * Revision 1.25  2003/12/03 22:24:12  friedman
  359.  * Added changing visible range of the table.
  360.  *
  361.  * Revision 1.24  2003/11/26 19:45:39  friedman
  362.  * Changed CSeq_id plugn arg to CSeq_loc. Set visible range based on seq loc passed in.
  363.  *
  364.  * Revision 1.23  2003/11/24 15:45:45  dicuccio
  365.  * Renamed CVersion to CPluginVersion
  366.  *
  367.  * Revision 1.22  2003/11/20 21:50:39  jcherry
  368.  * Set status message *after* updating feature table (fixes reporting of
  369.  * number of features)
  370.  *
  371.  * Revision 1.21  2003/11/20 16:54:33  ucko
  372.  * OnVisibleRangeChanged: don't try to introduce const in static_cast<>.
  373.  *
  374.  * Revision 1.20  2003/11/19 20:45:28  friedman
  375.  * Added handling a visible range change event
  376.  *
  377.  * Revision 1.19  2003/11/04 12:51:28  friedman
  378.  * Added event message pool callbacks for the document all-view message pool.
  379.  *
  380.  * Revision 1.18  2003/10/27 20:03:42  dicuccio
  381.  * Rearranged Update() to be consistent
  382.  *
  383.  * Revision 1.17  2003/10/07 13:47:07  dicuccio
  384.  * Renamed CPluginURL* to CPluginValue*
  385.  *
  386.  * Revision 1.16  2003/09/04 14:54:23  dicuccio
  387.  * Use IDocument instead of CDocument.  Changed APIs to match changes in IView
  388.  *
  389.  * Revision 1.15  2003/07/31 17:04:34  dicuccio
  390.  * Changed type stored by feature table view - use CMappedFeat instead of CFeature
  391.  * (less memory consumption)
  392.  *
  393.  * Revision 1.14  2003/07/22 15:32:17  dicuccio
  394.  * Changed to make use of new API in plugin_utils.hpp - GetArgValue()
  395.  *
  396.  * Revision 1.13  2003/06/26 15:33:41  dicuccio
  397.  * Moved GetURLValue() from PluginURL.hpp to plugin_utils.hpp.  Fixed compilation
  398.  * errors relating to missing #includes
  399.  *
  400.  * Revision 1.12  2003/06/25 17:03:01  dicuccio
  401.  * Split CPluginHandle into a handle (pointer-to-implementation) and
  402.  * implementation file.  Lots of #include file clean-ups.
  403.  *
  404.  * Revision 1.11  2003/06/20 14:53:53  dicuccio
  405.  * Revised plugin registration - moved GetInfo() into the plugin handler
  406.  *
  407.  * Revision 1.10  2003/06/02 16:06:24  dicuccio
  408.  * Rearranged src/objects/ subtree.  This includes the following shifts:
  409.  *     - src/objects/asn2asn --> arc/app/asn2asn
  410.  *     - src/objects/testmedline --> src/objects/ncbimime/test
  411.  *     - src/objects/objmgr --> src/objmgr
  412.  *     - src/objects/util --> src/objmgr/util
  413.  *     - src/objects/alnmgr --> src/objtools/alnmgr
  414.  *     - src/objects/flat --> src/objtools/flat
  415.  *     - src/objects/validator --> src/objtools/validator
  416.  *     - src/objects/cddalignview --> src/objtools/cddalignview
  417.  * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  418.  * replaces the three libmmdb? libs.
  419.  *
  420.  * Revision 1.9  2003/05/19 13:46:51  dicuccio
  421.  * Moved gui/core/plugin/ --> gui/plugin/.  Merged core libraries into
  422.  * libgui_core.so
  423.  *
  424.  * Revision 1.8  2003/04/29 14:56:16  dicuccio
  425.  * Reworked FLUID-generated code: better memory management, more explicit control
  426.  * over the constructor
  427.  *
  428.  * Revision 1.7  2003/04/24 16:42:52  dicuccio
  429.  * Updated to reflect changes in IDocument, plugin API
  430.  *
  431.  * Revision 1.6  2003/03/17 14:54:15  dicuccio
  432.  * Changed base class CView - added member variable for FLTK gui component for
  433.  * child windows, which is now maintained via an auto_ptr<>.  Eliminated
  434.  * Show()/Hide() as a pure virtual requirement.
  435.  *
  436.  * Revision 1.5  2003/03/03 14:58:56  dicuccio
  437.  * Changed to use visible range from the base class.  Added an explicit setter for
  438.  * the visible range
  439.  *
  440.  * Revision 1.4  2003/01/13 13:10:09  dicuccio
  441.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace ncbi.
  442.  * Moved all FLUID-generated code into namespace ncbi.
  443.  *
  444.  * Revision 1.3  2003/01/08 14:58:47  dicuccio
  445.  * Major overhaul.  Added column selection dialog to base class - moved out of
  446.  * this class.  Added ability to sort columns based on menu selections.  Added
  447.  * ability to filter features based on a wide range of criteria.
  448.  *
  449.  * Revision 1.2  2002/12/31 16:16:27  dicuccio
  450.  * Fixed odd compiler error in MSVC release builds - ambiguous '&&' operator
  451.  *
  452.  * Revision 1.1  2002/12/30 18:49:41  dicuccio
  453.  * Initial revision
  454.  *
  455.  * ===========================================================================
  456.  */