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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: view_genbank.cpp,v $
  4.  * PRODUCTION Revision 1000.5  2004/06/01 21:02:48  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: view_genbank.cpp,v 1000.5 2004/06/01 21:02:48 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 implementation file for extension of basic text viewer
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/core/plugin_utils.hpp>
  41. #include <gui/core/version.hpp>
  42. #include <gui/plugin/PluginRequest.hpp>
  43. #include <gui/plugin/PluginCommand.hpp>
  44. #include <gui/plugin/PluginCommandSet.hpp>
  45. #include <gui/plugin/PluginInfo.hpp>
  46. #include <gui/plugin/PluginValue.hpp>
  47. #include <objects/seq/Bioseq.hpp>
  48. #include <objects/seqset/Seq_entry.hpp>
  49. #include <objmgr/util/sequence.hpp>
  50. #include <objtools/format/flat_file_generator.hpp>
  51. #include <serial/serial.hpp>
  52. #include <serial/objostrasn.hpp>
  53. #include "genbank_ff_formatter.hpp"
  54. #include "view_genbank.hpp"
  55. #include "paragraph.hpp"
  56. BEGIN_NCBI_SCOPE
  57. USING_SCOPE(objects);
  58. #include "view_genbank_.cpp"
  59. void CViewGenbank::GetInfo(CPluginInfo& info)
  60. {
  61.     info.Reset();
  62.     // version info macro
  63.     info.SetInfo(CPluginVersion::eMajor, CPluginVersion::eMinor, 0,
  64.                  string(__DATE__) + " " + string(__TIME__),
  65.                  "CViewGenbank", "Text/Flat-File View",
  66.                  "GenBank Flat-File Text Viewer", "");
  67.     // command info
  68.     CPluginCommandSet& cmds = info.SetCommands();
  69.     CPluginCommand&    args = cmds.AddViewCommand(eViewCommand_new_view);
  70.     args.AddArgument("id", "Seq-id of the record we wish to display",
  71.                      CSeq_id::GetTypeInfo());
  72. }
  73. CViewGenbank::CViewGenbank(const CPluginMessage& msg, const string& pool_name)
  74.     : CView()
  75.     , m_CurrentFont(FL_COURIER)
  76.     , m_CurrentFontSize(12)
  77. {
  78.     m_Window.reset(x_CreateWindow());
  79.     m_TextSize->value(1);
  80.     m_TextFont->value(2);
  81.     // create our view menu manager
  82.     m_ViewMenuMgr.reset(new CViewMenuMgr(m_Menu, "View", this, pool_name));
  83.     // decode the argument
  84.     const CPluginCommand& args = msg.GetRequest().GetCommand();
  85.     const CPluginArg& arg = args["id"];
  86.     const IDocument* doc = arg.GetDocument();
  87.     const CSeq_id* id =
  88.         dynamic_cast<const CSeq_id*> (arg.GetObject());
  89.     // assign to our core components
  90.     if (doc  &&  id) {
  91.         x_SetDocument(*doc);
  92.         m_SeqId.Reset(id);
  93.     }
  94. }
  95. void CViewGenbank::OnDocumentChanged()
  96. {
  97.     // Clear the m_Editor scroll widget
  98.     m_EditPack->clear();
  99.     CBioseq_Handle handle =
  100.         m_Document->GetScope().GetBioseqHandle(*m_SeqId);
  101.     if (handle) {
  102.         // Genbank format
  103.         CFlatFileGenerator ffg;
  104.         CRef<CGenbankEditOStream> os(new CGenbankEditOStream(this));
  105.         ffg.Generate(handle.GetParentEntry(), *os);
  106.     }
  107.     // retrieve a nice title
  108.     SetTitle(x_GetTitle(handle));
  109.     m_Window->redraw();
  110.     if ( !GetSelBuffer() ) {
  111.         SetSelBuffer().AddSelection(m_Document, *m_SeqId);
  112.     }
  113.     m_ViewMenuMgr->AddActiveViews(m_Document);
  114.     m_ViewMenuMgr->AddNewViews();//   (m_Document);
  115. }
  116. void CViewGenbank::AddToEditPack (CParagraph* p)
  117. {
  118.     if ( p == 0 ) {
  119.         return;
  120.     }
  121.     //int h = m_EditPack->h() + p->h();
  122.     //m_EditPack->size (m_EditPack->w(), h); 
  123.     p->SetSection (m_EditPack);
  124.     m_EditPack->add ((Fl_Widget*)p);
  125. }
  126. const string& CViewGenbank::GetTitle(void) const
  127. {
  128.     static string s_str("Flat-File View");
  129.     return s_str;
  130. }
  131. void CViewGenbank::x_OnFontHelvetica()
  132. {
  133.     m_CurrentFont = FL_HELVETICA;
  134.     m_TextFont->value(0);
  135.     m_TextFont->redraw();
  136. }
  137. void CViewGenbank::x_OnFontTimes()
  138. {
  139.     m_CurrentFont = FL_TIMES;
  140.     m_TextFont->value(1);
  141.     m_TextFont->redraw();
  142. }
  143. void CViewGenbank::x_OnFontCourier()
  144. {
  145.     m_CurrentFont = FL_COURIER;
  146.     m_TextFont->value(2);
  147.     m_TextFont->redraw();
  148. }
  149. void CViewGenbank::x_OnFontSmall()
  150. {
  151.     m_CurrentFontSize = 10;
  152.     m_TextSize->value(0);
  153.     m_TextSize->redraw();
  154. }
  155. void CViewGenbank::x_OnFontNormal()
  156. {
  157.     m_CurrentFontSize = 12;
  158.     m_TextSize->value(1);
  159.     m_TextSize->redraw();
  160. }
  161. void CViewGenbank::x_OnFontLarge()
  162. {
  163.     m_CurrentFontSize = 14;
  164.     m_TextSize->value(2);
  165.     m_TextSize->redraw();
  166. }
  167. //
  168. // help submenu
  169. //
  170. void CViewGenbank::x_OnHelpTextViewHelp()
  171. {
  172. }
  173. END_NCBI_SCOPE
  174. /*
  175.  * ===========================================================================
  176.  * $Log: view_genbank.cpp,v $
  177.  * Revision 1000.5  2004/06/01 21:02:48  gouriano
  178.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  179.  *
  180.  * Revision 1.10  2004/05/21 22:27:50  gorelenk
  181.  * Added PCH ncbi_pch.hpp
  182.  *
  183.  * Revision 1.9  2004/04/22 16:05:51  shomrat
  184.  * CFlatFileGenerator initialization change
  185.  *
  186.  * Revision 1.8  2004/04/16 14:47:57  dicuccio
  187.  * Use appropriate ISelection interface for dynamic menus
  188.  *
  189.  * Revision 1.7  2004/04/07 13:05:11  dicuccio
  190.  * Changed view API - require CPluginMessage instead of CPluginArgSet
  191.  *
  192.  * Revision 1.6  2004/03/26 14:14:56  shomrat
  193.  * Use new API
  194.  *
  195.  * Revision 1.5  2003/12/22 19:35:41  dicuccio
  196.  * Updated to match new APIs in IView.  Added taxonomy tree / common tree browser
  197.  *
  198.  * Revision 1.4  2003/12/18 14:06:28  shomrat
  199.  * using format library instead of flat
  200.  *
  201.  * Revision 1.3  2003/11/24 15:45:47  dicuccio
  202.  * Renamed CVersion to CPluginVersion
  203.  *
  204.  * Revision 1.2  2003/11/20 13:19:18  dicuccio
  205.  * Fixed calling parameters for views to match new requirements - pass view's message pool name as second param
  206.  *
  207.  * Revision 1.1  2003/11/04 17:27:22  dicuccio
  208.  * Split text views into three components
  209.  *
  210.  * ===========================================================================
  211.  */