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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: regular_grid.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:48:24  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_GRAPH___REGULAR_GRID__HPP
  10. #define GUI_GRAPH___REGULAR_GRID__HPP
  11. /*  $Id: regular_grid.hpp,v 1000.2 2004/06/01 19:48:24 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/ncbistl.hpp>
  42. #include <gui/opengl/glcolor.hpp>
  43. #include <gui/graph/igraph.hpp>
  44. #include <gui/opengl/glpane.hpp>
  45. /** @addtogroup GUI_GRAPH
  46.  *
  47.  * @{
  48.  */
  49. BEGIN_NCBI_SCOPE
  50. ///////////////////////////////////////////////////////////////////////////////
  51. /// CRegularGridGen
  52. class NCBI_GUIGRAPH_EXPORT CRegularGridGen
  53. {
  54. public:
  55.     class const_iterator;
  56.     CRegularGridGen();
  57.     virtual ~CRegularGridGen();
  58.     //void SetScaleType(EScaleType TypeX, EScaleType TypeY);
  59.     void SetIntegerMode(bool IntegerX, bool IntegerY);
  60.     
  61.     // set limitations on the CellSize in pixels
  62.     void    SetCellLimits(int Min, int Max);
  63.     void    EnableOneBased(bool en_x, bool en_y);
  64.     // iteration interface
  65.     void    GenerateGrid(CGlPane* pPane, bool bHorz);
  66.     const_iterator begin() const;
  67.     const_iterator end() const;
  68. protected:
  69.     static double   SelectBaseStep(double MinV, double MaxV );
  70.     static void     RoundRangeToStep(double& Start, double& Finish, double Step );
  71.     static double   SelectScreenStep(double BaseStep,  double MinStep, double MaxStep);
  72. protected:
  73.     static const int ms_StepK[];
  74.     int m_MinCellSize;
  75.     int m_MaxCellSize;
  76.     
  77.     //EScaleType  m_XScaleType;
  78.     //EScaleType  m_YScaleType;
  79.     
  80.     bool    m_IntegerX;
  81.     bool    m_IntegerY;
  82.     bool    m_OneBasedX;
  83.     bool    m_OneBasedY;
  84.     
  85.     // Generation context
  86.     bool    m_bHorz;
  87.     double m_Start, m_Finish;
  88.     double m_Step;
  89. public:
  90.     class NCBI_GUIGRAPH_EXPORT const_iterator
  91.     {
  92.     public:
  93.         typedef double value_type;
  94.         typedef const value_type& const_reference;
  95.         const_iterator()  // end iterator
  96.             : m_Start(0), m_Finish(0), m_Step(0), m_Iter(0), m_Value(1)    {}
  97.         const_iterator(double Start, double Finish, double Step)  
  98.             : m_Start(Start), m_Finish(Finish), m_Step(Step),  m_Iter(0), m_Value(Start) {}
  99.         
  100.         const_reference operator*()  const   
  101.         { 
  102.             return m_Value;   
  103.         }
  104.         const_iterator& operator++()
  105.     {
  106.             Inc();
  107. return (*this); 
  108.         }
  109. const_iterator operator++(int)
  110. {
  111.             const_iterator Tmp = *this;
  112. Inc();
  113. return Tmp; 
  114.         }
  115.         bool operator==(const const_iterator& I) const
  116.     {
  117.             return (IsEnd() && I.IsEnd())  || 
  118.                    (m_Value == I.m_Value  &&  m_Step == I.m_Step  &&  m_Start == I.m_Start
  119.                     && m_Finish == I.m_Finish  &&  m_Iter == I.m_Iter);
  120.         }
  121.         bool operator!=(const const_iterator& I) const
  122.         {
  123.             return ! (*this==I);
  124.         }
  125. protected:
  126.         bool IsEnd()   const   {   return m_Value > m_Finish;  }
  127.         void Inc()
  128.         {
  129.             m_Value = m_Start + (++m_Iter) * m_Step;
  130.             if (m_Value > m_Finish)
  131.                 m_Iter = -1;
  132.         }
  133.     protected:
  134.         double m_Start;
  135.         double m_Finish;
  136.         double m_Step;
  137. int    m_Iter;
  138. double m_Value;
  139.     };
  140. };
  141. ///////////////////////////////////////////////////////////////////////////////
  142. /// CRegularGridRenderer
  143. class NCBI_GUIGRAPH_EXPORT CRegularGridRenderer
  144. {
  145. public:
  146.     CRegularGridRenderer();
  147.     void    EnableIntegerCentering(bool b_en)   {   m_bCentering = b_en;  }
  148.     void    SetColor(const CGlColor& Color)     {   m_Color = Color;    } 
  149.     void    Render(CGlPane* pAreaPane, CGlPane* pPane, CRegularGridGen* pGenerator);
  150. protected:
  151.     double      m_bCentering;
  152.     CGlColor    m_Color;
  153. };
  154. END_NCBI_SCOPE
  155. /*
  156.  * ===========================================================================
  157.  * $Log: regular_grid.hpp,v $
  158.  * Revision 1000.2  2004/06/01 19:48:24  gouriano
  159.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  160.  *
  161.  * Revision 1.10  2004/05/11 18:54:43  dicuccio
  162.  * Added doxygen modules info
  163.  *
  164.  * Revision 1.9  2003/11/17 20:29:56  yazhuk
  165.  * Added support one-based grids and centering
  166.  *
  167.  * Revision 1.8  2003/10/08 14:11:30  dicuccio
  168.  * Code clean-up.  Use <> instead of "" for #includes.  Moved CGlPane into opengl.
  169.  * Moved CGlPoint and CGlRect into opengl.
  170.  *
  171.  * Revision 1.7  2003/09/04 13:58:42  dicuccio
  172.  * Added export specifiers.  Inlined destructors of interface classes
  173.  *
  174.  * Revision 1.6  2003/08/14 18:00:45  yazhuk
  175.  * Deleted CRegularGrid class
  176.  *
  177.  * Revision 1.5  2003/08/12 21:18:37  ucko
  178.  * CRegularGridGen::const_iterator: don't try to inherit from iterator<>,
  179.  * which is undefined (conditionalized out(!)) under G++ 2.95.
  180.  *
  181.  * Revision 1.4  2003/08/11 19:17:31  yazhuk
  182.  * Iterator fix
  183.  *
  184.  * Revision 1.3  2003/08/11 16:08:26  yazhuk
  185.  * Compilation fixes for GCC.
  186.  *
  187.  * Revision 1.2  2003/08/10 14:11:18  dicuccio
  188.  * Compilation fixes for gcc
  189.  *
  190.  * Revision 1.1  2003/08/08 16:01:35  yazhuk
  191.  * Initial revision.
  192.  *
  193.  * ===========================================================================
  194.  */
  195. #endif