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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: axis.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:48:00  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef _AXIS_HPP
  10. #define _AXIS_HPP
  11. /*  $Id: axis.hpp,v 1000.1 2004/06/01 19:48: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:  Andrey Yazhuk
  37.  *
  38.  * File Description:
  39.  *
  40.  */
  41. #include <corelib/ncbistl.hpp>
  42. #include <gui/opengl/glbitmapfont.hpp>
  43. #include <gui/graph/igraph.hpp>
  44. #include <gui/opengl/glpane.hpp>
  45. #include <gui/graph/regular_grid.hpp>
  46. /** @addtogroup GUI_GRAPH
  47.  *
  48.  * @{
  49.  */
  50. BEGIN_NCBI_SCOPE
  51. ////////////////////////////////////////////////////////////////////////////////
  52. /// class CAxisRenderer
  53. // This class render an Axis with ticks and labels. CRegularGridGen provides
  54. // CAxisRenderer with positions whery ticks and labels should be drawn.
  55. class NCBI_GUIGRAPH_EXPORT CAxisRenderer
  56. {
  57. public:
  58.     enum EPosition {
  59.         ePosMin,
  60.         ePosMax,
  61.         ePosFixedValue
  62.     };
  63.     enum ETextAlign {
  64.         eLeftText,
  65.         eRightText,
  66.         eCenterText
  67.     };
  68.     enum ETickStyle {
  69.         eNoTick,
  70.         eMinSide,
  71.         eMaxSide,
  72.         eBothSides
  73.     };
  74. public:
  75.     CAxisRenderer(bool bHorz = true);
  76.     virtual ~CAxisRenderer();
  77.     void    SetHorizontal(bool bHorz = true);
  78.     void    SetScaleType(EScaleType Type);
  79.     
  80.     // Axis position 
  81.     void    SetPositionType(EPosition Type);
  82.     void    SetFixedPosition(TModelUnit Value);
  83.     
  84.     // Labels drawing attributes
  85.     void    SetTextAlign(ETextAlign Type);
  86.     void    SetFormattingTemplate(const string& sTempl); // printf style
  87.     //void    SetFont(CGlBitmapFont::EFont Type);
  88.     
  89.     // Tick drawing attributes
  90.     void    SetTickStyle(ETickStyle Style);
  91.     void    SetTickSize(int SizePix);
  92.     
  93.     // Colors
  94.     void    SetColor(CGlColor Color);
  95.     void    SetTextColor(CGlColor Color);
  96.     virtual void    Render(CGlPane* pAreaPane, CGlPane* pGraphPane, CRegularGridGen* pGen);
  97. protected:
  98.     virtual void    x_GenerateLabels(CGlPane* pAreaPane, CGlPane* pGraphPane,
  99.                                      CRegularGridGen* pGen);
  100.     virtual void    x_LayoutLabels(int Start, int Finish);
  101.     virtual void    x_DrawHorzLabels(CGlPane* pAreaPane, CGlPane* pGraphPane, 
  102.                                      CRegularGridGen* pGen, int dTickMin, int dTickMax);
  103.     // these functions could be overridden in order to customize generation of text labels
  104.     virtual string      x_FormatLabel(TModelUnit Value);
  105.     virtual TModelUnit  x_GetLabelValue(TModelUnit Value);
  106.         
  107. protected:
  108.     struct SLabelDescr
  109.     {
  110.         TModelUnit  m_Value;
  111.         string  m_Str;
  112.         int m_Pos;
  113.         int m_Width;
  114.         bool m_bVisible;
  115.         
  116.         SLabelDescr() : m_Value(0), m_Pos(0), m_Width(0), m_bVisible(true)   {};
  117.     };
  118. protected:
  119.     static const int kDefTickSize;
  120.     bool m_bHorz;
  121.     EScaleType m_Type;
  122.     
  123.     EPosition   m_PosType;
  124.     TModelUnit  m_FixedPosValue;
  125.     
  126.     ETextAlign  m_TextAlignType;
  127.     string      m_sFormatTempl;
  128.     ETickStyle  m_TickStyle;
  129.     int         m_TickSize;
  130.     CGlColor  m_Color;
  131.     CGlColor  m_TextColor;
  132.     
  133.     CGlBitmapFont m_Font;
  134.     vector<SLabelDescr> m_vLabels;
  135. };
  136. ////////////////////////////////////////////////////////////////////////////////
  137. /// class CAxisArea
  138. class CAxisArea
  139. {
  140. public:    
  141.     CAxisArea();
  142.     virtual ~CAxisArea();
  143.     virtual void    SetupAxes();
  144.     void    SetScaleType(EScaleType TypeX, EScaleType TypeY);
  145.     void    Render(CGlPane* pAreaPane, CGlPane* pGraphPane, CRegularGridGen* pGen);
  146. protected:
  147.     CGlColor    m_BoundsColor;
  148.     CAxisRenderer m_XAxis;
  149.     CAxisRenderer m_YAxis;
  150. };
  151. END_NCBI_SCOPE
  152. /*
  153.  * ===========================================================================
  154.  * $Log: axis.hpp,v $
  155.  * Revision 1000.1  2004/06/01 19:48:00  gouriano
  156.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  157.  *
  158.  * Revision 1.9  2004/05/11 20:25:50  yazhuk
  159.  * Made some functions virtual
  160.  *
  161.  * Revision 1.8  2004/05/11 18:54:43  dicuccio
  162.  * Added doxygen modules info
  163.  *
  164.  * Revision 1.7  2003/10/08 14:11:30  dicuccio
  165.  * Code clean-up.  Use <> instead of "" for #includes.  Moved CGlPane into opengl.
  166.  * Moved CGlPoint and CGlRect into opengl.
  167.  *
  168.  * Revision 1.6  2003/09/25 20:38:52  yazhuk
  169.  * Refactored rendering
  170.  *
  171.  * Revision 1.5  2003/09/17 16:15:05  dicuccio
  172.  * Use CGlBitmapFont instead of CGlutFont
  173.  *
  174.  * Revision 1.4  2003/09/04 13:58:42  dicuccio
  175.  * Added export specifiers.  Inlined destructors of interface classes
  176.  *
  177.  * Revision 1.3  2003/08/11 16:08:26  yazhuk
  178.  * Compilation fixes for GCC.
  179.  *
  180.  * Revision 1.2  2003/08/10 14:11:18  dicuccio
  181.  * Compilation fixes for gcc
  182.  *
  183.  * Revision 1.1  2003/08/08 16:01:35  yazhuk
  184.  * Initial revision.
  185.  *
  186.  * ===========================================================================
  187.  */
  188. #endif