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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: cross_aln_widget.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 18:22:59  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_ALN_CROSSALN___CROSS_ALN_WIDGET__HPP
  10. #define GUI_WIDGETS_ALN_CROSSALN___CROSS_ALN_WIDGET__HPP
  11. /*  $Id: cross_aln_widget.hpp,v 1000.0 2004/04/12 18:22:59 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.  * File Description:
  39.  *   Cross alignment view widget
  40.  *
  41.  */
  42. #include <corelib/ncbistd.hpp>
  43. #include <gui/gui.hpp>
  44. #include <memory>
  45. #include <FL/Fl_Group.H>
  46. #include <FL/Fl_Slider.H>
  47. #include <FL/Fl_Scrollbar.H>
  48. #include <objects/seqloc/Seq_loc.hpp>
  49. BEGIN_NCBI_SCOPE
  50. class CCrossAlnPane;
  51. class CCrossAlnDataSource;
  52. class NCBI_GUIWIDGETS_ALNCROSSALN_EXPORT CCrossAlnWidget : public Fl_Group
  53. {
  54. public:
  55.     CCrossAlnWidget(int x, int y, int w, int h, const char* label = NULL);
  56.     virtual ~CCrossAlnWidget();
  57.     void SetDataSource(CCrossAlnDataSource* ds);
  58.     enum EDisplayElement {
  59.         eBackground,
  60.         eGrid,
  61.         eNumbers,
  62.         eSelection,
  63.         eSequence,
  64.         eMismatch
  65.     };
  66.     void   SetColor(EDisplayElement elem, Fl_Color color);
  67.     //Fl_Color GetColor(EDisplayElement elem) const;    
  68.  
  69.     // set/clear selections
  70.     void SelectObject(const CObject* obj);
  71.     void SelectSeqLoc(const objects::CSeq_loc* loc);
  72.     void ClearSelection();
  73.     // datasource changed
  74.     void Update();
  75.     void FitToWindow    (void);
  76.     void ZoomToSequence (void);
  77.     void ZoomOnRange    (const TSeqRange& range);
  78.     void ZoomOnAlignment();
  79.     
  80. private:
  81.     friend void s_CCrossAlnWidget_ScrollCB(Fl_Widget*, void*);
  82.     friend class CCrossAlnPane;
  83.     void x_ScrollCB();
  84.     Fl_Slider*   m_SlideTop;
  85.     Fl_Slider*   m_SlideBtm;
  86.     
  87.     Fl_Scrollbar*    m_ScrollX1;
  88.     Fl_Scrollbar*    m_ScrollY1;
  89.     Fl_Scrollbar*    m_ScrollX2;
  90.     Fl_Scrollbar*    m_ScrollY2;
  91.     auto_ptr<CCrossAlnPane> m_CrossPane;
  92.     // forbidden
  93.     CCrossAlnWidget(const CCrossAlnWidget&);
  94.     CCrossAlnWidget& operator=(const CCrossAlnWidget&);
  95. };
  96. END_NCBI_SCOPE
  97. /*
  98.  * ===========================================================================
  99.  * $Log: cross_aln_widget.hpp,v $
  100.  * Revision 1000.0  2004/04/12 18:22:59  gouriano
  101.  * PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.4
  102.  *
  103.  * Revision 1.4  2004/03/11 17:21:37  dicuccio
  104.  * Use TSeqRange instead of TRange.  Deprecated TIndex, TDimension, TPosition.
  105.  * Corrected use of constructor - add default NULL const char* label
  106.  *
  107.  * Revision 1.3  2004/01/27 16:13:31  lebedev
  108.  * Methods for working with  selections added
  109.  *
  110.  * Revision 1.2  2003/12/22 19:16:27  dicuccio
  111.  * Added unimplemented copy ctor
  112.  *
  113.  * Revision 1.1  2003/12/22 13:10:44  lebedev
  114.  * Initial revision
  115.  *
  116.  * ===========================================================================
  117.  */
  118. #endif  /* GUI_WIDGETS_ALN_CROSSALN___CROSS_ALN_WIDGET__HPP */