Version: 9.12.0
Plot2d_Curve.h
Go to the documentation of this file.
1 // Copyright (C) 2007-2023 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 
34 {
35 public:
36 
37  Plot2d_Curve();
38  Plot2d_Curve( const Plot2d_Curve& );
39 
40  virtual ~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;
76  QwtSymbol::Style myMarkerStyle;
80 };
81 
83 
84 #endif
#define PLOT2D_EXPORT
Definition: Plot2d.h:36
QList< Plot2d_Curve * > curveList
Definition: Plot2d_Curve.h:82
Definition: Plot2d_Curve.h:34
QwtSymbol::Style myMarkerStyle
Definition: Plot2d_Curve.h:76
int myLineWidth
Definition: Plot2d_Curve.h:79
Plot2d::MarkerType myMarker
Definition: Plot2d_Curve.h:75
int myMarkerSize
Definition: Plot2d_Curve.h:77
Plot2d::LineType myLine
Definition: Plot2d_Curve.h:78
QColor myColor
Definition: Plot2d_Curve.h:74
Definition: Plot2d_Object.h:36
virtual double getMaxY() const
Definition: Plot2d_Object.cxx:476
virtual void autoFill(const QwtPlot *)
Definition: Plot2d_Object.cxx:93
virtual int rtti()=0
Plot2d_Object & operator=(const Plot2d_Object &)
Definition: Plot2d_Object.cxx:75
virtual void updatePlotItem(QwtPlotItem *)
Definition: Plot2d_Object.cxx:100
virtual double getMinY() const
Definition: Plot2d_Object.cxx:464
virtual QwtPlotItem * createPlotItem()=0
MarkerType
Definition: Plot2d.h:74
LineType
Definition: Plot2d.h:86