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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: hit_matrix_widget.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/04/12 18:16:52  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_HIT_MATRIX___HIT_MATRIX_WIDGET__HPP
  10. #define GUI_WIDGETS_HIT_MATRIX___HIT_MATRIX_WIDGET__HPP
  11. /*  $Id: hit_matrix_widget.hpp,v 1000.2 2004/04/12 18:16:52 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:  Andrey Yazhuk
  37.  *
  38.  * File Description:
  39.  *  
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. #include <gui/opengl/glcanvas2d.hpp>
  43. #include <gui/opengl/gldlist.hpp>
  44. #include <gui/opengl/glviewport.hpp>
  45. #include <gui/utils/command.hpp>
  46. #include <objects/seqloc/Seq_loc.hpp>
  47. #include <gui/widgets/gl/glpane_widget.hpp>
  48. #include <gui/widgets/hit_matrix/hit_matrix_pane.hpp>
  49. #include <gui/widgets/hit_matrix/hit_matrix_ds.hpp>
  50. #include <FL/Fl_Group.H>
  51. #include <FL/Fl_Scrollbar.H>
  52. BEGIN_NCBI_SCOPE
  53. class CHitMatrixDataSource;
  54. /// Definitions for Hit Matrix Widget commands
  55. ///
  56. enum    EHitMatrixCommands {
  57.     eCmdSetEqualScale = eBaseCmdLast + 200,
  58.     eCmdChooseSeq,
  59.     eCmdColorByScore,
  60. };
  61. ////////////////////////////////////////////////////////////////////////////////
  62. /// class CHitMatrixWidget
  63. class NCBI_GUIWIDGETS_HIT_MATRIX_EXPORT CHitMatrixWidget : public CGlPaneWidget
  64. {
  65. public:
  66.     typedef list<CConstRef<CSeq_id> >   TIdRefList;
  67.     CHitMatrixWidget(int x, int y, int w, int h, const char* label = NULL);
  68.     virtual ~CHitMatrixWidget();
  69.     virtual void SetDataSource(CHitMatrixDataSource* p_ds);
  70.     virtual CHitMatrixDataSource*  GetDS(void);
  71.     virtual const CGlPane&  GetPort(void) const;
  72.     virtual void    OnSetScaleX(TModelUnit scale_x, const TModelPoint& point);
  73.     
  74.     /// @name Command handlers
  75.     /// @{
  76.     void    OnZoomSelection(void);
  77.     void    OnZoomToHits(void);
  78.     void    OnZoomToSelectedHitElems(void);
  79.     void    OnSetEqualScale(void);
  80.     
  81.     void    OnChooseSeq(void);
  82.     void    OnColorByScore(void);
  83.     
  84.     /// @}
  85.     virtual void    OnShowPopup(void);
  86.     CConstRef<CSeq_align_set>    GetSelectedHits(void) const;
  87.     CRef<CSeq_loc>      GetSubjectSelection(void) const;
  88.     CRef<CSeq_loc>      GetQuerySelection(void) const;
  89.     DECLARE_CMD_MAP();
  90. protected:    
  91.     // CGlPaneWidget overridables
  92.     virtual void x_CreatePane(void);   
  93.     virtual CGlPaneWidgetChild*    x_GetPane(void);
  94.     virtual void    x_SetPortLimits(void);
  95.     virtual void    x_ZoomToHits(void);
  96.     
  97.     virtual void    x_UpdateScrollbars(void);
  98.     virtual void    x_OnScrollX(void);
  99.     virtual void    x_OnScrollY(void);
  100.     virtual void    x_Update();
  101.     virtual void    x_UpdatePane();
  102. protected:
  103.     CHitMatrixDataSource *m_pDataSource;
  104.     CHitMatrixPane       *m_pMatrixPane;
  105.     
  106.     int     m_ScoreIndex; /// index of the score used for hit coloring
  107. };
  108. END_NCBI_SCOPE
  109. #endif  // GUI_WIDGETS_HIT_MATRIX___HIT_MATRIX_WIDGET__HPP
  110. /*
  111.  * ===========================================================================
  112.  * $Log: hit_matrix_widget.hpp,v $
  113.  * Revision 1000.2  2004/04/12 18:16:52  gouriano
  114.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  115.  *
  116.  * Revision 1.5  2004/02/12 21:06:16  yazhuk
  117.  * Added new Zoom functions; implemented OnShowPopup()
  118.  *
  119.  * Revision 1.4  2003/12/10 16:59:46  yazhuk
  120.  * Added argument specifying ref. point to OnSetScaleX()
  121.  *
  122.  * Revision 1.3  2003/12/05 17:33:48  yazhuk
  123.  * Added support for "Choose Sequences..." and "Color by Score" commands
  124.  *
  125.  * Revision 1.2  2003/12/01 17:03:13  yazhuk
  126.  * Eliminated IHitMatrixParent inheritance, changed GetDS() function.
  127.  *
  128.  * Revision 1.1  2003/11/17 21:00:14  yazhuk
  129.  * Initial revision
  130.  *
  131.  * ===========================================================================
  132.  */