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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: combo_chart.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:48:03  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_GRAPH___COMBO_CHART__HPP
  10. #define GUI_GRAPH___COMBO_CHART__HPP
  11. /*  $Id: combo_chart.hpp,v 1000.2 2004/06/01 19:48:03 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/graph/igraph.hpp>
  43. #include <gui/graph/igraph_data.hpp>
  44. #include <gui/graph/legend.hpp>
  45. /** @addtogroup GUI_GRAPH
  46.  *
  47.  * @{
  48.  */
  49. BEGIN_NCBI_SCOPE
  50. /////////////////////////////////////////////////////////////////////////////
  51. /// interface IComboChartDataSource
  52. // IComboChartDataSource represents a set of arrays of the same length. Each array
  53. // represents a series of data points. Labels Arrays contains names of series.
  54. class IComboChartDataSource : public IGraphDataSource
  55. {
  56. public:
  57.     virtual int GetArraysCount() = 0;
  58.     virtual IStringArray*   GetLabelsArray() = 0; // one label for each array
  59.     
  60.     virtual INumericArray*  GetValueArray(int iArray) = 0;
  61.     virtual void CalculateMinMax(TModelUnit& Min, TModelUnit& Max) = 0;
  62. };
  63. ///////////////////////////////////////////////////////////////////////////////
  64. /// class CComboChart
  65. class NCBI_GUIGRAPH_EXPORT CComboChart : public CGraphBase, public ILegendDataSource
  66. {
  67. public:
  68.     enum EGraphStyle
  69.     {
  70.         eLinePlot,
  71.         eBarChart,
  72.         eStackedBarChart,
  73.         ePercentBarChart
  74.     };
  75.     
  76.     CComboChart();
  77.     virtual ~CComboChart();
  78.     EGraphStyle GetStyle()  const   {   return m_Style; }
  79.     void        SetStyle(EGraphStyle Style) {   m_Style = Style;    }
  80.     // intreface for controlling drawing attributes
  81.     CGlColor    GetColor(int iSeries)   const;
  82.     void        SetColor(int iSeries, CGlColor Color);
  83.     void    AssignAutoColors();
  84.     
  85.     CGraphDotMarker::EMarkerType GetMarkerType(int iSeries)  const;
  86.     void    SetMarkerType(int iSeries, CGraphDotMarker::EMarkerType Type);
  87.     void    AssignAutoMarkers();
  88.     
  89.     // IGraph implementation
  90.     virtual bool    SetDataSource(IGraphDataSource* pDS);     
  91.     virtual void    Render(CGlPane* pViewport);
  92.     
  93.     // ILegendDataSource implementation
  94.     virtual bool    ShowMarkers();
  95.     virtual IStringArray*   GetLabelArray(); 
  96.     virtual IColorArray*    GetColorArray(); 
  97.     virtual INumericArray*  GetMarkerArray(); 
  98. protected:
  99.     IComboChartDataSource*    GetComboChartDataSource() 
  100.             { return dynamic_cast<IComboChartDataSource*>(m_pDataSource); };
  101.     virtual void    CalculateLimits();
  102.     CGlColor&   x_GetColor(int iSeries);
  103.     CGraphDotMarker::EMarkerType  x_GetMarker(int iSeries) const;
  104.     
  105.     virtual void    x_RenderLinePlot(int iStart, int iEnd, CGlPane* pPane);
  106.     virtual void    x_RenderBarChart(int iStart, int iEnd, CGlPane* pPane);
  107.     virtual void    x_RenderStackedBarChart(int iStart, int iEnd);
  108.     virtual void    x_RenderPercentBarChart(int iStart, int iEnd);
  109.     
  110. private:
  111.     //typedef CTypedArrayAdapter<IDataArray::eString> TStringAdapter;
  112.     typedef CTypedArrayAdapter<IDataArray::eColor> TColorAdapter;
  113.     typedef CTypedArrayAdapter<IDataArray::eNumeric, int> TIntAdapter;
  114.     //TStringAdapter   m_Labels;
  115.     TColorAdapter   m_Colors;
  116.     TIntAdapter     m_Markers;    
  117.     EGraphStyle m_Style;        
  118.     int m_MarkerSize;
  119. };
  120. inline CGlColor&   CComboChart::x_GetColor(int iSeries)
  121. {
  122.     return m_Colors.GetContainer()[iSeries];
  123. }
  124. inline    CGraphDotMarker::EMarkerType  CComboChart::x_GetMarker(int iSeries) const
  125. {
  126.     return (CGraphDotMarker::EMarkerType) m_Markers.GetContainer()[iSeries];
  127. }
  128. ///////////////////////////////////////////////////////////////////////////////
  129. /// class CComboChartDataSource
  130. class NCBI_GUIGRAPH_EXPORT CComboChartDataSource : public CSeriesBase, 
  131.                                                    public IComboChartDataSource
  132. {
  133. public:
  134.     typedef double  TValueType;
  135.     CComboChartDataSource(int ArrCount, int Length) : CSeriesBase(Length), m_ArrCount(ArrCount) {}    
  136.     // IScatterGraph interface
  137.     virtual int GetArraysCount() {  return x_GetArraysCount(); }
  138.     virtual IStringArray*   GetLabelsArray() {   return x_GetStringArray(0); }
  139.     
  140.     virtual INumericArray*  GetValueArray(int iArray) {   return x_GetNumericArray(iArray+1); }
  141.     virtual void    CalculateMinMax(TModelUnit& Min, TModelUnit& Max);
  142. protected:
  143.     typedef CTypedArrayAdapter<IDataArray::eNumeric, TValueType> TValueAdapter;
  144.     typedef CTypedArrayAdapter<IDataArray::eString>   TStringAdapter;
  145.     
  146. public:
  147.     typedef TStringAdapter::TCont    TLabelCont;    
  148.     typedef TValueAdapter::TCont     TValueCont;
  149.     
  150.     TLabelCont&  GetLabelContainer()    {   return dynamic_cast<TStringAdapter*>(GetArray(0))->GetContainer();    }
  151.     TValueCont&   GetValueContainer(int iArray)    {   return dynamic_cast<TValueAdapter*>(GetArray(iArray+1))->GetContainer();    }
  152.     virtual void    CreateArrays();
  153.     
  154. protected:
  155.     int     x_GetArraysCount()  const { return m_vpArrays.size() - 1;    }
  156.     int m_ArrCount;
  157. };
  158. END_NCBI_SCOPE
  159. /*
  160.  * ===========================================================================
  161.  * $Log: combo_chart.hpp,v $
  162.  * Revision 1000.2  2004/06/01 19:48:03  gouriano
  163.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  164.  *
  165.  * Revision 1.7  2004/05/11 18:54:43  dicuccio
  166.  * Added doxygen modules info
  167.  *
  168.  * Revision 1.6  2004/04/09 20:13:18  yazhuk
  169.  * Made x_Render... functions virtual
  170.  *
  171.  * Revision 1.5  2004/03/24 20:33:42  gorelenk
  172.  * Added missed export prefixes.
  173.  *
  174.  * Revision 1.4  2003/10/08 14:11:30  dicuccio
  175.  * Code clean-up.  Use <> instead of "" for #includes.  Moved CGlPane into opengl.
  176.  * Moved CGlPoint and CGlRect into opengl.
  177.  *
  178.  * Revision 1.3  2003/09/04 13:58:42  dicuccio
  179.  * Added export specifiers.  Inlined destructors of interface classes
  180.  *
  181.  * Revision 1.2  2003/08/10 14:11:18  dicuccio
  182.  * Compilation fixes for gcc
  183.  *
  184.  * Revision 1.1  2003/08/08 16:01:35  yazhuk
  185.  * Initial revision.
  186.  *
  187.  * ===========================================================================
  188.  */
  189. #endif