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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: alnvec_multi_widget.cpp,v $
  4.  * PRODUCTION Revision 1000.4  2004/06/01 21:07:22  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.13
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: alnvec_multi_widget.cpp,v 1000.4 2004/06/01 21:07:22 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:  Andrey Yazhuk
  35.  *
  36.  * File Description:
  37.  * 
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <corelib/ncbistd.hpp>
  41. #include <gui/widgets/aln_multiple/align_row.hpp>
  42. #include <gui/widgets/aln_multiple/alnvec_multi_widget.hpp>
  43. BEGIN_NCBI_SCOPE
  44. ////////////////////////////////////////////////////////////////////////////////
  45. /// class CAlnVecMultiWidget
  46. CAlnVecMultiWidget::CAlnVecMultiWidget(int PosX, int PosY, int Width, int Height, const char* label)
  47. :   CAlnMultiWidget(PosX, PosY, Width, Height, label),
  48.     m_SignalStyle(CTraceGraphProperties::eCurve)
  49. {
  50. }
  51. CAlnVecMultiWidget::~CAlnVecMultiWidget()
  52. {
  53.     delete m_pModel;
  54.     m_pModel = NULL;
  55. }
  56. void    CAlnVecMultiWidget::SetTraceGraphStyle(
  57.                                 CTraceGraphProperties::ESingnalStyle style)
  58. {
  59.     m_SignalStyle = style;
  60.     CAlnVecMultiModel* p_model = GetAlnVecModel();
  61.     if(p_model  &&  m_pDataSource)    {
  62.         TNumrow n_rows = m_pDataSource->GetNumRows();
  63.         for( TNumrow i = 0;  i < n_rows; i++ )  {
  64.             CAlnVecRow* p_row = p_model->SetAlnVecRow(i);
  65.             
  66.             x_SetSignalStyle(p_row);
  67.         }
  68.     }
  69. }
  70. void    CAlnVecMultiWidget::x_SetSignalStyle(CAlnVecRow* p_row)
  71. {
  72.     // obtain graph's properties
  73.     const IAlnRowGraphProperties* gr_props = p_row->GetProperties();
  74.     const CTraceGraphProperties* tr_props = 
  75.         dynamic_cast<const CTraceGraphProperties*>(gr_props);
  76.     if(tr_props)    { // modify and assign properties
  77.         CTraceGraphProperties props = *tr_props;
  78.         props.m_SignalStyle = m_SignalStyle;
  79.         p_row->SetProperties(&props);
  80.     }
  81. }
  82. void    CAlnVecMultiWidget::x_CreateModel(void)
  83. {
  84.     if(m_pModel == NULL)    {
  85.         CAlnVecMultiModel* p_model = new CAlnVecMultiModel();
  86.         p_model->EnableScoring(true);
  87.         m_pModel = p_model;
  88.     } else _ASSERT(false);
  89. }
  90. void    CAlnVecMultiWidget::x_UpdateOnDataChanged(bool reset)
  91. {
  92.     CAlnMultiWidget::x_UpdateOnDataChanged(reset);
  93.     
  94.     _ASSERT(m_pAlignPane  &&  m_pModel);
  95.     CAlnVecMultiModel* p_model = dynamic_cast<CAlnVecMultiModel*>(m_pModel);
  96.     if(p_model  &&  m_pDataSource)    {
  97.         TNumrow n_rows = m_pDataSource->GetNumRows(); //### model ?
  98.         for( TNumrow i = 0;  i < n_rows; i++ )  {
  99.             CAlnVecRow* p_row = p_model->SetAlnVecRow(i);
  100.             p_row->SetHost(m_pAlignPane);
  101.             
  102.             x_SetSignalStyle(p_row);
  103.         }
  104.     }
  105. }
  106. END_NCBI_SCOPE
  107. /*
  108.  * ===========================================================================
  109.  * $Log: alnvec_multi_widget.cpp,v $
  110.  * Revision 1000.4  2004/06/01 21:07:22  gouriano
  111.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.13
  112.  *
  113.  * Revision 1.13  2004/05/21 22:27:52  gorelenk
  114.  * Added PCH ncbi_pch.hpp
  115.  *
  116.  * Revision 1.12  2004/04/29 21:49:04  johnson
  117.  * make viewport reset in x_UpdateOnDataChanged optional
  118.  *
  119.  * Revision 1.11  2004/03/29 19:03:15  yazhuk
  120.  * Added GetAlnVecModel() and Graph style management
  121.  *
  122.  * Revision 1.10  2004/03/25 13:18:49  dicuccio
  123.  * MInor code reformatting
  124.  *
  125.  * Revision 1.9  2004/03/17 20:09:53  yazhuk
  126.  * Factored out part of CAlnVecMultiWidget to separate class CAlnVecMultiModel
  127.  *
  128.  * Revision 1.8  2004/03/09 21:00:11  yazhuk
  129.  * Separated part of the class into CAlnMultiModel.
  130.  *
  131.  * Revision 1.7  2004/02/11 17:44:12  yazhuk
  132.  * Implemented support for multiple scoring methods
  133.  *
  134.  * Revision 1.6  2004/02/10 19:55:24  yazhuk
  135.  * kColorGradNumber = 32
  136.  *
  137.  * Revision 1.5  2003/12/22 16:27:24  yazhuk
  138.  * Replaced x_Update() with x_UpdateOnDataChanged(), GetStyleByRowNum()
  139.  * with GetStyleForRow()
  140.  *
  141.  * Revision 1.4  2003/12/18 21:21:52  yazhuk
  142.  * Implemented support for display styles
  143.  *
  144.  * Revision 1.3  2003/11/17 21:21:26  yazhuk
  145.  * Fixed SetGapChar() call
  146.  *
  147.  * Revision 1.2  2003/11/03 16:58:20  yazhuk
  148.  * Added p_row->SetHost() call to x_CreateRow()
  149.  *
  150.  * Revision 1.1  2003/10/29 23:29:49  yazhuk
  151.  * Initial revision
  152.  *
  153.  * ===========================================================================
  154.  */