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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: pie_graph.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:48:21  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_GRAPH___PIE_GRAPH__HPP
  10. #define GUI_GRAPH___PIE_GRAPH__HPP
  11. /*  $Id: pie_graph.hpp,v 1000.1 2004/06/01 19:48:21 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 <corelib/ncbistd.hpp>
  43. #include <gui/graph/igraph.hpp>
  44. #include <gui/graph/igraph_data.hpp>
  45. #include <gui/graph/legend.hpp>
  46. /** @addtogroup GUI_GRAPH
  47.  *
  48.  * @{
  49.  */
  50. BEGIN_NCBI_SCOPE
  51. /////////////////////////////////////////////////////////////////////////////
  52. /// IPieDataSource
  53. class IPieDataSource : public IGraphDataSource
  54. {
  55. public:
  56.     /*virtual string GetName() = 0;
  57.     
  58.     virtual int GetElemCount() const = 0;
  59.     virtual double  GetValue(int iElem) const = 0;
  60.     virtual CGlColor    GetColor(int iElem) const = 0;
  61.     virtual string  GetLabel(int iElem) const = 0;*/
  62.     virtual INumericArray*  GetValueArray() = 0;
  63.     virtual IColorArray*    GetColorArray() = 0;
  64.     virtual IStringArray*   GetLabelsArray() = 0; 
  65. };
  66. /////////////////////////////////////////////////////////////////////////////
  67. /// CPieGraph 
  68. class NCBI_GUIGRAPH_EXPORT CPieGraph : public CGraphBase, public ILegendDataSource
  69. {
  70. public:   
  71.     CPieGraph();
  72.      
  73.     // IGraph implementation
  74.     virtual bool    SetDataSource(IGraphDataSource* pDS);
  75.     virtual void    Render(CGlPane* pViewport);
  76.     // ILegendDataSource implementation
  77.     virtual bool    ShowMarkers();
  78.     virtual IStringArray*   GetLabelArray(); 
  79.     virtual IColorArray*    GetColorArray(); 
  80.     virtual INumericArray*  GetMarkerArray(); 
  81. protected:
  82.     IPieDataSource*    GetPieDataSource() 
  83.             { return dynamic_cast<IPieDataSource*>(m_pDataSource); };
  84.     virtual void    CalculateLimits();
  85. };
  86. /////////////////////////////////////////////////////////////////////////////
  87. /// CPieDataSource
  88. class NCBI_GUIGRAPH_EXPORT CPieDataSource : public CSeriesBase, public IPieDataSource
  89. {
  90. public:
  91.     CPieDataSource(int SectorsN, const string& Name = "");
  92.     virtual INumericArray*  GetValueArray() {   return x_GetNumericArray(0); };
  93.     virtual IColorArray*    GetColorArray() {   return x_GetColorArray(1); };
  94.     virtual IStringArray*   GetLabelsArray()    {   return x_GetStringArray(2); };
  95. protected:
  96.     typedef CTypedArrayAdapter<IDataArray::eNumeric> TValueAdapter;
  97.     typedef CTypedArrayAdapter<IDataArray::eColor>   TColorAdapter;
  98.     typedef CTypedArrayAdapter<IDataArray::eString>  TStringAdapter;
  99.     
  100. public:
  101.     typedef TValueAdapter::TCont    TValueCont;
  102.     typedef TColorAdapter::TCont    TColorCont;    
  103.     typedef TStringAdapter::TCont   TStringCont;
  104.     
  105.     TValueCont& GetValueContainer()    {   return dynamic_cast<TValueAdapter*>(GetArray(0))->GetContainer();    }
  106.     TColorCont& GetColorContainer()    {   return dynamic_cast<TColorAdapter*>(GetArray(1))->GetContainer();    }    
  107.     TStringCont&   GetStringContainer()    {   return dynamic_cast<TStringAdapter*>(GetArray(2))->GetContainer();    }
  108.     virtual void    CreateArrays();
  109. protected:
  110.     string m_Name;
  111. };
  112. END_NCBI_SCOPE
  113. /*
  114.  * ===========================================================================
  115.  * $Log: pie_graph.hpp,v $
  116.  * Revision 1000.1  2004/06/01 19:48:21  gouriano
  117.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  118.  *
  119.  * Revision 1.6  2004/05/11 18:54:43  dicuccio
  120.  * Added doxygen modules info
  121.  *
  122.  * Revision 1.5  2003/10/08 14:11:30  dicuccio
  123.  * Code clean-up.  Use <> instead of "" for #includes.  Moved CGlPane into opengl.
  124.  * Moved CGlPoint and CGlRect into opengl.
  125.  *
  126.  * Revision 1.4  2003/09/04 13:58:42  dicuccio
  127.  * Added export specifiers.  Inlined destructors of interface classes
  128.  *
  129.  * Revision 1.3  2003/08/11 16:08:26  yazhuk
  130.  * Compilation fixes for GCC.
  131.  *
  132.  * Revision 1.2  2003/08/10 14:11:18  dicuccio
  133.  * Compilation fixes for gcc
  134.  *
  135.  * Revision 1.1  2003/08/08 16:01:35  yazhuk
  136.  * Initial revision.
  137.  *
  138.  * ===========================================================================
  139.  */
  140. #endif