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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: taxplot3d_widget.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 18:27:15  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_TAXPLOT___TAXPLOT_3D_WIDGET___HPP
  10. #define GUI_WIDGETS_TAXPLOT___TAXPLOT_3D_WIDGET___HPP
  11. /*  $Id: taxplot3d_widget.hpp,v 1000.0 2004/04/12 18:27:15 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.  *   Taxplot 3-dimensional widget
  40.  */
  41. #include <corelib/ncbistd.hpp>
  42. #include <gui/opengl/gldlist.hpp>
  43. #include <gui/opengl/glcanvas3d.hpp>
  44. #include <FL/Fl_Group.H>
  45. #include <FL/Fl_Menu.H>
  46. #include <FL/Fl_Menu_Button.H>
  47. #include <gui/utils/fltk_utils.hpp>
  48. #include <gui/widgets/fl/menu.hpp>
  49. #include <algorithm>
  50. BEGIN_NCBI_SCOPE
  51. class CTaxplot3dDataSource;
  52. class CTaxplot3dPanel;
  53. enum ETaxplotEvents{
  54.     CMD_PERSP_PROJECTION,
  55.     CMD_ORTOXY_PROJECTION,
  56.     CMD_ORTOYZ_PROJECTION,
  57.     CMD_ORTOXZ_PROJECTION,
  58.     CMD_REFRESH_VIEW,
  59.     CMD_VIEW_AXES,
  60.     CMD_VIEW_GRID,
  61.     CMD_VIEW_ARROWS,
  62.     CMD_VIEW_LABELS,
  63.     CMD_VIEW_SCALE,
  64.     CMD_SHAPE_SPHERE,
  65.     CMD_SHAPE_CUBE,
  66.     CMD_SHAPE_CROSS,
  67.     CMD_PIVOT_FLOATING,
  68.     CMD_PIVOT_FIXED,
  69.     CMD_PIVOT_ATTACHED,
  70.     CMD_COLOR_SCHEME1,
  71.     CMD_COLOR_SCHEME2,
  72.     CMD_COLOR_SCHEME3
  73. };
  74. ////////////////////////////////////////////////////////////////////////////////
  75. /// class CTaxplot3dWidget
  76. class  NCBI_GUIWIDGETS_TAXPLOT_EXPORT CTaxplot3dWidget :public Fl_Group                      
  77. {
  78. public:
  79.     CTaxplot3dWidget(int x, int y, int w, int h, const char* label);
  80.     virtual ~CTaxplot3dWidget();  
  81.     CTaxplot3dPanel * getPanel(void) {return m_3DPanel;};
  82.     void SetDataSource(CTaxplot3dDataSource  * ds);      
  83.     void SetViewMode(int mode);  
  84.     void SlowRedraw(void);
  85.     // overridden handle()
  86.     int handle(int event);
  87. private:
  88.     CTaxplot3dPanel  *  m_3DPanel;  
  89.     Fl_Menu_Button   *  m_PopupMenu;
  90.     Fl_Menu_Item     *  m_Pulldown;
  91.     CGUIEvent           m_Event;
  92.     CPopupMenu       *  m_pPopupMenu;
  93. };
  94. END_NCBI_SCOPE
  95. /*
  96.  * ===========================================================================
  97.  * $Log: taxplot3d_widget.hpp,v $
  98.  * Revision 1000.0  2004/04/12 18:27:15  gouriano
  99.  * PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.4
  100.  *
  101.  * Revision 1.4  2004/01/28 17:39:59  tereshko
  102.  * Fixed popup menu
  103.  *
  104.  * Revision 1.3  2004/01/28 17:11:32  tereshko
  105.  * Added CGUIEvent
  106.  *
  107.  * Revision 1.2  2004/01/14 16:33:05  tereshko
  108.  * Added  NCBI_GUIWIDGETS_TAXPLOT_EXPORT, few minor things
  109.  *
  110.  * Revision 1.1  2004/01/05 16:22:04  tereshko
  111.  * Initial revision
  112.  *
  113.  * ===========================================================================
  114.  */
  115. #endif  // GUI_WIDGETS_TAXPLOT___TAXPLOT_3D_WIDGET___HPP