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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: igraph.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:48:09  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_GRAPH___IGRAPH__HPP
  10. #define GUI_GRAPH___IGRAPH__HPP
  11. /*  $Id: igraph.hpp,v 1000.2 2004/06/01 19:48:09 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_utils.hpp>
  44. #include <gui/opengl/glpane.hpp>
  45. #include <vector>
  46. /** @addtogroup GUI_GRAPH
  47.  *
  48.  * @{
  49.  */
  50. BEGIN_NCBI_SCOPE
  51. /////////////////////////////////////////////////////////////////////////////
  52. /// IGraphDataSource
  53. class NCBI_GUIGRAPH_EXPORT IGraphDataSource
  54. {
  55. public:
  56.     virtual ~IGraphDataSource();
  57. };
  58. /////////////////////////////////////////////////////////////////////////////
  59. /// IGraph
  60. // pointers or refs ?
  61. // const versions of functions ?
  62. // throw exceptions for incompatible data sources ?
  63. class IGraph
  64. {
  65. public:
  66.     virtual ~IGraph();
  67.     virtual bool    SetDataSource(IGraphDataSource* pDS) = 0;
  68.     virtual IGraphDataSource*   GetDataSource() = 0;
  69.   
  70.     virtual const TModelRect&    GetLimits()    const = 0;
  71.     virtual void    Render(CGlPane* pPane) = 0;
  72. };
  73. /////////////////////////////////////////////////////////////////////////////
  74. /// CGraphBase
  75. class NCBI_GUIGRAPH_EXPORT CGraphBase : public IGraph
  76. {
  77. public:
  78.     CGraphBase();
  79.     virtual ~CGraphBase();
  80.     // IGraph implementation
  81.     virtual bool    SetDataSource(IGraphDataSource* pDS); 
  82.     virtual IGraphDataSource*   GetDataSource();
  83.   
  84.     virtual const TModelRect&    GetLimits()    const;
  85.     virtual void    SetColor(CGlColor Color)    {   m_Color = Color;    }
  86.     virtual void    SetTextColor(CGlColor Color)    { m_TextColor = Color;  }
  87.     virtual const CGlColor&     GetColor()  const   {   return m_Color; }
  88.     virtual const CGlColor&     GetTextColor()  const   {   return m_TextColor; }
  89.     virtual void    Render(CGlPane* pPane) = 0;
  90. protected:    
  91.     virtual void    CalculateLimits() = 0;
  92. protected:
  93.     TModelRect  m_Limits;
  94.     IGraphDataSource* m_pDataSource;
  95.     CGlColor    m_Color;
  96.     CGlColor    m_TextColor;
  97. };
  98. /////////////////////////////////////////////////////////////////////////////
  99. /// class CGraphDotMarker
  100. class CGraphDotMarker
  101. {
  102. public:
  103.     enum EMarkerType {
  104.         eNone,
  105.         eRect,
  106.         eDiamond,
  107.         eTriangle,
  108.         eCross        
  109.     };
  110.     
  111.     static void RenderMarker(TModelUnit cX, TModelUnit cY, TModelUnit MarkerW, 
  112.                             TModelUnit MarkerH, EMarkerType Type);
  113. };
  114. END_NCBI_SCOPE
  115. /*
  116.  * ===========================================================================
  117.  * $Log: igraph.hpp,v $
  118.  * Revision 1000.2  2004/06/01 19:48:09  gouriano
  119.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  120.  *
  121.  * Revision 1.8  2004/05/11 18:54:43  dicuccio
  122.  * Added doxygen modules info
  123.  *
  124.  * Revision 1.7  2004/03/24 20:33:42  gorelenk
  125.  * Added missed export prefixes.
  126.  *
  127.  * Revision 1.6  2003/10/08 14:11:30  dicuccio
  128.  * Code clean-up.  Use <> instead of "" for #includes.  Moved CGlPane into opengl.
  129.  * Moved CGlPoint and CGlRect into opengl.
  130.  *
  131.  * Revision 1.5  2003/09/04 13:58:42  dicuccio
  132.  * Added export specifiers.  Inlined destructors of interface classes
  133.  *
  134.  * Revision 1.4  2003/08/11 21:27:10  yazhuk
  135.  * Compilation fix for Workshop
  136.  *
  137.  * Revision 1.3  2003/08/11 16:08:26  yazhuk
  138.  * Compilation fixes for GCC.
  139.  *
  140.  * Revision 1.2  2003/08/10 14:11:18  dicuccio
  141.  * Compilation fixes for gcc
  142.  *
  143.  * Revision 1.1  2003/08/08 16:01:35  yazhuk
  144.  * Initial revision.
  145.  *
  146.  * ===========================================================================
  147.  */
  148. #endif