1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 // File : Plot2d_Curve.h
23 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
25 #ifndef PLOT2D_CURVE_H
26 #define PLOT2D_CURVE_H
29 #include "Plot2d_Object.h"
31 #include <qwt_symbol.h>
33 class PLOT2D_EXPORT Plot2d_Curve : public Plot2d_Object
38 Plot2d_Curve( const Plot2d_Curve& );
40 virtual ~Plot2d_Curve();
41 Plot2d_Curve& operator= ( const Plot2d_Curve& );
44 virtual QwtPlotItem* createPlotItem();
45 virtual void autoFill( const QwtPlot* );
46 virtual void updatePlotItem( QwtPlotItem* );
48 void setColor( const QColor& );
49 QColor getColor() const;
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;
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();
68 virtual double getMinY() const;
69 virtual double getMaxY() const;
75 Plot2d::MarkerType myMarker;
76 QwtSymbol::Style myMarkerStyle;
78 Plot2d::LineType myLine;
82 typedef QList<Plot2d_Curve*> curveList;