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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: seqgraphic_demo_ui.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:13:12  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: seqgraphic_demo_ui.cpp,v 1000.1 2004/06/01 21:13:12 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:  Vlad Lebedev
  35.  *
  36.  * File Description:
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include "seqgraphic_demo_ui.hpp"
  41. #include <gui/utils/message_box.hpp>
  42. #include <gui/utils/fltk_utils.hpp>
  43. #include <gui/widgets/seq_graphic/seqgraphic_conf.hpp>
  44. #include <objtools/data_loaders/genbank/gbloader.hpp>
  45. #include <serial/objistr.hpp>
  46. #include <objects/seq/Seq_annot.hpp>
  47. #include <serial/serial.hpp>
  48. BEGIN_NCBI_SCOPE
  49. USING_SCOPE(objects);
  50. #include "seqgraphic_demo_ui_.cpp"
  51. CSeqGraphicDemoUI::CSeqGraphicDemoUI()
  52. {
  53.     m_Window.reset(x_CreateWindow());
  54. }
  55. CSeqGraphicDemoUI::~CSeqGraphicDemoUI()
  56. {
  57.     // these must be deleted in proper order
  58.     m_DataSource.Reset();
  59.     m_Window.reset();
  60.     m_Scope.Reset();
  61.     m_ObjMgr.Reset();
  62. }
  63. void CSeqGraphicDemoUI::Show(int argc, char** argv)
  64. {
  65.     m_Accession->value("gi|");
  66.     m_Accession->redraw();
  67.     //m_InputFile->value("/Users/lebedev/seq1.asn");
  68.     //m_InputFile->redraw();
  69.     
  70.     // Create an empty config and pass it to the widget
  71.     CRef<CSeqGraphicConfig> config( new CSeqGraphicConfig(NULL) ); 
  72.     config->SetHistogram(CSeqFeatData::e_Imp, 
  73.                         CSeqFeatData::eSubtype_STS, true);
  74.     config->SetHistogram(CSeqFeatData::e_Imp, 
  75.                         CSeqFeatData::eSubtype_repeat_region, true);
  76.     m_SeqWidget->SetConfig(config);
  77.     
  78.     m_Window->show(argc, argv);
  79.     while (m_Window->shown()) {
  80.         Fl::wait();
  81.     }
  82. }
  83. void CSeqGraphicDemoUI::x_OnLoadAccession()
  84. {
  85.     CSeq_id id(m_Accession->value());
  86.     if (id.Which() == CSeq_id::e_not_set) {
  87.         string msg("Accession '");
  88.         msg += m_Accession->value();
  89.         msg += "' not recognized as a valid accession";
  90.         NcbiMessageBox(msg, eDialog_Ok, eIcon_Exclamation,
  91.                        "Unhandled Accession");
  92.         return;
  93.     }
  94.     if ( !m_ObjMgr ) {
  95.         m_ObjMgr.Reset(new CObjectManager());
  96.         m_ObjMgr->RegisterDataLoader(*new CGBDataLoader(),
  97.                                      CObjectManager::eDefault);
  98.         m_Scope.Reset(new CScope(*m_ObjMgr));
  99.         m_Scope->AddDefaults();
  100.     }
  101.     // retrieve our sequence
  102.     CBioseq_Handle handle = m_Scope->GetBioseqHandle(id);
  103.     if ( !handle ) {
  104.         string msg("Can't find sequence for accession '");
  105.         msg += m_Accession->value();
  106.         msg += "'";
  107.         NcbiMessageBox(msg, eDialog_Ok, eIcon_Exclamation,
  108.                        "Sequence Not Found");
  109.         return;
  110.     }
  111.     m_DataSource.Reset(new CSeqGraphicDataSource( *m_Scope, id));
  112.     m_SeqWidget->SetDataSource(m_DataSource.GetPointer());
  113. }
  114. void CSeqGraphicDemoUI::x_OnLoadFile()
  115. {
  116.     /*string filename(m_InputFile->value());
  117.     auto_ptr<CObjectIStream>    is(CObjectIStream::Open(eSerial_AsnText, filename));
  118.     CRef<CSeq_entry> aset(new CSeq_entry());
  119.     *is >> *aset;
  120.     if ( !m_ObjMgr ) {
  121.         m_ObjMgr.Reset(new CObjectManager());
  122.         m_ObjMgr->RegisterDataLoader(*new CGBDataLoader(),
  123.                                      CObjectManager::eDefault);
  124.         m_Scope.Reset(new CScope(*m_ObjMgr));
  125.         m_Scope->AddDefaults();
  126.     }
  127.     m_DataSource.Reset(new CSeqGraphicDataSource(m_Scope.GetObject(), id));
  128.     m_SeqWidget->SetDataSource(m_DataSource.GetPointer());*/
  129. }
  130. void CSeqGraphicDemoUI::x_SetZoomX(float zoom)
  131. {
  132.     m_SeqWidget->SetZoomX(zoom);
  133. }
  134. void CSeqGraphicDemoUI::x_QuitApp()
  135. {
  136.     delete m_MainWindow;
  137. }
  138. END_NCBI_SCOPE
  139. /*
  140.  * ===========================================================================
  141.  * $Log: seqgraphic_demo_ui.cpp,v $
  142.  * Revision 1000.1  2004/06/01 21:13:12  gouriano
  143.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  144.  *
  145.  * Revision 1.7  2004/05/21 22:27:55  gorelenk
  146.  * Added PCH ncbi_pch.hpp
  147.  *
  148.  * Revision 1.6  2004/05/17 18:19:37  gorelenk
  149.  * GetObject changed to deref. operator - causes problems on MSVC7
  150.  *
  151.  * Revision 1.5  2004/03/11 17:53:06  dicuccio
  152.  * Deprecated typedefs TPosition, TDimension, TIndex, TColor.  Use TSeqRange instead of TRange
  153.  *
  154.  * Revision 1.4  2004/02/13 18:10:01  lebedev
  155.  * Demo updated to reflect changes in the widget
  156.  *
  157.  * Revision 1.3  2004/01/16 13:39:32  lebedev
  158.  * Use default SeqGraphic configuration (CSeqGraphicConfig) for the demo
  159.  *
  160.  * Revision 1.2  2004/01/05 18:50:30  vasilche
  161.  * Fixed path to include files.
  162.  *
  163.  * Revision 1.1  2003/12/22 12:55:00  lebedev
  164.  * Initial revision
  165.  *
  166.  * ===========================================================================
  167.  */