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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: cross_aln_pane.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/16 17:51:00  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_ALN_CROSSALN___CROSS_ALN_PANE__HPP
  10. #define GUI_WIDGETS_ALN_CROSSALN___CROSS_ALN_PANE__HPP
  11. /*  $Id: cross_aln_pane.hpp,v 1000.1 2004/04/16 17:51:00 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.  *   Panel for the cross alignment view widget 
  40.  *   (see <gui/widgets/aln_crossaln/cross_aln_widget.hpp>)
  41.  *
  42.  */
  43. #include "cross_aln_render.hpp"
  44. #include <gui/gui.hpp>
  45. #include <gui/opengl.h>
  46. #include <gui/opengl/glcanvas2d.hpp>
  47. #include <gui/widgets/aln_crossaln/cross_aln_ds.hpp>
  48. #include <gui/widgets/aln_crossaln/cross_aln_widget.hpp>
  49. #include <gui/widgets/seq_graphic/seqgraphic_conf.hpp>
  50. #include <gui/widgets/gl/mouse_zoom_handler.hpp>
  51. #include <gui/widgets/fl/tooltip.hpp>
  52. #include <FL/Fl.H>
  53. BEGIN_NCBI_SCOPE
  54. class CCrossAlnPane : public CGlCanvas2d,
  55.                       public IMouseZoomHandlerHost, // for zooming with mouse
  56.                       public ITooltipClient // for using with "active" CTooltip
  57. {
  58. public:
  59.     CCrossAlnPane(int x, int y, int w, int h, const char* label = NULL);
  60.     virtual ~CCrossAlnPane();
  61.     void SetDataSource(CCrossAlnDataSource* ds);
  62.     void Update();
  63.     
  64.     void FitToWindow    (void);
  65.     void ZoomToSequence (void);
  66.     void ZoomOnRange    (const TSeqRange& range);
  67.     void ZoomOnAlignment();
  68.     
  69.     TSeqRange GetVisibleRange();
  70.     
  71.     void Scroll(TModelUnit x1, TModelUnit y1, TModelUnit x2, TModelUnit y2);
  72.     
  73.     void SetConfig(CRef<CSeqGraphicConfig> config);
  74.     // set/clear selections
  75.     void SelectObject(const CLayoutObject* obj);
  76.     void SelectObject(const CObject* obj);
  77.     void ClearSelection();
  78.     // retrieve the selections from our renderer
  79.     const TConstObjects& GetSelectedObjects(void) const;
  80.     
  81.     // IMouseZoomHandlerHost implementation
  82.     virtual TModelUnit MZHH_GetScale(EScaleType type);
  83.     virtual void       MZHH_SetScale(TModelUnit scale, const TModelPoint& point);
  84.     virtual void       MZHH_ZoomRect(const TModelRect& rc);
  85.     virtual void       MZHH_Scroll(TModelUnit d_x, TModelUnit d_y);
  86.     virtual TVPUnit    MZHH_GetVPPosByY(int y) const;
  87.     virtual void       MZHH_Redraw(void);
  88.     // IMouseZoomHandlerHost end
  89.     
  90.     // ITooltipClient implementation
  91.     virtual bool    TC_NeedTooltip(int x, int y);    
  92.     virtual string  TC_GetTooltip(int& x, int& y, int& w, int& h);
  93.     // ITooltipClient end    
  94. private:
  95.     CRef<CCrossAlnDataSource>  m_DS;
  96.     CRef<CCrossAlnRenderer>    m_Renderer;
  97.     CRef<CSeqGraphicConfig>    m_ConfigSettings;
  98.     
  99.     CCrossAlnRenderer::TRendererPanel m_HitPanel;
  100.     CGlPane* m_HitPane;
  101.     CMouseZoomHandler m_MouseZoomHandler;
  102.     CGUIEvent         m_Event;
  103.     // For Tooltips
  104.     CTooltip    m_Tooltip;
  105.     string      m_TooltipText;
  106.     // --- Virtual (FLTK)
  107.     virtual void draw();
  108.     virtual int  handle(int event);
  109.     // --- Methods
  110.     void x_AdjustScrollBars   (void);
  111. };
  112. END_NCBI_SCOPE
  113. /*
  114.  * ===========================================================================
  115.  * $Log: cross_aln_pane.hpp,v $
  116.  * Revision 1000.1  2004/04/16 17:51:00  gouriano
  117.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  118.  *
  119.  * Revision 1.5  2004/04/16 14:49:02  dicuccio
  120.  * Use TConstObjects for handling object selections
  121.  *
  122.  * Revision 1.4  2004/03/11 17:50:41  dicuccio
  123.  * Updated typedefs: dropped TDimension, TPosition, TIndex, TColor; use TSeqRange
  124.  * instead of TRange
  125.  *
  126.  * Revision 1.3  2004/01/27 16:20:41  lebedev
  127.  * Changed stored selection from CLayoutObject to CObject
  128.  *
  129.  * Revision 1.2  2004/01/16 13:40:39  lebedev
  130.  * Tooltips added
  131.  *
  132.  * Revision 1.1  2003/12/22 13:12:33  lebedev
  133.  * Initial revision
  134.  *
  135.  * ===========================================================================
  136.  */
  137. #endif  /* GUI_WIDGETS_ALN_CROSSALN___CROSS_ALN_PANE__HPP */