Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/gui.git] / src / Plot2d / Plot2d_Curve.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File   : Plot2d_Curve.h
23 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
24 //
25 #ifndef PLOT2D_CURVE_H
26 #define PLOT2D_CURVE_H
27
28 #include "Plot2d.h"
29
30 #include <QList>
31 #include <qwt_plot.h>
32
33 class QColor;
34
35 typedef struct
36 {
37   double x;
38   double y;
39   QString text;
40 } Plot2d_Point;
41
42 typedef QList<Plot2d_Point> pointList;
43
44 class PLOT2D_EXPORT Plot2d_Curve
45 {
46 public:
47   Plot2d_Curve();
48   virtual ~Plot2d_Curve();
49   Plot2d_Curve( const Plot2d_Curve& );
50   Plot2d_Curve& operator= ( const Plot2d_Curve& );
51
52   virtual QString    getTableTitle() const;
53   
54   void               setHorTitle( const QString& );
55   QString            getHorTitle() const;
56   void               setVerTitle( const QString& );
57   QString            getVerTitle() const;
58
59   void               setHorUnits( const QString& );
60   QString            getHorUnits() const;
61   void               setVerUnits( const QString& );
62   QString            getVerUnits() const;
63
64   void               addPoint( double, double, const QString& = QString() );
65   void               insertPoint( int, double, double, const QString& = QString() );
66   void               deletePoint( int );
67   void               clearAllPoints();
68   pointList          getPointList() const;
69
70   void               setData( const double*, const double*, 
71                               long, const QStringList& = QStringList() );
72   double*            horData() const;
73   double*            verData() const;
74
75   void               setText( const int, const QString& );
76   QString            text( const int ) const;
77
78   int                nbPoints() const;
79   bool               isEmpty() const;
80
81   void               setAutoAssign( bool );
82   bool               isAutoAssign() const;
83
84   void               setColor( const QColor& );
85   QColor             getColor() const;
86
87   void               setMarker( Plot2d::MarkerType );
88   Plot2d::MarkerType getMarker() const;
89
90   void               setLine( Plot2d::LineType, const int = 0 );
91   Plot2d::LineType   getLine() const;
92   int                getLineWidth() const;
93
94   void               setYAxis( QwtPlot::Axis );
95   QwtPlot::Axis      getYAxis() const;
96
97   // Protection against QwtCurve::drawLines() bug in Qwt 0.4.x: 
98   // it crashes if switched to X/Y logarithmic mode, when one or more points have
99   // non-positive X/Y coordinate
100   double             getMinX() const;
101   double             getMinY() const;
102
103 protected:
104   bool               myAutoAssign;
105   QString            myHorTitle;
106   QString            myVerTitle;
107   QString            myHorUnits;
108   QString            myVerUnits;
109   QColor             myColor;
110   Plot2d::MarkerType myMarker;
111   Plot2d::LineType   myLine;
112   int                myLineWidth;
113   QwtPlot::Axis      myYAxis;
114
115   pointList          myPoints;
116 };
117
118 typedef QList<Plot2d_Curve*> curveList;
119
120 #endif