Salome HOME
Updated copyright comment
[modules/gui.git] / src / Plot2d / Plot2d_Curve.h
1 // Copyright (C) 2007-2024  CEA, EDF, 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, or (at your option) any later version.
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 #include "Plot2d_Object.h"
30
31 #include <qwt_symbol.h>
32
33 class PLOT2D_EXPORT Plot2d_Curve : public Plot2d_Object
34 {
35 public:
36
37   Plot2d_Curve();
38   Plot2d_Curve( const Plot2d_Curve& );
39
40   virtual ~Plot2d_Curve();
41   Plot2d_Curve& operator= ( const Plot2d_Curve& );
42
43   virtual int          rtti();
44   virtual QwtPlotItem* createPlotItem();
45   virtual void         autoFill( const QwtPlot* );
46   virtual void         updatePlotItem( QwtPlotItem* );
47
48   void                 setColor( const QColor& );
49   QColor               getColor() const;
50
51   void                 setMarker( Plot2d::MarkerType, const int );
52   void                 setMarker( Plot2d::MarkerType );
53   void                       setMarkerStyle( QwtSymbol::Style style);
54   Plot2d::MarkerType   getMarker() const;
55   QwtSymbol::Style     getMarkerStyle() const;
56   void                 setMarkerSize( const int );
57   int                  getMarkerSize() const;
58
59   void                 setLine( Plot2d::LineType, const int );
60   void                 setLine( Plot2d::LineType );
61   Plot2d::LineType     getLine() const;
62   void                 setLineWidth( const int );
63   int                  getLineWidth() const;
64   void                 setDeviationData( const double*, const double*, const QList<int>&);
65   void                 getDeviationData( double*&, double*&, QList<int>& ) const;
66   void                 clearDeviationData();
67
68   virtual double          getMinY() const;
69   virtual double          getMaxY() const;
70
71
72 protected:
73
74   QColor               myColor;
75   Plot2d::MarkerType   myMarker;
76   QwtSymbol::Style     myMarkerStyle;
77   int                  myMarkerSize;
78   Plot2d::LineType     myLine;
79   int                  myLineWidth;
80 };
81
82 typedef QList<Plot2d_Curve*> curveList;
83
84 #endif