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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: cross_panel_ir.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:51:34  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGET_ALN_CROSSALN___CROSS_PANEL_IR__HPP
  10. #define GUI_WIDGET_ALN_CROSSALN___CROSS_PANEL_IR__HPP
  11. /*  $Id: cross_panel_ir.hpp,v 1000.1 2004/06/01 19:51:34 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Vlad Lebedev
  37.  *
  38.  * Description: A panel that will render a cross alignment panel
  39.  *
  40.  */
  41. #include <gui/gui.hpp>
  42. #include <objmgr/bioseq_handle.hpp>
  43. #include <gui/widgets/gl/irenderable.hpp>
  44. #include <gui/widgets/aln_crossaln/cross_aln_ds.hpp>
  45. #include <gui/opengl/glbitmapfont.hpp>
  46. #include <gui/objutils/layout.hpp>
  47. BEGIN_NCBI_SCOPE
  48. class CCrossPanelIR : public IRenderable
  49. {
  50. public:
  51.     
  52.     CCrossPanelIR();
  53.     virtual ~CCrossPanelIR(void);
  54.     // IRenderable
  55.     TVPRect    GetVPRect();
  56.     TModelRect GetModelRect();
  57.     void Render(CGlPane& pane);
  58.     
  59.     void SetDataSource(CCrossAlnDataSource* ds);
  60.     void SetProportions(TModelUnit k, TModelUnit dx);
  61.     void SetShifts(TModelUnit sh1, TModelUnit sh2);
  62.     
  63. private:
  64.     CRef<CCrossAlnDataSource>  m_DS;
  65.     CGlBitmapFont m_Font_Bitmap9x15;
  66.     TModelUnit  m_K;  // relation of scales beetween two sequences
  67.     TModelUnit  m_Dx; // offset of second sequence against the first one
  68.     TModelUnit  m_Sh1; // scroll offsets for both sequences
  69.     TModelUnit  m_Sh2;
  70.     
  71.     TModelUnit m_OffsetX; // CGlPane offsets
  72.     TModelUnit m_OffsetY;
  73.     
  74.     // width in pixels of one seq. letter
  75.     int m_OneCharWidth;
  76.     // coordinate transformation
  77.     TModelUnit x_Seq2Lim1(TModelUnit seq);
  78.     TModelUnit x_Seq2Lim2(TModelUnit seq);
  79.     TModelUnit x_Lim2Seq1(TModelUnit lim);
  80.     TModelUnit x_Lim2Seq2(TModelUnit lim);
  81.     void x_GetSequence(const objects::CBioseq_Handle& handle, 
  82.                 TModelUnit from, TModelUnit to, string& buffer) const;
  83.     void x_DrawCrossAlignment(CGlPane& pane, GLenum shape);
  84.         
  85.     bool x_IsSeqLettersFit1(CGlPane& pane) const;
  86.     bool x_IsSeqLettersFit2(CGlPane& pane) const;
  87.     
  88. };
  89. END_NCBI_SCOPE
  90. /*
  91.  * ===========================================================================
  92.  * $Log: cross_panel_ir.hpp,v $
  93.  * Revision 1000.1  2004/06/01 19:51:34  gouriano
  94.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  95.  *
  96.  * Revision 1.3  2004/05/03 12:47:08  dicuccio
  97.  * Added #include for gui/gui.hpp.  gui/utils ->gui/objutils where needed.
  98.  *
  99.  * Revision 1.2  2004/03/11 17:21:37  dicuccio
  100.  * Use TSeqRange instead of TRange.  Deprecated TIndex, TDimension, TPosition.
  101.  * Corrected use of constructor - add default NULL const char* label
  102.  *
  103.  * Revision 1.1  2003/12/22 13:10:45  lebedev
  104.  * Initial revision
  105.  *
  106.  * ===========================================================================
  107.  */
  108. #endif  // GUI_WIDGET_ALN_CROSSALN___CROSS_PANEL_IR__HPP