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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: legend.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:48:18  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_GRAPH___LEGEND__HPP
  10. #define GUI_GRAPH___LEGEND__HPP
  11. /*  $Id: legend.hpp,v 1000.1 2004/06/01 19:48:18 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 <gui/opengl/glbitmapfont.hpp>
  42. #include <gui/graph/igraph.hpp>
  43. #include <gui/graph/igraph_data.hpp>
  44. /** @addtogroup GUI_GRAPH
  45.  *
  46.  * @{
  47.  */
  48. BEGIN_NCBI_SCOPE
  49. ///////////////////////////////////////////////////////////////////////////////
  50. /// ILegendDataSource
  51. class ILegendDataSource  : public IGraphDataSource
  52. {
  53. public:
  54.     virtual bool    ShowMarkers() = 0;
  55.     virtual IStringArray*   GetLabelArray() = 0; 
  56.     virtual IColorArray*    GetColorArray() = 0; 
  57.     virtual INumericArray*  GetMarkerArray() = 0; 
  58. };
  59. ///////////////////////////////////////////////////////////////////////////////
  60. /// class CLegend
  61. class NCBI_GUIGRAPH_EXPORT CLegend : public CGraphBase
  62. {
  63. public:
  64.     CLegend();
  65.     virtual ~CLegend();
  66.     void    SetBackColor(const CGlColor& Color);
  67.     const CGlColor& GetBackColor() const;
  68.     void    SetBorderColor(const CGlColor& Color);
  69.     const CGlColor& GetBorderColor();
  70.     // IGraph implementation
  71.     virtual bool    SetDataSource(IGraphDataSource* pDS); 
  72.     virtual const   TModelRect&    GetLimits()    const;
  73.     virtual void    Render(CGlPane* pViewport);
  74. protected:
  75.     ILegendDataSource*    GetLegendDataSource() 
  76.             { return dynamic_cast<ILegendDataSource*>(m_pDataSource); };
  77.     virtual void    CalculateLimits();
  78.     virtual void    x_RenderItems(CGlPane* pPane);
  79.     virtual void    x_RenderItem(int X, int Y, const string& sLabel, const CGlColor& Color, int iMarker);
  80. protected:
  81.     CGlBitmapFont m_Font;
  82.     
  83.     CGlColor    m_BackColor;
  84.     CGlColor    m_BorderColor;
  85.     
  86.     bool    m_bHorz; // horizontal layout
  87.     int     m_Space;
  88.     int     m_BoxW, m_BoxH;
  89. };
  90. ///////////////////////////////////////////////////////////////////////////////
  91. /// class CLegendDataSource
  92. class NCBI_GUIGRAPH_EXPORT CLegendDataSource : public CSeriesBase, public ILegendDataSource
  93. {
  94. public:
  95.     CLegendDataSource(int Length, bool bShowMarkers = true)
  96.          : CSeriesBase(Length), m_bShowMarkers(bShowMarkers)    {}
  97.     // Data Manipulation interface
  98.     // ILegendDataSource implementation
  99.     virtual bool    ShowMarkers() { return m_bShowMarkers;  }
  100.     virtual IStringArray*  GetLabelArray()  {   return x_GetStringArray(0); }
  101.     virtual IColorArray*   GetColorArray()  {   return x_GetColorArray(1); }
  102.     virtual INumericArray* GetMarkerArray() {   return x_GetNumericArray(2); }
  103. protected:
  104.     typedef CTypedArrayAdapter<IDataArray::eString>  TStrAdapter;
  105.     typedef CTypedArrayAdapter<IDataArray::eColor>   TColorAdapter;
  106.     typedef CTypedArrayAdapter<IDataArray::eNumeric, int> TEnumAdapter;
  107.     
  108.     bool    m_bShowMarkers;
  109. public:
  110.     typedef TStrAdapter::TCont      TStrCont;
  111.     typedef TColorAdapter::TCont    TColorCont;    
  112.     typedef TEnumAdapter::TCont     TEnumCont;
  113.     
  114.     TStrCont&    GetLabelContainer()    {   return dynamic_cast<TStrAdapter*>(GetArray(0))->GetContainer();    }
  115.     TColorCont&  GetColorContainer()    {   return dynamic_cast<TColorAdapter*>(GetArray(1))->GetContainer();    }
  116.     TEnumCont&   GetMarkerContainer()    {   return dynamic_cast<TEnumAdapter*>(GetArray(2))->GetContainer();    }
  117.     virtual void    CreateArrays();    
  118. };
  119. END_NCBI_SCOPE
  120. /*
  121.  * ===========================================================================
  122.  * $Log: legend.hpp,v $
  123.  * Revision 1000.1  2004/06/01 19:48:18  gouriano
  124.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  125.  *
  126.  * Revision 1.7  2004/05/11 20:26:09  yazhuk
  127.  * Made some functions virtual
  128.  *
  129.  * Revision 1.6  2004/05/11 18:54:43  dicuccio
  130.  * Added doxygen modules info
  131.  *
  132.  * Revision 1.5  2003/10/08 14:11:30  dicuccio
  133.  * Code clean-up.  Use <> instead of "" for #includes.  Moved CGlPane into opengl.
  134.  * Moved CGlPoint and CGlRect into opengl.
  135.  *
  136.  * Revision 1.4  2003/09/17 16:15:05  dicuccio
  137.  * Use CGlBitmapFont instead of CGlutFont
  138.  *
  139.  * Revision 1.3  2003/09/04 13:58:42  dicuccio
  140.  * Added export specifiers.  Inlined destructors of interface classes
  141.  *
  142.  * Revision 1.2  2003/08/10 14:11:18  dicuccio
  143.  * Compilation fixes for gcc
  144.  *
  145.  * Revision 1.1  2003/08/08 16:01:35  yazhuk
  146.  * Initial revision.
  147.  *
  148.  * ===========================================================================
  149.  */
  150. #endif