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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: scatter_graph.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:48:27  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_GRAPH___SCATTER_GRAPH__HPP
  10. #define GUI_GRAPH___SCATTER_GRAPH__HPP
  11. /*  $Id: scatter_graph.hpp,v 1000.1 2004/06/01 19:48:27 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/graph/igraph.hpp>
  42. #include <gui/graph/igraph_data.hpp>
  43. /** @addtogroup GUI_GRAPH
  44.  *
  45.  * @{
  46.  */
  47. BEGIN_NCBI_SCOPE
  48. ///////////////////////////////////////////////////////////////////////////////
  49. /// IScatterDataSource 
  50. class IScatterDataSource : public IGraphDataSource
  51. {
  52. public:
  53.     virtual INumericArray*  GetXArray() = 0;
  54.     virtual INumericArray*  GetYArray() = 0;
  55.     virtual IStringArray*   GetLabelsArray() = 0; 
  56. };
  57. ///////////////////////////////////////////////////////////////////////////////
  58. /// CScatterDataSource
  59. // underlying types used for storing X and Y values can be parametrized
  60. // Here we use vector as a container type, it can be parametrized as well if needed.
  61. template <class TX = TModelUnit, class TY = TModelUnit>
  62.     class CScatterDataSource : public IScatterDataSource, public CSeriesBase
  63. {
  64. public:
  65.     CScatterDataSource(int Length) : CSeriesBase(Length)    {}    
  66.     // IScatterGraph interface
  67.     virtual INumericArray*  GetXArray()  {   return x_GetNumericArray(0); }
  68.     virtual INumericArray*  GetYArray()  {   return x_GetNumericArray(1); }
  69.     virtual IStringArray*   GetLabelsArray()  {   return x_GetStringArray(2); }
  70. protected:
  71.     typedef CTypedArrayAdapter<IDataArray::eNumeric, TX> TXAdapter;
  72.     typedef CTypedArrayAdapter<IDataArray::eNumeric, TY> TYAdapter;
  73.     typedef CTypedArrayAdapter<IDataArray::eString> TStrAdapter;
  74.     
  75. public:
  76.     typedef typename TXAdapter::TCont    TXCont;
  77.     typedef typename TYAdapter::TCont    TYCont;
  78.     typedef typename TStrAdapter::TCont  TStrCont;
  79.     
  80.     // Data Manipulation interface
  81.     TXCont&  GetXContainer()    {   return dynamic_cast<TXAdapter*>(GetArray(0))->GetContainer();    }
  82.     TYCont&  GetYContainer()    {   return dynamic_cast<TYAdapter*>(GetArray(1))->GetContainer();    }
  83.     TStrCont&  GetLabelContainer()    {   return dynamic_cast<TStrAdapter*>(GetArray(2))->GetContainer();    }
  84.     virtual void    CreateArrays()
  85.     {
  86.         CSeriesBase::CreateArrays();
  87.         TXAdapter* pXAd = new TXAdapter(m_Length);
  88.         AddArray(/*"X", */static_cast<IDataArray*>(pXAd));
  89.         
  90.         TYAdapter* pYAd = new TYAdapter(m_Length);
  91.         AddArray(static_cast<IDataArray*>(pYAd));
  92.         TStrAdapter* pStrAd = new TStrAdapter(m_Length);
  93.         AddArray(static_cast<IDataArray*>(pStrAd));
  94.     }
  95. };
  96. ///////////////////////////////////////////////////////////////////////////////
  97. /// class CScatterGraph 
  98. class NCBI_GUIGRAPH_EXPORT CScatterGraph : public CGraphBase
  99. {
  100. public:
  101.     CScatterGraph();
  102.     CGraphDotMarker::EMarkerType GetMarkerType()  const;
  103.     void        SetMarkerType(CGraphDotMarker::EMarkerType Type);
  104.     bool    IsDrawLines() const;
  105.     void    SetDrawLines(bool bDraw);
  106.     // IGraph implementation
  107.     virtual bool    SetDataSource(IGraphDataSource* pDS); 
  108.     virtual const   TModelRect&    GetLimits()    const;
  109.     virtual void    Render(CGlPane* pViewport);
  110. protected:
  111.     IScatterDataSource*    GetScatterDataSource() 
  112.             { return dynamic_cast<IScatterDataSource*>(m_pDataSource); };
  113.     virtual void    CalculateLimits();
  114. protected:
  115.     CGraphDotMarker::EMarkerType m_MarkerType;
  116.     bool    m_bDrawLines;
  117. };
  118. END_NCBI_SCOPE
  119. /*
  120.  * ===========================================================================
  121.  * $Log: scatter_graph.hpp,v $
  122.  * Revision 1000.1  2004/06/01 19:48:27  gouriano
  123.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  124.  *
  125.  * Revision 1.7  2004/05/11 18:54:43  dicuccio
  126.  * Added doxygen modules info
  127.  *
  128.  * Revision 1.6  2004/04/26 17:30:23  ucko
  129.  * Fix a typo in CScatterDataSource::GetLabelContainer().
  130.  *
  131.  * Revision 1.5  2003/10/08 14:11:30  dicuccio
  132.  * Code clean-up.  Use <> instead of "" for #includes.  Moved CGlPane into opengl.
  133.  * Moved CGlPoint and CGlRect into opengl.
  134.  *
  135.  * Revision 1.4  2003/09/04 13:58:42  dicuccio
  136.  * Added export specifiers.  Inlined destructors of interface classes
  137.  *
  138.  * Revision 1.3  2003/08/11 16:08:26  yazhuk
  139.  * Compilation fixes for GCC.
  140.  *
  141.  * Revision 1.2  2003/08/10 14:11:18  dicuccio
  142.  * Compilation fixes for gcc
  143.  *
  144.  * Revision 1.1  2003/08/08 16:01:35  yazhuk
  145.  * Initial revision.
  146.  *
  147.  * ===========================================================================
  148.  */
  149. #endif