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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: view_alninfo.cpp,v $
  4.  * PRODUCTION Revision 1000.5  2004/06/01 20:58:57  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.20
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: view_alninfo.cpp,v 1000.5 2004/06/01 20:58:57 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.  *    User-modifiable portion of the alignment informational view for GBENCH.
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include "view_alninfo.hpp"
  41. #include "alninfo_table.hpp"
  42. #include <gui/widgets/aln_data/align_ds.hpp>
  43. #include <gui/core/plugin_utils.hpp>
  44. #include <gui/core/version.hpp>
  45. #include <gui/plugin/PluginRequest.hpp>
  46. #include <gui/plugin/PluginCommand.hpp>
  47. #include <gui/plugin/PluginCommandSet.hpp>
  48. #include <gui/plugin/PluginValue.hpp>
  49. #include <objmgr/align_ci.hpp>
  50. #include <objtools/alnmgr/alnmix.hpp>
  51. BEGIN_NCBI_SCOPE
  52. USING_SCOPE(objects);
  53. // We include the generated _.cpp file here.  This avoids a nasty bug in some
  54. // versions of gcc in which inline functions are not intantiated.
  55. #include "view_alninfo_.cpp"
  56. void CAlnInfoView::GetInfo(CPluginInfo& info)
  57. {
  58.     info.Reset();
  59.     // version info macro
  60.     info.SetInfo(CPluginVersion::eMajor, CPluginVersion::eMinor, 0,
  61.                  string(__DATE__) + " " + string(__TIME__),
  62.                  "CAlnInfoView",
  63.                  "Alignment Info Viewer",
  64.                  "Alignment Info Viewer", "");
  65.     // command info
  66.     CPluginCommandSet& cmds = info.SetCommands();
  67.     CPluginCommand&    args = cmds.AddViewCommand(eViewCommand_new_view);
  68.     args.AddArgument("alignments", "Alignments to merge and render",
  69.                      CSeq_annot::GetTypeInfo(),
  70.                      CPluginArg::TData::e_Single);
  71.     args.SetConstraint("alignments",
  72.                        *CPluginValueConstraint::CreateAnnotType
  73.                        (CSeq_annot::TData::e_Align));
  74. }
  75. CAlnInfoView::CAlnInfoView(const CPluginMessage& msg, const string& pool_name)
  76.     : CAlnView()
  77. {
  78.     m_Window.reset(x_CreateWindow());
  79.     // set our core components
  80.     const CPluginCommand& args = msg.GetRequest().GetCommand();
  81.     const CPluginArg& arg = args["alignments"];
  82.     // extract the alignments from the argument
  83.     const CSeq_annot* annot =
  84.         dynamic_cast<const CSeq_annot*>(arg.GetObject());
  85.     const IDocument* doc = arg.GetDocument();
  86.     if (annot  &&  doc) {
  87.         x_SetDocument(*doc);
  88.         m_AnnotData.Reset(annot);
  89.     }
  90. }
  91. const string& CAlnInfoView::GetTitle() const
  92. {
  93.     static string s_str("Alignment Information");
  94.     return s_str;
  95. }
  96. //void CAlnInfoView::Update(TUpdateFlags flags)
  97. //{cout << "CAlnInfoView::Update" << endl;}
  98. /*
  99.     if (flags & fDocumentChanged) {
  100.         if ( m_AnnotData) {
  101.             m_DataSource.Reset(new CAlignDataSource(*m_AnnotData,
  102.                                                     m_Document->GetScope()));
  103.         }
  104.         if (m_DataSource) {
  105.             m_AlnInfo->Update(m_DataSource->SetAlnMgr());
  106.         }
  107.         m_TitleStr = m_Document->GetShortTitle() + ": " + GetTitle();
  108.         m_Window->label(m_TitleStr.c_str());
  109.     }
  110. }
  111. */
  112. void CAlnInfoView::OnDocumentChanged()
  113. {
  114.     if ( m_AnnotData) {
  115.         m_DataSource.Reset(new CAlignDataSource());
  116.         m_DataSource->Init(*m_AnnotData, m_Document->GetScope());
  117.     }
  118.     if (m_DataSource) {
  119.         m_AlnInfo->Update(m_DataSource->SetAlnMgr());
  120.     }
  121.     SetTitle(m_Document->GetShortTitle() + ": " + GetTitle());
  122. }
  123. void CAlnInfoView::x_OnFileClose()
  124. {
  125.     Hide();
  126. }
  127. void CAlnInfoView::x_OnHelp()
  128. {
  129. }
  130. void CAlnInfoView::x_OnShowSegments()
  131. {
  132.     m_AlnInfo->SetMode(CAlnInfoTable::eSegments);
  133. }
  134. void CAlnInfoView::x_OnShowSequence()
  135. {
  136.     m_AlnInfo->SetMode(CAlnInfoTable::eSequence);
  137. }
  138. void CAlnInfoView::x_OnShowScores()
  139. {
  140.     m_AlnInfo->SetMode(CAlnInfoTable::eScores);
  141. }
  142. END_NCBI_SCOPE
  143. /*
  144.  * ===========================================================================
  145.  * $Log: view_alninfo.cpp,v $
  146.  * Revision 1000.5  2004/06/01 20:58:57  gouriano
  147.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.20
  148.  *
  149.  * Revision 1.20  2004/05/21 22:27:49  gorelenk
  150.  * Added PCH ncbi_pch.hpp
  151.  *
  152.  * Revision 1.19  2004/04/07 13:05:10  dicuccio
  153.  * Changed view API - require CPluginMessage instead of CPluginArgSet
  154.  *
  155.  * Revision 1.18  2004/02/11 15:23:06  yazhuk
  156.  * Replaced constructor with arguments with default constructor and Init() call
  157.  *
  158.  * Revision 1.17  2003/12/22 19:33:12  dicuccio
  159.  * Lots of changes.  Changed to match new APIs in IView.  Added better handling of messages received from other views
  160.  *
  161.  * Revision 1.16  2003/11/24 15:45:42  dicuccio
  162.  * Renamed CVersion to CPluginVersion
  163.  *
  164.  * Revision 1.15  2003/11/19 20:45:25  friedman
  165.  * Added handling a visible range change event
  166.  *
  167.  * Revision 1.14  2003/11/04 12:51:27  friedman
  168.  * Added event message pool callbacks for the document all-view message pool.
  169.  *
  170.  * Revision 1.13  2003/10/07 13:47:06  dicuccio
  171.  * Renamed CPluginURL* to CPluginValue*
  172.  *
  173.  * Revision 1.12  2003/09/24 18:26:46  dicuccio
  174.  * Large clean-ups to alignment viewers.  Reimplemented data sources and alignment
  175.  * generation mechanism to be more generic.
  176.  *
  177.  * Revision 1.11  2003/09/04 14:54:21  dicuccio
  178.  * Use IDocument instead of CDocument.  Changed APIs to match changes in IView
  179.  *
  180.  * Revision 1.10  2003/07/22 15:32:16  dicuccio
  181.  * Changed to make use of new API in plugin_utils.hpp - GetArgValue()
  182.  *
  183.  * Revision 1.9  2003/06/26 15:33:41  dicuccio
  184.  * Moved GetURLValue() from PluginURL.hpp to plugin_utils.hpp.  Fixed compilation
  185.  * errors relating to missing #includes
  186.  *
  187.  * Revision 1.8  2003/06/25 17:02:59  dicuccio
  188.  * Split CPluginHandle into a handle (pointer-to-implementation) and
  189.  * implementation file.  Lots of #include file clean-ups.
  190.  *
  191.  * Revision 1.7  2003/06/20 14:53:51  dicuccio
  192.  * Revised plugin registration - moved GetInfo() into the plugin handler
  193.  *
  194.  * Revision 1.6  2003/06/02 16:06:22  dicuccio
  195.  * Rearranged src/objects/ subtree.  This includes the following shifts:
  196.  *     - src/objects/asn2asn --> arc/app/asn2asn
  197.  *     - src/objects/testmedline --> src/objects/ncbimime/test
  198.  *     - src/objects/objmgr --> src/objmgr
  199.  *     - src/objects/util --> src/objmgr/util
  200.  *     - src/objects/alnmgr --> src/objtools/alnmgr
  201.  *     - src/objects/flat --> src/objtools/flat
  202.  *     - src/objects/validator --> src/objtools/validator
  203.  *     - src/objects/cddalignview --> src/objtools/cddalignview
  204.  * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  205.  * replaces the three libmmdb? libs.
  206.  *
  207.  * Revision 1.5  2003/05/19 13:43:32  dicuccio
  208.  * Moved gui/core/plugin --> gui/plugin/.  Merged core libraries into libgui_core
  209.  *
  210.  * Revision 1.4  2003/04/24 16:40:38  dicuccio
  211.  * Updated to reflect changes in plugin API.  Added new common alignment view base
  212.  * class - handles notions of creating alignment manager in a standard way
  213.  *
  214.  * Revision 1.3  2003/03/17 14:54:14  dicuccio
  215.  * Changed base class CView - added member variable for FLTK gui component for
  216.  * child windows, which is now maintained via an auto_ptr<>.  Eliminated
  217.  * Show()/Hide() as a pure virtual requirement.
  218.  *
  219.  * Revision 1.2  2003/03/07 16:52:01  dicuccio
  220.  * Fixed minor compilation issue for Win32 - add USING_SCOPE(objects)
  221.  *
  222.  * Revision 1.1  2003/03/03 18:29:55  dicuccio
  223.  * Initial revision
  224.  *
  225.  * ===========================================================================
  226.  */