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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: taxplot3d_pane.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 19:33:11  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_TAXPLOT3D___TAXPLOT_3D_PANE___HPP
  10. #define GUI_WIDGETS_TAXPLOT3D___TAXPLOT_3D_PANE___HPP
  11. /*  $Id: taxplot3d_pane.hpp,v 1000.0 2004/04/12 19:33:11 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:  Vladimir Tereshkov
  37.  *
  38.  * File Description:  
  39.  *   A child of CGlCanvas3d, this pane implements all basic 3d drawing functionality
  40.  */
  41. #include <corelib/ncbistd.hpp>
  42. #include <gui/opengl/gldlist.hpp>
  43. #include <gui/opengl/glcanvas3d.hpp>
  44. #include "glmtransform.hpp"
  45. #include <gui/opengl/glbitmapfont.hpp>
  46. #include <gui/opengl/glcolortable.hpp>
  47. #include <gui/opengl/glutils.hpp>
  48. #include <gui/widgets/taxplot3d/taxplot3d_ds.hpp>
  49. #include <gui/widgets/taxplot3d/itaxplot3d_cp.hpp>
  50. #include <gui/widgets/fl/tooltip.hpp>
  51. BEGIN_NCBI_SCOPE
  52. class CTaxplot3dPanel : public CGlCanvas3d, public ITooltipClient
  53. {
  54. public:
  55.     enum EViewMode {
  56.       eCamera,
  57.       eViewX,
  58.       eViewY,
  59.       eViewZ
  60.     };
  61.     enum EPivotPoint {
  62.       eFloating,
  63.       eFixed
  64.     };
  65.     enum EPrimitiveShape {
  66.       eSphere,
  67.       eCube,
  68.       eCross
  69.     };
  70.     enum EGraphElement {
  71.       eAxes,
  72.       eGrid,
  73.       eArrows,
  74.       eLabels,
  75.       eScale
  76.     };
  77.     // ctor
  78.     CTaxplot3dPanel(int x, int y, int w, int h, const char* label = NULL);
  79.     // overridden draw()
  80.     void draw(void);
  81.     // overridden handle()
  82.     int handle(int event);
  83.     // overridden resize()
  84.     void resize(int x, int y, int w, int h);
  85.     // ds
  86.     void SetDataSource(CTaxplot3dDataSource * ds);
  87.     // automation
  88.     void SetAutomation(ITaxplot3dCP * pAuto)    { m_Handler = pAuto;  }
  89.     
  90.     // setting view options
  91.     void setViewMode(EViewMode mode)                  { m_ViewMode       = mode;  }
  92.     void setPivotPoint(EPivotPoint mode)              { m_PivotPoint     = mode;  }
  93.     void setPivotAttach(bool flag)                    { m_bPvAttach      = flag;  }
  94.     bool getPivotAttach(void)                         { return m_bPvAttach;       }
  95.     void setPrimitiveShape(EPrimitiveShape shape)     { m_PrimitiveShape = shape; }
  96.     void setVisible(EGraphElement el, bool flag);
  97.     bool getVisible(EGraphElement el);
  98.     // redraw which invalidates display list
  99.     void slowRedraw(void);
  100.      // ITooltipClient implementation
  101.     virtual bool    TC_NeedTooltip(int x, int y);    
  102.     virtual string  TC_GetTooltip(int& x, int& y, int& w, int& h);
  103. private:
  104.     CTooltip            m_Tooltip;
  105.     EViewMode           m_ViewMode;
  106.     EPivotPoint         m_PivotPoint;
  107.     EPrimitiveShape     m_PrimitiveShape;
  108.     // visibility flags
  109.     bool m_bAxes, m_bGrid, m_bArrows, m_bLabels, m_bScale;
  110.     // pivot attached to focus?
  111.     bool m_bPvAttach;
  112.     // internal event states for better processing of drag events
  113.     enum EState {
  114.         eNormal,
  115.         eRotate,
  116.         ePan,
  117.         eZoom
  118.     };
  119.     // the current state of the window
  120.     EState m_State;
  121.     // mouse transformations
  122.     CGlMTransform m_Transform;
  123.     
  124. // display list for our scene
  125.     CGlDisplayList m_Dlist;
  126.   
  127.     // pivot point
  128.     CVect3<float>  m_Pivot;
  129.     // data to plot
  130.     CTaxplot3dDataSource   * m_Data;
  131.     // font
  132.     CGlBitmapFont m_Font_Bitmap8x13;
  133.     // automation
  134.     ITaxplot3dCP * m_Handler;
  135.     
  136. // drawings
  137.     void drawPrimitive();
  138.     void drawAxes();
  139.     void drawScale();
  140.     // helpful internals
  141.     double        GetBestStep(bool bNorm = false);
  142.     CVect3<float> GetOGLPos(int x, int y);
  143.     int           findObject(int x, int y);
  144.     void          checkSelection(int x, int y);   
  145.     void          transformView(void);
  146.     void          switch2ortho(void);  
  147. };
  148. inline void CTaxplot3dPanel :: setVisible(EGraphElement el, bool flag)
  149. {  
  150.     switch (el){
  151.         case eAxes:   m_bAxes   = flag; break;
  152.         case eGrid:   m_bGrid   = flag; break;
  153.         case eArrows: m_bArrows = flag; break;
  154.         case eLabels: m_bLabels = flag; break;
  155.         case eScale:  m_bScale  = flag; break;
  156.     }
  157. }
  158. inline bool CTaxplot3dPanel :: getVisible(EGraphElement el)
  159. {  
  160.     switch (el){
  161.         case eAxes:   return m_bAxes;
  162.         case eGrid:   return m_bGrid;
  163.         case eArrows: return m_bArrows;
  164.         case eLabels: return m_bLabels;
  165.         case eScale:  return m_bScale;
  166.     }
  167.     // nothing is not visible
  168.     return false;
  169. }
  170. END_NCBI_SCOPE
  171. /*
  172.  * ===========================================================================
  173.  * $Log: taxplot3d_pane.hpp,v $
  174.  * Revision 1000.0  2004/04/12 19:33:11  gouriano
  175.  * PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.3
  176.  *
  177.  * Revision 1.3  2004/01/28 15:56:29  tereshko
  178.  * UI additions - scale, tooltips
  179.  *
  180.  * Revision 1.2  2004/01/14 16:39:22  tereshko
  181.  * Minor changes due to integration with Taxplot viewer
  182.  *
  183.  * Revision 1.1  2004/01/05 16:20:49  tereshko
  184.  * Initial revision
  185.  *
  186.  * ===========================================================================
  187.  */
  188. #endif  /* GUI_WIDGETS_TAXPLOT3D___TAXPLOT_3D_PANE___HPP */